summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraarne <aarne@cs.chalmers.se>2007-06-19 18:12:35 +0000
committeraarne <aarne@cs.chalmers.se>2007-06-19 18:12:35 +0000
commite3f12103697e5eb9caada06134ba9aba01333928 (patch)
tree17a7f0cf5efbe215a23d5837d11a6981954c39da
parentf30fa0b4d15ec256f55e2c453fc3d7c42de9b3bf (diff)
extended functor syntax
-rw-r--r--doc/tutorial/music/MusicEng.gf8
-rw-r--r--doc/tutorial/music/MusicEng0.gf3
-rw-r--r--src/GF/Compile/Rebuild.hs20
-rw-r--r--src/GF/Infra/Modules.hs5
-rw-r--r--src/GF/Source/AbsGF.hs9
-rw-r--r--src/GF/Source/GF.cf11
-rw-r--r--src/GF/Source/ParGF.hs1104
-rw-r--r--src/GF/Source/PrintGF.hs8
-rw-r--r--src/GF/Source/SourceToGrammar.hs42
9 files changed, 631 insertions, 579 deletions
diff --git a/doc/tutorial/music/MusicEng.gf b/doc/tutorial/music/MusicEng.gf
index c85915254..60f7b31d4 100644
--- a/doc/tutorial/music/MusicEng.gf
+++ b/doc/tutorial/music/MusicEng.gf
@@ -1,7 +1,11 @@
--# -path=.:present:api:prelude
- concrete MusicEng of Music = MusicEng0 - [PropKind] **
- open SyntaxEng in {
+ concrete MusicEng of Music =
+ MusicI - [PropKind]
+ with
+ (Syntax = SyntaxEng),
+ (MusicLex = MusicLexEng) **
+ open SyntaxEng in {
lin
PropKind k p = mkCN k (mkRS (mkRCl which_RP (mkVP p))) ;
}
diff --git a/doc/tutorial/music/MusicEng0.gf b/doc/tutorial/music/MusicEng0.gf
deleted file mode 100644
index 088444e38..000000000
--- a/doc/tutorial/music/MusicEng0.gf
+++ /dev/null
@@ -1,3 +0,0 @@
- concrete MusicEng0 of Music = MusicI with
- (Syntax = SyntaxEng),
- (MusicLex = MusicLexEng) ;
diff --git a/src/GF/Compile/Rebuild.hs b/src/GF/Compile/Rebuild.hs
index 06f4b663e..152983b96 100644
--- a/src/GF/Compile/Rebuild.hs
+++ b/src/GF/Compile/Rebuild.hs
@@ -25,6 +25,8 @@ import GF.Infra.Ident
import GF.Infra.Modules
import GF.Data.Operations
+import Data.List (nub)
+
-- | rebuilding instance + interface, and "with" modules, prior to renaming.
-- AR 24/10/2003
rebuildModule :: [SourceModule] -> SourceModule -> Err SourceModule
@@ -58,7 +60,8 @@ rebuildModule ms mo@(i,mi) = do
_ -> return mi
-- add the instance opens to an incomplete module "with" instances
- ModWith mt stat ext me ops -> do
+ -- ModWith mt stat ext me ops -> do
+ ModWith (Module mt stat fs_ me ops_ js_) (ext,incl) ops -> do
let insts = [(inf,inst) | OQualif _ inf inst <- ops]
let infs = map fst insts
let stat' = ifNull MSComplete (const MSIncomplete)
@@ -66,12 +69,17 @@ rebuildModule ms mo@(i,mi) = do
testErr (stat' == MSComplete || stat == MSIncomplete)
("module" +++ prt i +++ "remains incomplete")
Module mt0 _ fs me' ops0 js <- lookupModMod gr ext
- let ops1 = ops ++ [o | o <- ops0, notElem (openedModule o) infs]
- ++ [oQualif i i | i <- map snd insts] ----
- ++ [oSimple i | i <- map snd insts] ----
- ---- ++ [oSimple ext] ---- to encode dependence
+ let ops1 = nub $
+ ops_ ++ -- N.B. js has been name-resolved already
+ ops ++ [o | o <- ops0, notElem (openedModule o) infs]
+ ++ [oQualif i i | i <- map snd insts] ----
+ ++ [oSimple i | i <- map snd insts] ----
+
--- check if me is incomplete
- return $ ModMod $ Module mt0 stat' fs me ops1 js
+ let fs1 = fs_ ++ fs -- new flags have priority
+ let js0 = [ci | ci@(c,_) <- tree2list js, isInherited incl c]
+ let js1 = buildTree (tree2list js_ ++ js0)
+ return $ ModMod $ Module mt0 stat' fs1 me ops1 js1
---- (mapTree (qualifInstanceInfo insts) js) -- not needed
_ -> return mi
diff --git a/src/GF/Infra/Modules.hs b/src/GF/Infra/Modules.hs
index edbddbd3c..b0fe1b0ba 100644
--- a/src/GF/Infra/Modules.hs
+++ b/src/GF/Infra/Modules.hs
@@ -58,7 +58,7 @@ data MGrammar i f a = MGrammar {modules :: [(i,ModInfo i f a)]}
data ModInfo i f a =
ModMainGrammar (MainGrammar i)
| ModMod (Module i f a)
- | ModWith (ModuleType i) ModuleStatus i [(i,MInclude i)] [OpenSpec i]
+ | ModWith (Module i f a) (i,MInclude i) [OpenSpec i]
deriving Show
data Module i f a = Module {
@@ -213,7 +213,8 @@ partOfGrammar gr (i,m) = MGrammar [mo | mo@(j,_) <- mods, elem j modsFor]
mods = modules gr
modsFor = case m of
ModMod n -> (i:) $ map openedModule $ allDepsModule gr n
- _ -> [i] ---- ModWith?
+ ---- ModWith n i os -> i : map openedModule os ++ partOfGrammar (ModMod n) ----
+ _ -> [i]
-- | all modules that a module extends, directly or indirectly
diff --git a/src/GF/Source/AbsGF.hs b/src/GF/Source/AbsGF.hs
index 1ffba4267..e6b389576 100644
--- a/src/GF/Source/AbsGF.hs
+++ b/src/GF/Source/AbsGF.hs
@@ -38,9 +38,12 @@ data ModType =
deriving (Eq,Ord,Show)
data ModBody =
- MBody Extend Opens [TopDef]
- | MWith Ident [Open]
- | MWithE [Included] Ident [Open]
+ MNoBody [Included]
+ | MWithBody Included [Open] Opens [TopDef]
+ | MWithEBody [Included] Included [Open] Opens [TopDef]
+ | MBody Extend Opens [TopDef]
+ | MWith Included [Open]
+ | MWithE [Included] Included [Open]
| MReuse Ident
| MUnion [Included]
deriving (Eq,Ord,Show)
diff --git a/src/GF/Source/GF.cf b/src/GF/Source/GF.cf
index f90499f52..9cb3faf66 100644
--- a/src/GF/Source/GF.cf
+++ b/src/GF/Source/GF.cf
@@ -43,9 +43,14 @@ MTConcrete. ModType ::= "concrete" Ident "of" Ident ;
MTInstance. ModType ::= "instance" Ident "of" Ident ;
MTTransfer. ModType ::= "transfer" Ident ":" Open "->" Open ;
-MBody. ModBody ::= Extend Opens "{" [TopDef] "}" ;
-MWith. ModBody ::= Ident "with" [Open] ;
-MWithE. ModBody ::= [Included] "**" Ident "with" [Open] ;
+
+MBody. ModBody ::= Extend Opens "{" [TopDef] "}" ;
+MNoBody. ModBody ::= [Included] ;
+MWith. ModBody ::= Included "with" [Open] ;
+MWithBody. ModBody ::= Included "with" [Open] "**" Opens "{" [TopDef] "}" ;
+MWithE. ModBody ::= [Included] "**" Included "with" [Open] ;
+MWithEBody. ModBody ::= [Included] "**" Included "with" [Open] "**" Opens "{" [TopDef] "}" ;
+
MReuse. ModBody ::= "reuse" Ident ; --%
MUnion. ModBody ::= "union" [Included] ;--%
diff --git a/src/GF/Source/ParGF.hs b/src/GF/Source/ParGF.hs
index d106d81a3..654889f60 100644
--- a/src/GF/Source/ParGF.hs
+++ b/src/GF/Source/ParGF.hs
@@ -1,17 +1,22 @@
{-# OPTIONS -fglasgow-exts -cpp #-}
+{-# OPTIONS -fno-warn-incomplete-patterns -fno-warn-overlapping-patterns #-}
module GF.Source.ParGF where --H
import GF.Source.AbsGF --H
import GF.Source.LexGF --H
import GF.Infra.Ident --H
import GF.Data.ErrM --H
+#if __GLASGOW_HASKELL__ >= 503
+import Data.Array
+#else
import Array
+#endif
#if __GLASGOW_HASKELL__ >= 503
import GHC.Exts
#else
import GlaExts
#endif
--- parser produced by Happy Version 1.15
+-- parser produced by Happy Version 1.16
newtype HappyAbsSyn = HappyAbsSyn (() -> ())
happyIn7 :: (Ident) -> (HappyAbsSyn )
@@ -526,21 +531,21 @@ happyOutTok x = unsafeCoerce# x
{-# INLINE happyOutTok #-}
happyActOffsets :: HappyAddr
-happyActOffsets = HappyA# "\x00\x00\x0f\x00\x0b\x05\x48\x01\xe1\x04\x00\x00\x17\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1e\x05\xb2\x01\x9f\x00\x11\x05\xd6\x04\x0e\x05\x00\x00\x22\x05\xdb\x04\x5e\x00\x44\x00\xdb\x04\x00\x00\x48\x01\x8a\x00\xdb\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x48\x01\x00\x00\x21\x05\xb2\x02\x16\x00\x20\x05\x1f\x05\x99\x02\x1d\x05\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x04\x00\x00\x09\x01\x0e\x00\xa8\x04\xc5\x04\x00\x00\xc0\x04\x86\x01\x0f\x05\x0d\x05\x0c\x05\xbf\x04\xbf\x04\xbf\x04\xbf\x04\xbf\x04\xbf\x04\x00\x00\x09\x01\x00\x00\x08\x05\x00\x00\x09\x01\x09\x01\x09\x01\xad\x07\x48\x01\x00\x00\x23\x02\xe5\x00\xfa\x00\xbc\x04\xac\x00\xac\x00\xfd\x04\x2f\x00\x02\x05\xc6\x04\xa9\x04\x3c\x00\x73\x00\xbb\x04\x00\x00\x00\x00\xe8\x04\xe5\x04\xfb\xff\x00\x00\xea\x04\xe6\x04\xd9\x04\xcb\x02\x80\x02\xdf\x04\x00\x00\x01\x03\xe2\x04\xd1\x04\x4b\x02\x93\x03\xd7\x04\xac\x00\x7d\x01\xac\x00\x7d\x01\x7d\x01\x7d\x01\xac\x00\xd4\x04\xc8\x04\x09\x00\x32\x02\x00\x00\x89\x04\x00\x00\x00\x00\x87\x04\x86\x04\x00\x00\x19\x02\x19\x02\x19\x02\x00\x00\x19\x02\xc1\x02\x00\x00\x00\x00\x00\x00\x00\x00\x86\x04\x86\x04\xca\x04\xac\x00\x00\x00\x00\x00\xe4\x01\xc1\x04\x85\x04\x00\x00\x00\x00\xac\x00\xac\x00\xa4\x04\xac\x00\xfb\xff\xba\x04\xad\x04\x00\x00\x00\x00\x00\x00\x73\x00\xb4\x04\xb9\x04\xb5\x04\x6b\x04\xe5\x00\xe5\x00\x00\x00\x00\x00\xb2\x04\xac\x00\x69\x04\xac\x00\xac\x00\xb3\x04\xa1\x04\xa0\x04\x91\x04\x00\x03\x8a\x04\x00\x00\x20\x03\x9e\x04\x99\x04\x73\x00\xe5\x00\xac\x00\x97\x04\x00\x00\x89\x00\x4e\x04\x6a\x00\x4e\x04\x4e\x04\x6a\x00\x6a\x00\x6a\x00\x6a\x00\x6a\x00\x4e\x04\x4e\x04\x6a\x00\xbb\x00\x4e\x04\x6a\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x09\x01\x00\x00\x92\x04\x00\x00\x00\x00\x66\x04\x60\x04\x00\x00\xfc\xff\x84\x04\x62\x04\x37\x00\x00\x00\x43\x04\x63\x04\x61\x04\x1e\x04\x1e\x04\x1e\x04\x1e\x04\x27\x00\x00\x00\x00\x00\x5f\x04\x00\x00\x03\x01\x20\x00\x12\x04\x00\x00\x4f\x04\x32\x04\x00\x00\x45\x04\x47\x04\x6a\x00\x6a\x00\x00\x00\x40\x04\x31\x04\x00\x00\x2f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x2e\x04\x00\x00\x29\x04\x2b\x04\x16\x04\x00\x00\x00\x00\x42\x01\x15\x04\x00\x00\x00\x00\x00\x00\x13\x04\x00\x00\xc9\x03\x00\x00\x07\x04\xb5\x00\xf9\x03\x00\x00\x00\x00\x97\x00\x97\x00\x97\x00\xac\x00\x00\x00\x00\x00\xbf\x03\x73\x00\x00\x00\xac\x00\xac\x00\xfa\x03\x00\x00\x00\x00\x00\x00\xcd\x03\x83\x01\xe8\x03\xdc\x03\xd1\x01\xda\x01\xef\x03\xed\x03\xdd\x03\x00\x00\x73\x00\xac\x00\x00\x00\x94\x03\x97\x00\x00\x00\x00\x00\xac\x00\xcc\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd2\x03\x00\x00\xd5\x03\x00\x00\xcf\x03\x00\x00\xae\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc8\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x97\x00\x00\x00\x00\x00\x00\x00\x97\x00\xac\x00\xac\x00\xab\x03\xc6\x03\xc2\x03\x00\x00\x00\x00\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4d\x00\xcb\x01\x78\x03\x78\x03\x78\x03\x78\x03\xac\x00\x78\x03\xbd\x03\x72\x03\x26\x00\x00\x00\x00\x00\xac\x00\x25\x00\x25\x00\x00\x00\xb1\x03\xac\x00\xac\x00\xb6\x03\x25\x00\x00\x00\xa2\x03\x75\x02\x00\x00\x00\x00\x56\x02\x00\x00\x00\x00\x60\x03\x60\x03\xa6\x03\xfd\xff\x5c\x03\x9a\x03\xfd\xff\xa0\x03\x53\x03\x00\x00\x8c\x03\x45\x03\x8d\x03\x62\x03\x00\x00\x44\x03\x00\x00\x41\x03\x00\x00\x00\x00\xfd\xff\x00\x00\xac\x00\x8a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x00\x00\x51\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x03\x6d\x03\x00\x00\x79\x03\x00\x00\x00\x00\x00\x00\x5e\x00\x00\x00\x18\x00\x00\x00\x00\x00\xac\x00\xac\x00\x00\x00\x00\x00\x00\x00\x83\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x03\x66\x03\x17\x03\x17\x03\x85\x03\x17\x03\x17\x03\xcb\x01\xac\x00\x00\x00\x00\x00\x5a\x01\xfd\xff\x5e\x03\x00\x00\x00\x00\x55\x03\xfd\xff\x5f\x03\x13\x03\x00\x00\x00\x00\x00\x00\x00\x00\x13\x03\x00\x00\x00\x00\x00\x00\x43\x03\x47\x03\x00\x00\x00\x00\xac\x00\xf9\x02\x3a\x03\x33\x03\x00\x00\x00\x00\x32\x03\x34\x03\x31\x03\x29\x03\x00\x00\xc0\x02\xc0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x22\x03\x00\x00\xb7\x02\xf3\xff\xfd\xff\xfd\xff\x07\x03\xf5\x02\x00\x00\x00\x00\x00\x00"#
+happyActOffsets = HappyA# "\x00\x00\x76\x01\x41\x05\x48\x01\x23\x05\x00\x00\x59\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5e\x05\xb2\x01\x7e\x00\x53\x05\x18\x05\x43\x05\x00\x00\x5f\x05\x1c\x05\x5e\x00\x3c\x00\x1c\x05\x00\x00\x48\x01\xa0\x00\x1c\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x48\x01\x00\x00\x56\x05\xb2\x02\x16\x00\x55\x05\x52\x05\x99\x02\x51\x05\x00\x00\x00\x00\x00\x00\x00\x00\x05\x05\x00\x00\x09\x01\x0e\x00\xf0\x04\x07\x05\x00\x00\x04\x05\xf1\xff\x50\x05\x4e\x05\x4c\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03\x05\x00\x00\x09\x01\x00\x00\x4b\x05\x00\x00\x09\x01\x09\x01\x09\x01\xe0\x07\x48\x01\x00\x00\x15\x00\xe5\x00\xfa\x00\xff\x04\xac\x00\xac\x00\x34\x05\xb1\x01\x3c\x05\x0e\x05\xef\x04\x34\x00\x73\x00\x02\x05\x00\x00\x00\x00\x2f\x05\x30\x05\x29\x00\x00\x00\x2e\x05\x2a\x05\x20\x05\x53\x02\x80\x02\x24\x05\x00\x00\x59\x03\x1d\x05\x19\x05\x4b\x02\xda\x01\x1b\x05\xac\x00\x7d\x01\xac\x00\x7d\x01\x7d\x01\x7d\x01\xac\x00\x1a\x05\x10\x05\x09\x00\x32\x02\x00\x00\xce\x04\x00\x00\x00\x00\xcf\x04\xcd\x04\x00\x00\x19\x02\x19\x02\x19\x02\x00\x00\x19\x02\xc1\x02\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x04\xcd\x04\x12\x05\xac\x00\x00\x00\x00\x00\xe4\x01\x09\x05\xb9\x04\x00\x00\x00\x00\xac\x00\xac\x00\xec\x04\xac\x00\x29\x00\x01\x05\xf5\x04\x00\x00\x00\x00\x00\x00\x73\x00\xfa\x04\x00\x05\xfb\x04\xb2\x04\xe5\x00\xe5\x00\x00\x00\x00\x00\xf9\x04\xac\x00\xb0\x04\xac\x00\xac\x00\xeb\x04\xe9\x04\xe4\x04\xd9\x04\x00\x03\xd1\x04\x00\x00\x20\x03\xe5\x04\xe1\x04\x73\x00\xe5\x00\xac\x00\xdf\x04\x00\x00\x9d\x00\x94\x04\x94\x00\x94\x04\x94\x04\x94\x00\x94\x00\x94\x00\x94\x00\x94\x00\x94\x04\x94\x04\x94\x00\xbb\x00\x94\x04\x94\x00\x94\x00\x00\x00\x00\x00\x00\x00\x09\x01\x00\x00\xc7\x04\x00\x00\x00\x00\xaa\x04\x97\x04\x00\x00\x59\x00\xc4\x04\xa2\x04\x33\x02\x00\x00\xa8\x04\xbc\x04\x8d\x00\x78\x04\x78\x04\x78\x04\x78\x04\x27\x00\x00\x00\x00\x00\xb3\x04\x00\x00\x03\x01\x2f\x00\x67\x04\x00\x00\xb1\x04\xa7\x04\x00\x00\x9c\x04\x96\x04\x4d\x00\x4d\x00\x00\x00\x95\x04\x8e\x04\x00\x00\x8f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8d\x04\x00\x00\x86\x04\x8a\x04\x89\x04\x00\x00\x00\x00\xd6\x01\x7a\x04\x00\x00\x00\x00\x00\x00\x79\x04\x00\x00\x2d\x04\x00\x00\x6c\x04\xb5\x00\x73\x04\x00\x00\x00\x00\x97\x00\x97\x00\x97\x00\xac\x00\x00\x00\x00\x00\x29\x04\x73\x00\x00\x00\xac\x00\xac\x00\x5d\x04\x00\x00\x00\x00\x00\x00\x30\x04\x18\x01\x53\x04\x49\x04\x17\x02\xf3\x01\x51\x04\x5a\x04\x52\x04\x00\x00\x73\x00\xac\x00\x00\x00\xf8\x03\x97\x00\x00\x00\x00\x00\xac\x00\x32\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4f\x04\x00\x00\x3f\x04\x00\x00\x36\x04\x00\x00\x8f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x33\x04\x00\x00\x00\x00\x00\x00\x00\x00\xea\x03\x97\x00\x00\x00\x00\x00\x00\x00\x97\x00\xac\x00\xac\x00\x1c\x04\x28\x04\x1a\x04\x00\x00\x00\x00\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x25\x00\xcb\x01\xd4\x03\xd4\x03\xd4\x03\xd4\x03\xac\x00\xd4\x03\x19\x04\xd1\x03\x26\x00\x00\x00\x00\x00\xac\x00\x0f\x00\x0f\x00\x00\x00\x0f\x04\xac\x00\xac\x00\x12\x04\x0f\x00\x00\x00\x04\x04\x5d\x00\x00\x00\x00\x00\x00\x00\xfe\x03\x00\x00\xba\x03\xfd\xff\xba\x03\x02\x04\xfd\xff\xac\x03\xe9\x03\xf0\x03\xa5\x03\xa5\x03\xe4\x03\xc1\x03\xe3\x03\x00\x00\x9d\x03\xd8\x03\x00\x00\x9b\x03\x00\x00\x00\x00\xfd\xff\x00\x00\xac\x00\xd2\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc5\x03\xb1\x03\x00\x00\xb4\x03\x00\x00\x00\x00\x00\x00\x5e\x00\x00\x00\x18\x00\x00\x00\x00\x00\xac\x00\xac\x00\x00\x00\x00\x00\x00\x00\x18\x01\x00\x00\x00\x00\x00\x00\x00\x00\xb2\x03\x9e\x03\x60\x03\x60\x03\xcd\x03\x60\x03\x60\x03\xcb\x01\xac\x00\x00\x00\x00\x00\xeb\x00\x69\x03\xfd\xff\xa6\x03\xfd\xff\x00\x00\x00\x00\x95\x03\x8f\x03\x51\x03\x00\x00\x00\x00\x00\x00\x96\x03\x94\x03\x4a\x03\x00\x00\x00\x00\x00\x00\x89\x03\x8b\x03\x00\x00\x00\x00\xac\x00\x44\x03\x87\x03\x75\x03\x00\x00\x00\x00\x5b\x03\x00\x00\x43\x03\x5d\x03\x48\x03\x42\x03\x00\x00\xfc\x02\xfc\x02\x3b\x03\x85\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x34\x03\x5e\x03\x00\x00\x00\x00\xf2\x02\xa7\x00\xfd\xff\xfd\xff\x30\x03\x2c\x03\x00\x00\x00\x00\x00\x00"#
happyGotoOffsets :: HappyAddr
-happyGotoOffsets = HappyA# "\x1e\x01\xc4\x02\xde\x00\x09\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4d\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x03\xce\x03\x3e\x02\xfa\x02\x00\x00\x3f\x03\x46\x00\xf7\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x06\x00\x00\x00\x00\x81\x04\xdf\x01\x00\x00\x00\x00\x4a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe7\x02\x04\x00\x00\x00\xe8\x02\xed\x02\x00\x00\x00\x00\xd9\x00\x00\x00\x00\x00\x00\x00\xec\x02\xeb\x02\xe3\x02\xc9\x02\xb6\x02\x7d\x02\x00\x00\x0c\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x08\x00\x07\x00\x7c\x02\x3d\x04\x00\x00\x00\x00\x1c\x03\xd2\x06\x72\x02\x21\x04\xb6\x06\x00\x00\x00\x00\x00\x00\x00\x00\x90\x01\x73\x02\x3f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf6\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x04\x00\x00\x00\x00\x9b\x06\x24\x07\x7f\x06\x42\x07\x33\x07\x46\x02\x64\x06\x00\x00\x00\x00\x2d\x00\xf8\x01\x00\x00\x56\x01\x00\x00\x00\x00\x22\x02\x4e\x01\x00\x00\x50\x03\x50\x03\x50\x03\x00\x00\x50\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11\x01\x64\x02\x00\x00\x48\x06\x00\x00\x00\x00\xda\x03\x00\x00\x45\x02\x00\x00\x00\x00\x28\x03\x2d\x06\x00\x00\x11\x06\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x77\x03\x00\x00\x00\x00\x00\x00\xd3\x00\x44\x04\x79\x02\x00\x00\x00\x00\x00\x00\xf6\x05\x30\x01\xda\x05\xbf\x05\x00\x00\x00\x00\x00\x00\x00\x00\x67\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8c\x02\xa8\x01\x05\x04\x00\x00\x00\x00\x70\x02\xa9\x07\x9f\x07\x74\x02\x4b\x07\x92\x07\x8e\x07\x85\x07\x81\x07\x79\x07\x3f\x02\x7a\x01\x75\x07\x6e\x07\x27\x02\x67\x07\x18\x03\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf6\x04\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x02\x00\x00\x00\x00\x11\x02\xb1\x02\x08\x02\xfd\x01\x93\x02\x00\x00\x00\x00\x00\x00\x00\x00\x86\x02\x00\x00\xf7\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5b\x07\x40\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xbc\x01\x00\x00\x00\x00\xd9\x01\x00\x00\x00\x00\x1f\x02\x00\x00\x00\x00\x00\x00\x29\x01\xd4\x03\xac\x01\xa3\x05\x00\x00\x00\x00\xb9\x01\xdb\x00\x00\x00\xe9\x03\xf0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4b\x00\x88\x05\x00\x00\xa7\x01\x32\x00\x00\x00\x00\x00\x6c\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x28\x04\x00\x00\x00\x00\x00\x00\x12\x02\x51\x05\x35\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x35\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x37\x01\xd2\x00\x11\x00\x09\x02\xf2\x01\xa6\x01\xa4\x01\x1a\x05\xee\x02\x00\x00\x1e\x00\x54\x01\x00\x00\x00\x00\xfe\x04\xf4\x00\x31\x07\x00\x00\x00\x00\xe3\x04\xc7\x04\x00\x00\xe4\x02\x00\x00\x00\x00\x6e\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x16\x02\xa3\x01\x00\x00\x5e\x02\x10\x01\x00\x00\x4f\x02\x00\x00\x6c\x01\x00\x00\x00\x00\xc8\x00\x00\x00\x00\x00\x68\x01\x00\x00\x00\x00\x5d\x01\x00\x00\x00\x00\x27\x01\x00\x00\xac\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd7\xff\x00\x00\x00\x00\x00\x00\x00\x00\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb2\x03\x00\x00\x11\x00\x00\x00\x00\x00\xac\x02\x90\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x93\x01\xf1\x00\xf0\x00\xee\x00\x45\x01\x11\x00\x75\x04\x00\x00\x00\x00\x00\x00\xb4\x01\xc0\x00\x00\x00\x00\x00\x00\x00\x8d\x00\x00\x00\x8f\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x59\x04\x9a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x17\x00\xd8\x00\x00\x00\x00\x00\x00\x00\x0d\x00\x00\x00\x00\x00\xaf\x00\x00\x00\x00\x00\x00\x00\x93\x00\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"#
+happyGotoOffsets = HappyA# "\x6c\x02\x9f\x00\xd6\xff\x51\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x95\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x03\x16\x04\xc5\x01\x27\x03\x00\x00\x3f\x03\x74\x00\x15\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x35\x07\x00\x00\x00\x00\xc9\x04\xdf\x01\x00\x00\x00\x00\x92\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1e\x03\x04\x00\x00\x00\xff\x02\x08\x03\x00\x00\x00\x00\x1b\x00\x00\x00\x00\x00\x00\x00\xfd\x02\xfb\x02\xf7\x02\xf6\x02\xf5\x02\xec\x02\x00\x00\x0c\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x08\x00\x07\x00\xd2\x02\x85\x04\x00\x00\x00\x00\x1c\x03\x1a\x07\xcb\x02\x69\x04\xfe\x06\x00\x00\x00\x00\x00\x00\x00\x00\x90\x01\xd6\x02\x3f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3e\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xad\x04\x00\x00\x00\x00\xe3\x06\x6c\x07\xc7\x06\x8a\x07\x7b\x07\x46\x02\xac\x06\x00\x00\x00\x00\x2d\x00\xf8\x01\x00\x00\x56\x01\x00\x00\x00\x00\xc6\x02\x4e\x01\x00\x00\x50\x03\x50\x03\x50\x03\x00\x00\x50\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x01\xb6\x02\x00\x00\x90\x06\x00\x00\x00\x00\x22\x04\x00\x00\xb1\x02\x00\x00\x00\x00\x28\x03\x75\x06\x00\x00\x59\x06\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x77\x03\x00\x00\x00\x00\x00\x00\x21\x01\x70\x04\x79\x02\x00\x00\x00\x00\x00\x00\x3e\x06\x30\x01\x22\x06\x07\x06\x00\x00\x00\x00\x00\x00\x00\x00\x67\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8c\x02\xa8\x01\x4d\x04\x00\x00\x00\x00\xc9\x02\x8d\x03\xe4\x07\xb0\x00\x99\x03\xd7\x07\xd1\x07\xc9\x07\xc7\x07\xc4\x07\xa7\x02\xb0\x01\xb6\x07\xae\x07\x96\x02\xa8\x07\x18\x03\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11\x04\x00\x00\x00\x00\x00\x00\x00\x00\x83\x02\x00\x00\x00\x00\x93\x02\x5e\x02\x7d\x02\x6f\x02\x10\x01\x00\x00\x00\x00\x00\x00\x00\x00\x86\x02\x00\x00\x45\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x07\x79\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x15\x02\x00\x00\x00\x00\x3f\x02\x00\x00\x00\x00\x1f\x02\x00\x00\x00\x00\x00\x00\x29\x01\xc6\x03\xac\x01\xeb\x05\x00\x00\x00\x00\x27\x02\xdb\x00\x00\x00\x31\x04\xf0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4b\x00\xd0\x05\x00\x00\x23\x02\x32\x00\x00\x00\x00\x00\xb4\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd3\x00\xd5\x03\x00\x00\x00\x00\x00\x00\x12\x02\x99\x05\x7d\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x35\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc2\x01\x70\x02\x11\x00\x09\x02\xf2\x01\x1c\x00\x08\x02\x62\x05\xee\x02\x00\x00\x92\x01\x7a\x01\x00\x00\x00\x00\x46\x05\x0e\x01\xbd\x03\x00\x00\x00\x00\x2b\x05\x0f\x05\x00\x00\xe4\x02\x00\x00\x00\x00\xf6\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x16\x02\xfa\x02\x17\x00\x00\x00\xc8\x02\x11\x01\x00\x00\x00\x00\xd9\x01\x1f\x00\x00\x00\x00\x00\x00\x00\xb9\x01\x00\x00\x00\x00\x00\x00\xb6\x01\x00\x00\x00\x00\xf6\x00\x00\x00\xf4\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x58\x01\x00\x00\x00\x00\x00\x00\x00\x00\x77\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfa\x03\x00\x00\x11\x00\x00\x00\x00\x00\xac\x02\xd8\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd6\x00\x83\x01\x5e\x01\x6c\x01\x54\x01\x11\x00\xbd\x04\x00\x00\x00\x00\x00\x00\x53\x01\x4f\x02\x43\x01\xa1\x01\x00\x00\x00\x00\x00\x00\x00\x00\x76\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x45\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa1\x04\x1f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xdf\x00\xb2\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9d\x02\x24\x01\x00\x00\x9b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x30\x00\x93\x00\x00\x00\x00\x00\x0a\x00\x23\x00\x00\x00\x00\x00\x00\x00\x00\x00\x90\x00\x3d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"#
happyDefActions :: HappyAddr
-happyDefActions = HappyA# "\xf5\xff\xd0\xff\x09\xff\x00\x00\x00\x00\xfb\xff\x80\xff\x7b\xff\x7c\xff\x7a\xff\x6f\xff\x6b\xff\x61\xff\x5c\xff\x4e\xff\x4f\xff\x00\x00\x5a\xff\x7d\xff\x00\x00\x83\xff\x26\xff\x00\x00\x00\x00\x79\xff\x1f\xff\x26\xff\x00\x00\x31\xff\x2f\xff\x2e\xff\x30\xff\x32\xff\x00\x00\x77\xff\x00\x00\x00\x00\x83\xff\x00\x00\x00\x00\x00\x00\x00\x00\xfa\xff\xf9\xff\xf8\xff\xf7\xff\x00\x00\xdc\xff\x00\x00\x00\x00\x00\x00\x00\x00\xcf\xff\x00\x00\xd0\xff\xf4\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf3\xff\x06\xff\x07\xff\x00\x00\x08\xff\x00\x00\x00\x00\x00\x00\x0a\xff\x4d\xff\x80\xff\x00\x00\x83\xff\x00\x00\x00\x00\x4d\xff\x00\x00\x8c\xff\x00\x00\x82\xff\x00\x00\x83\xff\x00\x00\x15\xff\x00\x00\x60\xff\x28\xff\x25\xff\x00\x00\x26\xff\x27\xff\x21\xff\x1e\xff\x00\x00\x00\x00\x4a\xff\x00\x00\x78\xff\x80\xff\x00\x00\x00\x00\x00\x00\x8c\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\xff\x00\x00\x00\x00\x62\xff\x83\xff\x34\xff\x6e\xff\x00\x00\x83\xff\x55\xff\x5e\xff\x5f\xff\x5d\xff\x59\xff\x5c\xff\x4e\xff\x5b\xff\x56\xff\x74\xff\x7f\xff\x00\x00\x00\x00\x80\xff\x00\x00\x70\xff\x75\xff\x4a\xff\x00\x00\x00\x00\x7e\xff\x73\xff\x1f\xff\x00\x00\x00\x00\x00\x00\x26\xff\x00\x00\x47\xff\x44\xff\x42\xff\x43\xff\x2a\xff\x00\x00\x14\xff\x00\x00\x2d\xff\x00\x00\x1c\xff\x48\xff\x50\xff\x00\x00\x00\x00\x83\xff\x00\x00\x00\x00\x00\x00\x4c\xff\x00\x00\x00\x00\x8c\xff\x39\xff\x36\xff\x00\x00\x18\xff\x00\x00\x00\x00\x00\x00\x4d\xff\x00\x00\xdb\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\xff\x04\xff\x03\xff\x01\xff\x02\xff\x00\x00\xe6\xff\xe5\xff\x00\x00\x00\x00\xe7\xff\xd9\xff\x00\x00\x00\x00\xc8\xff\xf1\xff\xd5\xff\x00\x00\xca\xff\x00\x00\xcb\xff\x00\x00\x00\x00\x00\x00\x00\xff\x8a\xff\x00\x00\xaf\xff\x88\xff\x00\x00\x00\x00\xbc\xff\x00\x00\x00\x00\xb3\xff\x88\xff\x00\x00\x00\x00\x00\x00\xb1\xff\xa1\xff\x00\x00\xbb\xff\x00\x00\xba\xff\xb2\xff\xb8\xff\xb9\xff\xb7\xff\x00\x00\xc0\xff\x00\x00\x00\x00\x00\x00\xb4\xff\xbe\xff\x8c\xff\x00\x00\xbf\xff\xbd\xff\x0c\xff\x00\x00\xc1\xff\x00\x00\x65\xff\x00\x00\x47\xff\x00\x00\x3a\xff\x69\xff\x00\x00\x00\x00\x00\x00\x00\x00\x3c\xff\x3e\xff\x00\x00\x00\x00\x63\xff\x4d\xff\x11\xff\x86\xff\x85\xff\x81\xff\x53\xff\x00\x00\x20\xff\x1b\xff\x00\x00\x00\x00\x8c\xff\x00\x00\x2c\xff\x00\x00\x51\xff\x15\xff\x00\x00\x29\xff\x00\x00\x00\x00\x24\xff\x58\xff\x00\x00\x00\x00\x21\xff\x1d\xff\x6c\xff\x76\xff\x49\xff\x00\x00\x72\xff\x00\x00\x8b\xff\x00\x00\x33\xff\x8c\xff\x52\xff\x6d\xff\x23\xff\x71\xff\x57\xff\x00\x00\x45\xff\x16\xff\x13\xff\x41\xff\x2d\xff\x00\x00\x46\xff\x3f\xff\x40\xff\x1c\xff\x00\x00\x00\x00\x00\x00\x10\xff\x00\x00\x4b\xff\x3b\xff\x45\xff\x19\xff\x37\xff\x38\xff\x17\xff\x68\xff\x67\xff\x0c\xff\x9b\xff\xad\xff\x97\xff\xa6\xff\x91\xff\x00\x00\x00\x00\x99\xff\x00\x00\x95\xff\x8f\xff\xb5\xff\xb6\xff\x00\x00\x00\x00\x93\xff\xae\xff\x00\x00\x00\x00\x00\x00\x00\x00\x9d\xff\xd3\xff\x00\x00\xce\xff\xe3\xff\xe4\xff\xc8\xff\xdd\xff\xde\xff\xcb\xff\xda\xff\x00\x00\xd8\xff\x00\x00\x00\x00\xd8\xff\x00\x00\x00\x00\xe0\xff\xd7\xff\x00\x00\x00\x00\x00\x00\xdc\xff\x00\x00\xc9\xff\x00\x00\xcd\xff\xcc\xff\x00\x00\x9c\xff\x00\x00\xc5\xff\xc4\xff\x89\xff\x92\xff\x87\xff\x9f\xff\x0c\xff\x8e\xff\xa3\xff\x00\x00\x94\xff\xdc\xff\x98\xff\xaa\xff\x9e\xff\x90\xff\xa8\xff\xa5\xff\xa9\xff\x00\x00\x96\xff\x0d\xff\x0b\xff\x26\xff\x9a\xff\x00\x00\x3d\xff\x64\xff\x11\xff\x00\x00\x84\xff\x54\xff\x1a\xff\x35\xff\x2b\xff\x66\xff\x12\xff\x0f\xff\xac\xff\x00\x00\xa6\xff\x00\x00\x00\x00\x00\x00\x8f\xff\xa0\xff\x00\x00\xc3\xff\xe2\xff\x00\x00\xd8\xff\x00\x00\xd4\xff\xc7\xff\x00\x00\xd8\xff\x00\x00\xef\xff\xd6\xff\xc6\xff\xe1\xff\xdf\xff\x00\x00\xd2\xff\xc2\xff\x8d\xff\x00\x00\x00\x00\xa7\xff\xa4\xff\x00\x00\x00\x00\x00\x00\x00\x00\xb0\xff\xa2\xff\x00\x00\x00\x00\xee\xff\x00\x00\xf2\xff\xef\xff\x00\x00\xd1\xff\x0e\xff\xab\xff\xeb\xff\xf0\xff\xed\xff\xec\xff\xea\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe9\xff\xe8\xff"#
+happyDefActions = HappyA# "\xf5\xff\xcd\xff\x06\xff\x00\x00\x00\x00\xfb\xff\x7d\xff\x78\xff\x79\xff\x77\xff\x6c\xff\x68\xff\x5e\xff\x59\xff\x4b\xff\x4c\xff\x00\x00\x57\xff\x7a\xff\x00\x00\x80\xff\x23\xff\x00\x00\x00\x00\x76\xff\x1c\xff\x23\xff\x00\x00\x2e\xff\x2c\xff\x2b\xff\x2d\xff\x2f\xff\x00\x00\x74\xff\x00\x00\x00\x00\x80\xff\x00\x00\x00\x00\x00\x00\x00\x00\xfa\xff\xf9\xff\xf8\xff\xf7\xff\x00\x00\xd9\xff\x00\x00\x00\x00\x00\x00\x00\x00\xcc\xff\x00\x00\xcd\xff\xf4\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf3\xff\x03\xff\x04\xff\x00\x00\x05\xff\x00\x00\x00\x00\x00\x00\x07\xff\x4a\xff\x7d\xff\x00\x00\x80\xff\x00\x00\x00\x00\x4a\xff\x00\x00\x89\xff\x00\x00\x7f\xff\x00\x00\x80\xff\x00\x00\x12\xff\x00\x00\x5d\xff\x25\xff\x22\xff\x00\x00\x23\xff\x24\xff\x1e\xff\x1b\xff\x00\x00\x00\x00\x47\xff\x00\x00\x75\xff\x7d\xff\x00\x00\x00\x00\x00\x00\x89\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x67\xff\x00\x00\x00\x00\x5f\xff\x80\xff\x31\xff\x6b\xff\x00\x00\x80\xff\x52\xff\x5b\xff\x5c\xff\x5a\xff\x56\xff\x59\xff\x4b\xff\x58\xff\x53\xff\x71\xff\x7c\xff\x00\x00\x00\x00\x7d\xff\x00\x00\x6d\xff\x72\xff\x47\xff\x00\x00\x00\x00\x7b\xff\x70\xff\x1c\xff\x00\x00\x00\x00\x00\x00\x23\xff\x00\x00\x44\xff\x41\xff\x3f\xff\x40\xff\x27\xff\x00\x00\x11\xff\x00\x00\x2a\xff\x00\x00\x19\xff\x45\xff\x4d\xff\x00\x00\x00\x00\x80\xff\x00\x00\x00\x00\x00\x00\x49\xff\x00\x00\x00\x00\x89\xff\x36\xff\x33\xff\x00\x00\x15\xff\x00\x00\x00\x00\x00\x00\x4a\xff\x00\x00\xd8\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xff\x01\xff\x00\xff\xfe\xfe\xff\xfe\x00\x00\xe6\xff\xe5\xff\x00\x00\x00\x00\xe7\xff\xc8\xff\x00\x00\x00\x00\xc5\xff\xf1\xff\xd2\xff\xe1\xff\xc7\xff\x00\x00\xc8\xff\x00\x00\x00\x00\x00\x00\xfd\xfe\x87\xff\x00\x00\xac\xff\x85\xff\x00\x00\x00\x00\xb9\xff\x00\x00\x00\x00\xb0\xff\x85\xff\x00\x00\x00\x00\x00\x00\xae\xff\x9e\xff\x00\x00\xb8\xff\x00\x00\xb7\xff\xaf\xff\xb5\xff\xb6\xff\xb4\xff\x00\x00\xbd\xff\x00\x00\x00\x00\x00\x00\xb1\xff\xbb\xff\x89\xff\x00\x00\xbc\xff\xba\xff\x09\xff\x00\x00\xbe\xff\x00\x00\x62\xff\x00\x00\x44\xff\x00\x00\x37\xff\x66\xff\x00\x00\x00\x00\x00\x00\x00\x00\x39\xff\x3b\xff\x00\x00\x00\x00\x60\xff\x4a\xff\x0e\xff\x83\xff\x82\xff\x7e\xff\x50\xff\x00\x00\x1d\xff\x18\xff\x00\x00\x00\x00\x89\xff\x00\x00\x29\xff\x00\x00\x4e\xff\x12\xff\x00\x00\x26\xff\x00\x00\x00\x00\x21\xff\x55\xff\x00\x00\x00\x00\x1e\xff\x1a\xff\x69\xff\x73\xff\x46\xff\x00\x00\x6f\xff\x00\x00\x88\xff\x00\x00\x30\xff\x89\xff\x4f\xff\x6a\xff\x20\xff\x6e\xff\x54\xff\x00\x00\x42\xff\x13\xff\x10\xff\x3e\xff\x2a\xff\x00\x00\x43\xff\x3c\xff\x3d\xff\x19\xff\x00\x00\x00\x00\x00\x00\x0d\xff\x00\x00\x48\xff\x38\xff\x42\xff\x16\xff\x34\xff\x35\xff\x14\xff\x65\xff\x64\xff\x09\xff\x98\xff\xaa\xff\x94\xff\xa3\xff\x8e\xff\x00\x00\x00\x00\x96\xff\x00\x00\x92\xff\x8c\xff\xb2\xff\xb3\xff\x00\x00\x00\x00\x90\xff\xab\xff\x00\x00\x00\x00\x00\x00\x00\x00\x9a\xff\xd0\xff\x00\x00\xcb\xff\xe3\xff\xe4\xff\xda\xff\xc7\xff\xdb\xff\xc8\xff\xd5\xff\xd7\xff\x00\x00\xd5\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd4\xff\xd9\xff\x00\x00\xdd\xff\xc6\xff\x00\x00\xca\xff\xc9\xff\x00\x00\x99\xff\x00\x00\xc2\xff\xc1\xff\x86\xff\x8f\xff\x84\xff\x9c\xff\x09\xff\x8b\xff\xa0\xff\x00\x00\x91\xff\xd9\xff\x95\xff\xa7\xff\x9b\xff\x8d\xff\xa5\xff\xa2\xff\xa6\xff\x00\x00\x93\xff\x0a\xff\x08\xff\x23\xff\x97\xff\x00\x00\x3a\xff\x61\xff\x0e\xff\x00\x00\x81\xff\x51\xff\x17\xff\x32\xff\x28\xff\x63\xff\x0f\xff\x0c\xff\xa9\xff\x00\x00\xa3\xff\x00\x00\x00\x00\x00\x00\x8c\xff\x9d\xff\x00\x00\xc0\xff\xe2\xff\x00\x00\xd2\xff\xd5\xff\x00\x00\xd5\xff\xd1\xff\xc4\xff\x00\x00\x00\x00\xef\xff\xc3\xff\xd3\xff\xde\xff\xdc\xff\x00\x00\x00\x00\xcf\xff\xbf\xff\x8a\xff\x00\x00\x00\x00\xa4\xff\xa1\xff\x00\x00\x00\x00\x00\x00\x00\x00\xad\xff\x9f\xff\x00\x00\xd9\xff\xd2\xff\x00\x00\xee\xff\x00\x00\xf2\xff\xef\xff\x00\x00\x00\x00\x00\x00\xce\xff\x0b\xff\xa8\xff\xe0\xff\xd9\xff\xeb\xff\xf0\xff\xed\xff\xec\xff\x00\x00\xdf\xff\xea\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe9\xff\xe8\xff"#
happyCheck :: HappyAddr
-happyCheck = HappyA# "\xff\xff\x00\x00\x05\x00\x02\x00\x00\x00\x09\x00\x02\x00\x00\x00\x00\x00\x02\x00\x02\x00\x00\x00\x00\x00\x02\x00\x02\x00\x01\x00\x00\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x1b\x00\x00\x00\x0b\x00\x03\x00\x00\x00\x03\x00\x00\x00\x05\x00\x00\x00\x08\x00\x09\x00\x2e\x00\x02\x00\x0b\x00\x0c\x00\x1c\x00\x4f\x00\x07\x00\x10\x00\x11\x00\x12\x00\x05\x00\x05\x00\x00\x00\x3b\x00\x13\x00\x0b\x00\x02\x00\x00\x00\x01\x00\x02\x00\x03\x00\x07\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x2d\x00\x1f\x00\x42\x00\x30\x00\x28\x00\x30\x00\x0b\x00\x47\x00\x0d\x00\x27\x00\x00\x00\x4c\x00\x4c\x00\x4c\x00\x0e\x00\x00\x00\x01\x00\x02\x00\x03\x00\x3e\x00\x0c\x00\x41\x00\x42\x00\x52\x00\x53\x00\x4c\x00\x52\x00\x53\x00\x0b\x00\x52\x00\x52\x00\x41\x00\x42\x00\x52\x00\x52\x00\x4e\x00\x52\x00\x03\x00\x4c\x00\x05\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x0b\x00\x3d\x00\x39\x00\x3a\x00\x3b\x00\x10\x00\x11\x00\x12\x00\x4c\x00\x4c\x00\x4c\x00\x00\x00\x0b\x00\x03\x00\x19\x00\x05\x00\x1b\x00\x48\x00\x49\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x4b\x00\x25\x00\x39\x00\x12\x00\x28\x00\x41\x00\x42\x00\x2b\x00\x4e\x00\x40\x00\x2e\x00\x00\x00\x1b\x00\x00\x00\x4c\x00\x33\x00\x4e\x00\x00\x00\x0b\x00\x4a\x00\x4b\x00\x08\x00\x09\x00\x4c\x00\x03\x00\x01\x00\x05\x00\x3f\x00\x11\x00\x2b\x00\x13\x00\x43\x00\x44\x00\x19\x00\x0d\x00\x1b\x00\x13\x00\x49\x00\x09\x00\x12\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x03\x00\x3c\x00\x05\x00\x1b\x00\x3f\x00\x15\x00\x16\x00\x4c\x00\x0b\x00\x03\x00\x1a\x00\x05\x00\x0c\x00\x10\x00\x11\x00\x12\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x0e\x00\x00\x00\x19\x00\x0b\x00\x12\x00\x00\x00\x14\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x1b\x00\x25\x00\x00\x00\x00\x00\x28\x00\x4c\x00\x4c\x00\x2b\x00\x00\x00\x19\x00\x2e\x00\x00\x00\x01\x00\x02\x00\x03\x00\x33\x00\x07\x00\x26\x00\x0a\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x2c\x00\x03\x00\x4a\x00\x05\x00\x3f\x00\x1a\x00\x14\x00\x00\x00\x43\x00\x44\x00\x00\x00\x0d\x00\x2b\x00\x00\x00\x49\x00\x24\x00\x12\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x03\x00\x2b\x00\x05\x00\x1b\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x0b\x00\x03\x00\x4c\x00\x05\x00\x19\x00\x10\x00\x11\x00\x12\x00\x0a\x00\x0f\x00\x3c\x00\x00\x00\x00\x00\x3f\x00\x19\x00\x39\x00\x12\x00\x0d\x00\x0e\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x1b\x00\x25\x00\x2c\x00\x2d\x00\x28\x00\x05\x00\x06\x00\x2b\x00\x1d\x00\x00\x00\x2e\x00\x00\x00\x01\x00\x02\x00\x03\x00\x33\x00\x50\x00\x51\x00\x00\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x3f\x00\x13\x00\x2b\x00\x2b\x00\x43\x00\x44\x00\x00\x00\x01\x00\x02\x00\x03\x00\x49\x00\x02\x00\x00\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x03\x00\x0a\x00\x05\x00\x00\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x0b\x00\x00\x00\x4c\x00\x00\x00\x4e\x00\x10\x00\x11\x00\x12\x00\x2b\x00\x02\x00\x00\x00\x2e\x00\x2f\x00\x06\x00\x19\x00\x39\x00\x3a\x00\x3b\x00\x20\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x00\x00\x25\x00\x39\x00\x2a\x00\x28\x00\x48\x00\x49\x00\x2b\x00\x20\x00\x40\x00\x2e\x00\x0f\x00\x39\x00\x2b\x00\x00\x00\x33\x00\x2e\x00\x2f\x00\x2a\x00\x40\x00\x03\x00\x2b\x00\x05\x00\x15\x00\x2e\x00\x2f\x00\x4f\x00\x3f\x00\x0b\x00\x4a\x00\x4b\x00\x43\x00\x44\x00\x10\x00\x11\x00\x12\x00\x00\x00\x49\x00\x0f\x00\x00\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x1f\x00\x17\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x27\x00\x25\x00\x00\x00\x00\x00\x28\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x03\x00\x00\x00\x01\x00\x02\x00\x03\x00\x1d\x00\x1e\x00\x04\x00\x2d\x00\x00\x00\x03\x00\x30\x00\x05\x00\x0a\x00\x00\x00\x08\x00\x2b\x00\x3f\x00\x0b\x00\x2e\x00\x2f\x00\x43\x00\x44\x00\x10\x00\x11\x00\x12\x00\x11\x00\x49\x00\x13\x00\x22\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x03\x00\x29\x00\x05\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x0b\x00\x06\x00\x52\x00\x00\x00\x28\x00\x10\x00\x11\x00\x12\x00\x04\x00\x00\x00\x0f\x00\x39\x00\x3a\x00\x3b\x00\x0a\x00\x39\x00\x3a\x00\x03\x00\x17\x00\x05\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x0b\x00\x48\x00\x49\x00\x00\x00\x28\x00\x10\x00\x11\x00\x12\x00\x00\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x00\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x00\x00\x00\x00\x2b\x00\x4f\x00\x28\x00\x2e\x00\x2f\x00\x1d\x00\x1e\x00\x00\x00\x00\x00\x01\x00\x02\x00\x03\x00\x00\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x03\x00\x12\x00\x05\x00\x00\x00\x01\x00\x02\x00\x03\x00\x01\x00\x0b\x00\x1c\x00\x03\x00\x00\x00\x30\x00\x10\x00\x11\x00\x12\x00\x16\x00\x17\x00\x0b\x00\x26\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x03\x00\x3e\x00\x05\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x0b\x00\x00\x00\x00\x00\x02\x00\x28\x00\x10\x00\x11\x00\x12\x00\x00\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x39\x00\x3a\x00\x3b\x00\x03\x00\x00\x00\x05\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x0b\x00\x45\x00\x39\x00\x47\x00\x28\x00\x10\x00\x11\x00\x12\x00\x00\x00\x40\x00\x11\x00\x0b\x00\x13\x00\x0d\x00\x00\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x11\x00\x00\x00\x13\x00\x00\x00\x28\x00\x00\x00\x02\x00\x30\x00\x31\x00\x32\x00\x00\x00\x01\x00\x02\x00\x03\x00\x00\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x03\x00\x3e\x00\x05\x00\x00\x00\x01\x00\x02\x00\x03\x00\x1a\x00\x0b\x00\x00\x00\x01\x00\x02\x00\x03\x00\x10\x00\x11\x00\x12\x00\x00\x00\x24\x00\x19\x00\x22\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x03\x00\x29\x00\x05\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x0b\x00\x30\x00\x13\x00\x32\x00\x28\x00\x10\x00\x11\x00\x12\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x00\x00\x39\x00\x3a\x00\x3b\x00\x03\x00\x00\x00\x05\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x0b\x00\x45\x00\x39\x00\x47\x00\x28\x00\x10\x00\x11\x00\x12\x00\x39\x00\x40\x00\x16\x00\x17\x00\x00\x00\x09\x00\x07\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x15\x00\x16\x00\x14\x00\x0e\x00\x28\x00\x10\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x00\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x3e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x43\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x0d\x00\x0f\x00\x00\x00\x4c\x00\x4d\x00\x00\x00\x06\x00\x18\x00\x46\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x03\x00\x04\x00\x05\x00\x00\x00\x23\x00\x07\x00\x1b\x00\x0a\x00\x0a\x00\x4c\x00\x06\x00\x0e\x00\x0f\x00\x2c\x00\x2d\x00\x12\x00\x25\x00\x14\x00\x14\x00\x16\x00\x17\x00\x00\x00\x2b\x00\x1a\x00\x1b\x00\x00\x00\x01\x00\x02\x00\x03\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x05\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x04\x00\x3e\x00\x0f\x00\x18\x00\x2b\x00\x01\x00\x43\x00\x2e\x00\x2f\x00\x02\x00\x17\x00\x06\x00\x06\x00\x1a\x00\x23\x00\x4c\x00\x4d\x00\x04\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x2c\x00\x2d\x00\x4d\x00\x2b\x00\x01\x00\x06\x00\x2e\x00\x2f\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x39\x00\x3a\x00\x3b\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x4c\x00\x01\x00\x0c\x00\x04\x00\x4c\x00\x48\x00\x49\x00\x3e\x00\x00\x00\x01\x00\x02\x00\x03\x00\x43\x00\x44\x00\x07\x00\x46\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x03\x00\x00\x00\x01\x00\x02\x00\x03\x00\x02\x00\x0f\x00\x3e\x00\x0e\x00\x2e\x00\x30\x00\x31\x00\x43\x00\x44\x00\x26\x00\x46\x00\x28\x00\x29\x00\x2a\x00\x04\x00\x2c\x00\x0f\x00\x02\x00\x4c\x00\x3e\x00\x4b\x00\x2e\x00\x4c\x00\x34\x00\x35\x00\x36\x00\x37\x00\x0a\x00\x04\x00\x3a\x00\x0c\x00\x3c\x00\x3d\x00\x3e\x00\x0a\x00\x40\x00\x4c\x00\x39\x00\x0e\x00\x02\x00\x45\x00\x46\x00\x0b\x00\x48\x00\x40\x00\x4c\x00\x03\x00\x08\x00\x26\x00\x4c\x00\x28\x00\x29\x00\x2a\x00\x39\x00\x2c\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x40\x00\x02\x00\x34\x00\x35\x00\x36\x00\x37\x00\x0c\x00\x4c\x00\x3a\x00\x03\x00\x3c\x00\x3d\x00\x3e\x00\x4c\x00\x40\x00\x04\x00\x01\x00\x1d\x00\x4c\x00\x45\x00\x46\x00\x04\x00\x48\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x04\x00\x00\x00\x01\x00\x02\x00\x03\x00\x06\x00\x04\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x13\x00\x4c\x00\x04\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x01\x00\x13\x00\x3e\x00\x02\x00\x0a\x00\x41\x00\x42\x00\x43\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x2e\x00\x02\x00\x04\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x30\x00\x4c\x00\x3e\x00\x39\x00\x3a\x00\x41\x00\x42\x00\x43\x00\x38\x00\x0c\x00\x01\x00\x4c\x00\x01\x00\x01\x00\x3e\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x30\x00\x3e\x00\x00\x00\x01\x00\x02\x00\x03\x00\x43\x00\x02\x00\x38\x00\x01\x00\x07\x00\x02\x00\x01\x00\x01\x00\x3e\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x02\x00\x3e\x00\x00\x00\x01\x00\x02\x00\x03\x00\x43\x00\x02\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x0a\x00\x01\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x4c\x00\x3e\x00\x01\x00\x39\x00\x3a\x00\x3b\x00\x43\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x4c\x00\x0a\x00\x09\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x30\x00\x3e\x00\x39\x00\x39\x00\x3a\x00\x3b\x00\x43\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x24\x00\x03\x00\x3e\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x30\x00\x31\x00\x3e\x00\x38\x00\x07\x00\x4c\x00\x04\x00\x43\x00\x04\x00\x38\x00\x01\x00\x16\x00\x10\x00\x01\x00\x3e\x00\x04\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x30\x00\x31\x00\x3e\x00\x01\x00\x4c\x00\x04\x00\x4c\x00\x43\x00\x04\x00\x01\x00\x0e\x00\x08\x00\x03\x00\x1a\x00\x3e\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x24\x00\x0c\x00\x3e\x00\x27\x00\x06\x00\x4c\x00\x4c\x00\x43\x00\x4d\x00\x4c\x00\x0e\x00\x03\x00\x07\x00\x31\x00\x32\x00\x04\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x06\x00\x41\x00\x3e\x00\x0c\x00\x13\x00\x08\x00\x46\x00\x43\x00\x0a\x00\x07\x00\x0a\x00\x38\x00\x2e\x00\x4c\x00\x00\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x01\x00\x0e\x00\x3e\x00\x10\x00\x0a\x00\x4c\x00\x01\x00\x43\x00\x4c\x00\x16\x00\x17\x00\x02\x00\x02\x00\x01\x00\x4c\x00\x52\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x52\x00\x03\x00\x3e\x00\x03\x00\x03\x00\x03\x00\x17\x00\x43\x00\x4c\x00\x52\x00\x18\x00\x08\x00\x14\x00\x0e\x00\x4c\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x2f\x00\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\x00\x00\xff\xff\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\xff\xff\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x3e\x00\xff\xff\xff\xff\xff\xff\x00\x00\x43\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x21\x00\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x28\x00\x36\x00\x00\x00\xff\xff\x2c\x00\x2d\x00\xff\xff\xff\xff\x21\x00\x3e\x00\x30\x00\x31\x00\x32\x00\x1b\x00\x00\x00\x28\x00\xff\xff\xff\xff\xff\xff\x2c\x00\x2d\x00\x00\x00\xff\xff\x25\x00\x3e\x00\x30\x00\x31\x00\x32\x00\x00\x00\x2b\x00\xff\xff\xff\xff\x00\x00\xff\xff\xff\xff\x21\x00\x30\x00\x31\x00\x18\x00\x3e\x00\x00\x00\xff\xff\x28\x00\xff\xff\x00\x00\xff\xff\x2c\x00\x2d\x00\xff\xff\x23\x00\x3e\x00\xff\xff\x18\x00\x00\x00\x21\x00\xff\xff\x18\x00\x00\x00\x2c\x00\x2d\x00\xff\xff\x28\x00\xff\xff\x23\x00\x18\x00\x2c\x00\x2d\x00\x23\x00\x18\x00\xff\xff\x00\x00\xff\xff\x2c\x00\x2d\x00\xff\xff\x23\x00\x2c\x00\x2d\x00\xff\xff\x23\x00\x00\x00\x18\x00\xff\xff\xff\xff\x2c\x00\x2d\x00\x21\x00\xff\xff\x2c\x00\x2d\x00\xff\xff\xff\xff\x23\x00\x28\x00\x18\x00\xff\xff\xff\xff\x2c\x00\x2d\x00\xff\xff\xff\xff\x2c\x00\x2d\x00\xff\xff\xff\xff\x23\x00\xff\xff\x1b\x00\x1c\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x2c\x00\x2d\x00\xff\xff\x25\x00\x26\x00\xff\xff\xff\xff\xff\xff\x26\x00\x2b\x00\x28\x00\x29\x00\x2a\x00\xff\xff\x2c\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x34\x00\x35\x00\x36\x00\x37\x00\xff\xff\xff\xff\x3a\x00\xff\xff\x3c\x00\x3d\x00\x3e\x00\xff\xff\x40\x00\xff\xff\xff\xff\xff\xff\xff\xff\x45\x00\x46\x00\xff\xff\x48\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff"#
+happyCheck = HappyA# "\xff\xff\x00\x00\x05\x00\x02\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x02\x00\x02\x00\x00\x00\x00\x00\x02\x00\x02\x00\x01\x00\x00\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x0c\x00\x00\x00\x03\x00\x03\x00\x0b\x00\x03\x00\x00\x00\x05\x00\x2d\x00\x00\x00\x0b\x00\x30\x00\x07\x00\x0b\x00\x0c\x00\x1c\x00\x50\x00\x51\x00\x10\x00\x11\x00\x12\x00\x05\x00\x05\x00\x00\x00\x17\x00\x14\x00\x0b\x00\x02\x00\x00\x00\x01\x00\x02\x00\x03\x00\x07\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x19\x00\x00\x00\x22\x00\x0f\x00\x28\x00\x30\x00\x0e\x00\x52\x00\x1b\x00\x29\x00\x41\x00\x42\x00\x0c\x00\x4c\x00\x2b\x00\x00\x00\x01\x00\x02\x00\x03\x00\x3e\x00\x13\x00\x41\x00\x42\x00\x52\x00\x53\x00\x4c\x00\x52\x00\x53\x00\x0b\x00\x52\x00\x52\x00\x4c\x00\x03\x00\x52\x00\x52\x00\x4e\x00\x52\x00\x03\x00\x4c\x00\x05\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x0b\x00\x3d\x00\x39\x00\x3a\x00\x3b\x00\x10\x00\x11\x00\x12\x00\x4c\x00\x4c\x00\x4c\x00\x00\x00\x4c\x00\x03\x00\x19\x00\x05\x00\x1b\x00\x48\x00\x49\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x4e\x00\x25\x00\x39\x00\x12\x00\x28\x00\x09\x00\x4c\x00\x2b\x00\x4e\x00\x40\x00\x2e\x00\x30\x00\x1b\x00\x32\x00\x00\x00\x33\x00\x39\x00\x15\x00\x16\x00\x4a\x00\x4b\x00\x0a\x00\x1a\x00\x4c\x00\x03\x00\x42\x00\x05\x00\x3f\x00\x0b\x00\x0b\x00\x47\x00\x43\x00\x44\x00\x13\x00\x0d\x00\x4c\x00\x07\x00\x49\x00\x0b\x00\x12\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x03\x00\x00\x00\x05\x00\x1b\x00\x14\x00\x19\x00\x41\x00\x42\x00\x0b\x00\x03\x00\x19\x00\x05\x00\x1b\x00\x10\x00\x11\x00\x12\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x0e\x00\x12\x00\x19\x00\x0b\x00\x12\x00\x4a\x00\x14\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x1b\x00\x25\x00\x22\x00\x00\x00\x28\x00\x2e\x00\x00\x00\x2b\x00\x4b\x00\x29\x00\x2e\x00\x00\x00\x01\x00\x02\x00\x03\x00\x33\x00\x4c\x00\x26\x00\x3b\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x2c\x00\x03\x00\x4c\x00\x05\x00\x3f\x00\x4c\x00\x02\x00\x0f\x00\x43\x00\x44\x00\x06\x00\x0d\x00\x1d\x00\x1e\x00\x49\x00\x00\x00\x12\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x03\x00\x2b\x00\x05\x00\x1b\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x0b\x00\x03\x00\x4c\x00\x05\x00\x13\x00\x10\x00\x11\x00\x12\x00\x0a\x00\x00\x00\x3c\x00\x00\x00\x00\x00\x3f\x00\x19\x00\x39\x00\x12\x00\x0d\x00\x0e\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x1b\x00\x25\x00\x01\x00\x00\x00\x28\x00\x13\x00\x00\x00\x2b\x00\x1d\x00\x0f\x00\x2e\x00\x00\x00\x01\x00\x02\x00\x03\x00\x33\x00\x0a\x00\x17\x00\x00\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x3f\x00\x2c\x00\x2d\x00\x2b\x00\x43\x00\x44\x00\x00\x00\x01\x00\x02\x00\x03\x00\x49\x00\x00\x00\x00\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x03\x00\x2b\x00\x05\x00\x00\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x0b\x00\x00\x00\x4c\x00\x00\x00\x4e\x00\x10\x00\x11\x00\x12\x00\x2b\x00\x19\x00\x3c\x00\x2e\x00\x2f\x00\x3f\x00\x19\x00\x39\x00\x3a\x00\x3b\x00\x12\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x00\x00\x25\x00\x39\x00\x2b\x00\x28\x00\x48\x00\x49\x00\x2b\x00\x20\x00\x40\x00\x2e\x00\x19\x00\x39\x00\x2b\x00\x00\x00\x33\x00\x2e\x00\x2f\x00\x2a\x00\x40\x00\x03\x00\x2b\x00\x05\x00\x00\x00\x2e\x00\x2f\x00\x0f\x00\x3f\x00\x0b\x00\x4a\x00\x4b\x00\x43\x00\x44\x00\x10\x00\x11\x00\x12\x00\x00\x00\x49\x00\x00\x00\x04\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x0a\x00\x20\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x00\x00\x25\x00\x2d\x00\x2a\x00\x28\x00\x30\x00\x4f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x00\x00\x01\x00\x02\x00\x03\x00\x00\x00\x1f\x00\x11\x00\x02\x00\x13\x00\x03\x00\x00\x00\x05\x00\x07\x00\x27\x00\x08\x00\x2b\x00\x3f\x00\x0b\x00\x2e\x00\x2f\x00\x43\x00\x44\x00\x10\x00\x11\x00\x12\x00\x00\x00\x49\x00\x02\x00\x0f\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x03\x00\x1f\x00\x05\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x0b\x00\x27\x00\x02\x00\x00\x00\x28\x00\x10\x00\x11\x00\x12\x00\x04\x00\x00\x00\x0a\x00\x39\x00\x3a\x00\x3b\x00\x0a\x00\x39\x00\x3a\x00\x03\x00\x0e\x00\x05\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x0b\x00\x48\x00\x49\x00\x00\x00\x28\x00\x10\x00\x11\x00\x12\x00\x04\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x0a\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x00\x00\x00\x00\x2b\x00\x15\x00\x28\x00\x2e\x00\x2f\x00\x1d\x00\x1e\x00\x4f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x00\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x03\x00\x06\x00\x05\x00\x00\x00\x01\x00\x02\x00\x03\x00\x00\x00\x0b\x00\x1c\x00\x0f\x00\x00\x00\x30\x00\x10\x00\x11\x00\x12\x00\x16\x00\x17\x00\x17\x00\x26\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x03\x00\x3e\x00\x05\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x0b\x00\x0b\x00\x00\x00\x0d\x00\x28\x00\x10\x00\x11\x00\x12\x00\x00\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x39\x00\x3a\x00\x3b\x00\x03\x00\x00\x00\x05\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x0b\x00\x45\x00\x39\x00\x47\x00\x28\x00\x10\x00\x11\x00\x12\x00\x00\x00\x40\x00\x11\x00\x0e\x00\x13\x00\x10\x00\x4f\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x00\x00\x00\x00\x05\x00\x06\x00\x28\x00\x16\x00\x17\x00\x30\x00\x31\x00\x32\x00\x00\x00\x01\x00\x02\x00\x03\x00\x00\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x03\x00\x3e\x00\x05\x00\x00\x00\x01\x00\x02\x00\x03\x00\x1a\x00\x0b\x00\x00\x00\x01\x00\x02\x00\x03\x00\x10\x00\x11\x00\x12\x00\x00\x00\x24\x00\x12\x00\x00\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x03\x00\x00\x00\x05\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x0b\x00\x08\x00\x09\x00\x00\x00\x28\x00\x10\x00\x11\x00\x12\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x00\x00\x39\x00\x3a\x00\x3b\x00\x03\x00\x00\x00\x05\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x0b\x00\x45\x00\x39\x00\x47\x00\x28\x00\x10\x00\x11\x00\x12\x00\x39\x00\x40\x00\x01\x00\x00\x00\x00\x00\x09\x00\x00\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x15\x00\x16\x00\x02\x00\x11\x00\x28\x00\x13\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x1a\x00\x00\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x3e\x00\x19\x00\x00\x00\x24\x00\x00\x00\x43\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x00\x00\x00\x00\x00\x00\x4c\x00\x4d\x00\x00\x00\x00\x00\x18\x00\x00\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x03\x00\x04\x00\x05\x00\x00\x00\x23\x00\x00\x00\x1b\x00\x0a\x00\x11\x00\x0d\x00\x13\x00\x0e\x00\x0f\x00\x2c\x00\x2d\x00\x12\x00\x25\x00\x14\x00\x00\x00\x16\x00\x17\x00\x00\x00\x2b\x00\x1a\x00\x1b\x00\x00\x00\x01\x00\x02\x00\x03\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x0f\x00\x3e\x00\x0f\x00\x18\x00\x2b\x00\x06\x00\x43\x00\x2e\x00\x2f\x00\x06\x00\x17\x00\x46\x00\x05\x00\x1a\x00\x23\x00\x4c\x00\x4d\x00\x03\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x2c\x00\x2d\x00\x04\x00\x2b\x00\x4c\x00\x01\x00\x2e\x00\x2f\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x39\x00\x3a\x00\x3b\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x02\x00\x07\x00\x06\x00\x04\x00\x0a\x00\x48\x00\x49\x00\x3e\x00\x00\x00\x01\x00\x02\x00\x03\x00\x43\x00\x44\x00\x14\x00\x46\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x00\x00\x01\x00\x02\x00\x03\x00\x06\x00\x39\x00\x3e\x00\x08\x00\x09\x00\x30\x00\x31\x00\x43\x00\x44\x00\x26\x00\x46\x00\x28\x00\x29\x00\x2a\x00\x04\x00\x2c\x00\x04\x00\x01\x00\x00\x00\x3e\x00\x06\x00\x01\x00\x4d\x00\x34\x00\x35\x00\x36\x00\x37\x00\x4c\x00\x03\x00\x3a\x00\x00\x00\x3c\x00\x3d\x00\x3e\x00\x4c\x00\x40\x00\x09\x00\x39\x00\x0c\x00\x39\x00\x45\x00\x46\x00\x07\x00\x48\x00\x40\x00\x1b\x00\x1c\x00\x04\x00\x26\x00\x4c\x00\x28\x00\x29\x00\x2a\x00\x39\x00\x2c\x00\x25\x00\x26\x00\x1b\x00\x03\x00\x02\x00\x40\x00\x2b\x00\x34\x00\x35\x00\x36\x00\x37\x00\x00\x00\x25\x00\x3a\x00\x0f\x00\x3c\x00\x3d\x00\x3e\x00\x2b\x00\x40\x00\x00\x00\x01\x00\x02\x00\x03\x00\x45\x00\x46\x00\x26\x00\x48\x00\x28\x00\x29\x00\x2a\x00\x04\x00\x2c\x00\x0e\x00\x02\x00\x00\x00\x01\x00\x02\x00\x03\x00\x2e\x00\x34\x00\x35\x00\x36\x00\x37\x00\x21\x00\x0f\x00\x3a\x00\x09\x00\x3c\x00\x3d\x00\x3e\x00\x28\x00\x40\x00\x4c\x00\x4b\x00\x2c\x00\x2d\x00\x45\x00\x46\x00\x0a\x00\x48\x00\x2e\x00\x0c\x00\x4c\x00\x02\x00\x26\x00\x0b\x00\x28\x00\x29\x00\x2a\x00\x4c\x00\x2c\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x39\x00\x3a\x00\x34\x00\x35\x00\x36\x00\x37\x00\x03\x00\x4c\x00\x3a\x00\x0a\x00\x3c\x00\x3d\x00\x3e\x00\x08\x00\x40\x00\x39\x00\x3a\x00\x3b\x00\x00\x00\x45\x00\x46\x00\x02\x00\x48\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x0c\x00\x03\x00\x4c\x00\x04\x00\x0e\x00\x4c\x00\x10\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x16\x00\x17\x00\x01\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x4c\x00\x04\x00\x3e\x00\x1d\x00\x04\x00\x41\x00\x42\x00\x43\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x04\x00\x4c\x00\x13\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x30\x00\x02\x00\x3e\x00\x06\x00\x04\x00\x41\x00\x42\x00\x43\x00\x38\x00\x01\x00\x13\x00\x0a\x00\x2e\x00\x02\x00\x3e\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x30\x00\x3e\x00\x00\x00\x01\x00\x02\x00\x03\x00\x43\x00\x4c\x00\x38\x00\x04\x00\x0c\x00\x4c\x00\x01\x00\x01\x00\x3e\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x01\x00\x3e\x00\x02\x00\x07\x00\x01\x00\x01\x00\x43\x00\x02\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x02\x00\x02\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x0a\x00\x3e\x00\x01\x00\x39\x00\x3a\x00\x3b\x00\x43\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x01\x00\x4c\x00\x01\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x37\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x30\x00\x3e\x00\x4c\x00\x09\x00\x24\x00\x03\x00\x43\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x07\x00\x38\x00\x3e\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x30\x00\x31\x00\x3e\x00\x4c\x00\x39\x00\x38\x00\x04\x00\x43\x00\x04\x00\x01\x00\x16\x00\x04\x00\x10\x00\x01\x00\x3e\x00\x01\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x30\x00\x31\x00\x3e\x00\x4c\x00\x04\x00\x4c\x00\x04\x00\x43\x00\x01\x00\x08\x00\x0e\x00\x03\x00\x4c\x00\x1a\x00\x3e\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x24\x00\x0c\x00\x3e\x00\x27\x00\x06\x00\x4c\x00\x4c\x00\x43\x00\x4d\x00\x03\x00\x0e\x00\x04\x00\x07\x00\x31\x00\x32\x00\x06\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x0c\x00\x41\x00\x3e\x00\x13\x00\x0a\x00\x07\x00\x46\x00\x43\x00\x08\x00\x0a\x00\x38\x00\x4c\x00\x2e\x00\x01\x00\x0a\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x4c\x00\x01\x00\x3e\x00\x02\x00\x4c\x00\x02\x00\x01\x00\x43\x00\x4c\x00\x03\x00\x03\x00\x52\x00\x52\x00\x03\x00\x03\x00\x17\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x08\x00\x4c\x00\x3e\x00\x52\x00\x18\x00\x0e\x00\x14\x00\x43\x00\x4c\x00\x2f\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\xff\xff\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\x00\x00\xff\xff\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x00\x00\xff\xff\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x3e\x00\xff\xff\xff\xff\xff\xff\xff\xff\x43\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x21\x00\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x28\x00\x36\x00\xff\xff\xff\xff\x2c\x00\x2d\x00\xff\xff\x00\x00\x21\x00\x3e\x00\x30\x00\x31\x00\x32\x00\x00\x00\xff\xff\x28\x00\xff\xff\xff\xff\xff\xff\x2c\x00\x2d\x00\x00\x00\xff\xff\xff\xff\x3e\x00\x30\x00\x31\x00\x32\x00\xff\xff\xff\xff\xff\xff\x18\x00\xff\xff\xff\xff\xff\xff\x00\x00\x30\x00\x31\x00\x00\x00\x3e\x00\x00\x00\xff\xff\x23\x00\xff\xff\xff\xff\x18\x00\x21\x00\xff\xff\x00\x00\xff\xff\x3e\x00\x2c\x00\x2d\x00\x28\x00\x00\x00\xff\xff\x23\x00\x2c\x00\x2d\x00\x18\x00\xff\xff\xff\xff\x18\x00\xff\xff\x18\x00\x2c\x00\x2d\x00\x00\x00\xff\xff\xff\xff\x23\x00\xff\xff\xff\xff\x23\x00\xff\xff\x23\x00\xff\xff\xff\xff\x18\x00\x2c\x00\x2d\x00\x21\x00\x2c\x00\x2d\x00\x2c\x00\x2d\x00\xff\xff\xff\xff\x28\x00\x23\x00\xff\xff\x18\x00\x2c\x00\x2d\x00\xff\xff\xff\xff\xff\xff\xff\xff\x2c\x00\x2d\x00\xff\xff\x26\x00\x23\x00\x28\x00\x29\x00\x2a\x00\xff\xff\x2c\x00\xff\xff\xff\xff\xff\xff\x2c\x00\x2d\x00\xff\xff\xff\xff\x34\x00\x35\x00\x36\x00\x37\x00\xff\xff\xff\xff\x3a\x00\xff\xff\x3c\x00\x3d\x00\x3e\x00\xff\xff\x40\x00\xff\xff\xff\xff\xff\xff\xff\xff\x45\x00\x46\x00\xff\xff\x48\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff"#
happyTable :: HappyAddr
-happyTable = HappyA# "\x00\x00\x41\x00\x77\x01\x42\x00\x41\x00\xcb\xff\x42\x00\x41\x00\x41\x00\x42\x00\x42\x00\x41\x00\x41\x00\x42\x00\x42\x00\x41\x00\x5a\x00\x4a\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x5f\x00\xe0\x01\xec\x01\x56\x00\x5a\x00\x79\x00\x74\x01\xab\x01\xf3\x00\xe1\x01\xeb\x01\xf1\x01\x71\x01\x17\x00\xba\x01\x7c\x00\xc0\x01\x72\x01\x4f\x00\x19\x00\x1a\x00\x9d\x01\x77\x01\x79\x00\xf2\x01\xf2\x01\xea\x00\xaa\x00\x0d\x01\x9a\x00\x9b\x00\x9c\x00\xab\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x34\x00\xf4\x00\xdf\x00\x35\x00\x23\x00\xa8\x01\x81\x01\xe0\x00\x82\x01\x9d\x01\x5a\x00\x06\x00\x06\x00\x06\x00\x76\x00\x99\x00\x9a\x00\x9b\x00\x9c\x00\x12\x00\x66\x00\x5b\x00\x2f\x01\x43\x00\xe3\x00\x06\x00\x43\x00\x44\x00\x0b\x01\xcb\x00\xcc\x00\x5b\x00\x95\x00\xcd\x00\xcf\x00\xa9\x01\xff\xff\x15\x00\x06\x00\x16\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x17\x00\x7a\x00\xb0\x00\xb1\x00\xb2\x00\x18\x00\x19\x00\x1a\x00\x06\x00\x06\x00\x06\x00\x51\x00\xea\x00\xa2\x00\x1b\x00\xa3\x00\x5f\x00\xb3\x00\x44\x01\x1c\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x83\x01\x22\x00\x9d\x00\xa4\x00\x23\x00\x5b\x00\x5c\x00\x24\x00\x2c\x00\x9e\x00\x6a\x00\x74\x01\xa5\x00\xe0\x01\x06\x00\x26\x00\x2c\x00\x74\x01\x0b\x01\x9f\x00\x47\x01\xe1\x01\xe2\x01\x06\x00\xa2\x00\xdb\x01\xa3\x00\x27\x00\xcd\x01\x26\x01\x86\x01\x28\x00\x29\x00\x5e\x00\xb6\x00\x5f\x00\xf3\x01\x2a\x00\x70\x00\xa4\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x15\x00\x27\x01\x16\x00\xa5\x00\xb5\x01\x71\x00\x72\x00\x06\x00\x17\x00\xa2\x00\x73\x00\xa3\x00\xed\x01\x18\x00\x19\x00\x1a\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x18\x01\xdf\x01\x1b\x00\xea\x00\xa4\x00\x51\x00\x19\x01\x1c\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\xa5\x00\x22\x00\x07\x01\x25\x01\x23\x00\x06\x00\x06\x00\x24\x00\xe9\x01\xb9\x00\x25\x00\x99\x00\x9a\x00\x9b\x00\x9c\x00\x26\x00\x37\x00\xf1\x00\xea\x01\x06\x00\x2b\x00\x2c\x00\x2d\x00\xf2\x00\xa2\x00\x74\x00\xa3\x00\x27\x00\x08\x01\x32\x00\xd5\x01\x28\x00\x29\x00\xd7\x01\xb6\x00\xc9\x01\xe4\x00\x2a\x00\xab\x01\xa4\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x15\x00\x26\x01\x16\x00\xa5\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x17\x00\xa2\x00\x06\x00\xa3\x00\xb9\x00\x18\x00\x19\x00\x1a\x00\x6d\x01\xbd\x01\x27\x01\x51\x00\x51\x00\x28\x01\x1b\x00\x55\x01\xa4\x00\x46\x00\x47\x00\x1c\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\xa5\x00\x22\x00\xee\x00\x97\x01\x23\x00\x35\x00\x36\x00\x24\x00\x48\x00\x74\x01\x6a\x00\x0d\x01\x9a\x00\x9b\x00\x9c\x00\x26\x00\x2e\x00\x2f\x00\x51\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x99\x00\x9a\x00\x9b\x00\x9c\x00\x27\x00\xc3\x01\x88\x01\x3b\x01\x28\x00\x29\x00\x99\x00\x9a\x00\x9b\x00\x9c\x00\x2a\x00\x62\x01\x99\x01\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x15\x00\x89\x00\x16\x00\x51\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x17\x00\x99\x01\x06\x00\x3e\x01\x2c\x00\x18\x00\x19\x00\x1a\x00\x52\x00\xd2\x01\xc4\x01\x53\x00\x1e\x01\xd3\x01\x1b\x00\xb0\x00\xb1\x00\xb2\x00\x9a\x01\x1c\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\xcb\x01\x22\x00\x9d\x00\xd4\x01\x23\x00\xb3\x00\x5a\x01\x24\x00\x9a\x01\xad\x01\x25\x00\xc6\x01\x9d\x00\x52\x00\xf3\x00\x26\x00\x53\x00\x3c\x01\x9b\x01\x9e\x00\x15\x00\x52\x00\x4e\x00\x8d\x01\x53\x00\x6b\x00\xac\x01\x27\x00\x17\x00\x9f\x00\xa0\x00\x28\x00\x29\x00\x18\x00\x19\x00\x1a\x00\x51\x00\x2a\x00\x13\x01\xa3\x01\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\xf4\x00\x14\x01\x1c\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\xf5\x00\x22\x00\x8b\x01\xa1\x01\x23\x00\xff\x00\x45\x01\x0d\x01\x9a\x00\x9b\x00\x9c\x00\x0d\x01\x9a\x00\x9b\x00\x9c\x00\xa4\x01\xd8\x01\x88\x00\x34\x00\x74\x01\x15\x00\x35\x00\x4e\x00\x89\x00\x56\x01\x22\xff\x52\x00\x27\x00\x17\x00\x53\x00\xa6\x00\x28\x00\x29\x00\x18\x00\x19\x00\x1a\x00\xd0\x01\x2a\x00\x86\x01\x00\x01\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x79\x00\xa2\x01\xab\x01\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x17\x00\x4d\x01\xf6\xff\x5d\x01\x23\x00\x4f\x00\x19\x00\x1a\x00\x4c\x01\x51\x00\x13\x01\xb0\x00\xb1\x00\xb2\x00\x89\x00\xb0\x00\x58\x01\x79\x00\x14\x01\x4e\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x17\x00\xb3\x00\x0e\x01\xa3\x01\x23\x00\x4f\x00\x19\x00\x1a\x00\x6f\x01\x4a\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x77\x01\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x78\x01\xa6\x01\x52\x00\x5f\x01\x23\x00\x53\x00\x54\x00\xa4\x01\xa5\x01\x7b\x01\x0d\x01\x9a\x00\x9b\x00\x9c\x00\x79\x01\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x15\x00\x7e\x01\x4e\x00\x99\x00\x9a\x00\x9b\x00\x9c\x00\x3d\x01\x17\x00\x04\x01\xb7\x00\xeb\x00\x77\x00\x18\x00\x19\x00\x1a\x00\x8c\x01\xdd\x00\xb8\x00\xa7\x01\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x79\x00\x12\x00\x4e\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x17\x00\x63\x00\xf6\x00\x64\x00\x23\x00\x4f\x00\x19\x00\x1a\x00\x35\x01\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\xb0\x00\xb1\x00\x21\x01\x15\x00\x74\x01\x4e\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x17\x00\x22\x01\x9d\x00\xb3\x01\x23\x00\x18\x00\x19\x00\x1a\x00\x74\x01\x16\x01\x85\x01\x81\x01\x86\x01\x82\x01\x3a\x01\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x89\x01\x07\x01\x86\x01\xae\x00\x23\x00\xff\x00\xa5\x00\x0b\x00\x0c\x00\x7e\x00\x0d\x01\x9a\x00\x9b\x00\x9c\x00\xd0\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x79\x00\x12\x00\x4e\x00\x99\x00\x9a\x00\x9b\x00\x9c\x00\x08\x01\x17\x00\x99\x00\x9a\x00\x9b\x00\x9c\x00\x4f\x00\x19\x00\x1a\x00\x74\x01\x09\x01\xb9\x00\x00\x01\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x4d\x00\x01\x01\x4e\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x17\x00\x8f\x01\x75\x01\x90\x01\x23\x00\x4f\x00\x19\x00\x1a\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x79\x01\xb0\x00\xb1\x00\x21\x01\x15\x00\xd1\x00\x4e\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x17\x00\x22\x01\x9d\x00\x23\x01\x23\x00\x18\x00\x19\x00\x1a\x00\x0f\x01\x72\x01\x7a\x01\xdd\x00\xd2\x00\x70\x00\x31\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x71\x00\x72\x00\x32\x00\x91\x00\x23\x00\x92\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x51\x01\x11\x00\xd3\x00\xe4\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x12\x00\xd4\x00\xd5\x00\x38\x00\x51\x00\x13\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x39\x00\x48\x00\x59\x00\x52\x01\xb8\x01\x62\x00\xf5\x01\xe5\x00\xf0\x01\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\xa2\x00\x88\x00\xa3\x00\x6a\x00\x91\x01\x28\xff\xfc\x00\x89\x00\x28\xff\x06\x00\xf6\x01\x18\x01\x47\xff\xe7\x00\xe8\x00\xa4\x00\x9f\x01\x19\x01\x77\x00\x47\xff\x47\xff\xe4\x00\xfe\x00\x47\xff\xa5\x00\xaf\x00\x9a\x00\x9b\x00\x9c\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x51\x01\x11\x00\xef\x01\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\xe4\x01\x12\x00\x13\x01\xe5\x00\x52\x00\xe5\x01\x13\x00\x53\x00\x6b\x00\xe6\x01\x14\x01\xe7\x01\xe8\x01\x15\x01\xe6\x00\x52\x01\x53\x01\xe9\x01\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\xe7\x00\xe8\x00\x2b\x00\x52\x00\xde\x01\xdf\x01\x53\x00\x6b\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x4a\x00\x07\x00\x08\x00\x09\x00\x0a\x00\xb0\x00\xb1\x00\xb2\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x33\x01\x11\x00\x06\x00\xcd\x01\xcf\x01\xd0\x01\x06\x00\xb3\x00\xb4\x00\x12\x00\x99\x00\x9a\x00\x9b\x00\x9c\x00\x13\x00\x60\x00\xda\x01\x34\x01\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x5f\x00\x11\x00\xdb\x01\x99\x00\x9a\x00\x9b\x00\x9c\x00\x62\x01\xbc\x01\x12\x00\xbd\x01\xbf\x01\x0b\x00\x74\x00\x13\x00\x60\x00\xbb\x00\x61\x00\xbc\x00\xbd\x00\xbe\x00\xd7\x01\xbf\x00\xc0\x01\xc2\x01\x06\x00\x12\x00\xc6\x01\xc8\x01\x06\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xcb\x01\x88\x00\xc4\x00\xc9\x01\xc5\x00\xc6\x00\xc7\x00\x89\x00\xc8\x00\x06\x00\x9d\x00\x8a\x00\x85\x01\xc9\x00\xca\x00\x88\x01\xcb\x00\x16\x01\x06\x00\x8b\x01\x91\x01\xbb\x00\x06\x00\xbc\x00\xbd\x00\xbe\x00\x9d\x00\xbf\x00\x66\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x2c\x01\x93\x01\xc0\x00\xc1\x00\xc2\x00\xc3\x00\x96\x01\x06\x00\xc4\x00\x9f\x01\xc5\x00\xc6\x00\xc7\x00\x06\x00\xc8\x00\xaf\x01\xb0\x01\xb1\x01\x06\x00\xc9\x00\xca\x00\xb7\x01\xcb\x00\x66\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x40\x01\x0d\x01\x9a\x00\x9b\x00\x9c\x00\x42\x01\x41\x01\x4a\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x43\x01\x06\x00\x49\x01\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x67\x00\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x4a\x01\x4e\x01\x12\x00\x4b\x01\x4f\x01\x5b\x00\xba\x01\x13\x00\x4a\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x50\x01\x51\x01\x5c\x01\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x67\x00\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x8e\x00\x06\x00\x12\x00\xb0\x00\x59\x01\x5b\x00\x68\x00\x13\x00\x37\x01\x5d\x01\x5f\x01\x06\x00\x61\x01\x63\x01\x12\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\xac\x00\x11\x00\x54\x01\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x8e\x00\x12\x00\x0d\x01\x9a\x00\x9b\x00\x9c\x00\x13\x00\x64\x01\x8f\x00\x66\x01\x65\x01\x67\x01\x68\x01\x6e\x01\x12\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\xac\x00\x11\x00\x0c\x01\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x69\x01\x12\x00\x0d\x01\x9a\x00\x9b\x00\x9c\x00\x13\x00\x6c\x01\x4a\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x6d\x01\x6f\x01\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\xac\x00\x11\x00\xad\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x06\x00\x12\x00\x74\x01\xb0\x00\xb1\x00\xb4\x01\x13\x00\x8a\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x06\x00\x7d\x01\x7e\x01\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\xac\x00\x11\x00\xb8\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x4b\x00\x12\x00\x80\x01\xb0\x00\xb1\x00\x24\x01\x13\x00\x4a\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x84\x01\xd9\x00\x12\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\xdc\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x0b\x00\x56\x00\x12\x00\xe1\x00\xe3\x00\x06\x00\x0c\x01\x13\x00\x11\x01\xe2\x00\x12\x01\x16\x01\x92\x00\x1b\x01\x12\x00\x1a\x01\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\xd3\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x0b\x00\x56\x00\x12\x00\x1c\x01\x06\x00\x21\x01\x06\x00\x13\x00\x2a\x01\x2b\x01\x2e\x01\x2c\x01\x2f\x01\x32\x01\x12\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\xb7\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x3b\x00\x37\x01\x12\x00\x3c\x00\x3a\x01\x06\x00\x06\x00\x13\x00\x2b\x00\x06\x00\x76\x00\x7d\x00\x8c\x00\x3d\x00\x3e\x00\x87\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\xc2\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x8d\x00\x3f\x00\x12\x00\x8e\x00\x93\x00\x97\x00\x40\x00\x13\x00\x94\x00\x95\x00\x98\x00\x99\x00\xa8\x00\x06\x00\xd9\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x93\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\xa9\x00\xda\x00\x12\x00\xdb\x00\x89\x00\x06\x00\xcf\x00\x13\x00\x06\x00\xdc\x00\xdd\x00\xd7\x00\xd8\x00\x41\x00\x06\x00\xff\xff\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x94\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\xff\xff\x4a\x00\x12\x00\x50\x00\x51\x00\x58\x00\x6e\x00\x13\x00\x06\x00\xff\xff\x6f\x00\x6d\x00\x77\x00\x76\x00\x06\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x98\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x31\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\xa0\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\xb1\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\xb2\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x43\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x46\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x57\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x1c\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x1d\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x1f\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x30\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x32\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x38\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x7d\x00\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x81\x00\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x85\x00\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\xab\x00\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x67\x00\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x58\x00\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\xe4\x00\x00\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x10\x00\x11\x00\xe4\x00\x00\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x12\x00\x00\x00\x00\x00\x00\x00\x51\x00\x13\x00\x4a\x00\x07\x00\x08\x00\x09\x00\x0a\x00\xec\x00\x00\x00\x0b\x00\x0c\x00\x82\x00\x83\x00\x84\x00\x96\x01\x11\x00\xe4\x00\x00\x00\xee\x00\xef\x00\x00\x00\x00\x00\xec\x00\x12\x00\x0b\x00\x0c\x00\x7f\x00\xfc\x00\xe4\x00\x69\x01\x00\x00\x00\x00\x00\x00\xee\x00\xef\x00\xe4\x00\x00\x00\xfd\x00\x12\x00\x0b\x00\x0c\x00\x80\x00\xe4\x00\xfe\x00\x00\x00\x00\x00\xe4\x00\x00\x00\x00\x00\xec\x00\x0b\x00\x74\x00\xe5\x00\x12\x00\xe4\x00\x00\x00\x6a\x01\x00\x00\xe4\x00\x00\x00\xee\x00\xef\x00\x00\x00\xea\x00\x12\x00\x00\x00\xe5\x00\xe4\x00\xec\x00\x00\x00\xe5\x00\xe4\x00\xe7\x00\xe8\x00\x00\x00\xed\x00\x00\x00\xf2\x00\xe5\x00\xee\x00\xef\x00\xf7\x00\xe5\x00\x00\x00\xe4\x00\x00\x00\xe7\x00\xe8\x00\x00\x00\xf8\x00\xe7\x00\xe8\x00\x00\x00\xf9\x00\x03\x01\xe5\x00\x00\x00\x00\x00\xe7\x00\xe8\x00\xec\x00\x00\x00\xe7\x00\xe8\x00\x00\x00\x00\x00\xfb\x00\xfa\x00\xe5\x00\x00\x00\x00\x00\xee\x00\xef\x00\x00\x00\x00\x00\xe7\x00\xe8\x00\x00\x00\x00\x00\x02\x01\x00\x00\xfc\x00\x04\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe7\x00\xe8\x00\x00\x00\x05\x01\x06\x01\x00\x00\x00\x00\x00\x00\xbb\x00\xfe\x00\xbc\x00\xbd\x00\xbe\x00\x00\x00\xbf\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\x00\x00\x00\x00\xc4\x00\x00\x00\xc5\x00\xc6\x00\xc7\x00\x00\x00\xc8\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc9\x00\xca\x00\x00\x00\xcb\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"#
+happyTable = HappyA# "\x00\x00\x41\x00\x77\x01\x42\x00\x41\x00\x5a\x00\x42\x00\x41\x00\x41\x00\x42\x00\x42\x00\x41\x00\x41\x00\x42\x00\x42\x00\x41\x00\x5a\x00\x4a\x00\x07\x00\x08\x00\x09\x00\x0a\x00\xf7\x01\xd9\x00\xb7\x00\x56\x00\xea\x00\x79\x00\xff\x00\xab\x01\x34\x00\x51\x00\xb8\x00\x35\x00\x37\x00\x17\x00\xba\x01\x7c\x00\x2e\x00\x2f\x00\x4f\x00\x19\x00\x1a\x00\x9d\x01\x77\x01\x79\x00\x8a\x01\x32\x00\x0b\x01\x71\x01\x0d\x01\x9a\x00\x9b\x00\x9c\x00\x72\x01\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\xb9\x00\x74\x01\x00\x01\xf5\x01\x23\x00\xa8\x01\x76\x00\xf6\xff\x5f\x00\xa2\x01\x5b\x00\x2f\x01\x66\x00\x06\x00\xcb\x01\x99\x00\x9a\x00\x9b\x00\x9c\x00\x12\x00\xfc\x01\x5b\x00\x95\x00\x43\x00\xe3\x00\x06\x00\x43\x00\x44\x00\xea\x00\xcb\x00\xcc\x00\x06\x00\xd6\xff\xcd\x00\xcf\x00\xa9\x01\xff\xff\x15\x00\x06\x00\x16\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x17\x00\x7a\x00\xb0\x00\xb1\x00\xb2\x00\x18\x00\x19\x00\x1a\x00\x06\x00\x06\x00\x06\x00\x5a\x00\x06\x00\xa2\x00\x1b\x00\xa3\x00\x5f\x00\xb3\x00\x44\x01\x1c\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x2c\x00\x22\x00\x9d\x00\xa4\x00\x23\x00\x70\x00\x06\x00\x24\x00\x2c\x00\x9e\x00\x6a\x00\x8f\x01\xa5\x00\x90\x01\x74\x01\x26\x00\xd6\xff\x71\x00\x72\x00\x9f\x00\x47\x01\x7d\x01\x73\x00\x06\x00\xa2\x00\xdf\x00\xa3\x00\x27\x00\xf4\x01\xea\x00\xe0\x00\x28\x00\x29\x00\xfd\x01\xb6\x00\x06\x00\x31\x00\x2a\x00\x0b\x01\xa4\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x15\x00\xff\x00\x16\x00\xa5\x00\x32\x00\xb9\x00\x5b\x00\x5c\x00\x17\x00\xa2\x00\x5e\x00\xa3\x00\x5f\x00\x18\x00\x19\x00\x1a\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x18\x01\xea\x01\x1b\x00\xea\x00\xa4\x00\x74\x00\x19\x01\x1c\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\xa5\x00\x22\x00\x00\x01\x51\x00\x23\x00\xfb\x01\xa3\x01\x24\x00\x7e\x01\x01\x01\x25\x00\x99\x00\x9a\x00\x9b\x00\x9c\x00\x26\x00\x06\x00\xf1\x00\xfc\x01\x06\x00\x2b\x00\x2c\x00\x2d\x00\xf2\x00\xa2\x00\x06\x00\xa3\x00\x27\x00\x06\x00\xd4\x01\xeb\x01\x28\x00\x29\x00\xd5\x01\xb6\x00\xa4\x01\xda\x01\x2a\x00\x74\x01\xa4\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x15\x00\x26\x01\x16\x00\xa5\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x17\x00\xa2\x00\x06\x00\xa3\x00\xc3\x01\x18\x00\x19\x00\x1a\x00\x6d\x01\xe4\x00\x27\x01\x74\x01\x51\x00\xb5\x01\x1b\x00\x55\x01\xa4\x00\x46\x00\x47\x00\x1c\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\xa5\x00\x22\x00\xdd\x01\x25\x01\x23\x00\x75\x01\xf1\x01\x24\x00\x48\x00\x13\x01\x6a\x00\x0d\x01\x9a\x00\x9b\x00\x9c\x00\x26\x00\xf2\x01\x14\x01\x51\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x99\x00\x9a\x00\x9b\x00\x9c\x00\x27\x00\xee\x00\x97\x01\x86\x01\x28\x00\x29\x00\x99\x00\x9a\x00\x9b\x00\x9c\x00\x2a\x00\x51\x00\xe1\x01\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x15\x00\x26\x01\x16\x00\x51\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x17\x00\x99\x01\x06\x00\x3e\x01\x2c\x00\x18\x00\x19\x00\x1a\x00\x52\x00\xb9\x00\x27\x01\x53\x00\x1e\x01\x28\x01\x1b\x00\xb0\x00\xb1\x00\xb2\x00\xd2\x01\x1c\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\xd7\x01\x22\x00\x9d\x00\x3b\x01\x23\x00\xb3\x00\x5a\x01\x24\x00\x9a\x01\xad\x01\x25\x00\xb9\x00\x9d\x00\x52\x00\x99\x01\x26\x00\x53\x00\x3c\x01\xd6\x01\x9e\x00\x15\x00\x52\x00\x4e\x00\xd9\x01\x53\x00\x6b\x00\xbd\x01\x27\x00\x17\x00\x9f\x00\xa0\x00\x28\x00\x29\x00\x18\x00\x19\x00\x1a\x00\x51\x00\x2a\x00\xf3\x00\x88\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x89\x00\x9a\x01\x1c\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x74\x01\x22\x00\x34\x00\x9b\x01\x23\x00\x35\x00\xc0\x01\x0d\x01\x9a\x00\x9b\x00\x9c\x00\x0d\x01\x9a\x00\x9b\x00\x9c\x00\xf3\x00\xf4\x00\xcf\x01\xaa\x00\x88\x01\x15\x00\xc4\x01\x4e\x00\xab\x00\x9d\x01\x1f\xff\x52\x00\x27\x00\x17\x00\x53\x00\xa6\x00\x28\x00\x29\x00\x18\x00\x19\x00\x1a\x00\x63\x00\x2a\x00\x64\x00\xc7\x01\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x79\x00\xf4\x00\xab\x01\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x17\x00\xf5\x00\x62\x01\xcc\x01\x23\x00\x4f\x00\x19\x00\x1a\x00\x88\x00\x51\x00\x89\x00\xb0\x00\xb1\x00\xb2\x00\x89\x00\xb0\x00\x58\x01\x79\x00\x8a\x00\x4e\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x17\x00\xb3\x00\x0e\x01\xa3\x01\x23\x00\x4f\x00\x19\x00\x1a\x00\x4c\x01\x4a\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x89\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\xa1\x01\xa6\x01\x52\x00\x8d\x01\x23\x00\x53\x00\x54\x00\xa4\x01\xa5\x01\xac\x01\x0d\x01\x9a\x00\x9b\x00\x9c\x00\xd9\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x15\x00\x4d\x01\x4e\x00\x99\x00\x9a\x00\x9b\x00\x9c\x00\x45\x01\x17\x00\x04\x01\x13\x01\x56\x01\x77\x00\x18\x00\x19\x00\x1a\x00\x8c\x01\x7a\x01\x14\x01\xa7\x01\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x79\x00\x12\x00\x4e\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x17\x00\x82\x01\x5d\x01\x83\x01\x23\x00\x4f\x00\x19\x00\x1a\x00\x6f\x01\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\xb0\x00\xb1\x00\x21\x01\x15\x00\x74\x01\x4e\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x17\x00\x22\x01\x9d\x00\xb3\x01\x23\x00\x18\x00\x19\x00\x1a\x00\xd9\x00\x16\x01\xd1\x01\x91\x00\x88\x01\x92\x00\x5f\x01\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x77\x01\x07\x01\x35\x00\x36\x00\x23\x00\x79\x01\x7a\x01\x0b\x00\x0c\x00\x7e\x00\x0d\x01\x9a\x00\x9b\x00\x9c\x00\x78\x01\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x79\x00\x12\x00\x4e\x00\x99\x00\x9a\x00\x9b\x00\x9c\x00\x08\x01\x17\x00\x99\x00\x9a\x00\x9b\x00\x9c\x00\x4f\x00\x19\x00\x1a\x00\x7b\x01\xab\x01\x7f\x01\xeb\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x4d\x00\xe4\x01\x4e\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x17\x00\xe5\x01\xf3\x01\xf6\x00\x23\x00\x4f\x00\x19\x00\x1a\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x35\x01\xb0\x00\xb1\x00\x21\x01\x15\x00\x3a\x01\x4e\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x17\x00\x22\x01\x9d\x00\x23\x01\x23\x00\x18\x00\x19\x00\x1a\x00\x0f\x01\x72\x01\x3d\x01\x74\x01\x07\x01\x70\x00\xae\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x71\x00\x72\x00\xa5\x00\x87\x01\x23\x00\x88\x01\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x51\x01\x11\x00\x08\x01\xe4\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x12\x00\xb9\x00\xd0\x00\x09\x01\x51\x00\x13\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\xd1\x00\xd2\x00\xd3\x00\x52\x01\xb8\x01\x74\x01\xd4\x00\xe5\x00\xd5\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\xa2\x00\x88\x00\xa3\x00\x6a\x00\x91\x01\x38\x00\xfc\x00\x89\x00\x8b\x01\x39\x00\x88\x01\x18\x01\x44\xff\xe7\x00\xe8\x00\xa4\x00\x9f\x01\x19\x01\x59\x00\x44\xff\x44\xff\xe4\x00\xfe\x00\x44\xff\xa5\x00\xaf\x00\x9a\x00\x9b\x00\x9c\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x51\x01\x11\x00\x62\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x48\x00\x12\x00\x13\x01\xe5\x00\x52\x00\xff\x01\x13\x00\x53\x00\x6b\x00\x00\x02\x14\x01\xfa\x01\xf9\x01\x15\x01\xe6\x00\x52\x01\x53\x01\xf1\x01\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\xe7\x00\xe8\x00\xe8\x01\x52\x00\x06\x00\xe9\x01\x53\x00\x6b\x00\x06\x00\x2b\x00\x2c\x00\x2d\x00\x4a\x00\x07\x00\x08\x00\x09\x00\x0a\x00\xb0\x00\xb1\x00\xb2\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x33\x01\x11\x00\xea\x01\x25\xff\xed\x01\xf7\x01\x25\xff\xb3\x00\xb4\x00\x12\x00\x99\x00\x9a\x00\x9b\x00\x9c\x00\x13\x00\x60\x00\x77\x00\x34\x01\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x5f\x00\x11\x00\xe4\x01\x99\x00\x9a\x00\x9b\x00\x9c\x00\xee\x01\x81\x01\x12\x00\xe5\x01\xe6\x01\x0b\x00\x74\x00\x13\x00\x60\x00\xbb\x00\x61\x00\xbc\x00\xbd\x00\xbe\x00\xf0\x01\xbf\x00\xef\x01\xe0\x01\x03\x01\x12\x00\xe1\x01\xce\x01\x2b\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\x06\x00\xe3\x01\xc4\x00\x51\x00\xc5\x00\xc6\x00\xc7\x00\x06\x00\xc8\x00\xe4\x01\x9d\x00\xcf\x01\x81\x01\xc9\x00\xca\x00\xdc\x01\xcb\x00\x16\x01\xfc\x00\x04\x01\xd1\x01\xbb\x00\x06\x00\xbc\x00\xbd\x00\xbe\x00\x9d\x00\xbf\x00\x05\x01\x06\x01\xfc\x00\xdd\x01\x62\x01\x2c\x01\xfe\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xe4\x00\xfd\x00\xc4\x00\xbc\x01\xc5\x00\xc6\x00\xc7\x00\xfe\x00\xc8\x00\x0d\x01\x9a\x00\x9b\x00\x9c\x00\xc9\x00\xca\x00\xbb\x00\xcb\x00\xbc\x00\xbd\x00\xbe\x00\xd9\x01\xbf\x00\xbd\x01\xc2\x01\x0d\x01\x9a\x00\x9b\x00\x9c\x00\xbf\x01\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xec\x00\xc0\x01\xc4\x00\xc6\x01\xc5\x00\xc6\x00\xc7\x00\x96\x01\xc8\x00\x06\x00\xc7\x01\xee\x00\xef\x00\xc9\x00\xca\x00\xc9\x01\xcb\x00\xca\x01\xcb\x01\x06\x00\x85\x01\xbb\x00\x86\x01\xbc\x00\xbd\x00\xbe\x00\x06\x00\xbf\x00\x66\x00\x07\x00\x08\x00\x09\x00\x0a\x00\xb0\x00\x59\x01\xc0\x00\xc1\x00\xc2\x00\xc3\x00\x8a\x01\x06\x00\xc4\x00\x7d\x01\xc5\x00\xc6\x00\xc7\x00\x91\x01\xc8\x00\xb0\x00\xb1\x00\xb4\x01\xd9\x00\xc9\x00\xca\x00\x93\x01\xcb\x00\x66\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x96\x01\x9f\x01\x06\x00\xaf\x01\xda\x00\x06\x00\xdb\x00\x4a\x00\x07\x00\x08\x00\x09\x00\x0a\x00\xdc\x00\xdd\x00\xb0\x01\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x67\x00\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x06\x00\xb7\x01\x12\x00\xb1\x01\x40\x01\x5b\x00\xba\x01\x13\x00\x4a\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x41\x01\x06\x00\x43\x01\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x67\x00\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x8e\x00\x4b\x01\x12\x00\x42\x01\x49\x01\x5b\x00\x68\x00\x13\x00\x37\x01\x4a\x01\x4e\x01\x4f\x01\x50\x01\x51\x01\x12\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\xac\x00\x11\x00\x54\x01\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x8e\x00\x12\x00\x0d\x01\x9a\x00\x9b\x00\x9c\x00\x13\x00\x06\x00\x8f\x00\x5c\x01\x5d\x01\x06\x00\x5f\x01\x61\x01\x12\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\xac\x00\x11\x00\x0c\x01\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x63\x01\x12\x00\x64\x01\x65\x01\x66\x01\x68\x01\x13\x00\x67\x01\x4a\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x69\x01\x6c\x01\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\xac\x00\x11\x00\xad\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x6d\x01\x12\x00\x6e\x01\xb0\x00\xb1\x00\x24\x01\x13\x00\x8a\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x6f\x01\x06\x00\x74\x01\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\xac\x00\x11\x00\xb8\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x4b\x00\x12\x00\x06\x00\x7f\x01\x84\x01\xd9\x00\x13\x00\x4a\x00\x07\x00\x08\x00\x09\x00\x0a\x00\xe3\x00\xe1\x00\x12\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\xde\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x0b\x00\x56\x00\x12\x00\x06\x00\x81\x01\xe2\x00\x0c\x01\x13\x00\x11\x01\x12\x01\x16\x01\x1a\x01\x92\x00\x1b\x01\x12\x00\x1c\x01\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\xd5\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x0b\x00\x56\x00\x12\x00\x06\x00\x21\x01\x06\x00\x2a\x01\x13\x00\x2b\x01\x2c\x01\x2e\x01\x2f\x01\x06\x00\x32\x01\x12\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\xb7\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x3b\x00\x37\x01\x12\x00\x3c\x00\x3a\x01\x06\x00\x06\x00\x13\x00\x2b\x00\x7d\x00\x76\x00\x87\x00\x8c\x00\x3d\x00\x3e\x00\x8d\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\xc2\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x8e\x00\x3f\x00\x12\x00\x93\x00\x94\x00\x95\x00\x40\x00\x13\x00\x97\x00\x98\x00\x99\x00\x06\x00\xa8\x00\xa9\x00\x89\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x93\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x06\x00\xcf\x00\x12\x00\xd7\x00\x06\x00\xd8\x00\x41\x00\x13\x00\x06\x00\x4a\x00\x50\x00\xff\xff\xff\xff\x51\x00\x58\x00\x6e\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x94\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x6d\x00\x06\x00\x12\x00\xff\xff\x6f\x00\x76\x00\x77\x00\x13\x00\x06\x00\x31\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x98\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\xa0\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\xb1\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\xb2\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x43\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x46\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x57\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x1c\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x1d\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x1f\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x30\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x32\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x38\x01\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x7d\x00\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x81\x00\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x85\x00\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\xab\x00\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x67\x00\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x58\x00\x11\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\xe4\x00\x00\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x00\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x10\x00\x11\x00\xe4\x00\x00\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x4a\x00\x07\x00\x08\x00\x09\x00\x0a\x00\xec\x00\x00\x00\x0b\x00\x0c\x00\x82\x00\x83\x00\x84\x00\x69\x01\x11\x00\x00\x00\x00\x00\xee\x00\xef\x00\x00\x00\xe4\x00\xec\x00\x12\x00\x0b\x00\x0c\x00\x7f\x00\xe4\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\xee\x00\xef\x00\xe4\x00\x00\x00\x00\x00\x12\x00\x0b\x00\x0c\x00\x80\x00\x00\x00\x00\x00\x00\x00\xe5\x00\x00\x00\x00\x00\x00\x00\xe4\x00\x0b\x00\x74\x00\xe4\x00\x12\x00\xe4\x00\x00\x00\xea\x00\x00\x00\x00\x00\xe5\x00\xec\x00\x00\x00\xe4\x00\x00\x00\x12\x00\xe7\x00\xe8\x00\xed\x00\xe4\x00\x00\x00\xf2\x00\xee\x00\xef\x00\xe5\x00\x00\x00\x00\x00\xe5\x00\x00\x00\xe5\x00\xe7\x00\xe8\x00\xe4\x00\x00\x00\x00\x00\xf7\x00\x00\x00\x00\x00\xf8\x00\x00\x00\xf9\x00\x00\x00\x00\x00\xe5\x00\xe7\x00\xe8\x00\xec\x00\xe7\x00\xe8\x00\xe7\x00\xe8\x00\x00\x00\x00\x00\xfa\x00\xfb\x00\x00\x00\xe5\x00\xee\x00\xef\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe7\x00\xe8\x00\x00\x00\xbb\x00\x02\x01\xbc\x00\xbd\x00\xbe\x00\x00\x00\xbf\x00\x00\x00\x00\x00\x00\x00\xe7\x00\xe8\x00\x00\x00\x00\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\x00\x00\x00\x00\xc4\x00\x00\x00\xc5\x00\xc6\x00\xc7\x00\x00\x00\xc8\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc9\x00\xca\x00\x00\x00\xcb\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"#
-happyReduceArr = array (4, 255) [
+happyReduceArr = array (4, 258) [
(4 , happyReduce_4),
(5 , happyReduce_5),
(6 , happyReduce_6),
@@ -792,60 +797,63 @@ happyReduceArr = array (4, 255) [
(252 , happyReduce_252),
(253 , happyReduce_253),
(254 , happyReduce_254),
- (255 , happyReduce_255)
+ (255 , happyReduce_255),
+ (256 , happyReduce_256),
+ (257 , happyReduce_257),
+ (258 , happyReduce_258)
]
happy_n_terms = 83 :: Int
happy_n_nonterms = 84 :: Int
-happyReduce_4 = happySpecReduce_1 0# happyReduction_4
+happyReduce_4 = happySpecReduce_1 0# happyReduction_4
happyReduction_4 happy_x_1
= case happyOutTok happy_x_1 of { (PT _ (TV happy_var_1)) ->
happyIn7
(identC happy_var_1 --H
)}
-happyReduce_5 = happySpecReduce_1 1# happyReduction_5
+happyReduce_5 = happySpecReduce_1 1# happyReduction_5
happyReduction_5 happy_x_1
= case happyOutTok happy_x_1 of { (PT _ (TI happy_var_1)) ->
happyIn8
((read happy_var_1) :: Integer
)}
-happyReduce_6 = happySpecReduce_1 2# happyReduction_6
+happyReduce_6 = happySpecReduce_1 2# happyReduction_6
happyReduction_6 happy_x_1
= case happyOutTok happy_x_1 of { (PT _ (TL happy_var_1)) ->
happyIn9
(happy_var_1
)}
-happyReduce_7 = happySpecReduce_1 3# happyReduction_7
+happyReduce_7 = happySpecReduce_1 3# happyReduction_7
happyReduction_7 happy_x_1
= case happyOutTok happy_x_1 of { (PT _ (TD happy_var_1)) ->
happyIn10
((read happy_var_1) :: Double
)}
-happyReduce_8 = happySpecReduce_1 4# happyReduction_8
+happyReduce_8 = happySpecReduce_1 4# happyReduction_8
happyReduction_8 happy_x_1
= case happyOutTok happy_x_1 of { (PT _ (T_LString happy_var_1)) ->
happyIn11
(LString (happy_var_1)
)}
-happyReduce_9 = happySpecReduce_1 5# happyReduction_9
+happyReduce_9 = happySpecReduce_1 5# happyReduction_9
happyReduction_9 happy_x_1
= case happyOut13 happy_x_1 of { happy_var_1 ->
happyIn12
(Gr (reverse happy_var_1)
)}
-happyReduce_10 = happySpecReduce_0 6# happyReduction_10
+happyReduce_10 = happySpecReduce_0 6# happyReduction_10
happyReduction_10 = happyIn13
([]
)
-happyReduce_11 = happySpecReduce_2 6# happyReduction_11
+happyReduce_11 = happySpecReduce_2 6# happyReduction_11
happyReduction_11 happy_x_2
happy_x_1
= case happyOut13 happy_x_1 of { happy_var_1 ->
@@ -854,7 +862,7 @@ happyReduction_11 happy_x_2
(flip (:) happy_var_1 happy_var_2
)}}
-happyReduce_12 = happySpecReduce_2 7# happyReduction_12
+happyReduce_12 = happySpecReduce_2 7# happyReduction_12
happyReduction_12 happy_x_2
happy_x_1
= case happyOut14 happy_x_1 of { happy_var_1 ->
@@ -894,7 +902,7 @@ happyReduction_14 (happy_x_4 `HappyStk`
(MModule happy_var_1 happy_var_2 happy_var_4
) `HappyStk` happyRest}}}
-happyReduce_15 = happySpecReduce_3 8# happyReduction_15
+happyReduce_15 = happySpecReduce_3 8# happyReduction_15
happyReduction_15 happy_x_3
happy_x_2
happy_x_1
@@ -904,19 +912,19 @@ happyReduction_15 happy_x_3
(ConcSpec happy_var_1 happy_var_3
)}}
-happyReduce_16 = happySpecReduce_0 9# happyReduction_16
+happyReduce_16 = happySpecReduce_0 9# happyReduction_16
happyReduction_16 = happyIn16
([]
)
-happyReduce_17 = happySpecReduce_1 9# happyReduction_17
+happyReduce_17 = happySpecReduce_1 9# happyReduction_17
happyReduction_17 happy_x_1
= case happyOut15 happy_x_1 of { happy_var_1 ->
happyIn16
((:[]) happy_var_1
)}
-happyReduce_18 = happySpecReduce_3 9# happyReduction_18
+happyReduce_18 = happySpecReduce_3 9# happyReduction_18
happyReduction_18 happy_x_3
happy_x_2
happy_x_1
@@ -926,7 +934,7 @@ happyReduction_18 happy_x_3
((:) happy_var_1 happy_var_3
)}}
-happyReduce_19 = happySpecReduce_2 10# happyReduction_19
+happyReduce_19 = happySpecReduce_2 10# happyReduction_19
happyReduction_19 happy_x_2
happy_x_1
= case happyOut7 happy_x_1 of { happy_var_1 ->
@@ -935,12 +943,12 @@ happyReduction_19 happy_x_2
(ConcExp happy_var_1 (reverse happy_var_2)
)}}
-happyReduce_20 = happySpecReduce_0 11# happyReduction_20
+happyReduce_20 = happySpecReduce_0 11# happyReduction_20
happyReduction_20 = happyIn18
([]
)
-happyReduce_21 = happySpecReduce_2 11# happyReduction_21
+happyReduce_21 = happySpecReduce_2 11# happyReduction_21
happyReduction_21 happy_x_2
happy_x_1
= case happyOut18 happy_x_1 of { happy_var_1 ->
@@ -973,7 +981,7 @@ happyReduction_23 (happy_x_5 `HappyStk`
(TransferOut happy_var_4
) `HappyStk` happyRest}
-happyReduce_24 = happySpecReduce_2 13# happyReduction_24
+happyReduce_24 = happySpecReduce_2 13# happyReduction_24
happyReduction_24 happy_x_2
happy_x_1
= case happyOut7 happy_x_2 of { happy_var_2 ->
@@ -981,7 +989,7 @@ happyReduction_24 happy_x_2
(MTAbstract happy_var_2
)}
-happyReduce_25 = happySpecReduce_2 13# happyReduction_25
+happyReduce_25 = happySpecReduce_2 13# happyReduction_25
happyReduction_25 happy_x_2
happy_x_1
= case happyOut7 happy_x_2 of { happy_var_2 ->
@@ -989,7 +997,7 @@ happyReduction_25 happy_x_2
(MTResource happy_var_2
)}
-happyReduce_26 = happySpecReduce_2 13# happyReduction_26
+happyReduce_26 = happySpecReduce_2 13# happyReduction_26
happyReduction_26 happy_x_2
happy_x_1
= case happyOut7 happy_x_2 of { happy_var_2 ->
@@ -1036,8 +1044,54 @@ happyReduction_29 (happy_x_6 `HappyStk`
(MTTransfer happy_var_2 happy_var_4 happy_var_6
) `HappyStk` happyRest}}}
-happyReduce_30 = happyReduce 5# 14# happyReduction_30
-happyReduction_30 (happy_x_5 `HappyStk`
+happyReduce_30 = happySpecReduce_1 14# happyReduction_30
+happyReduction_30 happy_x_1
+ = case happyOut29 happy_x_1 of { happy_var_1 ->
+ happyIn21
+ (MNoBody happy_var_1
+ )}
+
+happyReduce_31 = happyReduce 8# 14# happyReduction_31
+happyReduction_31 (happy_x_8 `HappyStk`
+ happy_x_7 `HappyStk`
+ happy_x_6 `HappyStk`
+ happy_x_5 `HappyStk`
+ happy_x_4 `HappyStk`
+ happy_x_3 `HappyStk`
+ happy_x_2 `HappyStk`
+ happy_x_1 `HappyStk`
+ happyRest)
+ = case happyOut30 happy_x_1 of { happy_var_1 ->
+ case happyOut24 happy_x_3 of { happy_var_3 ->
+ case happyOut25 happy_x_5 of { happy_var_5 ->
+ case happyOut22 happy_x_7 of { happy_var_7 ->
+ happyIn21
+ (MWithBody happy_var_1 happy_var_3 happy_var_5 (reverse happy_var_7)
+ ) `HappyStk` happyRest}}}}
+
+happyReduce_32 = happyReduce 10# 14# happyReduction_32
+happyReduction_32 (happy_x_10 `HappyStk`
+ happy_x_9 `HappyStk`
+ happy_x_8 `HappyStk`
+ happy_x_7 `HappyStk`
+ happy_x_6 `HappyStk`
+ happy_x_5 `HappyStk`
+ happy_x_4 `HappyStk`
+ happy_x_3 `HappyStk`
+ happy_x_2 `HappyStk`
+ happy_x_1 `HappyStk`
+ happyRest)
+ = case happyOut29 happy_x_1 of { happy_var_1 ->
+ case happyOut30 happy_x_3 of { happy_var_3 ->
+ case happyOut24 happy_x_5 of { happy_var_5 ->
+ case happyOut25 happy_x_7 of { happy_var_7 ->
+ case happyOut22 happy_x_9 of { happy_var_9 ->
+ happyIn21
+ (MWithEBody happy_var_1 happy_var_3 happy_var_5 happy_var_7 (reverse happy_var_9)
+ ) `HappyStk` happyRest}}}}}
+
+happyReduce_33 = happyReduce 5# 14# happyReduction_33
+happyReduction_33 (happy_x_5 `HappyStk`
happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
@@ -1050,53 +1104,53 @@ happyReduction_30 (happy_x_5 `HappyStk`
(MBody happy_var_1 happy_var_2 (reverse happy_var_4)
) `HappyStk` happyRest}}}
-happyReduce_31 = happySpecReduce_3 14# happyReduction_31
-happyReduction_31 happy_x_3
+happyReduce_34 = happySpecReduce_3 14# happyReduction_34
+happyReduction_34 happy_x_3
happy_x_2
happy_x_1
- = case happyOut7 happy_x_1 of { happy_var_1 ->
+ = case happyOut30 happy_x_1 of { happy_var_1 ->
case happyOut24 happy_x_3 of { happy_var_3 ->
happyIn21
(MWith happy_var_1 happy_var_3
)}}
-happyReduce_32 = happyReduce 5# 14# happyReduction_32
-happyReduction_32 (happy_x_5 `HappyStk`
+happyReduce_35 = happyReduce 5# 14# happyReduction_35
+happyReduction_35 (happy_x_5 `HappyStk`
happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
happy_x_1 `HappyStk`
happyRest)
= case happyOut29 happy_x_1 of { happy_var_1 ->
- case happyOut7 happy_x_3 of { happy_var_3 ->
+ case happyOut30 happy_x_3 of { happy_var_3 ->
case happyOut24 happy_x_5 of { happy_var_5 ->
happyIn21
(MWithE happy_var_1 happy_var_3 happy_var_5
) `HappyStk` happyRest}}}
-happyReduce_33 = happySpecReduce_2 14# happyReduction_33
-happyReduction_33 happy_x_2
+happyReduce_36 = happySpecReduce_2 14# happyReduction_36
+happyReduction_36 happy_x_2
happy_x_1
= case happyOut7 happy_x_2 of { happy_var_2 ->
happyIn21
(MReuse happy_var_2
)}
-happyReduce_34 = happySpecReduce_2 14# happyReduction_34
-happyReduction_34 happy_x_2
+happyReduce_37 = happySpecReduce_2 14# happyReduction_37
+happyReduction_37 happy_x_2
happy_x_1
= case happyOut29 happy_x_2 of { happy_var_2 ->
happyIn21
(MUnion happy_var_2
)}
-happyReduce_35 = happySpecReduce_0 15# happyReduction_35
-happyReduction_35 = happyIn22
+happyReduce_38 = happySpecReduce_0 15# happyReduction_38
+happyReduction_38 = happyIn22
([]
)
-happyReduce_36 = happySpecReduce_2 15# happyReduction_36
-happyReduction_36 happy_x_2
+happyReduce_39 = happySpecReduce_2 15# happyReduction_39
+happyReduction_39 happy_x_2
happy_x_1
= case happyOut22 happy_x_1 of { happy_var_1 ->
case happyOut32 happy_x_2 of { happy_var_2 ->
@@ -1104,33 +1158,33 @@ happyReduction_36 happy_x_2
(flip (:) happy_var_1 happy_var_2
)}}
-happyReduce_37 = happySpecReduce_2 16# happyReduction_37
-happyReduction_37 happy_x_2
+happyReduce_40 = happySpecReduce_2 16# happyReduction_40
+happyReduction_40 happy_x_2
happy_x_1
= case happyOut29 happy_x_1 of { happy_var_1 ->
happyIn23
(Ext happy_var_1
)}
-happyReduce_38 = happySpecReduce_0 16# happyReduction_38
-happyReduction_38 = happyIn23
+happyReduce_41 = happySpecReduce_0 16# happyReduction_41
+happyReduction_41 = happyIn23
(NoExt
)
-happyReduce_39 = happySpecReduce_0 17# happyReduction_39
-happyReduction_39 = happyIn24
+happyReduce_42 = happySpecReduce_0 17# happyReduction_42
+happyReduction_42 = happyIn24
([]
)
-happyReduce_40 = happySpecReduce_1 17# happyReduction_40
-happyReduction_40 happy_x_1
+happyReduce_43 = happySpecReduce_1 17# happyReduction_43
+happyReduction_43 happy_x_1
= case happyOut26 happy_x_1 of { happy_var_1 ->
happyIn24
((:[]) happy_var_1
)}
-happyReduce_41 = happySpecReduce_3 17# happyReduction_41
-happyReduction_41 happy_x_3
+happyReduce_44 = happySpecReduce_3 17# happyReduction_44
+happyReduction_44 happy_x_3
happy_x_2
happy_x_1
= case happyOut26 happy_x_1 of { happy_var_1 ->
@@ -1139,13 +1193,13 @@ happyReduction_41 happy_x_3
((:) happy_var_1 happy_var_3
)}}
-happyReduce_42 = happySpecReduce_0 18# happyReduction_42
-happyReduction_42 = happyIn25
+happyReduce_45 = happySpecReduce_0 18# happyReduction_45
+happyReduction_45 = happyIn25
(NoOpens
)
-happyReduce_43 = happySpecReduce_3 18# happyReduction_43
-happyReduction_43 happy_x_3
+happyReduce_46 = happySpecReduce_3 18# happyReduction_46
+happyReduction_46 happy_x_3
happy_x_2
happy_x_1
= case happyOut24 happy_x_2 of { happy_var_2 ->
@@ -1153,15 +1207,15 @@ happyReduction_43 happy_x_3
(OpenIn happy_var_2
)}
-happyReduce_44 = happySpecReduce_1 19# happyReduction_44
-happyReduction_44 happy_x_1
+happyReduce_47 = happySpecReduce_1 19# happyReduction_47
+happyReduction_47 happy_x_1
= case happyOut7 happy_x_1 of { happy_var_1 ->
happyIn26
(OName happy_var_1
)}
-happyReduce_45 = happyReduce 4# 19# happyReduction_45
-happyReduction_45 (happy_x_4 `HappyStk`
+happyReduce_48 = happyReduce 4# 19# happyReduction_48
+happyReduction_48 (happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
happy_x_1 `HappyStk`
@@ -1172,8 +1226,8 @@ happyReduction_45 (happy_x_4 `HappyStk`
(OQualQO happy_var_2 happy_var_3
) `HappyStk` happyRest}}
-happyReduce_46 = happyReduce 6# 19# happyReduction_46
-happyReduction_46 (happy_x_6 `HappyStk`
+happyReduce_49 = happyReduce 6# 19# happyReduction_49
+happyReduction_49 (happy_x_6 `HappyStk`
happy_x_5 `HappyStk`
happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
@@ -1187,48 +1241,48 @@ happyReduction_46 (happy_x_6 `HappyStk`
(OQual happy_var_2 happy_var_3 happy_var_5
) `HappyStk` happyRest}}}
-happyReduce_47 = happySpecReduce_0 20# happyReduction_47
-happyReduction_47 = happyIn27
+happyReduce_50 = happySpecReduce_0 20# happyReduction_50
+happyReduction_50 = happyIn27
(CMCompl
)
-happyReduce_48 = happySpecReduce_1 20# happyReduction_48
-happyReduction_48 happy_x_1
+happyReduce_51 = happySpecReduce_1 20# happyReduction_51
+happyReduction_51 happy_x_1
= happyIn27
(CMIncompl
)
-happyReduce_49 = happySpecReduce_0 21# happyReduction_49
-happyReduction_49 = happyIn28
+happyReduce_52 = happySpecReduce_0 21# happyReduction_52
+happyReduction_52 = happyIn28
(QOCompl
)
-happyReduce_50 = happySpecReduce_1 21# happyReduction_50
-happyReduction_50 happy_x_1
+happyReduce_53 = happySpecReduce_1 21# happyReduction_53
+happyReduction_53 happy_x_1
= happyIn28
(QOIncompl
)
-happyReduce_51 = happySpecReduce_1 21# happyReduction_51
-happyReduction_51 happy_x_1
+happyReduce_54 = happySpecReduce_1 21# happyReduction_54
+happyReduction_54 happy_x_1
= happyIn28
(QOInterface
)
-happyReduce_52 = happySpecReduce_0 22# happyReduction_52
-happyReduction_52 = happyIn29
+happyReduce_55 = happySpecReduce_0 22# happyReduction_55
+happyReduction_55 = happyIn29
([]
)
-happyReduce_53 = happySpecReduce_1 22# happyReduction_53
-happyReduction_53 happy_x_1
+happyReduce_56 = happySpecReduce_1 22# happyReduction_56
+happyReduction_56 happy_x_1
= case happyOut30 happy_x_1 of { happy_var_1 ->
happyIn29
((:[]) happy_var_1
)}
-happyReduce_54 = happySpecReduce_3 22# happyReduction_54
-happyReduction_54 happy_x_3
+happyReduce_57 = happySpecReduce_3 22# happyReduction_57
+happyReduction_57 happy_x_3
happy_x_2
happy_x_1
= case happyOut30 happy_x_1 of { happy_var_1 ->
@@ -1237,15 +1291,15 @@ happyReduction_54 happy_x_3
((:) happy_var_1 happy_var_3
)}}
-happyReduce_55 = happySpecReduce_1 23# happyReduction_55
-happyReduction_55 happy_x_1
+happyReduce_58 = happySpecReduce_1 23# happyReduction_58
+happyReduction_58 happy_x_1
= case happyOut7 happy_x_1 of { happy_var_1 ->
happyIn30
(IAll happy_var_1
)}
-happyReduce_56 = happyReduce 4# 23# happyReduction_56
-happyReduction_56 (happy_x_4 `HappyStk`
+happyReduce_59 = happyReduce 4# 23# happyReduction_59
+happyReduction_59 (happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
happy_x_1 `HappyStk`
@@ -1256,8 +1310,8 @@ happyReduction_56 (happy_x_4 `HappyStk`
(ISome happy_var_1 happy_var_3
) `HappyStk` happyRest}}
-happyReduce_57 = happyReduce 5# 23# happyReduction_57
-happyReduction_57 (happy_x_5 `HappyStk`
+happyReduce_60 = happyReduce 5# 23# happyReduction_60
+happyReduction_60 (happy_x_5 `HappyStk`
happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
@@ -1269,8 +1323,8 @@ happyReduction_57 (happy_x_5 `HappyStk`
(IMinus happy_var_1 happy_var_4
) `HappyStk` happyRest}}
-happyReduce_58 = happySpecReduce_3 24# happyReduction_58
-happyReduction_58 happy_x_3
+happyReduce_61 = happySpecReduce_3 24# happyReduction_61
+happyReduction_61 happy_x_3
happy_x_2
happy_x_1
= case happyOut52 happy_x_1 of { happy_var_1 ->
@@ -1279,8 +1333,8 @@ happyReduction_58 happy_x_3
(DDecl happy_var_1 happy_var_3
)}}
-happyReduce_59 = happySpecReduce_3 24# happyReduction_59
-happyReduction_59 happy_x_3
+happyReduce_62 = happySpecReduce_3 24# happyReduction_62
+happyReduction_62 happy_x_3
happy_x_2
happy_x_1
= case happyOut52 happy_x_1 of { happy_var_1 ->
@@ -1289,8 +1343,8 @@ happyReduction_59 happy_x_3
(DDef happy_var_1 happy_var_3
)}}
-happyReduce_60 = happyReduce 4# 24# happyReduction_60
-happyReduction_60 (happy_x_4 `HappyStk`
+happyReduce_63 = happyReduce 4# 24# happyReduction_63
+happyReduction_63 (happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
happy_x_1 `HappyStk`
@@ -1302,8 +1356,8 @@ happyReduction_60 (happy_x_4 `HappyStk`
(DPatt happy_var_1 happy_var_2 happy_var_4
) `HappyStk` happyRest}}}
-happyReduce_61 = happyReduce 5# 24# happyReduction_61
-happyReduction_61 (happy_x_5 `HappyStk`
+happyReduce_64 = happyReduce 5# 24# happyReduction_64
+happyReduction_64 (happy_x_5 `HappyStk`
happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
@@ -1316,96 +1370,96 @@ happyReduction_61 (happy_x_5 `HappyStk`
(DFull happy_var_1 happy_var_3 happy_var_5
) `HappyStk` happyRest}}}
-happyReduce_62 = happySpecReduce_2 25# happyReduction_62
-happyReduction_62 happy_x_2
+happyReduce_65 = happySpecReduce_2 25# happyReduction_65
+happyReduction_65 happy_x_2
happy_x_1
= case happyOut43 happy_x_2 of { happy_var_2 ->
happyIn32
(DefCat happy_var_2
)}
-happyReduce_63 = happySpecReduce_2 25# happyReduction_63
-happyReduction_63 happy_x_2
+happyReduce_66 = happySpecReduce_2 25# happyReduction_66
+happyReduction_66 happy_x_2
happy_x_1
= case happyOut44 happy_x_2 of { happy_var_2 ->
happyIn32
(DefFun happy_var_2
)}
-happyReduce_64 = happySpecReduce_2 25# happyReduction_64
-happyReduction_64 happy_x_2
+happyReduce_67 = happySpecReduce_2 25# happyReduction_67
+happyReduction_67 happy_x_2
happy_x_1
= case happyOut44 happy_x_2 of { happy_var_2 ->
happyIn32
(DefFunData happy_var_2
)}
-happyReduce_65 = happySpecReduce_2 25# happyReduction_65
-happyReduction_65 happy_x_2
+happyReduce_68 = happySpecReduce_2 25# happyReduction_68
+happyReduction_68 happy_x_2
happy_x_1
= case happyOut42 happy_x_2 of { happy_var_2 ->
happyIn32
(DefDef happy_var_2
)}
-happyReduce_66 = happySpecReduce_2 25# happyReduction_66
-happyReduction_66 happy_x_2
+happyReduce_69 = happySpecReduce_2 25# happyReduction_69
+happyReduction_69 happy_x_2
happy_x_1
= case happyOut45 happy_x_2 of { happy_var_2 ->
happyIn32
(DefData happy_var_2
)}
-happyReduce_67 = happySpecReduce_2 25# happyReduction_67
-happyReduction_67 happy_x_2
+happyReduce_70 = happySpecReduce_2 25# happyReduction_70
+happyReduction_70 happy_x_2
happy_x_1
= case happyOut42 happy_x_2 of { happy_var_2 ->
happyIn32
(DefTrans happy_var_2
)}
-happyReduce_68 = happySpecReduce_2 25# happyReduction_68
-happyReduction_68 happy_x_2
+happyReduce_71 = happySpecReduce_2 25# happyReduction_71
+happyReduction_71 happy_x_2
happy_x_1
= case happyOut46 happy_x_2 of { happy_var_2 ->
happyIn32
(DefPar happy_var_2
)}
-happyReduce_69 = happySpecReduce_2 25# happyReduction_69
-happyReduction_69 happy_x_2
+happyReduce_72 = happySpecReduce_2 25# happyReduction_72
+happyReduction_72 happy_x_2
happy_x_1
= case happyOut42 happy_x_2 of { happy_var_2 ->
happyIn32
(DefOper happy_var_2
)}
-happyReduce_70 = happySpecReduce_2 25# happyReduction_70
-happyReduction_70 happy_x_2
+happyReduce_73 = happySpecReduce_2 25# happyReduction_73
+happyReduction_73 happy_x_2
happy_x_1
= case happyOut47 happy_x_2 of { happy_var_2 ->
happyIn32
(DefLincat happy_var_2
)}
-happyReduce_71 = happySpecReduce_2 25# happyReduction_71
-happyReduction_71 happy_x_2
+happyReduce_74 = happySpecReduce_2 25# happyReduction_74
+happyReduction_74 happy_x_2
happy_x_1
= case happyOut42 happy_x_2 of { happy_var_2 ->
happyIn32
(DefLindef happy_var_2
)}
-happyReduce_72 = happySpecReduce_2 25# happyReduction_72
-happyReduction_72 happy_x_2
+happyReduce_75 = happySpecReduce_2 25# happyReduction_75
+happyReduction_75 happy_x_2
happy_x_1
= case happyOut42 happy_x_2 of { happy_var_2 ->
happyIn32
(DefLin happy_var_2
)}
-happyReduce_73 = happySpecReduce_3 25# happyReduction_73
-happyReduction_73 happy_x_3
+happyReduce_76 = happySpecReduce_3 25# happyReduction_76
+happyReduction_76 happy_x_3
happy_x_2
happy_x_1
= case happyOut47 happy_x_3 of { happy_var_3 ->
@@ -1413,8 +1467,8 @@ happyReduction_73 happy_x_3
(DefPrintCat happy_var_3
)}
-happyReduce_74 = happySpecReduce_3 25# happyReduction_74
-happyReduction_74 happy_x_3
+happyReduce_77 = happySpecReduce_3 25# happyReduction_77
+happyReduction_77 happy_x_3
happy_x_2
happy_x_1
= case happyOut47 happy_x_3 of { happy_var_3 ->
@@ -1422,40 +1476,40 @@ happyReduction_74 happy_x_3
(DefPrintFun happy_var_3
)}
-happyReduce_75 = happySpecReduce_2 25# happyReduction_75
-happyReduction_75 happy_x_2
+happyReduce_78 = happySpecReduce_2 25# happyReduction_78
+happyReduction_78 happy_x_2
happy_x_1
= case happyOut48 happy_x_2 of { happy_var_2 ->
happyIn32
(DefFlag happy_var_2
)}
-happyReduce_76 = happySpecReduce_2 25# happyReduction_76
-happyReduction_76 happy_x_2
+happyReduce_79 = happySpecReduce_2 25# happyReduction_79
+happyReduction_79 happy_x_2
happy_x_1
= case happyOut47 happy_x_2 of { happy_var_2 ->
happyIn32
(DefPrintOld happy_var_2
)}
-happyReduce_77 = happySpecReduce_2 25# happyReduction_77
-happyReduction_77 happy_x_2
+happyReduce_80 = happySpecReduce_2 25# happyReduction_80
+happyReduction_80 happy_x_2
happy_x_1
= case happyOut42 happy_x_2 of { happy_var_2 ->
happyIn32
(DefLintype happy_var_2
)}
-happyReduce_78 = happySpecReduce_2 25# happyReduction_78
-happyReduction_78 happy_x_2
+happyReduce_81 = happySpecReduce_2 25# happyReduction_81
+happyReduction_81 happy_x_2
happy_x_1
= case happyOut42 happy_x_2 of { happy_var_2 ->
happyIn32
(DefPattern happy_var_2
)}
-happyReduce_79 = happyReduce 7# 25# happyReduction_79
-happyReduction_79 (happy_x_7 `HappyStk`
+happyReduce_82 = happyReduce 7# 25# happyReduction_82
+happyReduction_82 (happy_x_7 `HappyStk`
happy_x_6 `HappyStk`
happy_x_5 `HappyStk`
happy_x_4 `HappyStk`
@@ -1469,16 +1523,16 @@ happyReduction_79 (happy_x_7 `HappyStk`
(DefPackage happy_var_2 (reverse happy_var_5)
) `HappyStk` happyRest}}
-happyReduce_80 = happySpecReduce_2 25# happyReduction_80
-happyReduction_80 happy_x_2
+happyReduce_83 = happySpecReduce_2 25# happyReduction_83
+happyReduction_83 happy_x_2
happy_x_1
= case happyOut42 happy_x_2 of { happy_var_2 ->
happyIn32
(DefVars happy_var_2
)}
-happyReduce_81 = happySpecReduce_3 25# happyReduction_81
-happyReduction_81 happy_x_3
+happyReduce_84 = happySpecReduce_3 25# happyReduction_84
+happyReduction_84 happy_x_3
happy_x_2
happy_x_1
= case happyOut7 happy_x_2 of { happy_var_2 ->
@@ -1486,8 +1540,8 @@ happyReduction_81 happy_x_3
(DefTokenizer happy_var_2
)}
-happyReduce_82 = happySpecReduce_2 26# happyReduction_82
-happyReduction_82 happy_x_2
+happyReduce_85 = happySpecReduce_2 26# happyReduction_85
+happyReduction_85 happy_x_2
happy_x_1
= case happyOut7 happy_x_1 of { happy_var_1 ->
case happyOut86 happy_x_2 of { happy_var_2 ->
@@ -1495,8 +1549,8 @@ happyReduction_82 happy_x_2
(SimpleCatDef happy_var_1 (reverse happy_var_2)
)}}
-happyReduce_83 = happyReduce 4# 26# happyReduction_83
-happyReduction_83 (happy_x_4 `HappyStk`
+happyReduce_86 = happyReduce 4# 26# happyReduction_86
+happyReduction_86 (happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
happy_x_1 `HappyStk`
@@ -1507,8 +1561,8 @@ happyReduction_83 (happy_x_4 `HappyStk`
(ListCatDef happy_var_2 (reverse happy_var_3)
) `HappyStk` happyRest}}
-happyReduce_84 = happyReduce 7# 26# happyReduction_84
-happyReduction_84 (happy_x_7 `HappyStk`
+happyReduce_87 = happyReduce 7# 26# happyReduction_87
+happyReduction_87 (happy_x_7 `HappyStk`
happy_x_6 `HappyStk`
happy_x_5 `HappyStk`
happy_x_4 `HappyStk`
@@ -1523,8 +1577,8 @@ happyReduction_84 (happy_x_7 `HappyStk`
(ListSizeCatDef happy_var_2 (reverse happy_var_3) happy_var_6
) `HappyStk` happyRest}}}
-happyReduce_85 = happySpecReduce_3 27# happyReduction_85
-happyReduction_85 happy_x_3
+happyReduce_88 = happySpecReduce_3 27# happyReduction_88
+happyReduction_88 happy_x_3
happy_x_2
happy_x_1
= case happyOut50 happy_x_1 of { happy_var_1 ->
@@ -1533,8 +1587,8 @@ happyReduction_85 happy_x_3
(FunDef happy_var_1 happy_var_3
)}}
-happyReduce_86 = happySpecReduce_3 28# happyReduction_86
-happyReduction_86 happy_x_3
+happyReduce_89 = happySpecReduce_3 28# happyReduction_89
+happyReduction_89 happy_x_3
happy_x_2
happy_x_1
= case happyOut7 happy_x_1 of { happy_var_1 ->
@@ -1543,15 +1597,15 @@ happyReduction_86 happy_x_3
(DataDef happy_var_1 happy_var_3
)}}
-happyReduce_87 = happySpecReduce_1 29# happyReduction_87
-happyReduction_87 happy_x_1
+happyReduce_90 = happySpecReduce_1 29# happyReduction_90
+happyReduction_90 happy_x_1
= case happyOut7 happy_x_1 of { happy_var_1 ->
happyIn36
(DataId happy_var_1
)}
-happyReduce_88 = happySpecReduce_3 29# happyReduction_88
-happyReduction_88 happy_x_3
+happyReduce_91 = happySpecReduce_3 29# happyReduction_91
+happyReduction_91 happy_x_3
happy_x_2
happy_x_1
= case happyOut7 happy_x_1 of { happy_var_1 ->
@@ -1560,20 +1614,20 @@ happyReduction_88 happy_x_3
(DataQId happy_var_1 happy_var_3
)}}
-happyReduce_89 = happySpecReduce_0 30# happyReduction_89
-happyReduction_89 = happyIn37
+happyReduce_92 = happySpecReduce_0 30# happyReduction_92
+happyReduction_92 = happyIn37
([]
)
-happyReduce_90 = happySpecReduce_1 30# happyReduction_90
-happyReduction_90 happy_x_1
+happyReduce_93 = happySpecReduce_1 30# happyReduction_93
+happyReduction_93 happy_x_1
= case happyOut36 happy_x_1 of { happy_var_1 ->
happyIn37
((:[]) happy_var_1
)}
-happyReduce_91 = happySpecReduce_3 30# happyReduction_91
-happyReduction_91 happy_x_3
+happyReduce_94 = happySpecReduce_3 30# happyReduction_94
+happyReduction_94 happy_x_3
happy_x_2
happy_x_1
= case happyOut36 happy_x_1 of { happy_var_1 ->
@@ -1582,8 +1636,8 @@ happyReduction_91 happy_x_3
((:) happy_var_1 happy_var_3
)}}
-happyReduce_92 = happySpecReduce_3 31# happyReduction_92
-happyReduction_92 happy_x_3
+happyReduce_95 = happySpecReduce_3 31# happyReduction_95
+happyReduction_95 happy_x_3
happy_x_2
happy_x_1
= case happyOut7 happy_x_1 of { happy_var_1 ->
@@ -1592,8 +1646,8 @@ happyReduction_92 happy_x_3
(ParDefDir happy_var_1 happy_var_3
)}}
-happyReduce_93 = happyReduce 6# 31# happyReduction_93
-happyReduction_93 (happy_x_6 `HappyStk`
+happyReduce_96 = happyReduce 6# 31# happyReduction_96
+happyReduction_96 (happy_x_6 `HappyStk`
happy_x_5 `HappyStk`
happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
@@ -1606,15 +1660,15 @@ happyReduction_93 (happy_x_6 `HappyStk`
(ParDefIndir happy_var_1 happy_var_5
) `HappyStk` happyRest}}
-happyReduce_94 = happySpecReduce_1 31# happyReduction_94
-happyReduction_94 happy_x_1
+happyReduce_97 = happySpecReduce_1 31# happyReduction_97
+happyReduction_97 happy_x_1
= case happyOut7 happy_x_1 of { happy_var_1 ->
happyIn38
(ParDefAbs happy_var_1
)}
-happyReduce_95 = happySpecReduce_2 32# happyReduction_95
-happyReduction_95 happy_x_2
+happyReduce_98 = happySpecReduce_2 32# happyReduction_98
+happyReduction_98 happy_x_2
happy_x_1
= case happyOut7 happy_x_1 of { happy_var_1 ->
case happyOut86 happy_x_2 of { happy_var_2 ->
@@ -1622,8 +1676,8 @@ happyReduction_95 happy_x_2
(ParConstr happy_var_1 (reverse happy_var_2)
)}}
-happyReduce_96 = happySpecReduce_3 33# happyReduction_96
-happyReduction_96 happy_x_3
+happyReduce_99 = happySpecReduce_3 33# happyReduction_99
+happyReduction_99 happy_x_3
happy_x_2
happy_x_1
= case happyOut52 happy_x_1 of { happy_var_1 ->
@@ -1632,8 +1686,8 @@ happyReduction_96 happy_x_3
(PrintDef happy_var_1 happy_var_3
)}}
-happyReduce_97 = happySpecReduce_3 34# happyReduction_97
-happyReduction_97 happy_x_3
+happyReduce_100 = happySpecReduce_3 34# happyReduction_100
+happyReduction_100 happy_x_3
happy_x_2
happy_x_1
= case happyOut7 happy_x_1 of { happy_var_1 ->
@@ -1642,16 +1696,16 @@ happyReduction_97 happy_x_3
(FlagDef happy_var_1 happy_var_3
)}}
-happyReduce_98 = happySpecReduce_2 35# happyReduction_98
-happyReduction_98 happy_x_2
+happyReduce_101 = happySpecReduce_2 35# happyReduction_101
+happyReduction_101 happy_x_2
happy_x_1
= case happyOut31 happy_x_1 of { happy_var_1 ->
happyIn42
((:[]) happy_var_1
)}
-happyReduce_99 = happySpecReduce_3 35# happyReduction_99
-happyReduction_99 happy_x_3
+happyReduce_102 = happySpecReduce_3 35# happyReduction_102
+happyReduction_102 happy_x_3
happy_x_2
happy_x_1
= case happyOut31 happy_x_1 of { happy_var_1 ->
@@ -1660,16 +1714,16 @@ happyReduction_99 happy_x_3
((:) happy_var_1 happy_var_3
)}}
-happyReduce_100 = happySpecReduce_2 36# happyReduction_100
-happyReduction_100 happy_x_2
+happyReduce_103 = happySpecReduce_2 36# happyReduction_103
+happyReduction_103 happy_x_2
happy_x_1
= case happyOut33 happy_x_1 of { happy_var_1 ->
happyIn43
((:[]) happy_var_1
)}
-happyReduce_101 = happySpecReduce_3 36# happyReduction_101
-happyReduction_101 happy_x_3
+happyReduce_104 = happySpecReduce_3 36# happyReduction_104
+happyReduction_104 happy_x_3
happy_x_2
happy_x_1
= case happyOut33 happy_x_1 of { happy_var_1 ->
@@ -1678,16 +1732,16 @@ happyReduction_101 happy_x_3
((:) happy_var_1 happy_var_3
)}}
-happyReduce_102 = happySpecReduce_2 37# happyReduction_102
-happyReduction_102 happy_x_2
+happyReduce_105 = happySpecReduce_2 37# happyReduction_105
+happyReduction_105 happy_x_2
happy_x_1
= case happyOut34 happy_x_1 of { happy_var_1 ->
happyIn44
((:[]) happy_var_1
)}
-happyReduce_103 = happySpecReduce_3 37# happyReduction_103
-happyReduction_103 happy_x_3
+happyReduce_106 = happySpecReduce_3 37# happyReduction_106
+happyReduction_106 happy_x_3
happy_x_2
happy_x_1
= case happyOut34 happy_x_1 of { happy_var_1 ->
@@ -1696,16 +1750,16 @@ happyReduction_103 happy_x_3
((:) happy_var_1 happy_var_3
)}}
-happyReduce_104 = happySpecReduce_2 38# happyReduction_104
-happyReduction_104 happy_x_2
+happyReduce_107 = happySpecReduce_2 38# happyReduction_107
+happyReduction_107 happy_x_2
happy_x_1
= case happyOut35 happy_x_1 of { happy_var_1 ->
happyIn45
((:[]) happy_var_1
)}
-happyReduce_105 = happySpecReduce_3 38# happyReduction_105
-happyReduction_105 happy_x_3
+happyReduce_108 = happySpecReduce_3 38# happyReduction_108
+happyReduction_108 happy_x_3
happy_x_2
happy_x_1
= case happyOut35 happy_x_1 of { happy_var_1 ->
@@ -1714,16 +1768,16 @@ happyReduction_105 happy_x_3
((:) happy_var_1 happy_var_3
)}}
-happyReduce_106 = happySpecReduce_2 39# happyReduction_106
-happyReduction_106 happy_x_2
+happyReduce_109 = happySpecReduce_2 39# happyReduction_109
+happyReduction_109 happy_x_2
happy_x_1
= case happyOut38 happy_x_1 of { happy_var_1 ->
happyIn46
((:[]) happy_var_1
)}
-happyReduce_107 = happySpecReduce_3 39# happyReduction_107
-happyReduction_107 happy_x_3
+happyReduce_110 = happySpecReduce_3 39# happyReduction_110
+happyReduction_110 happy_x_3
happy_x_2
happy_x_1
= case happyOut38 happy_x_1 of { happy_var_1 ->
@@ -1732,16 +1786,16 @@ happyReduction_107 happy_x_3
((:) happy_var_1 happy_var_3
)}}
-happyReduce_108 = happySpecReduce_2 40# happyReduction_108
-happyReduction_108 happy_x_2
+happyReduce_111 = happySpecReduce_2 40# happyReduction_111
+happyReduction_111 happy_x_2
happy_x_1
= case happyOut40 happy_x_1 of { happy_var_1 ->
happyIn47
((:[]) happy_var_1
)}
-happyReduce_109 = happySpecReduce_3 40# happyReduction_109
-happyReduction_109 happy_x_3
+happyReduce_112 = happySpecReduce_3 40# happyReduction_112
+happyReduction_112 happy_x_3
happy_x_2
happy_x_1
= case happyOut40 happy_x_1 of { happy_var_1 ->
@@ -1750,16 +1804,16 @@ happyReduction_109 happy_x_3
((:) happy_var_1 happy_var_3
)}}
-happyReduce_110 = happySpecReduce_2 41# happyReduction_110
-happyReduction_110 happy_x_2
+happyReduce_113 = happySpecReduce_2 41# happyReduction_113
+happyReduction_113 happy_x_2
happy_x_1
= case happyOut41 happy_x_1 of { happy_var_1 ->
happyIn48
((:[]) happy_var_1
)}
-happyReduce_111 = happySpecReduce_3 41# happyReduction_111
-happyReduction_111 happy_x_3
+happyReduce_114 = happySpecReduce_3 41# happyReduction_114
+happyReduction_114 happy_x_3
happy_x_2
happy_x_1
= case happyOut41 happy_x_1 of { happy_var_1 ->
@@ -1768,20 +1822,20 @@ happyReduction_111 happy_x_3
((:) happy_var_1 happy_var_3
)}}
-happyReduce_112 = happySpecReduce_0 42# happyReduction_112
-happyReduction_112 = happyIn49
+happyReduce_115 = happySpecReduce_0 42# happyReduction_115
+happyReduction_115 = happyIn49
([]
)
-happyReduce_113 = happySpecReduce_1 42# happyReduction_113
-happyReduction_113 happy_x_1
+happyReduce_116 = happySpecReduce_1 42# happyReduction_116
+happyReduction_116 happy_x_1
= case happyOut39 happy_x_1 of { happy_var_1 ->
happyIn49
((:[]) happy_var_1
)}
-happyReduce_114 = happySpecReduce_3 42# happyReduction_114
-happyReduction_114 happy_x_3
+happyReduce_117 = happySpecReduce_3 42# happyReduction_117
+happyReduction_117 happy_x_3
happy_x_2
happy_x_1
= case happyOut39 happy_x_1 of { happy_var_1 ->
@@ -1790,15 +1844,15 @@ happyReduction_114 happy_x_3
((:) happy_var_1 happy_var_3
)}}
-happyReduce_115 = happySpecReduce_1 43# happyReduction_115
-happyReduction_115 happy_x_1
+happyReduce_118 = happySpecReduce_1 43# happyReduction_118
+happyReduction_118 happy_x_1
= case happyOut7 happy_x_1 of { happy_var_1 ->
happyIn50
((:[]) happy_var_1
)}
-happyReduce_116 = happySpecReduce_3 43# happyReduction_116
-happyReduction_116 happy_x_3
+happyReduce_119 = happySpecReduce_3 43# happyReduction_119
+happyReduction_119 happy_x_3
happy_x_2
happy_x_1
= case happyOut7 happy_x_1 of { happy_var_1 ->
@@ -1807,15 +1861,15 @@ happyReduction_116 happy_x_3
((:) happy_var_1 happy_var_3
)}}
-happyReduce_117 = happySpecReduce_1 44# happyReduction_117
-happyReduction_117 happy_x_1
+happyReduce_120 = happySpecReduce_1 44# happyReduction_120
+happyReduction_120 happy_x_1
= case happyOut7 happy_x_1 of { happy_var_1 ->
happyIn51
(IdentName happy_var_1
)}
-happyReduce_118 = happySpecReduce_3 44# happyReduction_118
-happyReduction_118 happy_x_3
+happyReduce_121 = happySpecReduce_3 44# happyReduction_121
+happyReduction_121 happy_x_3
happy_x_2
happy_x_1
= case happyOut7 happy_x_2 of { happy_var_2 ->
@@ -1823,15 +1877,15 @@ happyReduction_118 happy_x_3
(ListName happy_var_2
)}
-happyReduce_119 = happySpecReduce_1 45# happyReduction_119
-happyReduction_119 happy_x_1
+happyReduce_122 = happySpecReduce_1 45# happyReduction_122
+happyReduction_122 happy_x_1
= case happyOut51 happy_x_1 of { happy_var_1 ->
happyIn52
((:[]) happy_var_1
)}
-happyReduce_120 = happySpecReduce_3 45# happyReduction_120
-happyReduction_120 happy_x_3
+happyReduce_123 = happySpecReduce_3 45# happyReduction_123
+happyReduction_123 happy_x_3
happy_x_2
happy_x_1
= case happyOut51 happy_x_1 of { happy_var_1 ->
@@ -1840,8 +1894,8 @@ happyReduction_120 happy_x_3
((:) happy_var_1 happy_var_3
)}}
-happyReduce_121 = happySpecReduce_3 46# happyReduction_121
-happyReduction_121 happy_x_3
+happyReduce_124 = happySpecReduce_3 46# happyReduction_124
+happyReduction_124 happy_x_3
happy_x_2
happy_x_1
= case happyOut50 happy_x_1 of { happy_var_1 ->
@@ -1850,8 +1904,8 @@ happyReduction_121 happy_x_3
(LDDecl happy_var_1 happy_var_3
)}}
-happyReduce_122 = happySpecReduce_3 46# happyReduction_122
-happyReduction_122 happy_x_3
+happyReduce_125 = happySpecReduce_3 46# happyReduction_125
+happyReduction_125 happy_x_3
happy_x_2
happy_x_1
= case happyOut50 happy_x_1 of { happy_var_1 ->
@@ -1860,8 +1914,8 @@ happyReduction_122 happy_x_3
(LDDef happy_var_1 happy_var_3
)}}
-happyReduce_123 = happyReduce 5# 46# happyReduction_123
-happyReduction_123 (happy_x_5 `HappyStk`
+happyReduce_126 = happyReduce 5# 46# happyReduction_126
+happyReduction_126 (happy_x_5 `HappyStk`
happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
@@ -1874,20 +1928,20 @@ happyReduction_123 (happy_x_5 `HappyStk`
(LDFull happy_var_1 happy_var_3 happy_var_5
) `HappyStk` happyRest}}}
-happyReduce_124 = happySpecReduce_0 47# happyReduction_124
-happyReduction_124 = happyIn54
+happyReduce_127 = happySpecReduce_0 47# happyReduction_127
+happyReduction_127 = happyIn54
([]
)
-happyReduce_125 = happySpecReduce_1 47# happyReduction_125
-happyReduction_125 happy_x_1
+happyReduce_128 = happySpecReduce_1 47# happyReduction_128
+happyReduction_128 happy_x_1
= case happyOut53 happy_x_1 of { happy_var_1 ->
happyIn54
((:[]) happy_var_1
)}
-happyReduce_126 = happySpecReduce_3 47# happyReduction_126
-happyReduction_126 happy_x_3
+happyReduce_129 = happySpecReduce_3 47# happyReduction_129
+happyReduction_129 happy_x_3
happy_x_2
happy_x_1
= case happyOut53 happy_x_1 of { happy_var_1 ->
@@ -1896,15 +1950,15 @@ happyReduction_126 happy_x_3
((:) happy_var_1 happy_var_3
)}}
-happyReduce_127 = happySpecReduce_1 48# happyReduction_127
-happyReduction_127 happy_x_1
+happyReduce_130 = happySpecReduce_1 48# happyReduction_130
+happyReduction_130 happy_x_1
= case happyOut7 happy_x_1 of { happy_var_1 ->
happyIn55
(EIdent happy_var_1
)}
-happyReduce_128 = happySpecReduce_3 48# happyReduction_128
-happyReduction_128 happy_x_3
+happyReduce_131 = happySpecReduce_3 48# happyReduction_131
+happyReduction_131 happy_x_3
happy_x_2
happy_x_1
= case happyOut7 happy_x_2 of { happy_var_2 ->
@@ -1912,8 +1966,8 @@ happyReduction_128 happy_x_3
(EConstr happy_var_2
)}
-happyReduce_129 = happySpecReduce_3 48# happyReduction_129
-happyReduction_129 happy_x_3
+happyReduce_132 = happySpecReduce_3 48# happyReduction_132
+happyReduction_132 happy_x_3
happy_x_2
happy_x_1
= case happyOut7 happy_x_2 of { happy_var_2 ->
@@ -1921,55 +1975,55 @@ happyReduction_129 happy_x_3
(ECons happy_var_2
)}
-happyReduce_130 = happySpecReduce_1 48# happyReduction_130
-happyReduction_130 happy_x_1
+happyReduce_133 = happySpecReduce_1 48# happyReduction_133
+happyReduction_133 happy_x_1
= case happyOut69 happy_x_1 of { happy_var_1 ->
happyIn55
(ESort happy_var_1
)}
-happyReduce_131 = happySpecReduce_1 48# happyReduction_131
-happyReduction_131 happy_x_1
+happyReduce_134 = happySpecReduce_1 48# happyReduction_134
+happyReduction_134 happy_x_1
= case happyOut9 happy_x_1 of { happy_var_1 ->
happyIn55
(EString happy_var_1
)}
-happyReduce_132 = happySpecReduce_1 48# happyReduction_132
-happyReduction_132 happy_x_1
+happyReduce_135 = happySpecReduce_1 48# happyReduction_135
+happyReduction_135 happy_x_1
= case happyOut8 happy_x_1 of { happy_var_1 ->
happyIn55
(EInt happy_var_1
)}
-happyReduce_133 = happySpecReduce_1 48# happyReduction_133
-happyReduction_133 happy_x_1
+happyReduce_136 = happySpecReduce_1 48# happyReduction_136
+happyReduction_136 happy_x_1
= case happyOut10 happy_x_1 of { happy_var_1 ->
happyIn55
(EFloat happy_var_1
)}
-happyReduce_134 = happySpecReduce_1 48# happyReduction_134
-happyReduction_134 happy_x_1
+happyReduce_137 = happySpecReduce_1 48# happyReduction_137
+happyReduction_137 happy_x_1
= happyIn55
(EMeta
)
-happyReduce_135 = happySpecReduce_2 48# happyReduction_135
-happyReduction_135 happy_x_2
+happyReduce_138 = happySpecReduce_2 48# happyReduction_138
+happyReduction_138 happy_x_2
happy_x_1
= happyIn55
(EEmpty
)
-happyReduce_136 = happySpecReduce_1 48# happyReduction_136
-happyReduction_136 happy_x_1
+happyReduce_139 = happySpecReduce_1 48# happyReduction_139
+happyReduction_139 happy_x_1
= happyIn55
(EData
)
-happyReduce_137 = happyReduce 4# 48# happyReduction_137
-happyReduction_137 (happy_x_4 `HappyStk`
+happyReduce_140 = happyReduce 4# 48# happyReduction_140
+happyReduction_140 (happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
happy_x_1 `HappyStk`
@@ -1980,8 +2034,8 @@ happyReduction_137 (happy_x_4 `HappyStk`
(EList happy_var_2 happy_var_3
) `HappyStk` happyRest}}
-happyReduce_138 = happySpecReduce_3 48# happyReduction_138
-happyReduction_138 happy_x_3
+happyReduce_141 = happySpecReduce_3 48# happyReduction_141
+happyReduction_141 happy_x_3
happy_x_2
happy_x_1
= case happyOut9 happy_x_2 of { happy_var_2 ->
@@ -1989,8 +2043,8 @@ happyReduction_138 happy_x_3
(EStrings happy_var_2
)}
-happyReduce_139 = happySpecReduce_3 48# happyReduction_139
-happyReduction_139 happy_x_3
+happyReduce_142 = happySpecReduce_3 48# happyReduction_142
+happyReduction_142 happy_x_3
happy_x_2
happy_x_1
= case happyOut54 happy_x_2 of { happy_var_2 ->
@@ -1998,8 +2052,8 @@ happyReduction_139 happy_x_3
(ERecord happy_var_2
)}
-happyReduce_140 = happySpecReduce_3 48# happyReduction_140
-happyReduction_140 happy_x_3
+happyReduce_143 = happySpecReduce_3 48# happyReduction_143
+happyReduction_143 happy_x_3
happy_x_2
happy_x_1
= case happyOut77 happy_x_2 of { happy_var_2 ->
@@ -2007,8 +2061,8 @@ happyReduction_140 happy_x_3
(ETuple happy_var_2
)}
-happyReduce_141 = happyReduce 4# 48# happyReduction_141
-happyReduction_141 (happy_x_4 `HappyStk`
+happyReduce_144 = happyReduce 4# 48# happyReduction_144
+happyReduction_144 (happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
happy_x_1 `HappyStk`
@@ -2018,8 +2072,8 @@ happyReduction_141 (happy_x_4 `HappyStk`
(EIndir happy_var_3
) `HappyStk` happyRest}
-happyReduce_142 = happyReduce 5# 48# happyReduction_142
-happyReduction_142 (happy_x_5 `HappyStk`
+happyReduce_145 = happyReduce 5# 48# happyReduction_145
+happyReduction_145 (happy_x_5 `HappyStk`
happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
@@ -2031,8 +2085,8 @@ happyReduction_142 (happy_x_5 `HappyStk`
(ETyped happy_var_2 happy_var_4
) `HappyStk` happyRest}}
-happyReduce_143 = happySpecReduce_3 48# happyReduction_143
-happyReduction_143 happy_x_3
+happyReduce_146 = happySpecReduce_3 48# happyReduction_146
+happyReduction_146 happy_x_3
happy_x_2
happy_x_1
= case happyOut60 happy_x_2 of { happy_var_2 ->
@@ -2040,15 +2094,15 @@ happyReduction_143 happy_x_3
(happy_var_2
)}
-happyReduce_144 = happySpecReduce_1 48# happyReduction_144
-happyReduction_144 happy_x_1
+happyReduce_147 = happySpecReduce_1 48# happyReduction_147
+happyReduction_147 happy_x_1
= case happyOut11 happy_x_1 of { happy_var_1 ->
happyIn55
(ELString happy_var_1
)}
-happyReduce_145 = happySpecReduce_3 49# happyReduction_145
-happyReduction_145 happy_x_3
+happyReduce_148 = happySpecReduce_3 49# happyReduction_148
+happyReduction_148 happy_x_3
happy_x_2
happy_x_1
= case happyOut56 happy_x_1 of { happy_var_1 ->
@@ -2057,8 +2111,8 @@ happyReduction_145 happy_x_3
(EProj happy_var_1 happy_var_3
)}}
-happyReduce_146 = happyReduce 5# 49# happyReduction_146
-happyReduction_146 (happy_x_5 `HappyStk`
+happyReduce_149 = happyReduce 5# 49# happyReduction_149
+happyReduction_149 (happy_x_5 `HappyStk`
happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
@@ -2070,8 +2124,8 @@ happyReduction_146 (happy_x_5 `HappyStk`
(EQConstr happy_var_2 happy_var_4
) `HappyStk` happyRest}}
-happyReduce_147 = happyReduce 4# 49# happyReduction_147
-happyReduction_147 (happy_x_4 `HappyStk`
+happyReduce_150 = happyReduce 4# 49# happyReduction_150
+happyReduction_150 (happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
happy_x_1 `HappyStk`
@@ -2082,15 +2136,15 @@ happyReduction_147 (happy_x_4 `HappyStk`
(EQCons happy_var_2 happy_var_4
) `HappyStk` happyRest}}
-happyReduce_148 = happySpecReduce_1 49# happyReduction_148
-happyReduction_148 happy_x_1
+happyReduce_151 = happySpecReduce_1 49# happyReduction_151
+happyReduction_151 happy_x_1
= case happyOut55 happy_x_1 of { happy_var_1 ->
happyIn56
(happy_var_1
)}
-happyReduce_149 = happySpecReduce_2 50# happyReduction_149
-happyReduction_149 happy_x_2
+happyReduce_152 = happySpecReduce_2 50# happyReduction_152
+happyReduction_152 happy_x_2
happy_x_1
= case happyOut57 happy_x_1 of { happy_var_1 ->
case happyOut56 happy_x_2 of { happy_var_2 ->
@@ -2098,8 +2152,8 @@ happyReduction_149 happy_x_2
(EApp happy_var_1 happy_var_2
)}}
-happyReduce_150 = happyReduce 4# 50# happyReduction_150
-happyReduction_150 (happy_x_4 `HappyStk`
+happyReduce_153 = happyReduce 4# 50# happyReduction_153
+happyReduction_153 (happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
happy_x_1 `HappyStk`
@@ -2109,8 +2163,8 @@ happyReduction_150 (happy_x_4 `HappyStk`
(ETable happy_var_3
) `HappyStk` happyRest}
-happyReduce_151 = happyReduce 5# 50# happyReduction_151
-happyReduction_151 (happy_x_5 `HappyStk`
+happyReduce_154 = happyReduce 5# 50# happyReduction_154
+happyReduction_154 (happy_x_5 `HappyStk`
happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
@@ -2122,8 +2176,8 @@ happyReduction_151 (happy_x_5 `HappyStk`
(ETTable happy_var_2 happy_var_4
) `HappyStk` happyRest}}
-happyReduce_152 = happyReduce 5# 50# happyReduction_152
-happyReduction_152 (happy_x_5 `HappyStk`
+happyReduce_155 = happyReduce 5# 50# happyReduction_155
+happyReduction_155 (happy_x_5 `HappyStk`
happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
@@ -2135,8 +2189,8 @@ happyReduction_152 (happy_x_5 `HappyStk`
(EVTable happy_var_2 happy_var_4
) `HappyStk` happyRest}}
-happyReduce_153 = happyReduce 6# 50# happyReduction_153
-happyReduction_153 (happy_x_6 `HappyStk`
+happyReduce_156 = happyReduce 6# 50# happyReduction_156
+happyReduction_156 (happy_x_6 `HappyStk`
happy_x_5 `HappyStk`
happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
@@ -2149,8 +2203,8 @@ happyReduction_153 (happy_x_6 `HappyStk`
(ECase happy_var_2 happy_var_5
) `HappyStk` happyRest}}
-happyReduce_154 = happyReduce 4# 50# happyReduction_154
-happyReduction_154 (happy_x_4 `HappyStk`
+happyReduce_157 = happyReduce 4# 50# happyReduction_157
+happyReduction_157 (happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
happy_x_1 `HappyStk`
@@ -2160,8 +2214,8 @@ happyReduction_154 (happy_x_4 `HappyStk`
(EVariants happy_var_3
) `HappyStk` happyRest}
-happyReduce_155 = happyReduce 6# 50# happyReduction_155
-happyReduction_155 (happy_x_6 `HappyStk`
+happyReduce_158 = happyReduce 6# 50# happyReduction_158
+happyReduction_158 (happy_x_6 `HappyStk`
happy_x_5 `HappyStk`
happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
@@ -2174,8 +2228,8 @@ happyReduction_155 (happy_x_6 `HappyStk`
(EPre happy_var_3 happy_var_5
) `HappyStk` happyRest}}
-happyReduce_156 = happyReduce 4# 50# happyReduction_156
-happyReduction_156 (happy_x_4 `HappyStk`
+happyReduce_159 = happyReduce 4# 50# happyReduction_159
+happyReduction_159 (happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
happy_x_1 `HappyStk`
@@ -2185,8 +2239,8 @@ happyReduction_156 (happy_x_4 `HappyStk`
(EStrs happy_var_3
) `HappyStk` happyRest}
-happyReduce_157 = happySpecReduce_3 50# happyReduction_157
-happyReduction_157 happy_x_3
+happyReduce_160 = happySpecReduce_3 50# happyReduction_160
+happyReduction_160 happy_x_3
happy_x_2
happy_x_1
= case happyOut7 happy_x_1 of { happy_var_1 ->
@@ -2195,23 +2249,23 @@ happyReduction_157 happy_x_3
(EConAt happy_var_1 happy_var_3
)}}
-happyReduce_158 = happySpecReduce_1 50# happyReduction_158
-happyReduction_158 happy_x_1
+happyReduce_161 = happySpecReduce_1 50# happyReduction_161
+happyReduction_161 happy_x_1
= case happyOut56 happy_x_1 of { happy_var_1 ->
happyIn57
(happy_var_1
)}
-happyReduce_159 = happySpecReduce_2 50# happyReduction_159
-happyReduction_159 happy_x_2
+happyReduce_162 = happySpecReduce_2 50# happyReduction_162
+happyReduction_162 happy_x_2
happy_x_1
= case happyOut7 happy_x_2 of { happy_var_2 ->
happyIn57
(ELin happy_var_2
)}
-happyReduce_160 = happySpecReduce_3 51# happyReduction_160
-happyReduction_160 happy_x_3
+happyReduce_163 = happySpecReduce_3 51# happyReduction_163
+happyReduction_163 happy_x_3
happy_x_2
happy_x_1
= case happyOut58 happy_x_1 of { happy_var_1 ->
@@ -2220,8 +2274,8 @@ happyReduction_160 happy_x_3
(ESelect happy_var_1 happy_var_3
)}}
-happyReduce_161 = happySpecReduce_3 51# happyReduction_161
-happyReduction_161 happy_x_3
+happyReduce_164 = happySpecReduce_3 51# happyReduction_164
+happyReduction_164 happy_x_3
happy_x_2
happy_x_1
= case happyOut58 happy_x_1 of { happy_var_1 ->
@@ -2230,8 +2284,8 @@ happyReduction_161 happy_x_3
(ETupTyp happy_var_1 happy_var_3
)}}
-happyReduce_162 = happySpecReduce_3 51# happyReduction_162
-happyReduction_162 happy_x_3
+happyReduce_165 = happySpecReduce_3 51# happyReduction_165
+happyReduction_165 happy_x_3
happy_x_2
happy_x_1
= case happyOut58 happy_x_1 of { happy_var_1 ->
@@ -2240,15 +2294,15 @@ happyReduction_162 happy_x_3
(EExtend happy_var_1 happy_var_3
)}}
-happyReduce_163 = happySpecReduce_1 51# happyReduction_163
-happyReduction_163 happy_x_1
+happyReduce_166 = happySpecReduce_1 51# happyReduction_166
+happyReduction_166 happy_x_1
= case happyOut57 happy_x_1 of { happy_var_1 ->
happyIn58
(happy_var_1
)}
-happyReduce_164 = happySpecReduce_3 52# happyReduction_164
-happyReduction_164 happy_x_3
+happyReduce_167 = happySpecReduce_3 52# happyReduction_167
+happyReduction_167 happy_x_3
happy_x_2
happy_x_1
= case happyOut61 happy_x_1 of { happy_var_1 ->
@@ -2257,15 +2311,15 @@ happyReduction_164 happy_x_3
(EGlue happy_var_1 happy_var_3
)}}
-happyReduce_165 = happySpecReduce_1 52# happyReduction_165
-happyReduction_165 happy_x_1
+happyReduce_168 = happySpecReduce_1 52# happyReduction_168
+happyReduction_168 happy_x_1
= case happyOut61 happy_x_1 of { happy_var_1 ->
happyIn59
(happy_var_1
)}
-happyReduce_166 = happySpecReduce_3 53# happyReduction_166
-happyReduction_166 happy_x_3
+happyReduce_169 = happySpecReduce_3 53# happyReduction_169
+happyReduction_169 happy_x_3
happy_x_2
happy_x_1
= case happyOut59 happy_x_1 of { happy_var_1 ->
@@ -2274,8 +2328,8 @@ happyReduction_166 happy_x_3
(EConcat happy_var_1 happy_var_3
)}}
-happyReduce_167 = happyReduce 4# 53# happyReduction_167
-happyReduction_167 (happy_x_4 `HappyStk`
+happyReduce_170 = happyReduce 4# 53# happyReduction_170
+happyReduction_170 (happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
happy_x_1 `HappyStk`
@@ -2286,8 +2340,8 @@ happyReduction_167 (happy_x_4 `HappyStk`
(EAbstr happy_var_2 happy_var_4
) `HappyStk` happyRest}}
-happyReduce_168 = happyReduce 5# 53# happyReduction_168
-happyReduction_168 (happy_x_5 `HappyStk`
+happyReduce_171 = happyReduce 5# 53# happyReduction_171
+happyReduction_171 (happy_x_5 `HappyStk`
happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
@@ -2299,8 +2353,8 @@ happyReduction_168 (happy_x_5 `HappyStk`
(ECTable happy_var_3 happy_var_5
) `HappyStk` happyRest}}
-happyReduce_169 = happySpecReduce_3 53# happyReduction_169
-happyReduction_169 happy_x_3
+happyReduce_172 = happySpecReduce_3 53# happyReduction_172
+happyReduction_172 happy_x_3
happy_x_2
happy_x_1
= case happyOut74 happy_x_1 of { happy_var_1 ->
@@ -2309,8 +2363,8 @@ happyReduction_169 happy_x_3
(EProd happy_var_1 happy_var_3
)}}
-happyReduce_170 = happySpecReduce_3 53# happyReduction_170
-happyReduction_170 happy_x_3
+happyReduce_173 = happySpecReduce_3 53# happyReduction_173
+happyReduction_173 happy_x_3
happy_x_2
happy_x_1
= case happyOut58 happy_x_1 of { happy_var_1 ->
@@ -2319,8 +2373,8 @@ happyReduction_170 happy_x_3
(ETType happy_var_1 happy_var_3
)}}
-happyReduce_171 = happyReduce 6# 53# happyReduction_171
-happyReduction_171 (happy_x_6 `HappyStk`
+happyReduce_174 = happyReduce 6# 53# happyReduction_174
+happyReduction_174 (happy_x_6 `HappyStk`
happy_x_5 `HappyStk`
happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
@@ -2333,8 +2387,8 @@ happyReduction_171 (happy_x_6 `HappyStk`
(ELet happy_var_3 happy_var_6
) `HappyStk` happyRest}}
-happyReduce_172 = happyReduce 4# 53# happyReduction_172
-happyReduction_172 (happy_x_4 `HappyStk`
+happyReduce_175 = happyReduce 4# 53# happyReduction_175
+happyReduction_175 (happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
happy_x_1 `HappyStk`
@@ -2345,8 +2399,8 @@ happyReduction_172 (happy_x_4 `HappyStk`
(ELetb happy_var_2 happy_var_4
) `HappyStk` happyRest}}
-happyReduce_173 = happyReduce 5# 53# happyReduction_173
-happyReduction_173 (happy_x_5 `HappyStk`
+happyReduce_176 = happyReduce 5# 53# happyReduction_176
+happyReduction_176 (happy_x_5 `HappyStk`
happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
@@ -2358,8 +2412,8 @@ happyReduction_173 (happy_x_5 `HappyStk`
(EWhere happy_var_1 happy_var_4
) `HappyStk` happyRest}}
-happyReduce_174 = happyReduce 4# 53# happyReduction_174
-happyReduction_174 (happy_x_4 `HappyStk`
+happyReduce_177 = happyReduce 4# 53# happyReduction_177
+happyReduction_177 (happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
happy_x_1 `HappyStk`
@@ -2369,8 +2423,8 @@ happyReduction_174 (happy_x_4 `HappyStk`
(EEqs happy_var_3
) `HappyStk` happyRest}
-happyReduce_175 = happySpecReduce_3 53# happyReduction_175
-happyReduction_175 happy_x_3
+happyReduce_178 = happySpecReduce_3 53# happyReduction_178
+happyReduction_178 happy_x_3
happy_x_2
happy_x_1
= case happyOut56 happy_x_2 of { happy_var_2 ->
@@ -2379,34 +2433,34 @@ happyReduction_175 happy_x_3
(EExample happy_var_2 happy_var_3
)}}
-happyReduce_176 = happySpecReduce_1 53# happyReduction_176
-happyReduction_176 happy_x_1
+happyReduce_179 = happySpecReduce_1 53# happyReduction_179
+happyReduction_179 happy_x_1
= case happyOut59 happy_x_1 of { happy_var_1 ->
happyIn60
(happy_var_1
)}
-happyReduce_177 = happySpecReduce_1 54# happyReduction_177
-happyReduction_177 happy_x_1
+happyReduce_180 = happySpecReduce_1 54# happyReduction_180
+happyReduction_180 happy_x_1
= case happyOut58 happy_x_1 of { happy_var_1 ->
happyIn61
(happy_var_1
)}
-happyReduce_178 = happySpecReduce_0 55# happyReduction_178
-happyReduction_178 = happyIn62
+happyReduce_181 = happySpecReduce_0 55# happyReduction_181
+happyReduction_181 = happyIn62
([]
)
-happyReduce_179 = happySpecReduce_1 55# happyReduction_179
-happyReduction_179 happy_x_1
+happyReduce_182 = happySpecReduce_1 55# happyReduction_182
+happyReduction_182 happy_x_1
= case happyOut60 happy_x_1 of { happy_var_1 ->
happyIn62
((:[]) happy_var_1
)}
-happyReduce_180 = happySpecReduce_3 55# happyReduction_180
-happyReduction_180 happy_x_3
+happyReduce_183 = happySpecReduce_3 55# happyReduction_183
+happyReduction_183 happy_x_3
happy_x_2
happy_x_1
= case happyOut60 happy_x_1 of { happy_var_1 ->
@@ -2415,13 +2469,13 @@ happyReduction_180 happy_x_3
((:) happy_var_1 happy_var_3
)}}
-happyReduce_181 = happySpecReduce_0 56# happyReduction_181
-happyReduction_181 = happyIn63
+happyReduce_184 = happySpecReduce_0 56# happyReduction_184
+happyReduction_184 = happyIn63
(NilExp
)
-happyReduce_182 = happySpecReduce_2 56# happyReduction_182
-happyReduction_182 happy_x_2
+happyReduce_185 = happySpecReduce_2 56# happyReduction_185
+happyReduction_185 happy_x_2
happy_x_1
= case happyOut55 happy_x_1 of { happy_var_1 ->
case happyOut63 happy_x_2 of { happy_var_2 ->
@@ -2429,21 +2483,21 @@ happyReduction_182 happy_x_2
(ConsExp happy_var_1 happy_var_2
)}}
-happyReduce_183 = happySpecReduce_1 57# happyReduction_183
-happyReduction_183 happy_x_1
+happyReduce_186 = happySpecReduce_1 57# happyReduction_186
+happyReduction_186 happy_x_1
= happyIn64
(PW
)
-happyReduce_184 = happySpecReduce_1 57# happyReduction_184
-happyReduction_184 happy_x_1
+happyReduce_187 = happySpecReduce_1 57# happyReduction_187
+happyReduction_187 happy_x_1
= case happyOut7 happy_x_1 of { happy_var_1 ->
happyIn64
(PV happy_var_1
)}
-happyReduce_185 = happySpecReduce_3 57# happyReduction_185
-happyReduction_185 happy_x_3
+happyReduce_188 = happySpecReduce_3 57# happyReduction_188
+happyReduction_188 happy_x_3
happy_x_2
happy_x_1
= case happyOut7 happy_x_2 of { happy_var_2 ->
@@ -2451,8 +2505,8 @@ happyReduction_185 happy_x_3
(PCon happy_var_2
)}
-happyReduce_186 = happySpecReduce_3 57# happyReduction_186
-happyReduction_186 happy_x_3
+happyReduce_189 = happySpecReduce_3 57# happyReduction_189
+happyReduction_189 happy_x_3
happy_x_2
happy_x_1
= case happyOut7 happy_x_1 of { happy_var_1 ->
@@ -2461,29 +2515,29 @@ happyReduction_186 happy_x_3
(PQ happy_var_1 happy_var_3
)}}
-happyReduce_187 = happySpecReduce_1 57# happyReduction_187
-happyReduction_187 happy_x_1
+happyReduce_190 = happySpecReduce_1 57# happyReduction_190
+happyReduction_190 happy_x_1
= case happyOut8 happy_x_1 of { happy_var_1 ->
happyIn64
(PInt happy_var_1
)}
-happyReduce_188 = happySpecReduce_1 57# happyReduction_188
-happyReduction_188 happy_x_1
+happyReduce_191 = happySpecReduce_1 57# happyReduction_191
+happyReduction_191 happy_x_1
= case happyOut10 happy_x_1 of { happy_var_1 ->
happyIn64
(PFloat happy_var_1
)}
-happyReduce_189 = happySpecReduce_1 57# happyReduction_189
-happyReduction_189 happy_x_1
+happyReduce_192 = happySpecReduce_1 57# happyReduction_192
+happyReduction_192 happy_x_1
= case happyOut9 happy_x_1 of { happy_var_1 ->
happyIn64
(PStr happy_var_1
)}
-happyReduce_190 = happySpecReduce_3 57# happyReduction_190
-happyReduction_190 happy_x_3
+happyReduce_193 = happySpecReduce_3 57# happyReduction_193
+happyReduction_193 happy_x_3
happy_x_2
happy_x_1
= case happyOut70 happy_x_2 of { happy_var_2 ->
@@ -2491,8 +2545,8 @@ happyReduction_190 happy_x_3
(PR happy_var_2
)}
-happyReduce_191 = happySpecReduce_3 57# happyReduction_191
-happyReduction_191 happy_x_3
+happyReduce_194 = happySpecReduce_3 57# happyReduction_194
+happyReduction_194 happy_x_3
happy_x_2
happy_x_1
= case happyOut78 happy_x_2 of { happy_var_2 ->
@@ -2500,8 +2554,8 @@ happyReduction_191 happy_x_3
(PTup happy_var_2
)}
-happyReduce_192 = happySpecReduce_3 57# happyReduction_192
-happyReduction_192 happy_x_3
+happyReduce_195 = happySpecReduce_3 57# happyReduction_195
+happyReduction_195 happy_x_3
happy_x_2
happy_x_1
= case happyOut66 happy_x_2 of { happy_var_2 ->
@@ -2509,8 +2563,8 @@ happyReduction_192 happy_x_3
(happy_var_2
)}
-happyReduce_193 = happySpecReduce_2 58# happyReduction_193
-happyReduction_193 happy_x_2
+happyReduce_196 = happySpecReduce_2 58# happyReduction_196
+happyReduction_196 happy_x_2
happy_x_1
= case happyOut7 happy_x_1 of { happy_var_1 ->
case happyOut71 happy_x_2 of { happy_var_2 ->
@@ -2518,8 +2572,8 @@ happyReduction_193 happy_x_2
(PC happy_var_1 happy_var_2
)}}
-happyReduce_194 = happyReduce 4# 58# happyReduction_194
-happyReduction_194 (happy_x_4 `HappyStk`
+happyReduce_197 = happyReduce 4# 58# happyReduction_197
+happyReduction_197 (happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
happy_x_1 `HappyStk`
@@ -2531,16 +2585,16 @@ happyReduction_194 (happy_x_4 `HappyStk`
(PQC happy_var_1 happy_var_3 happy_var_4
) `HappyStk` happyRest}}}
-happyReduce_195 = happySpecReduce_2 58# happyReduction_195
-happyReduction_195 happy_x_2
+happyReduce_198 = happySpecReduce_2 58# happyReduction_198
+happyReduction_198 happy_x_2
happy_x_1
= case happyOut64 happy_x_1 of { happy_var_1 ->
happyIn65
(PRep happy_var_1
)}
-happyReduce_196 = happySpecReduce_3 58# happyReduction_196
-happyReduction_196 happy_x_3
+happyReduce_199 = happySpecReduce_3 58# happyReduction_199
+happyReduction_199 happy_x_3
happy_x_2
happy_x_1
= case happyOut7 happy_x_1 of { happy_var_1 ->
@@ -2549,23 +2603,23 @@ happyReduction_196 happy_x_3
(PAs happy_var_1 happy_var_3
)}}
-happyReduce_197 = happySpecReduce_2 58# happyReduction_197
-happyReduction_197 happy_x_2
+happyReduce_200 = happySpecReduce_2 58# happyReduction_200
+happyReduction_200 happy_x_2
happy_x_1
= case happyOut64 happy_x_2 of { happy_var_2 ->
happyIn65
(PNeg happy_var_2
)}
-happyReduce_198 = happySpecReduce_1 58# happyReduction_198
-happyReduction_198 happy_x_1
+happyReduce_201 = happySpecReduce_1 58# happyReduction_201
+happyReduction_201 happy_x_1
= case happyOut64 happy_x_1 of { happy_var_1 ->
happyIn65
(happy_var_1
)}
-happyReduce_199 = happySpecReduce_3 59# happyReduction_199
-happyReduction_199 happy_x_3
+happyReduce_202 = happySpecReduce_3 59# happyReduction_202
+happyReduction_202 happy_x_3
happy_x_2
happy_x_1
= case happyOut66 happy_x_1 of { happy_var_1 ->
@@ -2574,8 +2628,8 @@ happyReduction_199 happy_x_3
(PDisj happy_var_1 happy_var_3
)}}
-happyReduce_200 = happySpecReduce_3 59# happyReduction_200
-happyReduction_200 happy_x_3
+happyReduce_203 = happySpecReduce_3 59# happyReduction_203
+happyReduction_203 happy_x_3
happy_x_2
happy_x_1
= case happyOut66 happy_x_1 of { happy_var_1 ->
@@ -2584,15 +2638,15 @@ happyReduction_200 happy_x_3
(PSeq happy_var_1 happy_var_3
)}}
-happyReduce_201 = happySpecReduce_1 59# happyReduction_201
-happyReduction_201 happy_x_1
+happyReduce_204 = happySpecReduce_1 59# happyReduction_204
+happyReduction_204 happy_x_1
= case happyOut65 happy_x_1 of { happy_var_1 ->
happyIn66
(happy_var_1
)}
-happyReduce_202 = happySpecReduce_3 60# happyReduction_202
-happyReduction_202 happy_x_3
+happyReduce_205 = happySpecReduce_3 60# happyReduction_205
+happyReduction_205 happy_x_3
happy_x_2
happy_x_1
= case happyOut50 happy_x_1 of { happy_var_1 ->
@@ -2601,65 +2655,65 @@ happyReduction_202 happy_x_3
(PA happy_var_1 happy_var_3
)}}
-happyReduce_203 = happySpecReduce_1 61# happyReduction_203
-happyReduction_203 happy_x_1
+happyReduce_206 = happySpecReduce_1 61# happyReduction_206
+happyReduction_206 happy_x_1
= case happyOut7 happy_x_1 of { happy_var_1 ->
happyIn68
(LIdent happy_var_1
)}
-happyReduce_204 = happySpecReduce_2 61# happyReduction_204
-happyReduction_204 happy_x_2
+happyReduce_207 = happySpecReduce_2 61# happyReduction_207
+happyReduction_207 happy_x_2
happy_x_1
= case happyOut8 happy_x_2 of { happy_var_2 ->
happyIn68
(LVar happy_var_2
)}
-happyReduce_205 = happySpecReduce_1 62# happyReduction_205
-happyReduction_205 happy_x_1
+happyReduce_208 = happySpecReduce_1 62# happyReduction_208
+happyReduction_208 happy_x_1
= happyIn69
(Sort_Type
)
-happyReduce_206 = happySpecReduce_1 62# happyReduction_206
-happyReduction_206 happy_x_1
+happyReduce_209 = happySpecReduce_1 62# happyReduction_209
+happyReduction_209 happy_x_1
= happyIn69
(Sort_PType
)
-happyReduce_207 = happySpecReduce_1 62# happyReduction_207
-happyReduction_207 happy_x_1
+happyReduce_210 = happySpecReduce_1 62# happyReduction_210
+happyReduction_210 happy_x_1
= happyIn69
(Sort_Tok
)
-happyReduce_208 = happySpecReduce_1 62# happyReduction_208
-happyReduction_208 happy_x_1
+happyReduce_211 = happySpecReduce_1 62# happyReduction_211
+happyReduction_211 happy_x_1
= happyIn69
(Sort_Str
)
-happyReduce_209 = happySpecReduce_1 62# happyReduction_209
-happyReduction_209 happy_x_1
+happyReduce_212 = happySpecReduce_1 62# happyReduction_212
+happyReduction_212 happy_x_1
= happyIn69
(Sort_Strs
)
-happyReduce_210 = happySpecReduce_0 63# happyReduction_210
-happyReduction_210 = happyIn70
+happyReduce_213 = happySpecReduce_0 63# happyReduction_213
+happyReduction_213 = happyIn70
([]
)
-happyReduce_211 = happySpecReduce_1 63# happyReduction_211
-happyReduction_211 happy_x_1
+happyReduce_214 = happySpecReduce_1 63# happyReduction_214
+happyReduction_214 happy_x_1
= case happyOut67 happy_x_1 of { happy_var_1 ->
happyIn70
((:[]) happy_var_1
)}
-happyReduce_212 = happySpecReduce_3 63# happyReduction_212
-happyReduction_212 happy_x_3
+happyReduce_215 = happySpecReduce_3 63# happyReduction_215
+happyReduction_215 happy_x_3
happy_x_2
happy_x_1
= case happyOut67 happy_x_1 of { happy_var_1 ->
@@ -2668,15 +2722,15 @@ happyReduction_212 happy_x_3
((:) happy_var_1 happy_var_3
)}}
-happyReduce_213 = happySpecReduce_1 64# happyReduction_213
-happyReduction_213 happy_x_1
+happyReduce_216 = happySpecReduce_1 64# happyReduction_216
+happyReduction_216 happy_x_1
= case happyOut64 happy_x_1 of { happy_var_1 ->
happyIn71
((:[]) happy_var_1
)}
-happyReduce_214 = happySpecReduce_2 64# happyReduction_214
-happyReduction_214 happy_x_2
+happyReduce_217 = happySpecReduce_2 64# happyReduction_217
+happyReduction_217 happy_x_2
happy_x_1
= case happyOut64 happy_x_1 of { happy_var_1 ->
case happyOut71 happy_x_2 of { happy_var_2 ->
@@ -2684,33 +2738,33 @@ happyReduction_214 happy_x_2
((:) happy_var_1 happy_var_2
)}}
-happyReduce_215 = happySpecReduce_1 65# happyReduction_215
-happyReduction_215 happy_x_1
+happyReduce_218 = happySpecReduce_1 65# happyReduction_218
+happyReduction_218 happy_x_1
= case happyOut7 happy_x_1 of { happy_var_1 ->
happyIn72
(BIdent happy_var_1
)}
-happyReduce_216 = happySpecReduce_1 65# happyReduction_216
-happyReduction_216 happy_x_1
+happyReduce_219 = happySpecReduce_1 65# happyReduction_219
+happyReduction_219 happy_x_1
= happyIn72
(BWild
)
-happyReduce_217 = happySpecReduce_0 66# happyReduction_217
-happyReduction_217 = happyIn73
+happyReduce_220 = happySpecReduce_0 66# happyReduction_220
+happyReduction_220 = happyIn73
([]
)
-happyReduce_218 = happySpecReduce_1 66# happyReduction_218
-happyReduction_218 happy_x_1
+happyReduce_221 = happySpecReduce_1 66# happyReduction_221
+happyReduction_221 happy_x_1
= case happyOut72 happy_x_1 of { happy_var_1 ->
happyIn73
((:[]) happy_var_1
)}
-happyReduce_219 = happySpecReduce_3 66# happyReduction_219
-happyReduction_219 happy_x_3
+happyReduce_222 = happySpecReduce_3 66# happyReduction_222
+happyReduction_222 happy_x_3
happy_x_2
happy_x_1
= case happyOut72 happy_x_1 of { happy_var_1 ->
@@ -2719,8 +2773,8 @@ happyReduction_219 happy_x_3
((:) happy_var_1 happy_var_3
)}}
-happyReduce_220 = happyReduce 5# 67# happyReduction_220
-happyReduction_220 (happy_x_5 `HappyStk`
+happyReduce_223 = happyReduce 5# 67# happyReduction_223
+happyReduction_223 (happy_x_5 `HappyStk`
happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
@@ -2732,41 +2786,41 @@ happyReduction_220 (happy_x_5 `HappyStk`
(DDec happy_var_2 happy_var_4
) `HappyStk` happyRest}}
-happyReduce_221 = happySpecReduce_1 67# happyReduction_221
-happyReduction_221 happy_x_1
+happyReduce_224 = happySpecReduce_1 67# happyReduction_224
+happyReduction_224 happy_x_1
= case happyOut57 happy_x_1 of { happy_var_1 ->
happyIn74
(DExp happy_var_1
)}
-happyReduce_222 = happySpecReduce_1 68# happyReduction_222
-happyReduction_222 happy_x_1
+happyReduce_225 = happySpecReduce_1 68# happyReduction_225
+happyReduction_225 happy_x_1
= case happyOut60 happy_x_1 of { happy_var_1 ->
happyIn75
(TComp happy_var_1
)}
-happyReduce_223 = happySpecReduce_1 69# happyReduction_223
-happyReduction_223 happy_x_1
+happyReduce_226 = happySpecReduce_1 69# happyReduction_226
+happyReduction_226 happy_x_1
= case happyOut66 happy_x_1 of { happy_var_1 ->
happyIn76
(PTComp happy_var_1
)}
-happyReduce_224 = happySpecReduce_0 70# happyReduction_224
-happyReduction_224 = happyIn77
+happyReduce_227 = happySpecReduce_0 70# happyReduction_227
+happyReduction_227 = happyIn77
([]
)
-happyReduce_225 = happySpecReduce_1 70# happyReduction_225
-happyReduction_225 happy_x_1
+happyReduce_228 = happySpecReduce_1 70# happyReduction_228
+happyReduction_228 happy_x_1
= case happyOut75 happy_x_1 of { happy_var_1 ->
happyIn77
((:[]) happy_var_1
)}
-happyReduce_226 = happySpecReduce_3 70# happyReduction_226
-happyReduction_226 happy_x_3
+happyReduce_229 = happySpecReduce_3 70# happyReduction_229
+happyReduction_229 happy_x_3
happy_x_2
happy_x_1
= case happyOut75 happy_x_1 of { happy_var_1 ->
@@ -2775,20 +2829,20 @@ happyReduction_226 happy_x_3
((:) happy_var_1 happy_var_3
)}}
-happyReduce_227 = happySpecReduce_0 71# happyReduction_227
-happyReduction_227 = happyIn78
+happyReduce_230 = happySpecReduce_0 71# happyReduction_230
+happyReduction_230 = happyIn78
([]
)
-happyReduce_228 = happySpecReduce_1 71# happyReduction_228
-happyReduction_228 happy_x_1
+happyReduce_231 = happySpecReduce_1 71# happyReduction_231
+happyReduction_231 happy_x_1
= case happyOut76 happy_x_1 of { happy_var_1 ->
happyIn78
((:[]) happy_var_1
)}
-happyReduce_229 = happySpecReduce_3 71# happyReduction_229
-happyReduction_229 happy_x_3
+happyReduce_232 = happySpecReduce_3 71# happyReduction_232
+happyReduction_232 happy_x_3
happy_x_2
happy_x_1
= case happyOut76 happy_x_1 of { happy_var_1 ->
@@ -2797,8 +2851,8 @@ happyReduction_229 happy_x_3
((:) happy_var_1 happy_var_3
)}}
-happyReduce_230 = happySpecReduce_3 72# happyReduction_230
-happyReduction_230 happy_x_3
+happyReduce_233 = happySpecReduce_3 72# happyReduction_233
+happyReduction_233 happy_x_3
happy_x_2
happy_x_1
= case happyOut66 happy_x_1 of { happy_var_1 ->
@@ -2807,15 +2861,15 @@ happyReduction_230 happy_x_3
(Case happy_var_1 happy_var_3
)}}
-happyReduce_231 = happySpecReduce_1 73# happyReduction_231
-happyReduction_231 happy_x_1
+happyReduce_234 = happySpecReduce_1 73# happyReduction_234
+happyReduction_234 happy_x_1
= case happyOut79 happy_x_1 of { happy_var_1 ->
happyIn80
((:[]) happy_var_1
)}
-happyReduce_232 = happySpecReduce_3 73# happyReduction_232
-happyReduction_232 happy_x_3
+happyReduce_235 = happySpecReduce_3 73# happyReduction_235
+happyReduction_235 happy_x_3
happy_x_2
happy_x_1
= case happyOut79 happy_x_1 of { happy_var_1 ->
@@ -2824,8 +2878,8 @@ happyReduction_232 happy_x_3
((:) happy_var_1 happy_var_3
)}}
-happyReduce_233 = happySpecReduce_3 74# happyReduction_233
-happyReduction_233 happy_x_3
+happyReduce_236 = happySpecReduce_3 74# happyReduction_236
+happyReduction_236 happy_x_3
happy_x_2
happy_x_1
= case happyOut71 happy_x_1 of { happy_var_1 ->
@@ -2834,20 +2888,20 @@ happyReduction_233 happy_x_3
(Equ happy_var_1 happy_var_3
)}}
-happyReduce_234 = happySpecReduce_0 75# happyReduction_234
-happyReduction_234 = happyIn82
+happyReduce_237 = happySpecReduce_0 75# happyReduction_237
+happyReduction_237 = happyIn82
([]
)
-happyReduce_235 = happySpecReduce_1 75# happyReduction_235
-happyReduction_235 happy_x_1
+happyReduce_238 = happySpecReduce_1 75# happyReduction_238
+happyReduction_238 happy_x_1
= case happyOut81 happy_x_1 of { happy_var_1 ->
happyIn82
((:[]) happy_var_1
)}
-happyReduce_236 = happySpecReduce_3 75# happyReduction_236
-happyReduction_236 happy_x_3
+happyReduce_239 = happySpecReduce_3 75# happyReduction_239
+happyReduction_239 happy_x_3
happy_x_2
happy_x_1
= case happyOut81 happy_x_1 of { happy_var_1 ->
@@ -2856,8 +2910,8 @@ happyReduction_236 happy_x_3
((:) happy_var_1 happy_var_3
)}}
-happyReduce_237 = happySpecReduce_3 76# happyReduction_237
-happyReduction_237 happy_x_3
+happyReduce_240 = happySpecReduce_3 76# happyReduction_240
+happyReduction_240 happy_x_3
happy_x_2
happy_x_1
= case happyOut60 happy_x_1 of { happy_var_1 ->
@@ -2866,20 +2920,20 @@ happyReduction_237 happy_x_3
(Alt happy_var_1 happy_var_3
)}}
-happyReduce_238 = happySpecReduce_0 77# happyReduction_238
-happyReduction_238 = happyIn84
+happyReduce_241 = happySpecReduce_0 77# happyReduction_241
+happyReduction_241 = happyIn84
([]
)
-happyReduce_239 = happySpecReduce_1 77# happyReduction_239
-happyReduction_239 happy_x_1
+happyReduce_242 = happySpecReduce_1 77# happyReduction_242
+happyReduction_242 happy_x_1
= case happyOut83 happy_x_1 of { happy_var_1 ->
happyIn84
((:[]) happy_var_1
)}
-happyReduce_240 = happySpecReduce_3 77# happyReduction_240
-happyReduction_240 happy_x_3
+happyReduce_243 = happySpecReduce_3 77# happyReduction_243
+happyReduction_243 happy_x_3
happy_x_2
happy_x_1
= case happyOut83 happy_x_1 of { happy_var_1 ->
@@ -2888,8 +2942,8 @@ happyReduction_240 happy_x_3
((:) happy_var_1 happy_var_3
)}}
-happyReduce_241 = happyReduce 5# 78# happyReduction_241
-happyReduction_241 (happy_x_5 `HappyStk`
+happyReduce_244 = happyReduce 5# 78# happyReduction_244
+happyReduction_244 (happy_x_5 `HappyStk`
happy_x_4 `HappyStk`
happy_x_3 `HappyStk`
happy_x_2 `HappyStk`
@@ -2901,20 +2955,20 @@ happyReduction_241 (happy_x_5 `HappyStk`
(DDDec happy_var_2 happy_var_4
) `HappyStk` happyRest}}
-happyReduce_242 = happySpecReduce_1 78# happyReduction_242
-happyReduction_242 happy_x_1
+happyReduce_245 = happySpecReduce_1 78# happyReduction_245
+happyReduction_245 happy_x_1
= case happyOut55 happy_x_1 of { happy_var_1 ->
happyIn85
(DDExp happy_var_1
)}
-happyReduce_243 = happySpecReduce_0 79# happyReduction_243
-happyReduction_243 = happyIn86
+happyReduce_246 = happySpecReduce_0 79# happyReduction_246
+happyReduction_246 = happyIn86
([]
)
-happyReduce_244 = happySpecReduce_2 79# happyReduction_244
-happyReduction_244 happy_x_2
+happyReduce_247 = happySpecReduce_2 79# happyReduction_247
+happyReduction_247 happy_x_2
happy_x_1
= case happyOut86 happy_x_1 of { happy_var_1 ->
case happyOut85 happy_x_2 of { happy_var_2 ->
@@ -2922,8 +2976,8 @@ happyReduction_244 happy_x_2
(flip (:) happy_var_1 happy_var_2
)}}
-happyReduce_245 = happySpecReduce_2 80# happyReduction_245
-happyReduction_245 happy_x_2
+happyReduce_248 = happySpecReduce_2 80# happyReduction_248
+happyReduction_248 happy_x_2
happy_x_1
= case happyOut88 happy_x_1 of { happy_var_1 ->
case happyOut22 happy_x_2 of { happy_var_2 ->
@@ -2931,59 +2985,59 @@ happyReduction_245 happy_x_2
(OldGr happy_var_1 (reverse happy_var_2)
)}}
-happyReduce_246 = happySpecReduce_0 81# happyReduction_246
-happyReduction_246 = happyIn88
+happyReduce_249 = happySpecReduce_0 81# happyReduction_249
+happyReduction_249 = happyIn88
(NoIncl
)
-happyReduce_247 = happySpecReduce_2 81# happyReduction_247
-happyReduction_247 happy_x_2
+happyReduce_250 = happySpecReduce_2 81# happyReduction_250
+happyReduction_250 happy_x_2
happy_x_1
= case happyOut90 happy_x_2 of { happy_var_2 ->
happyIn88
(Incl happy_var_2
)}
-happyReduce_248 = happySpecReduce_1 82# happyReduction_248
-happyReduction_248 happy_x_1
+happyReduce_251 = happySpecReduce_1 82# happyReduction_251
+happyReduction_251 happy_x_1
= case happyOut9 happy_x_1 of { happy_var_1 ->
happyIn89
(FString happy_var_1
)}
-happyReduce_249 = happySpecReduce_1 82# happyReduction_249
-happyReduction_249 happy_x_1
+happyReduce_252 = happySpecReduce_1 82# happyReduction_252
+happyReduction_252 happy_x_1
= case happyOut7 happy_x_1 of { happy_var_1 ->
happyIn89
(FIdent happy_var_1
)}
-happyReduce_250 = happySpecReduce_2 82# happyReduction_250
-happyReduction_250 happy_x_2
+happyReduce_253 = happySpecReduce_2 82# happyReduction_253
+happyReduction_253 happy_x_2
happy_x_1
= case happyOut89 happy_x_2 of { happy_var_2 ->
happyIn89
(FSlash happy_var_2
)}
-happyReduce_251 = happySpecReduce_2 82# happyReduction_251
-happyReduction_251 happy_x_2
+happyReduce_254 = happySpecReduce_2 82# happyReduction_254
+happyReduction_254 happy_x_2
happy_x_1
= case happyOut89 happy_x_2 of { happy_var_2 ->
happyIn89
(FDot happy_var_2
)}
-happyReduce_252 = happySpecReduce_2 82# happyReduction_252
-happyReduction_252 happy_x_2
+happyReduce_255 = happySpecReduce_2 82# happyReduction_255
+happyReduction_255 happy_x_2
happy_x_1
= case happyOut89 happy_x_2 of { happy_var_2 ->
happyIn89
(FMinus happy_var_2
)}
-happyReduce_253 = happySpecReduce_2 82# happyReduction_253
-happyReduction_253 happy_x_2
+happyReduce_256 = happySpecReduce_2 82# happyReduction_256
+happyReduction_256 happy_x_2
happy_x_1
= case happyOut7 happy_x_1 of { happy_var_1 ->
case happyOut89 happy_x_2 of { happy_var_2 ->
@@ -2991,16 +3045,16 @@ happyReduction_253 happy_x_2
(FAddId happy_var_1 happy_var_2
)}}
-happyReduce_254 = happySpecReduce_2 83# happyReduction_254
-happyReduction_254 happy_x_2
+happyReduce_257 = happySpecReduce_2 83# happyReduction_257
+happyReduction_257 happy_x_2
happy_x_1
= case happyOut89 happy_x_1 of { happy_var_1 ->
happyIn90
((:[]) happy_var_1
)}
-happyReduce_255 = happySpecReduce_3 83# happyReduction_255
-happyReduction_255 happy_x_3
+happyReduce_258 = happySpecReduce_3 83# happyReduction_258
+happyReduction_258 happy_x_3
happy_x_2
happy_x_1
= case happyOut89 happy_x_1 of { happy_var_1 ->
@@ -3010,7 +3064,7 @@ happyReduction_255 happy_x_3
)}}
happyNewToken action sts stk [] =
- happyDoAction 82# (error "reading EOF!") action sts stk []
+ happyDoAction 82# notHappyAtAll action sts stk []
happyNewToken action sts stk (tk:tks) =
let cont i = happyDoAction i tk action sts stk tks in
@@ -3125,6 +3179,7 @@ pExp tks = happySomeParser where
happySeq = happyDontSeq
+
returnM :: a -> Err a
returnM = return
@@ -3136,27 +3191,17 @@ happyError ts =
Bad $ "syntax error at " ++ tokenPos ts ++
case ts of
[] -> []
- [Err _] -> " due to lexer error"
- _ -> (" before " ++ unwords (map prToken (take 4 ts)))
+ [Err _] -> " due to lexer error"
+ _ -> " before " ++ unwords (map prToken (take 4 ts))
myLexer = tokens
{-# LINE 1 "GenericTemplate.hs" #-}
--- $Id$
-
-
-
-
-
-
-
-
-
-
-
-
-
-{-# LINE 27 "GenericTemplate.hs" #-}
+{-# LINE 1 "<built-in>" #-}
+{-# LINE 1 "<command line>" #-}
+{-# LINE 1 "GenericTemplate.hs" #-}
+-- Id: GenericTemplate.hs,v 1.26 2005/01/14 14:47:22 simonmar Exp
+{-# LINE 28 "GenericTemplate.hs" #-}
data Happy_IntList = HappyCons Int# Happy_IntList
@@ -3165,38 +3210,11 @@ data Happy_IntList = HappyCons Int# Happy_IntList
+{-# LINE 49 "GenericTemplate.hs" #-}
+{-# LINE 59 "GenericTemplate.hs" #-}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+{-# LINE 68 "GenericTemplate.hs" #-}
infixr 9 `HappyStk`
data HappyStk a = HappyStk a (HappyStk a)
@@ -3248,14 +3266,7 @@ happyDoAction i tk st
action | check = indexShortOffAddr happyTable off_i
| otherwise = indexShortOffAddr happyDefActions st
-
-
-
-
-
-
-
-
+{-# LINE 127 "GenericTemplate.hs" #-}
indexShortOffAddr (HappyA# arr) off =
@@ -3288,8 +3299,7 @@ data HappyAddr = HappyA# Addr#
-----------------------------------------------------------------------------
-- HappyState data type (not arrays)
-{-# LINE 169 "GenericTemplate.hs" #-}
-
+{-# LINE 170 "GenericTemplate.hs" #-}
-----------------------------------------------------------------------------
-- Shifting a token
@@ -3338,10 +3348,24 @@ happyReduce k nt fn j tk st sts stk
happyMonadReduce k nt fn 0# tk st sts stk
= happyFail 0# tk st sts stk
happyMonadReduce k nt fn j tk st sts stk =
- happyThen1 (fn stk) (\r -> happyGoto nt j tk st1 sts1 (r `HappyStk` drop_stk))
+ happyThen1 (fn stk tk) (\r -> happyGoto nt j tk st1 sts1 (r `HappyStk` drop_stk))
where sts1@((HappyCons (st1@(action)) (_))) = happyDrop k (HappyCons (st) (sts))
drop_stk = happyDropStk k stk
+happyMonad2Reduce k nt fn 0# tk st sts stk
+ = happyFail 0# tk st sts stk
+happyMonad2Reduce k nt fn j tk st sts stk =
+ happyThen1 (fn stk tk) (\r -> happyNewToken new_state sts1 (r `HappyStk` drop_stk))
+ where sts1@((HappyCons (st1@(action)) (_))) = happyDrop k (HappyCons (st) (sts))
+ drop_stk = happyDropStk k stk
+
+ off = indexShortOffAddr happyGotoOffsets st1
+ off_i = (off +# nt)
+ new_state = indexShortOffAddr happyTable off_i
+
+
+
+
happyDrop 0# l = l
happyDrop n (HappyCons (_) (t)) = happyDrop (n -# (1# :: Int#)) t
diff --git a/src/GF/Source/PrintGF.hs b/src/GF/Source/PrintGF.hs
index 71bfe4dd6..ed45d39c4 100644
--- a/src/GF/Source/PrintGF.hs
+++ b/src/GF/Source/PrintGF.hs
@@ -144,13 +144,15 @@ instance Print ModType where
instance Print ModBody where
prt i e = case e of
+ MNoBody includeds -> prPrec i 0 (concatD [prt 0 includeds])
+ MWithBody included opens0 opens topdefs -> prPrec i 0 (concatD [prt 0 included , doc (showString "with") , prt 0 opens0 , doc (showString "**") , prt 0 opens , doc (showString "{") , prt 0 topdefs , doc (showString "}")])
+ MWithEBody includeds included opens0 opens topdefs -> prPrec i 0 (concatD [prt 0 includeds , doc (showString "**") , prt 0 included , doc (showString "with") , prt 0 opens0 , doc (showString "**") , prt 0 opens , doc (showString "{") , prt 0 topdefs , doc (showString "}")])
MBody extend opens topdefs -> prPrec i 0 (concatD [prt 0 extend , prt 0 opens , doc (showString "{") , prt 0 topdefs , doc (showString "}")])
- MWith id opens -> prPrec i 0 (concatD [prt 0 id , doc (showString "with") , prt 0 opens])
- MWithE includeds id opens -> prPrec i 0 (concatD [prt 0 includeds , doc (showString "**") , prt 0 id , doc (showString "with") , prt 0 opens])
+ MWith included opens -> prPrec i 0 (concatD [prt 0 included , doc (showString "with") , prt 0 opens])
+ MWithE includeds included opens -> prPrec i 0 (concatD [prt 0 includeds , doc (showString "**") , prt 0 included , doc (showString "with") , prt 0 opens])
MReuse id -> prPrec i 0 (concatD [doc (showString "reuse") , prt 0 id])
MUnion includeds -> prPrec i 0 (concatD [doc (showString "union") , prt 0 includeds])
-
instance Print Extend where
prt i e = case e of
Ext includeds -> prPrec i 0 (concatD [prt 0 includeds , doc (showString "**")])
diff --git a/src/GF/Source/SourceToGrammar.hs b/src/GF/Source/SourceToGrammar.hs
index 7e525a4b9..28cb9025b 100644
--- a/src/GF/Source/SourceToGrammar.hs
+++ b/src/GF/Source/SourceToGrammar.hs
@@ -92,32 +92,40 @@ transModDef x = case x of
open' <- transIdent open
mkModRes id (GM.MTInstance open') body
- case body of
- MBody extends opens defs -> do
+ mkBody (mstat', trDef, mtyp', id') body
+ where
+ mkBody xx@(mstat', trDef, mtyp', id') bod = case bod of
+ MNoBody incls -> do
+ mkBody xx $ MBody (Ext incls) NoOpens []
+ MBody extends opens defs -> do
extends' <- transExtend extends
opens' <- transOpens opens
defs0 <- mapM trDef $ getTopDefs defs
defs' <- U.buildAnyTree [d | Left ds <- defs0, d <- ds]
flags' <- return [f | Right fs <- defs0, f <- fs]
return (id',GM.ModMod (GM.Module mtyp' mstat' flags' extends' opens' defs'))
- MReuse _ -> do
+ MReuse _ -> do
return (id', GM.ModMod (GM.Module mtyp' mstat' [] [] [] emptyBinTree))
- MUnion imps -> do
+ MUnion imps -> do
imps' <- mapM transIncluded imps
return (id',
GM.ModMod (GM.Module (GM.MTUnion mtyp' imps') mstat' [] [] [] emptyBinTree))
-
- MWith m opens -> do
- m' <- transIdent m
- opens' <- mapM transOpen opens
- return (id', GM.ModWith mtyp' mstat' m' [] opens')
- MWithE extends m opens -> do
+
+ MWith m insts -> mkBody xx $ MWithEBody [] m insts NoOpens []
+ MWithBody m insts opens defs -> mkBody xx $ MWithEBody [] m insts opens defs
+ MWithE extends m insts -> mkBody xx $ MWithEBody extends m insts NoOpens []
+ MWithEBody extends m insts opens defs -> do
extends' <- mapM transIncludedExt extends
- m' <- transIdent m
- opens' <- mapM transOpen opens
- return (id', GM.ModWith mtyp' mstat' m' extends' opens')
- where
- mkModRes id mtyp body = do
+ m' <- transIncludedExt m
+ insts' <- mapM transOpen insts
+ opens' <- transOpens opens
+ defs0 <- mapM trDef $ getTopDefs defs
+ defs' <- U.buildAnyTree [d | Left ds <- defs0, d <- ds]
+ flags' <- return [f | Right fs <- defs0, f <- fs]
+ return (id',
+ GM.ModWith (GM.Module mtyp' mstat' flags' extends' opens' defs') m' insts')
+
+ mkModRes id mtyp body = do
id' <- transIdent id
case body of
MReuse c -> do
@@ -125,7 +133,7 @@ transModDef x = case x of
mtyp' <- trMReuseType mtyp c'
return (transResDef, GM.MTReuse mtyp', id')
_ -> return (transResDef, mtyp, id')
- trMReuseType mtyp c = case mtyp of
+ trMReuseType mtyp c = case mtyp of
GM.MTInterface -> return $ GM.MRInterface c
GM.MTInstance op -> return $ GM.MRInstance c op
GM.MTResource -> return $ GM.MRResource c
@@ -715,4 +723,4 @@ mkConsId = prefixId "Cons"
mkBaseId = prefixId "Base"
prefixId :: String -> Ident -> Ident
-prefixId pref id = IC (pref ++ prIdent id) \ No newline at end of file
+prefixId pref id = IC (pref ++ prIdent id)