25.99/13.05 YES 28.83/13.86 proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs 28.83/13.86 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 28.83/13.86 28.83/13.86 28.83/13.86 H-Termination with start terms of the given HASKELL could be proven: 28.83/13.86 28.83/13.86 (0) HASKELL 28.83/13.86 (1) LR [EQUIVALENT, 13 ms] 28.83/13.86 (2) HASKELL 28.83/13.86 (3) CR [EQUIVALENT, 0 ms] 28.83/13.86 (4) HASKELL 28.83/13.86 (5) IFR [EQUIVALENT, 0 ms] 28.83/13.86 (6) HASKELL 28.83/13.86 (7) BR [EQUIVALENT, 0 ms] 28.83/13.86 (8) HASKELL 28.83/13.86 (9) COR [EQUIVALENT, 16 ms] 28.83/13.86 (10) HASKELL 28.83/13.86 (11) LetRed [EQUIVALENT, 0 ms] 28.83/13.86 (12) HASKELL 28.83/13.86 (13) NumRed [SOUND, 0 ms] 28.83/13.86 (14) HASKELL 28.83/13.86 (15) Narrow [SOUND, 0 ms] 28.83/13.86 (16) AND 28.83/13.86 (17) QDP 28.83/13.86 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.83/13.86 (19) YES 28.83/13.86 (20) QDP 28.83/13.86 (21) QDPSizeChangeProof [EQUIVALENT, 9 ms] 28.83/13.86 (22) YES 28.83/13.86 (23) QDP 28.83/13.86 (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.83/13.86 (25) YES 28.83/13.86 (26) QDP 28.83/13.86 (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.83/13.86 (28) YES 28.83/13.86 (29) QDP 28.83/13.86 (30) QDPSizeChangeProof [EQUIVALENT, 153 ms] 28.83/13.86 (31) YES 28.83/13.86 (32) QDP 28.83/13.86 (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.83/13.86 (34) YES 28.83/13.86 (35) QDP 28.83/13.86 (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.83/13.86 (37) YES 28.83/13.86 28.83/13.86 28.83/13.86 ---------------------------------------- 28.83/13.86 28.83/13.86 (0) 28.83/13.86 Obligation: 28.83/13.86 mainModule Main 28.83/13.86 module FiniteMap where { 28.83/13.86 import qualified Main; 28.83/13.86 import qualified Maybe; 28.83/13.86 import qualified Prelude; 28.83/13.86 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 28.83/13.86 28.83/13.86 instance (Eq a, Eq b) => Eq FiniteMap b a where { 28.83/13.86 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 28.83/13.86 } 28.83/13.86 fmToList :: FiniteMap a b -> [(a,b)]; 28.83/13.86 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 28.83/13.86 28.83/13.86 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 28.83/13.86 foldFM k z EmptyFM = z; 28.83/13.86 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 28.83/13.86 28.83/13.86 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 28.83/13.86 lookupFM EmptyFM key = Nothing; 28.83/13.86 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 28.83/13.86 | key_to_find > key = lookupFM fm_r key_to_find 28.83/13.86 | otherwise = Just elt; 28.83/13.86 28.83/13.86 lookupWithDefaultFM :: Ord b => FiniteMap b a -> a -> b -> a; 28.83/13.86 lookupWithDefaultFM fm deflt key = case lookupFM fm key of { 28.83/13.86 Nothing-> deflt; 28.83/13.86 Just elt-> elt; 28.83/13.86 } ; 28.83/13.86 28.83/13.86 sizeFM :: FiniteMap a b -> Int; 28.83/13.86 sizeFM EmptyFM = 0; 28.83/13.86 sizeFM (Branch _ _ size _ _) = size; 28.83/13.86 28.83/13.86 } 28.83/13.86 module Maybe where { 28.83/13.86 import qualified FiniteMap; 28.83/13.86 import qualified Main; 28.83/13.86 import qualified Prelude; 28.83/13.86 } 28.83/13.86 module Main where { 28.83/13.86 import qualified FiniteMap; 28.83/13.86 import qualified Maybe; 28.83/13.86 import qualified Prelude; 28.83/13.86 } 28.83/13.86 28.83/13.86 ---------------------------------------- 28.83/13.86 28.83/13.86 (1) LR (EQUIVALENT) 28.83/13.86 Lambda Reductions: 28.83/13.86 The following Lambda expression 28.83/13.86 "\keyeltrest->(key,elt) : rest" 28.83/13.86 is transformed to 28.83/13.86 "fmToList0 key elt rest = (key,elt) : rest; 28.83/13.86 " 28.83/13.86 28.83/13.86 ---------------------------------------- 28.83/13.86 28.83/13.86 (2) 28.83/13.86 Obligation: 28.83/13.86 mainModule Main 28.83/13.86 module FiniteMap where { 28.83/13.86 import qualified Main; 28.83/13.86 import qualified Maybe; 28.83/13.86 import qualified Prelude; 28.83/13.86 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 28.83/13.86 28.83/13.86 instance (Eq a, Eq b) => Eq FiniteMap a b where { 28.83/13.86 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 28.83/13.86 } 28.83/13.86 fmToList :: FiniteMap a b -> [(a,b)]; 28.83/13.86 fmToList fm = foldFM fmToList0 [] fm; 28.83/13.86 28.83/13.86 fmToList0 key elt rest = (key,elt) : rest; 28.83/13.86 28.83/13.86 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 28.83/13.86 foldFM k z EmptyFM = z; 28.83/13.86 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 28.83/13.86 28.83/13.86 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 28.83/13.86 lookupFM EmptyFM key = Nothing; 28.83/13.86 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 28.83/13.86 | key_to_find > key = lookupFM fm_r key_to_find 28.83/13.86 | otherwise = Just elt; 28.83/13.86 28.83/13.86 lookupWithDefaultFM :: Ord a => FiniteMap a b -> b -> a -> b; 28.83/13.86 lookupWithDefaultFM fm deflt key = case lookupFM fm key of { 28.83/13.86 Nothing-> deflt; 28.83/13.86 Just elt-> elt; 28.83/13.86 } ; 28.83/13.86 28.83/13.86 sizeFM :: FiniteMap a b -> Int; 28.83/13.86 sizeFM EmptyFM = 0; 28.83/13.86 sizeFM (Branch _ _ size _ _) = size; 28.83/13.86 28.83/13.86 } 28.83/13.86 module Maybe where { 28.83/13.86 import qualified FiniteMap; 28.83/13.86 import qualified Main; 28.83/13.86 import qualified Prelude; 28.83/13.86 } 28.83/13.86 module Main where { 28.83/13.86 import qualified FiniteMap; 28.83/13.86 import qualified Maybe; 28.83/13.86 import qualified Prelude; 28.83/13.86 } 28.83/13.86 28.83/13.86 ---------------------------------------- 28.83/13.86 28.83/13.86 (3) CR (EQUIVALENT) 28.83/13.86 Case Reductions: 28.83/13.86 The following Case expression 28.83/13.86 "case compare x y of { 28.83/13.86 EQ -> o; 28.83/13.86 LT -> LT; 28.83/13.86 GT -> GT} 28.83/13.86 " 28.83/13.86 is transformed to 28.83/13.86 "primCompAux0 o EQ = o; 28.83/13.86 primCompAux0 o LT = LT; 28.83/13.86 primCompAux0 o GT = GT; 28.83/13.86 " 28.83/13.86 The following Case expression 28.83/13.86 "case lookupFM fm key of { 28.83/13.86 Nothing -> deflt; 28.83/13.86 Just elt -> elt} 28.83/13.86 " 28.83/13.86 is transformed to 28.83/13.86 "lookupWithDefaultFM0 deflt Nothing = deflt; 28.83/13.86 lookupWithDefaultFM0 deflt (Just elt) = elt; 28.83/13.86 " 28.83/13.86 28.83/13.86 ---------------------------------------- 28.83/13.86 28.83/13.86 (4) 28.83/13.86 Obligation: 28.83/13.86 mainModule Main 28.83/13.86 module FiniteMap where { 28.83/13.86 import qualified Main; 28.83/13.86 import qualified Maybe; 28.83/13.86 import qualified Prelude; 28.83/13.86 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 28.83/13.86 28.83/13.86 instance (Eq a, Eq b) => Eq FiniteMap a b where { 28.83/13.86 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 28.83/13.86 } 28.83/13.86 fmToList :: FiniteMap b a -> [(b,a)]; 28.83/13.86 fmToList fm = foldFM fmToList0 [] fm; 28.83/13.86 28.83/13.86 fmToList0 key elt rest = (key,elt) : rest; 28.83/13.87 28.83/13.87 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 28.83/13.87 foldFM k z EmptyFM = z; 28.83/13.87 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 28.83/13.87 28.83/13.87 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 28.83/13.87 lookupFM EmptyFM key = Nothing; 28.83/13.87 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 28.83/13.87 | key_to_find > key = lookupFM fm_r key_to_find 28.83/13.87 | otherwise = Just elt; 28.83/13.87 28.83/13.87 lookupWithDefaultFM :: Ord b => FiniteMap b a -> a -> b -> a; 28.83/13.87 lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); 28.83/13.87 28.83/13.87 lookupWithDefaultFM0 deflt Nothing = deflt; 28.83/13.87 lookupWithDefaultFM0 deflt (Just elt) = elt; 28.83/13.87 28.83/13.87 sizeFM :: FiniteMap b a -> Int; 28.83/13.87 sizeFM EmptyFM = 0; 28.83/13.87 sizeFM (Branch _ _ size _ _) = size; 28.83/13.87 28.83/13.87 } 28.83/13.87 module Maybe where { 28.83/13.87 import qualified FiniteMap; 28.83/13.87 import qualified Main; 28.83/13.87 import qualified Prelude; 28.83/13.87 } 28.83/13.87 module Main where { 28.83/13.87 import qualified FiniteMap; 28.83/13.87 import qualified Maybe; 28.83/13.87 import qualified Prelude; 28.83/13.87 } 28.83/13.87 28.83/13.87 ---------------------------------------- 28.83/13.87 28.83/13.87 (5) IFR (EQUIVALENT) 28.83/13.87 If Reductions: 28.83/13.87 The following If expression 28.83/13.87 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 28.83/13.87 is transformed to 28.83/13.87 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 28.83/13.87 primDivNatS0 x y False = Zero; 28.83/13.87 " 28.83/13.87 The following If expression 28.83/13.87 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 28.83/13.87 is transformed to 28.83/13.87 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 28.83/13.87 primModNatS0 x y False = Succ x; 28.83/13.87 " 28.83/13.87 28.83/13.87 ---------------------------------------- 28.83/13.87 28.83/13.87 (6) 28.83/13.87 Obligation: 28.83/13.87 mainModule Main 28.83/13.87 module FiniteMap where { 28.83/13.87 import qualified Main; 28.83/13.87 import qualified Maybe; 28.83/13.87 import qualified Prelude; 28.83/13.87 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 28.83/13.87 28.83/13.87 instance (Eq a, Eq b) => Eq FiniteMap a b where { 28.83/13.87 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 28.83/13.87 } 28.83/13.87 fmToList :: FiniteMap a b -> [(a,b)]; 28.83/13.87 fmToList fm = foldFM fmToList0 [] fm; 28.83/13.87 28.83/13.87 fmToList0 key elt rest = (key,elt) : rest; 28.83/13.87 28.83/13.87 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 28.83/13.87 foldFM k z EmptyFM = z; 28.83/13.87 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 28.83/13.87 28.83/13.87 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 28.83/13.87 lookupFM EmptyFM key = Nothing; 28.83/13.87 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 28.83/13.87 | key_to_find > key = lookupFM fm_r key_to_find 28.83/13.87 | otherwise = Just elt; 28.83/13.87 28.83/13.87 lookupWithDefaultFM :: Ord a => FiniteMap a b -> b -> a -> b; 28.83/13.87 lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); 28.83/13.87 28.83/13.87 lookupWithDefaultFM0 deflt Nothing = deflt; 28.83/13.87 lookupWithDefaultFM0 deflt (Just elt) = elt; 28.83/13.87 28.83/13.87 sizeFM :: FiniteMap b a -> Int; 28.83/13.87 sizeFM EmptyFM = 0; 28.83/13.87 sizeFM (Branch _ _ size _ _) = size; 28.83/13.87 28.83/13.87 } 28.83/13.87 module Maybe where { 28.83/13.87 import qualified FiniteMap; 28.83/13.87 import qualified Main; 28.83/13.87 import qualified Prelude; 28.83/13.87 } 28.83/13.87 module Main where { 28.83/13.87 import qualified FiniteMap; 28.83/13.87 import qualified Maybe; 28.83/13.87 import qualified Prelude; 28.83/13.87 } 28.83/13.87 28.83/13.87 ---------------------------------------- 28.83/13.87 28.83/13.87 (7) BR (EQUIVALENT) 29.11/13.89 Replaced joker patterns by fresh variables and removed binding patterns. 29.11/13.89 ---------------------------------------- 29.11/13.89 29.11/13.89 (8) 29.11/13.89 Obligation: 29.11/13.89 mainModule Main 29.11/13.89 module FiniteMap where { 29.11/13.89 import qualified Main; 29.11/13.89 import qualified Maybe; 29.11/13.89 import qualified Prelude; 29.11/13.89 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 29.11/13.89 29.11/13.89 instance (Eq a, Eq b) => Eq FiniteMap b a where { 29.11/13.89 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.11/13.89 } 29.11/13.89 fmToList :: FiniteMap a b -> [(a,b)]; 29.11/13.89 fmToList fm = foldFM fmToList0 [] fm; 29.11/13.89 29.11/13.89 fmToList0 key elt rest = (key,elt) : rest; 29.11/13.89 29.11/13.89 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 29.11/13.89 foldFM k z EmptyFM = z; 29.11/13.89 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.11/13.89 29.11/13.89 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 29.11/13.89 lookupFM EmptyFM key = Nothing; 29.11/13.89 lookupFM (Branch key elt vux fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 29.11/13.89 | key_to_find > key = lookupFM fm_r key_to_find 29.11/13.89 | otherwise = Just elt; 29.11/13.89 29.11/13.89 lookupWithDefaultFM :: Ord a => FiniteMap a b -> b -> a -> b; 29.11/13.89 lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); 29.11/13.89 29.11/13.89 lookupWithDefaultFM0 deflt Nothing = deflt; 29.11/13.89 lookupWithDefaultFM0 deflt (Just elt) = elt; 29.11/13.89 29.11/13.89 sizeFM :: FiniteMap b a -> Int; 29.11/13.89 sizeFM EmptyFM = 0; 29.11/13.89 sizeFM (Branch zz vuu size vuv vuw) = size; 29.11/13.89 29.11/13.89 } 29.11/13.89 module Maybe where { 29.11/13.89 import qualified FiniteMap; 29.11/13.89 import qualified Main; 29.11/13.89 import qualified Prelude; 29.11/13.89 } 29.11/13.89 module Main where { 29.11/13.89 import qualified FiniteMap; 29.11/13.89 import qualified Maybe; 29.11/13.89 import qualified Prelude; 29.11/13.89 } 29.11/13.89 29.11/13.89 ---------------------------------------- 29.11/13.89 29.11/13.89 (9) COR (EQUIVALENT) 29.11/13.89 Cond Reductions: 29.11/13.89 The following Function with conditions 29.11/13.89 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 29.11/13.89 " 29.11/13.89 is transformed to 29.11/13.89 "compare x y = compare3 x y; 29.11/13.89 " 29.11/13.89 "compare2 x y True = EQ; 29.11/13.89 compare2 x y False = compare1 x y (x <= y); 29.11/13.89 " 29.11/13.89 "compare1 x y True = LT; 29.11/13.89 compare1 x y False = compare0 x y otherwise; 29.11/13.89 " 29.11/13.89 "compare0 x y True = GT; 29.11/13.89 " 29.11/13.89 "compare3 x y = compare2 x y (x == y); 29.11/13.89 " 29.11/13.89 The following Function with conditions 29.11/13.89 "absReal x|x >= 0x|otherwise`negate` x; 29.11/13.89 " 29.11/13.89 is transformed to 29.11/13.89 "absReal x = absReal2 x; 29.11/13.89 " 29.11/13.89 "absReal1 x True = x; 29.11/13.89 absReal1 x False = absReal0 x otherwise; 29.11/13.89 " 29.11/13.89 "absReal0 x True = `negate` x; 29.11/13.89 " 29.11/13.89 "absReal2 x = absReal1 x (x >= 0); 29.11/13.89 " 29.11/13.89 The following Function with conditions 29.11/13.89 "gcd' x 0 = x; 29.11/13.89 gcd' x y = gcd' y (x `rem` y); 29.11/13.89 " 29.11/13.89 is transformed to 29.11/13.89 "gcd' x vuy = gcd'2 x vuy; 29.11/13.89 gcd' x y = gcd'0 x y; 29.11/13.89 " 29.11/13.89 "gcd'0 x y = gcd' y (x `rem` y); 29.11/13.89 " 29.11/13.89 "gcd'1 True x vuy = x; 29.11/13.89 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 29.11/13.89 " 29.11/13.89 "gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 29.11/13.89 gcd'2 vvw vvx = gcd'0 vvw vvx; 29.11/13.89 " 29.11/13.89 The following Function with conditions 29.11/13.89 "gcd 0 0 = error []; 29.11/13.89 gcd x y = gcd' (abs x) (abs y) where { 29.11/13.89 gcd' x 0 = x; 29.11/13.89 gcd' x y = gcd' y (x `rem` y); 29.11/13.89 } 29.11/13.89 ; 29.11/13.89 " 29.11/13.89 is transformed to 29.11/13.89 "gcd vvy vvz = gcd3 vvy vvz; 29.11/13.89 gcd x y = gcd0 x y; 29.11/13.89 " 29.11/13.89 "gcd0 x y = gcd' (abs x) (abs y) where { 29.11/13.89 gcd' x vuy = gcd'2 x vuy; 29.11/13.89 gcd' x y = gcd'0 x y; 29.11/13.89 ; 29.11/13.89 gcd'0 x y = gcd' y (x `rem` y); 29.11/13.89 ; 29.11/13.89 gcd'1 True x vuy = x; 29.11/13.89 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 29.11/13.89 ; 29.11/13.89 gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 29.11/13.89 gcd'2 vvw vvx = gcd'0 vvw vvx; 29.11/13.89 } 29.11/13.89 ; 29.11/13.89 " 29.11/13.89 "gcd1 True vvy vvz = error []; 29.11/13.89 gcd1 vwu vwv vww = gcd0 vwv vww; 29.11/13.89 " 29.11/13.89 "gcd2 True vvy vvz = gcd1 (vvz == 0) vvy vvz; 29.11/13.89 gcd2 vwx vwy vwz = gcd0 vwy vwz; 29.11/13.89 " 29.11/13.89 "gcd3 vvy vvz = gcd2 (vvy == 0) vvy vvz; 29.11/13.89 gcd3 vxu vxv = gcd0 vxu vxv; 29.11/13.89 " 29.11/13.89 The following Function with conditions 29.11/13.89 "undefined |Falseundefined; 29.11/13.89 " 29.11/13.89 is transformed to 29.11/13.89 "undefined = undefined1; 29.11/13.89 " 29.11/13.89 "undefined0 True = undefined; 29.11/13.89 " 29.11/13.89 "undefined1 = undefined0 False; 29.11/13.89 " 29.11/13.89 The following Function with conditions 29.11/13.89 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 29.11/13.89 d = gcd x y; 29.11/13.89 } 29.11/13.89 ; 29.11/13.89 " 29.11/13.89 is transformed to 29.11/13.89 "reduce x y = reduce2 x y; 29.11/13.89 " 29.11/13.89 "reduce2 x y = reduce1 x y (y == 0) where { 29.11/13.89 d = gcd x y; 29.11/13.89 ; 29.11/13.89 reduce0 x y True = x `quot` d :% (y `quot` d); 29.11/13.89 ; 29.11/13.89 reduce1 x y True = error []; 29.11/13.89 reduce1 x y False = reduce0 x y otherwise; 29.11/13.89 } 29.11/13.89 ; 29.11/13.89 " 29.11/13.89 The following Function with conditions 29.11/13.89 "lookupFM EmptyFM key = Nothing; 29.11/13.89 lookupFM (Branch key elt vux fm_l fm_r) key_to_find|key_to_find < keylookupFM fm_l key_to_find|key_to_find > keylookupFM fm_r key_to_find|otherwiseJust elt; 29.11/13.89 " 29.11/13.89 is transformed to 29.11/13.89 "lookupFM EmptyFM key = lookupFM4 EmptyFM key; 29.11/13.89 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 29.11/13.89 " 29.11/13.89 "lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 29.11/13.89 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 29.11/13.89 " 29.11/13.89 "lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 29.11/13.89 lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); 29.11/13.89 " 29.11/13.89 "lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 29.11/13.89 " 29.11/13.89 "lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); 29.11/13.89 " 29.11/13.89 "lookupFM4 EmptyFM key = Nothing; 29.11/13.89 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 29.11/13.89 " 29.11/13.89 29.11/13.89 ---------------------------------------- 29.11/13.89 29.11/13.89 (10) 29.11/13.89 Obligation: 29.11/13.89 mainModule Main 29.11/13.89 module FiniteMap where { 29.11/13.89 import qualified Main; 29.11/13.89 import qualified Maybe; 29.11/13.89 import qualified Prelude; 29.11/13.89 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 29.11/13.89 29.11/13.89 instance (Eq a, Eq b) => Eq FiniteMap b a where { 29.11/13.89 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.11/13.89 } 29.11/13.89 fmToList :: FiniteMap a b -> [(a,b)]; 29.11/13.89 fmToList fm = foldFM fmToList0 [] fm; 29.11/13.89 29.11/13.89 fmToList0 key elt rest = (key,elt) : rest; 29.11/13.89 29.11/13.89 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 29.11/13.89 foldFM k z EmptyFM = z; 29.11/13.89 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.11/13.89 29.11/13.89 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 29.11/13.89 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 29.11/13.89 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 29.11/13.89 29.11/13.89 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 29.11/13.89 29.11/13.89 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 29.11/13.89 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 29.11/13.89 29.11/13.89 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 29.11/13.89 lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); 29.11/13.89 29.11/13.89 lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); 29.11/13.89 29.11/13.89 lookupFM4 EmptyFM key = Nothing; 29.11/13.89 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 29.11/13.89 29.11/13.89 lookupWithDefaultFM :: Ord b => FiniteMap b a -> a -> b -> a; 29.11/13.89 lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); 29.11/13.89 29.11/13.89 lookupWithDefaultFM0 deflt Nothing = deflt; 29.11/13.89 lookupWithDefaultFM0 deflt (Just elt) = elt; 29.11/13.89 29.11/13.89 sizeFM :: FiniteMap b a -> Int; 29.11/13.89 sizeFM EmptyFM = 0; 29.11/13.89 sizeFM (Branch zz vuu size vuv vuw) = size; 29.11/13.89 29.11/13.89 } 29.11/13.89 module Maybe where { 29.11/13.89 import qualified FiniteMap; 29.11/13.89 import qualified Main; 29.11/13.89 import qualified Prelude; 29.11/13.89 } 29.11/13.89 module Main where { 29.11/13.89 import qualified FiniteMap; 29.11/13.89 import qualified Maybe; 29.11/13.89 import qualified Prelude; 29.11/13.89 } 29.11/13.89 29.11/13.89 ---------------------------------------- 29.11/13.89 29.11/13.89 (11) LetRed (EQUIVALENT) 29.11/13.89 Let/Where Reductions: 29.11/13.89 The bindings of the following Let/Where expression 29.11/13.89 "gcd' (abs x) (abs y) where { 29.11/13.89 gcd' x vuy = gcd'2 x vuy; 29.11/13.89 gcd' x y = gcd'0 x y; 29.11/13.89 ; 29.11/13.89 gcd'0 x y = gcd' y (x `rem` y); 29.11/13.89 ; 29.11/13.89 gcd'1 True x vuy = x; 29.11/13.89 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 29.11/13.89 ; 29.11/13.89 gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 29.11/13.89 gcd'2 vvw vvx = gcd'0 vvw vvx; 29.11/13.89 } 29.11/13.89 " 29.11/13.89 are unpacked to the following functions on top level 29.11/13.89 "gcd0Gcd'1 True x vuy = x; 29.11/13.89 gcd0Gcd'1 vuz vvu vvv = gcd0Gcd'0 vvu vvv; 29.11/13.89 " 29.11/13.89 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 29.11/13.89 " 29.11/13.89 "gcd0Gcd' x vuy = gcd0Gcd'2 x vuy; 29.11/13.89 gcd0Gcd' x y = gcd0Gcd'0 x y; 29.11/13.89 " 29.11/13.89 "gcd0Gcd'2 x vuy = gcd0Gcd'1 (vuy == 0) x vuy; 29.11/13.89 gcd0Gcd'2 vvw vvx = gcd0Gcd'0 vvw vvx; 29.11/13.89 " 29.11/13.89 The bindings of the following Let/Where expression 29.11/13.89 "reduce1 x y (y == 0) where { 29.11/13.89 d = gcd x y; 29.11/13.89 ; 29.11/13.89 reduce0 x y True = x `quot` d :% (y `quot` d); 29.11/13.89 ; 29.11/13.89 reduce1 x y True = error []; 29.11/13.89 reduce1 x y False = reduce0 x y otherwise; 29.11/13.89 } 29.11/13.89 " 29.11/13.89 are unpacked to the following functions on top level 29.11/13.89 "reduce2Reduce1 vyu vyv x y True = error []; 29.11/13.89 reduce2Reduce1 vyu vyv x y False = reduce2Reduce0 vyu vyv x y otherwise; 29.11/13.89 " 29.11/13.89 "reduce2Reduce0 vyu vyv x y True = x `quot` reduce2D vyu vyv :% (y `quot` reduce2D vyu vyv); 29.11/13.89 " 29.11/13.89 "reduce2D vyu vyv = gcd vyu vyv; 29.11/13.89 " 29.11/13.89 29.11/13.89 ---------------------------------------- 29.11/13.89 29.11/13.89 (12) 29.11/13.89 Obligation: 29.11/13.89 mainModule Main 29.11/13.89 module FiniteMap where { 29.11/13.89 import qualified Main; 29.11/13.89 import qualified Maybe; 29.11/13.89 import qualified Prelude; 29.11/13.89 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 29.11/13.89 29.11/13.89 instance (Eq a, Eq b) => Eq FiniteMap b a where { 29.11/13.89 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.11/13.89 } 29.11/13.89 fmToList :: FiniteMap b a -> [(b,a)]; 29.11/13.89 fmToList fm = foldFM fmToList0 [] fm; 29.11/13.89 29.11/13.89 fmToList0 key elt rest = (key,elt) : rest; 29.11/13.89 29.11/13.89 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 29.11/13.89 foldFM k z EmptyFM = z; 29.11/13.89 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.11/13.89 29.11/13.89 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 29.11/13.89 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 29.11/13.89 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 29.11/13.89 29.11/13.89 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 29.11/13.89 29.11/13.89 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 29.11/13.89 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 29.11/13.89 29.11/13.89 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 29.11/13.89 lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); 29.11/13.89 29.11/13.89 lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); 29.11/13.89 29.11/13.89 lookupFM4 EmptyFM key = Nothing; 29.11/13.89 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 29.11/13.89 29.11/13.89 lookupWithDefaultFM :: Ord a => FiniteMap a b -> b -> a -> b; 29.11/13.89 lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); 29.11/13.89 29.11/13.89 lookupWithDefaultFM0 deflt Nothing = deflt; 29.11/13.89 lookupWithDefaultFM0 deflt (Just elt) = elt; 29.11/13.89 29.11/13.89 sizeFM :: FiniteMap b a -> Int; 29.11/13.89 sizeFM EmptyFM = 0; 29.11/13.89 sizeFM (Branch zz vuu size vuv vuw) = size; 29.11/13.89 29.11/13.89 } 29.11/13.89 module Maybe where { 29.11/13.89 import qualified FiniteMap; 29.11/13.89 import qualified Main; 29.11/13.89 import qualified Prelude; 29.11/13.89 } 29.11/13.89 module Main where { 29.11/13.89 import qualified FiniteMap; 29.11/13.89 import qualified Maybe; 29.11/13.89 import qualified Prelude; 29.11/13.89 } 29.11/13.89 29.11/13.89 ---------------------------------------- 29.11/13.89 29.11/13.89 (13) NumRed (SOUND) 29.11/13.89 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 29.11/13.89 ---------------------------------------- 29.11/13.89 29.11/13.89 (14) 29.11/13.89 Obligation: 29.11/13.89 mainModule Main 29.11/13.89 module FiniteMap where { 29.11/13.89 import qualified Main; 29.11/13.89 import qualified Maybe; 29.11/13.89 import qualified Prelude; 29.11/13.89 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 29.11/13.89 29.11/13.89 instance (Eq a, Eq b) => Eq FiniteMap a b where { 29.11/13.89 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.11/13.89 } 29.11/13.89 fmToList :: FiniteMap b a -> [(b,a)]; 29.11/13.89 fmToList fm = foldFM fmToList0 [] fm; 29.11/13.89 29.11/13.89 fmToList0 key elt rest = (key,elt) : rest; 29.11/13.89 29.11/13.89 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 29.11/13.89 foldFM k z EmptyFM = z; 29.11/13.89 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.11/13.89 29.11/13.89 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 29.11/13.89 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 29.11/13.89 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 29.11/13.89 29.11/13.89 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 29.11/13.89 29.11/13.89 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 29.11/13.89 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 29.11/13.89 29.11/13.89 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 29.11/13.89 lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); 29.11/13.89 29.11/13.89 lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); 29.11/13.89 29.11/13.89 lookupFM4 EmptyFM key = Nothing; 29.11/13.89 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 29.11/13.89 29.11/13.89 lookupWithDefaultFM :: Ord b => FiniteMap b a -> a -> b -> a; 29.11/13.89 lookupWithDefaultFM fm deflt key = lookupWithDefaultFM0 deflt (lookupFM fm key); 29.11/13.89 29.11/13.89 lookupWithDefaultFM0 deflt Nothing = deflt; 29.11/13.89 lookupWithDefaultFM0 deflt (Just elt) = elt; 29.11/13.89 29.11/13.89 sizeFM :: FiniteMap a b -> Int; 29.11/13.89 sizeFM EmptyFM = Pos Zero; 29.11/13.89 sizeFM (Branch zz vuu size vuv vuw) = size; 29.11/13.89 29.11/13.89 } 29.11/13.89 module Maybe where { 29.11/13.89 import qualified FiniteMap; 29.11/13.89 import qualified Main; 29.11/13.89 import qualified Prelude; 29.11/13.89 } 29.11/13.89 module Main where { 29.11/13.89 import qualified FiniteMap; 29.11/13.89 import qualified Maybe; 29.11/13.89 import qualified Prelude; 29.11/13.89 } 29.11/13.89 29.11/13.89 ---------------------------------------- 29.11/13.89 29.11/13.89 (15) Narrow (SOUND) 29.11/13.89 Haskell To QDPs 29.11/13.89 29.11/13.89 digraph dp_graph { 29.11/13.89 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.lookupWithDefaultFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 29.11/13.89 3[label="FiniteMap.lookupWithDefaultFM vyw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 29.11/13.89 4[label="FiniteMap.lookupWithDefaultFM vyw3 vyw4",fontsize=16,color="grey",shape="box"];4 -> 5[label="",style="dashed", color="grey", weight=3]; 29.11/13.89 5[label="FiniteMap.lookupWithDefaultFM vyw3 vyw4 vyw5",fontsize=16,color="black",shape="triangle"];5 -> 6[label="",style="solid", color="black", weight=3]; 29.11/13.89 6[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM vyw3 vyw5)",fontsize=16,color="burlywood",shape="triangle"];2893[label="vyw3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];6 -> 2893[label="",style="solid", color="burlywood", weight=9]; 29.11/13.89 2893 -> 7[label="",style="solid", color="burlywood", weight=3]; 29.11/13.89 2894[label="vyw3/FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34",fontsize=10,color="white",style="solid",shape="box"];6 -> 2894[label="",style="solid", color="burlywood", weight=9]; 29.11/13.89 2894 -> 8[label="",style="solid", color="burlywood", weight=3]; 29.11/13.89 7[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM FiniteMap.EmptyFM vyw5)",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 29.11/13.89 8[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM (FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34) vyw5)",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 29.11/13.89 9[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM4 FiniteMap.EmptyFM vyw5)",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 29.11/13.89 10[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM3 (FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34) vyw5)",fontsize=16,color="black",shape="box"];10 -> 12[label="",style="solid", color="black", weight=3]; 29.11/13.89 11[label="FiniteMap.lookupWithDefaultFM0 vyw4 Nothing",fontsize=16,color="black",shape="box"];11 -> 13[label="",style="solid", color="black", weight=3]; 29.11/13.89 12 -> 14[label="",style="dashed", color="red", weight=0]; 29.11/13.89 12[label="FiniteMap.lookupWithDefaultFM0 vyw4 (FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw5 (vyw5 < vyw30))",fontsize=16,color="magenta"];12 -> 15[label="",style="dashed", color="magenta", weight=3]; 29.11/13.89 12 -> 16[label="",style="dashed", color="magenta", weight=3]; 29.11/13.89 12 -> 17[label="",style="dashed", color="magenta", weight=3]; 29.11/13.89 12 -> 18[label="",style="dashed", color="magenta", weight=3]; 29.11/13.89 12 -> 19[label="",style="dashed", color="magenta", weight=3]; 29.11/13.89 12 -> 20[label="",style="dashed", color="magenta", weight=3]; 29.11/13.89 12 -> 21[label="",style="dashed", color="magenta", weight=3]; 29.11/13.89 12 -> 22[label="",style="dashed", color="magenta", weight=3]; 29.11/13.89 13[label="vyw4",fontsize=16,color="green",shape="box"];15[label="vyw5",fontsize=16,color="green",shape="box"];16[label="vyw30",fontsize=16,color="green",shape="box"];17[label="vyw32",fontsize=16,color="green",shape="box"];18[label="vyw34",fontsize=16,color="green",shape="box"];19[label="vyw31",fontsize=16,color="green",shape="box"];20[label="vyw33",fontsize=16,color="green",shape="box"];21[label="vyw4",fontsize=16,color="green",shape="box"];22[label="vyw5 < vyw30",fontsize=16,color="blue",shape="box"];2895[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 2895[label="",style="solid", color="blue", weight=9]; 29.11/13.89 2895 -> 23[label="",style="solid", color="blue", weight=3]; 29.11/13.89 2896[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 2896[label="",style="solid", color="blue", weight=9]; 29.11/13.89 2896 -> 24[label="",style="solid", color="blue", weight=3]; 29.11/13.89 2897[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 2897[label="",style="solid", color="blue", weight=9]; 29.11/13.89 2897 -> 25[label="",style="solid", color="blue", weight=3]; 29.11/13.89 2898[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 2898[label="",style="solid", color="blue", weight=9]; 29.11/13.89 2898 -> 26[label="",style="solid", color="blue", weight=3]; 29.11/13.89 2899[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 2899[label="",style="solid", color="blue", weight=9]; 29.11/13.89 2899 -> 27[label="",style="solid", color="blue", weight=3]; 29.11/13.89 2900[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 2900[label="",style="solid", color="blue", weight=9]; 29.11/13.89 2900 -> 28[label="",style="solid", color="blue", weight=3]; 29.11/13.89 2901[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 2901[label="",style="solid", color="blue", weight=9]; 29.11/13.89 2901 -> 29[label="",style="solid", color="blue", weight=3]; 29.11/13.89 2902[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 2902[label="",style="solid", color="blue", weight=9]; 29.11/13.89 2902 -> 30[label="",style="solid", color="blue", weight=3]; 29.11/13.89 2903[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 2903[label="",style="solid", color="blue", weight=9]; 29.11/13.89 2903 -> 31[label="",style="solid", color="blue", weight=3]; 29.11/13.89 2904[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 2904[label="",style="solid", color="blue", weight=9]; 29.11/13.89 2904 -> 32[label="",style="solid", color="blue", weight=3]; 29.11/13.89 2905[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 2905[label="",style="solid", color="blue", weight=9]; 29.11/13.89 2905 -> 33[label="",style="solid", color="blue", weight=3]; 29.11/13.89 2906[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 2906[label="",style="solid", color="blue", weight=9]; 29.11/13.89 2906 -> 34[label="",style="solid", color="blue", weight=3]; 29.11/13.89 2907[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 2907[label="",style="solid", color="blue", weight=9]; 29.11/13.89 2907 -> 35[label="",style="solid", color="blue", weight=3]; 29.11/13.89 2908[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];22 -> 2908[label="",style="solid", color="blue", weight=9]; 29.11/13.89 2908 -> 36[label="",style="solid", color="blue", weight=3]; 29.11/13.89 14[label="FiniteMap.lookupWithDefaultFM0 vyw15 (FiniteMap.lookupFM2 vyw16 vyw17 vyw18 vyw19 vyw20 vyw21 vyw22)",fontsize=16,color="burlywood",shape="triangle"];2909[label="vyw22/False",fontsize=10,color="white",style="solid",shape="box"];14 -> 2909[label="",style="solid", color="burlywood", weight=9]; 29.11/13.89 2909 -> 37[label="",style="solid", color="burlywood", weight=3]; 29.11/13.89 2910[label="vyw22/True",fontsize=10,color="white",style="solid",shape="box"];14 -> 2910[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2910 -> 38[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 23[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];23 -> 39[label="",style="solid", color="black", weight=3]; 29.11/13.90 24[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];24 -> 40[label="",style="solid", color="black", weight=3]; 29.11/13.90 25[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];25 -> 41[label="",style="solid", color="black", weight=3]; 29.11/13.90 26[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];26 -> 42[label="",style="solid", color="black", weight=3]; 29.11/13.90 27[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];27 -> 43[label="",style="solid", color="black", weight=3]; 29.11/13.90 28[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];28 -> 44[label="",style="solid", color="black", weight=3]; 29.11/13.90 29[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];29 -> 45[label="",style="solid", color="black", weight=3]; 29.11/13.90 30[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];30 -> 46[label="",style="solid", color="black", weight=3]; 29.11/13.90 31[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];31 -> 47[label="",style="solid", color="black", weight=3]; 29.11/13.90 32[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];32 -> 48[label="",style="solid", color="black", weight=3]; 29.11/13.90 33[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];33 -> 49[label="",style="solid", color="black", weight=3]; 29.11/13.90 34[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];34 -> 50[label="",style="solid", color="black", weight=3]; 29.11/13.90 35[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];35 -> 51[label="",style="solid", color="black", weight=3]; 29.11/13.90 36[label="vyw5 < vyw30",fontsize=16,color="black",shape="triangle"];36 -> 52[label="",style="solid", color="black", weight=3]; 29.11/13.90 37[label="FiniteMap.lookupWithDefaultFM0 vyw15 (FiniteMap.lookupFM2 vyw16 vyw17 vyw18 vyw19 vyw20 vyw21 False)",fontsize=16,color="black",shape="box"];37 -> 53[label="",style="solid", color="black", weight=3]; 29.11/13.90 38[label="FiniteMap.lookupWithDefaultFM0 vyw15 (FiniteMap.lookupFM2 vyw16 vyw17 vyw18 vyw19 vyw20 vyw21 True)",fontsize=16,color="black",shape="box"];38 -> 54[label="",style="solid", color="black", weight=3]; 29.11/13.90 39 -> 164[label="",style="dashed", color="red", weight=0]; 29.11/13.90 39[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];39 -> 165[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 40 -> 164[label="",style="dashed", color="red", weight=0]; 29.11/13.90 40[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];40 -> 166[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 41 -> 164[label="",style="dashed", color="red", weight=0]; 29.11/13.90 41[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];41 -> 167[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 42 -> 164[label="",style="dashed", color="red", weight=0]; 29.11/13.90 42[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];42 -> 168[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 43 -> 164[label="",style="dashed", color="red", weight=0]; 29.11/13.90 43[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];43 -> 169[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 44 -> 164[label="",style="dashed", color="red", weight=0]; 29.11/13.90 44[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];44 -> 170[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 45 -> 164[label="",style="dashed", color="red", weight=0]; 29.11/13.90 45[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];45 -> 171[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 46 -> 164[label="",style="dashed", color="red", weight=0]; 29.11/13.90 46[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];46 -> 172[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 47 -> 164[label="",style="dashed", color="red", weight=0]; 29.11/13.90 47[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];47 -> 173[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 48 -> 164[label="",style="dashed", color="red", weight=0]; 29.11/13.90 48[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];48 -> 174[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 49 -> 164[label="",style="dashed", color="red", weight=0]; 29.11/13.90 49[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];49 -> 175[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 50 -> 164[label="",style="dashed", color="red", weight=0]; 29.11/13.90 50[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];50 -> 176[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 51 -> 164[label="",style="dashed", color="red", weight=0]; 29.11/13.90 51[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];51 -> 177[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 52 -> 164[label="",style="dashed", color="red", weight=0]; 29.11/13.90 52[label="compare vyw5 vyw30 == LT",fontsize=16,color="magenta"];52 -> 178[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 53 -> 70[label="",style="dashed", color="red", weight=0]; 29.11/13.90 53[label="FiniteMap.lookupWithDefaultFM0 vyw15 (FiniteMap.lookupFM1 vyw16 vyw17 vyw18 vyw19 vyw20 vyw21 (vyw21 > vyw16))",fontsize=16,color="magenta"];53 -> 71[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 53 -> 72[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 53 -> 73[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 53 -> 74[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 53 -> 75[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 53 -> 76[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 53 -> 77[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 53 -> 78[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 54 -> 6[label="",style="dashed", color="red", weight=0]; 29.11/13.90 54[label="FiniteMap.lookupWithDefaultFM0 vyw15 (FiniteMap.lookupFM vyw19 vyw21)",fontsize=16,color="magenta"];54 -> 79[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 54 -> 80[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 54 -> 81[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 165[label="compare vyw5 vyw30",fontsize=16,color="black",shape="triangle"];165 -> 202[label="",style="solid", color="black", weight=3]; 29.11/13.90 164[label="vyw42 == LT",fontsize=16,color="burlywood",shape="triangle"];2911[label="vyw42/LT",fontsize=10,color="white",style="solid",shape="box"];164 -> 2911[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2911 -> 203[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2912[label="vyw42/EQ",fontsize=10,color="white",style="solid",shape="box"];164 -> 2912[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2912 -> 204[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2913[label="vyw42/GT",fontsize=10,color="white",style="solid",shape="box"];164 -> 2913[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2913 -> 205[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 166[label="compare vyw5 vyw30",fontsize=16,color="black",shape="triangle"];166 -> 206[label="",style="solid", color="black", weight=3]; 29.11/13.90 167[label="compare vyw5 vyw30",fontsize=16,color="burlywood",shape="triangle"];2914[label="vyw5/vyw50 :% vyw51",fontsize=10,color="white",style="solid",shape="box"];167 -> 2914[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2914 -> 207[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 168[label="compare vyw5 vyw30",fontsize=16,color="black",shape="triangle"];168 -> 208[label="",style="solid", color="black", weight=3]; 29.11/13.90 169[label="compare vyw5 vyw30",fontsize=16,color="black",shape="triangle"];169 -> 209[label="",style="solid", color="black", weight=3]; 29.11/13.90 170[label="compare vyw5 vyw30",fontsize=16,color="burlywood",shape="triangle"];2915[label="vyw5/()",fontsize=10,color="white",style="solid",shape="box"];170 -> 2915[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2915 -> 210[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 171[label="compare vyw5 vyw30",fontsize=16,color="black",shape="triangle"];171 -> 211[label="",style="solid", color="black", weight=3]; 29.11/13.90 172[label="compare vyw5 vyw30",fontsize=16,color="black",shape="triangle"];172 -> 212[label="",style="solid", color="black", weight=3]; 29.11/13.90 173[label="compare vyw5 vyw30",fontsize=16,color="burlywood",shape="triangle"];2916[label="vyw5/Integer vyw50",fontsize=10,color="white",style="solid",shape="box"];173 -> 2916[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2916 -> 213[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 174[label="compare vyw5 vyw30",fontsize=16,color="black",shape="triangle"];174 -> 214[label="",style="solid", color="black", weight=3]; 29.11/13.90 175[label="compare vyw5 vyw30",fontsize=16,color="black",shape="triangle"];175 -> 215[label="",style="solid", color="black", weight=3]; 29.11/13.90 176[label="compare vyw5 vyw30",fontsize=16,color="black",shape="triangle"];176 -> 216[label="",style="solid", color="black", weight=3]; 29.11/13.90 177[label="compare vyw5 vyw30",fontsize=16,color="black",shape="triangle"];177 -> 217[label="",style="solid", color="black", weight=3]; 29.11/13.90 178[label="compare vyw5 vyw30",fontsize=16,color="burlywood",shape="triangle"];2917[label="vyw5/vyw50 : vyw51",fontsize=10,color="white",style="solid",shape="box"];178 -> 2917[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2917 -> 218[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2918[label="vyw5/[]",fontsize=10,color="white",style="solid",shape="box"];178 -> 2918[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2918 -> 219[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 71[label="vyw19",fontsize=16,color="green",shape="box"];72[label="vyw21",fontsize=16,color="green",shape="box"];73[label="vyw16",fontsize=16,color="green",shape="box"];74[label="vyw18",fontsize=16,color="green",shape="box"];75[label="vyw17",fontsize=16,color="green",shape="box"];76[label="vyw21 > vyw16",fontsize=16,color="blue",shape="box"];2919[label="> :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];76 -> 2919[label="",style="solid", color="blue", weight=9]; 29.11/13.90 2919 -> 100[label="",style="solid", color="blue", weight=3]; 29.11/13.90 2920[label="> :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];76 -> 2920[label="",style="solid", color="blue", weight=9]; 29.11/13.90 2920 -> 101[label="",style="solid", color="blue", weight=3]; 29.11/13.90 2921[label="> :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];76 -> 2921[label="",style="solid", color="blue", weight=9]; 29.11/13.90 2921 -> 102[label="",style="solid", color="blue", weight=3]; 29.11/13.90 2922[label="> :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];76 -> 2922[label="",style="solid", color="blue", weight=9]; 29.11/13.90 2922 -> 103[label="",style="solid", color="blue", weight=3]; 29.11/13.90 2923[label="> :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];76 -> 2923[label="",style="solid", color="blue", weight=9]; 29.11/13.90 2923 -> 104[label="",style="solid", color="blue", weight=3]; 29.11/13.90 2924[label="> :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];76 -> 2924[label="",style="solid", color="blue", weight=9]; 29.11/13.90 2924 -> 105[label="",style="solid", color="blue", weight=3]; 29.11/13.90 2925[label="> :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];76 -> 2925[label="",style="solid", color="blue", weight=9]; 29.11/13.90 2925 -> 106[label="",style="solid", color="blue", weight=3]; 29.11/13.90 2926[label="> :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];76 -> 2926[label="",style="solid", color="blue", weight=9]; 29.11/13.90 2926 -> 107[label="",style="solid", color="blue", weight=3]; 29.11/13.90 2927[label="> :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];76 -> 2927[label="",style="solid", color="blue", weight=9]; 29.11/13.90 2927 -> 108[label="",style="solid", color="blue", weight=3]; 29.11/13.90 2928[label="> :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];76 -> 2928[label="",style="solid", color="blue", weight=9]; 29.11/13.90 2928 -> 109[label="",style="solid", color="blue", weight=3]; 29.11/13.90 2929[label="> :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];76 -> 2929[label="",style="solid", color="blue", weight=9]; 29.11/13.90 2929 -> 110[label="",style="solid", color="blue", weight=3]; 29.11/13.90 2930[label="> :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];76 -> 2930[label="",style="solid", color="blue", weight=9]; 29.11/13.90 2930 -> 111[label="",style="solid", color="blue", weight=3]; 29.11/13.90 2931[label="> :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];76 -> 2931[label="",style="solid", color="blue", weight=9]; 29.11/13.90 2931 -> 112[label="",style="solid", color="blue", weight=3]; 29.11/13.90 2932[label="> :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];76 -> 2932[label="",style="solid", color="blue", weight=9]; 29.11/13.90 2932 -> 113[label="",style="solid", color="blue", weight=3]; 29.11/13.90 77[label="vyw20",fontsize=16,color="green",shape="box"];78[label="vyw15",fontsize=16,color="green",shape="box"];70[label="FiniteMap.lookupWithDefaultFM0 vyw32 (FiniteMap.lookupFM1 vyw33 vyw34 vyw35 vyw36 vyw37 vyw38 vyw39)",fontsize=16,color="burlywood",shape="triangle"];2933[label="vyw39/False",fontsize=10,color="white",style="solid",shape="box"];70 -> 2933[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2933 -> 114[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2934[label="vyw39/True",fontsize=10,color="white",style="solid",shape="box"];70 -> 2934[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2934 -> 115[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 79[label="vyw21",fontsize=16,color="green",shape="box"];80[label="vyw15",fontsize=16,color="green",shape="box"];81[label="vyw19",fontsize=16,color="green",shape="box"];202[label="compare3 vyw5 vyw30",fontsize=16,color="black",shape="box"];202 -> 235[label="",style="solid", color="black", weight=3]; 29.11/13.90 203[label="LT == LT",fontsize=16,color="black",shape="box"];203 -> 236[label="",style="solid", color="black", weight=3]; 29.11/13.90 204[label="EQ == LT",fontsize=16,color="black",shape="box"];204 -> 237[label="",style="solid", color="black", weight=3]; 29.11/13.90 205[label="GT == LT",fontsize=16,color="black",shape="box"];205 -> 238[label="",style="solid", color="black", weight=3]; 29.11/13.90 206[label="compare3 vyw5 vyw30",fontsize=16,color="black",shape="box"];206 -> 239[label="",style="solid", color="black", weight=3]; 29.11/13.90 207[label="compare (vyw50 :% vyw51) vyw30",fontsize=16,color="burlywood",shape="box"];2935[label="vyw30/vyw300 :% vyw301",fontsize=10,color="white",style="solid",shape="box"];207 -> 2935[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2935 -> 240[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 208[label="compare3 vyw5 vyw30",fontsize=16,color="black",shape="box"];208 -> 241[label="",style="solid", color="black", weight=3]; 29.11/13.90 209[label="primCmpFloat vyw5 vyw30",fontsize=16,color="burlywood",shape="box"];2936[label="vyw5/Float vyw50 vyw51",fontsize=10,color="white",style="solid",shape="box"];209 -> 2936[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2936 -> 242[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 210[label="compare () vyw30",fontsize=16,color="burlywood",shape="box"];2937[label="vyw30/()",fontsize=10,color="white",style="solid",shape="box"];210 -> 2937[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2937 -> 243[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 211[label="primCmpChar vyw5 vyw30",fontsize=16,color="burlywood",shape="box"];2938[label="vyw5/Char vyw50",fontsize=10,color="white",style="solid",shape="box"];211 -> 2938[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2938 -> 244[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 212[label="primCmpInt vyw5 vyw30",fontsize=16,color="burlywood",shape="triangle"];2939[label="vyw5/Pos vyw50",fontsize=10,color="white",style="solid",shape="box"];212 -> 2939[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2939 -> 245[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2940[label="vyw5/Neg vyw50",fontsize=10,color="white",style="solid",shape="box"];212 -> 2940[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2940 -> 246[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 213[label="compare (Integer vyw50) vyw30",fontsize=16,color="burlywood",shape="box"];2941[label="vyw30/Integer vyw300",fontsize=10,color="white",style="solid",shape="box"];213 -> 2941[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2941 -> 247[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 214[label="compare3 vyw5 vyw30",fontsize=16,color="black",shape="box"];214 -> 248[label="",style="solid", color="black", weight=3]; 29.11/13.90 215[label="compare3 vyw5 vyw30",fontsize=16,color="black",shape="box"];215 -> 249[label="",style="solid", color="black", weight=3]; 29.11/13.90 216[label="primCmpDouble vyw5 vyw30",fontsize=16,color="burlywood",shape="box"];2942[label="vyw5/Double vyw50 vyw51",fontsize=10,color="white",style="solid",shape="box"];216 -> 2942[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2942 -> 250[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 217[label="compare3 vyw5 vyw30",fontsize=16,color="black",shape="box"];217 -> 251[label="",style="solid", color="black", weight=3]; 29.11/13.90 218[label="compare (vyw50 : vyw51) vyw30",fontsize=16,color="burlywood",shape="box"];2943[label="vyw30/vyw300 : vyw301",fontsize=10,color="white",style="solid",shape="box"];218 -> 2943[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2943 -> 252[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2944[label="vyw30/[]",fontsize=10,color="white",style="solid",shape="box"];218 -> 2944[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2944 -> 253[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 219[label="compare [] vyw30",fontsize=16,color="burlywood",shape="box"];2945[label="vyw30/vyw300 : vyw301",fontsize=10,color="white",style="solid",shape="box"];219 -> 2945[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2945 -> 254[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2946[label="vyw30/[]",fontsize=10,color="white",style="solid",shape="box"];219 -> 2946[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2946 -> 255[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 100[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];100 -> 143[label="",style="solid", color="black", weight=3]; 29.11/13.90 101[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];101 -> 144[label="",style="solid", color="black", weight=3]; 29.11/13.90 102[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];102 -> 145[label="",style="solid", color="black", weight=3]; 29.11/13.90 103[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];103 -> 146[label="",style="solid", color="black", weight=3]; 29.11/13.90 104[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];104 -> 147[label="",style="solid", color="black", weight=3]; 29.11/13.90 105[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];105 -> 148[label="",style="solid", color="black", weight=3]; 29.11/13.90 106[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];106 -> 149[label="",style="solid", color="black", weight=3]; 29.11/13.90 107[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];107 -> 150[label="",style="solid", color="black", weight=3]; 29.11/13.90 108[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];108 -> 151[label="",style="solid", color="black", weight=3]; 29.11/13.90 109[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];109 -> 152[label="",style="solid", color="black", weight=3]; 29.11/13.90 110[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];110 -> 153[label="",style="solid", color="black", weight=3]; 29.11/13.90 111[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];111 -> 154[label="",style="solid", color="black", weight=3]; 29.11/13.90 112[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];112 -> 155[label="",style="solid", color="black", weight=3]; 29.11/13.90 113[label="vyw21 > vyw16",fontsize=16,color="black",shape="box"];113 -> 156[label="",style="solid", color="black", weight=3]; 29.11/13.90 114[label="FiniteMap.lookupWithDefaultFM0 vyw32 (FiniteMap.lookupFM1 vyw33 vyw34 vyw35 vyw36 vyw37 vyw38 False)",fontsize=16,color="black",shape="box"];114 -> 157[label="",style="solid", color="black", weight=3]; 29.11/13.90 115[label="FiniteMap.lookupWithDefaultFM0 vyw32 (FiniteMap.lookupFM1 vyw33 vyw34 vyw35 vyw36 vyw37 vyw38 True)",fontsize=16,color="black",shape="box"];115 -> 158[label="",style="solid", color="black", weight=3]; 29.11/13.90 235[label="compare2 vyw5 vyw30 (vyw5 == vyw30)",fontsize=16,color="burlywood",shape="box"];2947[label="vyw5/Nothing",fontsize=10,color="white",style="solid",shape="box"];235 -> 2947[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2947 -> 291[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2948[label="vyw5/Just vyw50",fontsize=10,color="white",style="solid",shape="box"];235 -> 2948[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2948 -> 292[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 236[label="True",fontsize=16,color="green",shape="box"];237[label="False",fontsize=16,color="green",shape="box"];238[label="False",fontsize=16,color="green",shape="box"];239[label="compare2 vyw5 vyw30 (vyw5 == vyw30)",fontsize=16,color="burlywood",shape="box"];2949[label="vyw5/(vyw50,vyw51)",fontsize=10,color="white",style="solid",shape="box"];239 -> 2949[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2949 -> 293[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 240[label="compare (vyw50 :% vyw51) (vyw300 :% vyw301)",fontsize=16,color="black",shape="box"];240 -> 294[label="",style="solid", color="black", weight=3]; 29.11/13.90 241[label="compare2 vyw5 vyw30 (vyw5 == vyw30)",fontsize=16,color="burlywood",shape="box"];2950[label="vyw5/LT",fontsize=10,color="white",style="solid",shape="box"];241 -> 2950[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2950 -> 295[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2951[label="vyw5/EQ",fontsize=10,color="white",style="solid",shape="box"];241 -> 2951[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2951 -> 296[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2952[label="vyw5/GT",fontsize=10,color="white",style="solid",shape="box"];241 -> 2952[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2952 -> 297[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 242[label="primCmpFloat (Float vyw50 vyw51) vyw30",fontsize=16,color="burlywood",shape="box"];2953[label="vyw51/Pos vyw510",fontsize=10,color="white",style="solid",shape="box"];242 -> 2953[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2953 -> 298[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2954[label="vyw51/Neg vyw510",fontsize=10,color="white",style="solid",shape="box"];242 -> 2954[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2954 -> 299[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 243[label="compare () ()",fontsize=16,color="black",shape="box"];243 -> 300[label="",style="solid", color="black", weight=3]; 29.11/13.90 244[label="primCmpChar (Char vyw50) vyw30",fontsize=16,color="burlywood",shape="box"];2955[label="vyw30/Char vyw300",fontsize=10,color="white",style="solid",shape="box"];244 -> 2955[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2955 -> 301[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 245[label="primCmpInt (Pos vyw50) vyw30",fontsize=16,color="burlywood",shape="box"];2956[label="vyw50/Succ vyw500",fontsize=10,color="white",style="solid",shape="box"];245 -> 2956[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2956 -> 302[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2957[label="vyw50/Zero",fontsize=10,color="white",style="solid",shape="box"];245 -> 2957[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2957 -> 303[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 246[label="primCmpInt (Neg vyw50) vyw30",fontsize=16,color="burlywood",shape="box"];2958[label="vyw50/Succ vyw500",fontsize=10,color="white",style="solid",shape="box"];246 -> 2958[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2958 -> 304[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2959[label="vyw50/Zero",fontsize=10,color="white",style="solid",shape="box"];246 -> 2959[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2959 -> 305[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 247[label="compare (Integer vyw50) (Integer vyw300)",fontsize=16,color="black",shape="box"];247 -> 306[label="",style="solid", color="black", weight=3]; 29.11/13.90 248[label="compare2 vyw5 vyw30 (vyw5 == vyw30)",fontsize=16,color="burlywood",shape="box"];2960[label="vyw5/Left vyw50",fontsize=10,color="white",style="solid",shape="box"];248 -> 2960[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2960 -> 307[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2961[label="vyw5/Right vyw50",fontsize=10,color="white",style="solid",shape="box"];248 -> 2961[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2961 -> 308[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 249[label="compare2 vyw5 vyw30 (vyw5 == vyw30)",fontsize=16,color="burlywood",shape="box"];2962[label="vyw5/False",fontsize=10,color="white",style="solid",shape="box"];249 -> 2962[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2962 -> 309[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2963[label="vyw5/True",fontsize=10,color="white",style="solid",shape="box"];249 -> 2963[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2963 -> 310[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 250[label="primCmpDouble (Double vyw50 vyw51) vyw30",fontsize=16,color="burlywood",shape="box"];2964[label="vyw51/Pos vyw510",fontsize=10,color="white",style="solid",shape="box"];250 -> 2964[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2964 -> 311[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2965[label="vyw51/Neg vyw510",fontsize=10,color="white",style="solid",shape="box"];250 -> 2965[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2965 -> 312[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 251[label="compare2 vyw5 vyw30 (vyw5 == vyw30)",fontsize=16,color="burlywood",shape="box"];2966[label="vyw5/(vyw50,vyw51,vyw52)",fontsize=10,color="white",style="solid",shape="box"];251 -> 2966[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2966 -> 313[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 252[label="compare (vyw50 : vyw51) (vyw300 : vyw301)",fontsize=16,color="black",shape="box"];252 -> 314[label="",style="solid", color="black", weight=3]; 29.11/13.90 253[label="compare (vyw50 : vyw51) []",fontsize=16,color="black",shape="box"];253 -> 315[label="",style="solid", color="black", weight=3]; 29.11/13.90 254[label="compare [] (vyw300 : vyw301)",fontsize=16,color="black",shape="box"];254 -> 316[label="",style="solid", color="black", weight=3]; 29.11/13.90 255[label="compare [] []",fontsize=16,color="black",shape="box"];255 -> 317[label="",style="solid", color="black", weight=3]; 29.11/13.90 143 -> 220[label="",style="dashed", color="red", weight=0]; 29.11/13.90 143[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];143 -> 221[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 144 -> 220[label="",style="dashed", color="red", weight=0]; 29.11/13.90 144[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];144 -> 222[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 145 -> 220[label="",style="dashed", color="red", weight=0]; 29.11/13.90 145[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];145 -> 223[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 146 -> 220[label="",style="dashed", color="red", weight=0]; 29.11/13.90 146[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];146 -> 224[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 147 -> 220[label="",style="dashed", color="red", weight=0]; 29.11/13.90 147[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];147 -> 225[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 148 -> 220[label="",style="dashed", color="red", weight=0]; 29.11/13.90 148[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];148 -> 226[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 149 -> 220[label="",style="dashed", color="red", weight=0]; 29.11/13.90 149[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];149 -> 227[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 150 -> 220[label="",style="dashed", color="red", weight=0]; 29.11/13.90 150[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];150 -> 228[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 151 -> 220[label="",style="dashed", color="red", weight=0]; 29.11/13.90 151[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];151 -> 229[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 152 -> 220[label="",style="dashed", color="red", weight=0]; 29.11/13.90 152[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];152 -> 230[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 153 -> 220[label="",style="dashed", color="red", weight=0]; 29.11/13.90 153[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];153 -> 231[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 154 -> 220[label="",style="dashed", color="red", weight=0]; 29.11/13.90 154[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];154 -> 232[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 155 -> 220[label="",style="dashed", color="red", weight=0]; 29.11/13.90 155[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];155 -> 233[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 156 -> 220[label="",style="dashed", color="red", weight=0]; 29.11/13.90 156[label="compare vyw21 vyw16 == GT",fontsize=16,color="magenta"];156 -> 234[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 157[label="FiniteMap.lookupWithDefaultFM0 vyw32 (FiniteMap.lookupFM0 vyw33 vyw34 vyw35 vyw36 vyw37 vyw38 otherwise)",fontsize=16,color="black",shape="box"];157 -> 256[label="",style="solid", color="black", weight=3]; 29.11/13.90 158 -> 6[label="",style="dashed", color="red", weight=0]; 29.11/13.90 158[label="FiniteMap.lookupWithDefaultFM0 vyw32 (FiniteMap.lookupFM vyw37 vyw38)",fontsize=16,color="magenta"];158 -> 257[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 158 -> 258[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 158 -> 259[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 291[label="compare2 Nothing vyw30 (Nothing == vyw30)",fontsize=16,color="burlywood",shape="box"];2967[label="vyw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];291 -> 2967[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2967 -> 322[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2968[label="vyw30/Just vyw300",fontsize=10,color="white",style="solid",shape="box"];291 -> 2968[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2968 -> 323[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 292[label="compare2 (Just vyw50) vyw30 (Just vyw50 == vyw30)",fontsize=16,color="burlywood",shape="box"];2969[label="vyw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];292 -> 2969[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2969 -> 324[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2970[label="vyw30/Just vyw300",fontsize=10,color="white",style="solid",shape="box"];292 -> 2970[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2970 -> 325[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 293[label="compare2 (vyw50,vyw51) vyw30 ((vyw50,vyw51) == vyw30)",fontsize=16,color="burlywood",shape="box"];2971[label="vyw30/(vyw300,vyw301)",fontsize=10,color="white",style="solid",shape="box"];293 -> 2971[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2971 -> 326[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 294[label="compare (vyw50 * vyw301) (vyw300 * vyw51)",fontsize=16,color="blue",shape="box"];2972[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];294 -> 2972[label="",style="solid", color="blue", weight=9]; 29.11/13.90 2972 -> 327[label="",style="solid", color="blue", weight=3]; 29.11/13.90 2973[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];294 -> 2973[label="",style="solid", color="blue", weight=9]; 29.11/13.90 2973 -> 328[label="",style="solid", color="blue", weight=3]; 29.11/13.90 295[label="compare2 LT vyw30 (LT == vyw30)",fontsize=16,color="burlywood",shape="box"];2974[label="vyw30/LT",fontsize=10,color="white",style="solid",shape="box"];295 -> 2974[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2974 -> 329[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2975[label="vyw30/EQ",fontsize=10,color="white",style="solid",shape="box"];295 -> 2975[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2975 -> 330[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2976[label="vyw30/GT",fontsize=10,color="white",style="solid",shape="box"];295 -> 2976[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2976 -> 331[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 296[label="compare2 EQ vyw30 (EQ == vyw30)",fontsize=16,color="burlywood",shape="box"];2977[label="vyw30/LT",fontsize=10,color="white",style="solid",shape="box"];296 -> 2977[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2977 -> 332[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2978[label="vyw30/EQ",fontsize=10,color="white",style="solid",shape="box"];296 -> 2978[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2978 -> 333[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2979[label="vyw30/GT",fontsize=10,color="white",style="solid",shape="box"];296 -> 2979[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2979 -> 334[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 297[label="compare2 GT vyw30 (GT == vyw30)",fontsize=16,color="burlywood",shape="box"];2980[label="vyw30/LT",fontsize=10,color="white",style="solid",shape="box"];297 -> 2980[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2980 -> 335[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2981[label="vyw30/EQ",fontsize=10,color="white",style="solid",shape="box"];297 -> 2981[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2981 -> 336[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2982[label="vyw30/GT",fontsize=10,color="white",style="solid",shape="box"];297 -> 2982[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2982 -> 337[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 298[label="primCmpFloat (Float vyw50 (Pos vyw510)) vyw30",fontsize=16,color="burlywood",shape="box"];2983[label="vyw30/Float vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];298 -> 2983[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2983 -> 338[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 299[label="primCmpFloat (Float vyw50 (Neg vyw510)) vyw30",fontsize=16,color="burlywood",shape="box"];2984[label="vyw30/Float vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];299 -> 2984[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2984 -> 339[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 300[label="EQ",fontsize=16,color="green",shape="box"];301[label="primCmpChar (Char vyw50) (Char vyw300)",fontsize=16,color="black",shape="box"];301 -> 340[label="",style="solid", color="black", weight=3]; 29.11/13.90 302[label="primCmpInt (Pos (Succ vyw500)) vyw30",fontsize=16,color="burlywood",shape="box"];2985[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];302 -> 2985[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2985 -> 341[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2986[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];302 -> 2986[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2986 -> 342[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 303[label="primCmpInt (Pos Zero) vyw30",fontsize=16,color="burlywood",shape="box"];2987[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];303 -> 2987[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2987 -> 343[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2988[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];303 -> 2988[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2988 -> 344[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 304[label="primCmpInt (Neg (Succ vyw500)) vyw30",fontsize=16,color="burlywood",shape="box"];2989[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];304 -> 2989[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2989 -> 345[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2990[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];304 -> 2990[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2990 -> 346[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 305[label="primCmpInt (Neg Zero) vyw30",fontsize=16,color="burlywood",shape="box"];2991[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];305 -> 2991[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2991 -> 347[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2992[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];305 -> 2992[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2992 -> 348[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 306 -> 212[label="",style="dashed", color="red", weight=0]; 29.11/13.90 306[label="primCmpInt vyw50 vyw300",fontsize=16,color="magenta"];306 -> 349[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 306 -> 350[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 307[label="compare2 (Left vyw50) vyw30 (Left vyw50 == vyw30)",fontsize=16,color="burlywood",shape="box"];2993[label="vyw30/Left vyw300",fontsize=10,color="white",style="solid",shape="box"];307 -> 2993[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2993 -> 351[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2994[label="vyw30/Right vyw300",fontsize=10,color="white",style="solid",shape="box"];307 -> 2994[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2994 -> 352[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 308[label="compare2 (Right vyw50) vyw30 (Right vyw50 == vyw30)",fontsize=16,color="burlywood",shape="box"];2995[label="vyw30/Left vyw300",fontsize=10,color="white",style="solid",shape="box"];308 -> 2995[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2995 -> 353[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2996[label="vyw30/Right vyw300",fontsize=10,color="white",style="solid",shape="box"];308 -> 2996[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2996 -> 354[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 309[label="compare2 False vyw30 (False == vyw30)",fontsize=16,color="burlywood",shape="box"];2997[label="vyw30/False",fontsize=10,color="white",style="solid",shape="box"];309 -> 2997[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2997 -> 355[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 2998[label="vyw30/True",fontsize=10,color="white",style="solid",shape="box"];309 -> 2998[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2998 -> 356[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 310[label="compare2 True vyw30 (True == vyw30)",fontsize=16,color="burlywood",shape="box"];2999[label="vyw30/False",fontsize=10,color="white",style="solid",shape="box"];310 -> 2999[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 2999 -> 357[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3000[label="vyw30/True",fontsize=10,color="white",style="solid",shape="box"];310 -> 3000[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3000 -> 358[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 311[label="primCmpDouble (Double vyw50 (Pos vyw510)) vyw30",fontsize=16,color="burlywood",shape="box"];3001[label="vyw30/Double vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];311 -> 3001[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3001 -> 359[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 312[label="primCmpDouble (Double vyw50 (Neg vyw510)) vyw30",fontsize=16,color="burlywood",shape="box"];3002[label="vyw30/Double vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];312 -> 3002[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3002 -> 360[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 313[label="compare2 (vyw50,vyw51,vyw52) vyw30 ((vyw50,vyw51,vyw52) == vyw30)",fontsize=16,color="burlywood",shape="box"];3003[label="vyw30/(vyw300,vyw301,vyw302)",fontsize=10,color="white",style="solid",shape="box"];313 -> 3003[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3003 -> 361[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 314 -> 362[label="",style="dashed", color="red", weight=0]; 29.11/13.90 314[label="primCompAux vyw50 vyw300 (compare vyw51 vyw301)",fontsize=16,color="magenta"];314 -> 363[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 315[label="GT",fontsize=16,color="green",shape="box"];316[label="LT",fontsize=16,color="green",shape="box"];317[label="EQ",fontsize=16,color="green",shape="box"];221 -> 165[label="",style="dashed", color="red", weight=0]; 29.11/13.90 221[label="compare vyw21 vyw16",fontsize=16,color="magenta"];221 -> 260[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 221 -> 261[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 220[label="vyw43 == GT",fontsize=16,color="burlywood",shape="triangle"];3004[label="vyw43/LT",fontsize=10,color="white",style="solid",shape="box"];220 -> 3004[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3004 -> 262[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3005[label="vyw43/EQ",fontsize=10,color="white",style="solid",shape="box"];220 -> 3005[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3005 -> 263[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3006[label="vyw43/GT",fontsize=10,color="white",style="solid",shape="box"];220 -> 3006[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3006 -> 264[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 222 -> 166[label="",style="dashed", color="red", weight=0]; 29.11/13.90 222[label="compare vyw21 vyw16",fontsize=16,color="magenta"];222 -> 265[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 222 -> 266[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 223 -> 167[label="",style="dashed", color="red", weight=0]; 29.11/13.90 223[label="compare vyw21 vyw16",fontsize=16,color="magenta"];223 -> 267[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 223 -> 268[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 224 -> 168[label="",style="dashed", color="red", weight=0]; 29.11/13.90 224[label="compare vyw21 vyw16",fontsize=16,color="magenta"];224 -> 269[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 224 -> 270[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 225 -> 169[label="",style="dashed", color="red", weight=0]; 29.11/13.90 225[label="compare vyw21 vyw16",fontsize=16,color="magenta"];225 -> 271[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 225 -> 272[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 226 -> 170[label="",style="dashed", color="red", weight=0]; 29.11/13.90 226[label="compare vyw21 vyw16",fontsize=16,color="magenta"];226 -> 273[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 226 -> 274[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 227 -> 171[label="",style="dashed", color="red", weight=0]; 29.11/13.90 227[label="compare vyw21 vyw16",fontsize=16,color="magenta"];227 -> 275[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 227 -> 276[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 228 -> 172[label="",style="dashed", color="red", weight=0]; 29.11/13.90 228[label="compare vyw21 vyw16",fontsize=16,color="magenta"];228 -> 277[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 228 -> 278[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 229 -> 173[label="",style="dashed", color="red", weight=0]; 29.11/13.90 229[label="compare vyw21 vyw16",fontsize=16,color="magenta"];229 -> 279[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 229 -> 280[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 230 -> 174[label="",style="dashed", color="red", weight=0]; 29.11/13.90 230[label="compare vyw21 vyw16",fontsize=16,color="magenta"];230 -> 281[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 230 -> 282[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 231 -> 175[label="",style="dashed", color="red", weight=0]; 29.11/13.90 231[label="compare vyw21 vyw16",fontsize=16,color="magenta"];231 -> 283[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 231 -> 284[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 232 -> 176[label="",style="dashed", color="red", weight=0]; 29.11/13.90 232[label="compare vyw21 vyw16",fontsize=16,color="magenta"];232 -> 285[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 232 -> 286[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 233 -> 177[label="",style="dashed", color="red", weight=0]; 29.11/13.90 233[label="compare vyw21 vyw16",fontsize=16,color="magenta"];233 -> 287[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 233 -> 288[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 234 -> 178[label="",style="dashed", color="red", weight=0]; 29.11/13.90 234[label="compare vyw21 vyw16",fontsize=16,color="magenta"];234 -> 289[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 234 -> 290[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 256[label="FiniteMap.lookupWithDefaultFM0 vyw32 (FiniteMap.lookupFM0 vyw33 vyw34 vyw35 vyw36 vyw37 vyw38 True)",fontsize=16,color="black",shape="box"];256 -> 318[label="",style="solid", color="black", weight=3]; 29.11/13.90 257[label="vyw38",fontsize=16,color="green",shape="box"];258[label="vyw32",fontsize=16,color="green",shape="box"];259[label="vyw37",fontsize=16,color="green",shape="box"];322[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];322 -> 364[label="",style="solid", color="black", weight=3]; 29.11/13.90 323[label="compare2 Nothing (Just vyw300) (Nothing == Just vyw300)",fontsize=16,color="black",shape="box"];323 -> 365[label="",style="solid", color="black", weight=3]; 29.11/13.90 324[label="compare2 (Just vyw50) Nothing (Just vyw50 == Nothing)",fontsize=16,color="black",shape="box"];324 -> 366[label="",style="solid", color="black", weight=3]; 29.11/13.90 325[label="compare2 (Just vyw50) (Just vyw300) (Just vyw50 == Just vyw300)",fontsize=16,color="black",shape="box"];325 -> 367[label="",style="solid", color="black", weight=3]; 29.11/13.90 326[label="compare2 (vyw50,vyw51) (vyw300,vyw301) ((vyw50,vyw51) == (vyw300,vyw301))",fontsize=16,color="black",shape="box"];326 -> 368[label="",style="solid", color="black", weight=3]; 29.11/13.90 327 -> 172[label="",style="dashed", color="red", weight=0]; 29.11/13.90 327[label="compare (vyw50 * vyw301) (vyw300 * vyw51)",fontsize=16,color="magenta"];327 -> 369[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 327 -> 370[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 328 -> 173[label="",style="dashed", color="red", weight=0]; 29.11/13.90 328[label="compare (vyw50 * vyw301) (vyw300 * vyw51)",fontsize=16,color="magenta"];328 -> 371[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 328 -> 372[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 329[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];329 -> 373[label="",style="solid", color="black", weight=3]; 29.11/13.90 330[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];330 -> 374[label="",style="solid", color="black", weight=3]; 29.11/13.90 331[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];331 -> 375[label="",style="solid", color="black", weight=3]; 29.11/13.90 332[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];332 -> 376[label="",style="solid", color="black", weight=3]; 29.11/13.90 333[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];333 -> 377[label="",style="solid", color="black", weight=3]; 29.11/13.90 334[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];334 -> 378[label="",style="solid", color="black", weight=3]; 29.11/13.90 335[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];335 -> 379[label="",style="solid", color="black", weight=3]; 29.11/13.90 336[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];336 -> 380[label="",style="solid", color="black", weight=3]; 29.11/13.90 337[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];337 -> 381[label="",style="solid", color="black", weight=3]; 29.11/13.90 338[label="primCmpFloat (Float vyw50 (Pos vyw510)) (Float vyw300 vyw301)",fontsize=16,color="burlywood",shape="box"];3007[label="vyw301/Pos vyw3010",fontsize=10,color="white",style="solid",shape="box"];338 -> 3007[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3007 -> 382[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3008[label="vyw301/Neg vyw3010",fontsize=10,color="white",style="solid",shape="box"];338 -> 3008[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3008 -> 383[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 339[label="primCmpFloat (Float vyw50 (Neg vyw510)) (Float vyw300 vyw301)",fontsize=16,color="burlywood",shape="box"];3009[label="vyw301/Pos vyw3010",fontsize=10,color="white",style="solid",shape="box"];339 -> 3009[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3009 -> 384[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3010[label="vyw301/Neg vyw3010",fontsize=10,color="white",style="solid",shape="box"];339 -> 3010[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3010 -> 385[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 340[label="primCmpNat vyw50 vyw300",fontsize=16,color="burlywood",shape="triangle"];3011[label="vyw50/Succ vyw500",fontsize=10,color="white",style="solid",shape="box"];340 -> 3011[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3011 -> 386[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3012[label="vyw50/Zero",fontsize=10,color="white",style="solid",shape="box"];340 -> 3012[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3012 -> 387[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 341[label="primCmpInt (Pos (Succ vyw500)) (Pos vyw300)",fontsize=16,color="black",shape="box"];341 -> 388[label="",style="solid", color="black", weight=3]; 29.11/13.90 342[label="primCmpInt (Pos (Succ vyw500)) (Neg vyw300)",fontsize=16,color="black",shape="box"];342 -> 389[label="",style="solid", color="black", weight=3]; 29.11/13.90 343[label="primCmpInt (Pos Zero) (Pos vyw300)",fontsize=16,color="burlywood",shape="box"];3013[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];343 -> 3013[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3013 -> 390[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3014[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];343 -> 3014[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3014 -> 391[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 344[label="primCmpInt (Pos Zero) (Neg vyw300)",fontsize=16,color="burlywood",shape="box"];3015[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];344 -> 3015[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3015 -> 392[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3016[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];344 -> 3016[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3016 -> 393[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 345[label="primCmpInt (Neg (Succ vyw500)) (Pos vyw300)",fontsize=16,color="black",shape="box"];345 -> 394[label="",style="solid", color="black", weight=3]; 29.11/13.90 346[label="primCmpInt (Neg (Succ vyw500)) (Neg vyw300)",fontsize=16,color="black",shape="box"];346 -> 395[label="",style="solid", color="black", weight=3]; 29.11/13.90 347[label="primCmpInt (Neg Zero) (Pos vyw300)",fontsize=16,color="burlywood",shape="box"];3017[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];347 -> 3017[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3017 -> 396[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3018[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];347 -> 3018[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3018 -> 397[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 348[label="primCmpInt (Neg Zero) (Neg vyw300)",fontsize=16,color="burlywood",shape="box"];3019[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];348 -> 3019[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3019 -> 398[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3020[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];348 -> 3020[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3020 -> 399[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 349[label="vyw50",fontsize=16,color="green",shape="box"];350[label="vyw300",fontsize=16,color="green",shape="box"];351[label="compare2 (Left vyw50) (Left vyw300) (Left vyw50 == Left vyw300)",fontsize=16,color="black",shape="box"];351 -> 400[label="",style="solid", color="black", weight=3]; 29.11/13.90 352[label="compare2 (Left vyw50) (Right vyw300) (Left vyw50 == Right vyw300)",fontsize=16,color="black",shape="box"];352 -> 401[label="",style="solid", color="black", weight=3]; 29.11/13.90 353[label="compare2 (Right vyw50) (Left vyw300) (Right vyw50 == Left vyw300)",fontsize=16,color="black",shape="box"];353 -> 402[label="",style="solid", color="black", weight=3]; 29.11/13.90 354[label="compare2 (Right vyw50) (Right vyw300) (Right vyw50 == Right vyw300)",fontsize=16,color="black",shape="box"];354 -> 403[label="",style="solid", color="black", weight=3]; 29.11/13.90 355[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];355 -> 404[label="",style="solid", color="black", weight=3]; 29.11/13.90 356[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];356 -> 405[label="",style="solid", color="black", weight=3]; 29.11/13.90 357[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];357 -> 406[label="",style="solid", color="black", weight=3]; 29.11/13.90 358[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];358 -> 407[label="",style="solid", color="black", weight=3]; 29.11/13.90 359[label="primCmpDouble (Double vyw50 (Pos vyw510)) (Double vyw300 vyw301)",fontsize=16,color="burlywood",shape="box"];3021[label="vyw301/Pos vyw3010",fontsize=10,color="white",style="solid",shape="box"];359 -> 3021[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3021 -> 408[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3022[label="vyw301/Neg vyw3010",fontsize=10,color="white",style="solid",shape="box"];359 -> 3022[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3022 -> 409[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 360[label="primCmpDouble (Double vyw50 (Neg vyw510)) (Double vyw300 vyw301)",fontsize=16,color="burlywood",shape="box"];3023[label="vyw301/Pos vyw3010",fontsize=10,color="white",style="solid",shape="box"];360 -> 3023[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3023 -> 410[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3024[label="vyw301/Neg vyw3010",fontsize=10,color="white",style="solid",shape="box"];360 -> 3024[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3024 -> 411[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 361[label="compare2 (vyw50,vyw51,vyw52) (vyw300,vyw301,vyw302) ((vyw50,vyw51,vyw52) == (vyw300,vyw301,vyw302))",fontsize=16,color="black",shape="box"];361 -> 412[label="",style="solid", color="black", weight=3]; 29.11/13.90 363 -> 178[label="",style="dashed", color="red", weight=0]; 29.11/13.90 363[label="compare vyw51 vyw301",fontsize=16,color="magenta"];363 -> 413[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 363 -> 414[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 362[label="primCompAux vyw50 vyw300 vyw44",fontsize=16,color="black",shape="triangle"];362 -> 415[label="",style="solid", color="black", weight=3]; 29.11/13.90 260[label="vyw21",fontsize=16,color="green",shape="box"];261[label="vyw16",fontsize=16,color="green",shape="box"];262[label="LT == GT",fontsize=16,color="black",shape="box"];262 -> 319[label="",style="solid", color="black", weight=3]; 29.11/13.90 263[label="EQ == GT",fontsize=16,color="black",shape="box"];263 -> 320[label="",style="solid", color="black", weight=3]; 29.11/13.90 264[label="GT == GT",fontsize=16,color="black",shape="box"];264 -> 321[label="",style="solid", color="black", weight=3]; 29.11/13.90 265[label="vyw21",fontsize=16,color="green",shape="box"];266[label="vyw16",fontsize=16,color="green",shape="box"];267[label="vyw21",fontsize=16,color="green",shape="box"];268[label="vyw16",fontsize=16,color="green",shape="box"];269[label="vyw21",fontsize=16,color="green",shape="box"];270[label="vyw16",fontsize=16,color="green",shape="box"];271[label="vyw21",fontsize=16,color="green",shape="box"];272[label="vyw16",fontsize=16,color="green",shape="box"];273[label="vyw21",fontsize=16,color="green",shape="box"];274[label="vyw16",fontsize=16,color="green",shape="box"];275[label="vyw21",fontsize=16,color="green",shape="box"];276[label="vyw16",fontsize=16,color="green",shape="box"];277[label="vyw21",fontsize=16,color="green",shape="box"];278[label="vyw16",fontsize=16,color="green",shape="box"];279[label="vyw21",fontsize=16,color="green",shape="box"];280[label="vyw16",fontsize=16,color="green",shape="box"];281[label="vyw21",fontsize=16,color="green",shape="box"];282[label="vyw16",fontsize=16,color="green",shape="box"];283[label="vyw21",fontsize=16,color="green",shape="box"];284[label="vyw16",fontsize=16,color="green",shape="box"];285[label="vyw21",fontsize=16,color="green",shape="box"];286[label="vyw16",fontsize=16,color="green",shape="box"];287[label="vyw21",fontsize=16,color="green",shape="box"];288[label="vyw16",fontsize=16,color="green",shape="box"];289[label="vyw21",fontsize=16,color="green",shape="box"];290[label="vyw16",fontsize=16,color="green",shape="box"];318[label="FiniteMap.lookupWithDefaultFM0 vyw32 (Just vyw34)",fontsize=16,color="black",shape="box"];318 -> 416[label="",style="solid", color="black", weight=3]; 29.11/13.90 364[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];364 -> 417[label="",style="solid", color="black", weight=3]; 29.11/13.90 365[label="compare2 Nothing (Just vyw300) False",fontsize=16,color="black",shape="box"];365 -> 418[label="",style="solid", color="black", weight=3]; 29.11/13.90 366[label="compare2 (Just vyw50) Nothing False",fontsize=16,color="black",shape="box"];366 -> 419[label="",style="solid", color="black", weight=3]; 29.11/13.90 367 -> 420[label="",style="dashed", color="red", weight=0]; 29.11/13.90 367[label="compare2 (Just vyw50) (Just vyw300) (vyw50 == vyw300)",fontsize=16,color="magenta"];367 -> 421[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 367 -> 422[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 367 -> 423[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 368 -> 892[label="",style="dashed", color="red", weight=0]; 29.11/13.90 368[label="compare2 (vyw50,vyw51) (vyw300,vyw301) (vyw50 == vyw300 && vyw51 == vyw301)",fontsize=16,color="magenta"];368 -> 893[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 368 -> 894[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 368 -> 895[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 368 -> 896[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 368 -> 897[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 369[label="vyw50 * vyw301",fontsize=16,color="black",shape="triangle"];369 -> 430[label="",style="solid", color="black", weight=3]; 29.11/13.90 370 -> 369[label="",style="dashed", color="red", weight=0]; 29.11/13.90 370[label="vyw300 * vyw51",fontsize=16,color="magenta"];370 -> 431[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 370 -> 432[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 371[label="vyw50 * vyw301",fontsize=16,color="burlywood",shape="triangle"];3025[label="vyw50/Integer vyw500",fontsize=10,color="white",style="solid",shape="box"];371 -> 3025[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3025 -> 433[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 372 -> 371[label="",style="dashed", color="red", weight=0]; 29.11/13.90 372[label="vyw300 * vyw51",fontsize=16,color="magenta"];372 -> 434[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 372 -> 435[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 373[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];373 -> 436[label="",style="solid", color="black", weight=3]; 29.11/13.90 374[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];374 -> 437[label="",style="solid", color="black", weight=3]; 29.11/13.90 375[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];375 -> 438[label="",style="solid", color="black", weight=3]; 29.11/13.90 376[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];376 -> 439[label="",style="solid", color="black", weight=3]; 29.11/13.90 377[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];377 -> 440[label="",style="solid", color="black", weight=3]; 29.11/13.90 378[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];378 -> 441[label="",style="solid", color="black", weight=3]; 29.11/13.90 379[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];379 -> 442[label="",style="solid", color="black", weight=3]; 29.11/13.90 380[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];380 -> 443[label="",style="solid", color="black", weight=3]; 29.11/13.90 381[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];381 -> 444[label="",style="solid", color="black", weight=3]; 29.11/13.90 382[label="primCmpFloat (Float vyw50 (Pos vyw510)) (Float vyw300 (Pos vyw3010))",fontsize=16,color="black",shape="box"];382 -> 445[label="",style="solid", color="black", weight=3]; 29.11/13.90 383[label="primCmpFloat (Float vyw50 (Pos vyw510)) (Float vyw300 (Neg vyw3010))",fontsize=16,color="black",shape="box"];383 -> 446[label="",style="solid", color="black", weight=3]; 29.11/13.90 384[label="primCmpFloat (Float vyw50 (Neg vyw510)) (Float vyw300 (Pos vyw3010))",fontsize=16,color="black",shape="box"];384 -> 447[label="",style="solid", color="black", weight=3]; 29.11/13.90 385[label="primCmpFloat (Float vyw50 (Neg vyw510)) (Float vyw300 (Neg vyw3010))",fontsize=16,color="black",shape="box"];385 -> 448[label="",style="solid", color="black", weight=3]; 29.11/13.90 386[label="primCmpNat (Succ vyw500) vyw300",fontsize=16,color="burlywood",shape="box"];3026[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];386 -> 3026[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3026 -> 449[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3027[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];386 -> 3027[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3027 -> 450[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 387[label="primCmpNat Zero vyw300",fontsize=16,color="burlywood",shape="box"];3028[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];387 -> 3028[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3028 -> 451[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3029[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];387 -> 3029[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3029 -> 452[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 388 -> 340[label="",style="dashed", color="red", weight=0]; 29.11/13.90 388[label="primCmpNat (Succ vyw500) vyw300",fontsize=16,color="magenta"];388 -> 453[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 388 -> 454[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 389[label="GT",fontsize=16,color="green",shape="box"];390[label="primCmpInt (Pos Zero) (Pos (Succ vyw3000))",fontsize=16,color="black",shape="box"];390 -> 455[label="",style="solid", color="black", weight=3]; 29.11/13.90 391[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];391 -> 456[label="",style="solid", color="black", weight=3]; 29.11/13.90 392[label="primCmpInt (Pos Zero) (Neg (Succ vyw3000))",fontsize=16,color="black",shape="box"];392 -> 457[label="",style="solid", color="black", weight=3]; 29.11/13.90 393[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];393 -> 458[label="",style="solid", color="black", weight=3]; 29.11/13.90 394[label="LT",fontsize=16,color="green",shape="box"];395 -> 340[label="",style="dashed", color="red", weight=0]; 29.11/13.90 395[label="primCmpNat vyw300 (Succ vyw500)",fontsize=16,color="magenta"];395 -> 459[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 395 -> 460[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 396[label="primCmpInt (Neg Zero) (Pos (Succ vyw3000))",fontsize=16,color="black",shape="box"];396 -> 461[label="",style="solid", color="black", weight=3]; 29.11/13.90 397[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];397 -> 462[label="",style="solid", color="black", weight=3]; 29.11/13.90 398[label="primCmpInt (Neg Zero) (Neg (Succ vyw3000))",fontsize=16,color="black",shape="box"];398 -> 463[label="",style="solid", color="black", weight=3]; 29.11/13.90 399[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];399 -> 464[label="",style="solid", color="black", weight=3]; 29.11/13.90 400 -> 465[label="",style="dashed", color="red", weight=0]; 29.11/13.90 400[label="compare2 (Left vyw50) (Left vyw300) (vyw50 == vyw300)",fontsize=16,color="magenta"];400 -> 466[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 400 -> 467[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 400 -> 468[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 401[label="compare2 (Left vyw50) (Right vyw300) False",fontsize=16,color="black",shape="box"];401 -> 469[label="",style="solid", color="black", weight=3]; 29.11/13.90 402[label="compare2 (Right vyw50) (Left vyw300) False",fontsize=16,color="black",shape="box"];402 -> 470[label="",style="solid", color="black", weight=3]; 29.11/13.90 403 -> 471[label="",style="dashed", color="red", weight=0]; 29.11/13.90 403[label="compare2 (Right vyw50) (Right vyw300) (vyw50 == vyw300)",fontsize=16,color="magenta"];403 -> 472[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 403 -> 473[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 403 -> 474[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 404[label="compare2 False False True",fontsize=16,color="black",shape="box"];404 -> 475[label="",style="solid", color="black", weight=3]; 29.11/13.90 405[label="compare2 False True False",fontsize=16,color="black",shape="box"];405 -> 476[label="",style="solid", color="black", weight=3]; 29.11/13.90 406[label="compare2 True False False",fontsize=16,color="black",shape="box"];406 -> 477[label="",style="solid", color="black", weight=3]; 29.11/13.90 407[label="compare2 True True True",fontsize=16,color="black",shape="box"];407 -> 478[label="",style="solid", color="black", weight=3]; 29.11/13.90 408[label="primCmpDouble (Double vyw50 (Pos vyw510)) (Double vyw300 (Pos vyw3010))",fontsize=16,color="black",shape="box"];408 -> 479[label="",style="solid", color="black", weight=3]; 29.11/13.90 409[label="primCmpDouble (Double vyw50 (Pos vyw510)) (Double vyw300 (Neg vyw3010))",fontsize=16,color="black",shape="box"];409 -> 480[label="",style="solid", color="black", weight=3]; 29.11/13.90 410[label="primCmpDouble (Double vyw50 (Neg vyw510)) (Double vyw300 (Pos vyw3010))",fontsize=16,color="black",shape="box"];410 -> 481[label="",style="solid", color="black", weight=3]; 29.11/13.90 411[label="primCmpDouble (Double vyw50 (Neg vyw510)) (Double vyw300 (Neg vyw3010))",fontsize=16,color="black",shape="box"];411 -> 482[label="",style="solid", color="black", weight=3]; 29.11/13.90 412 -> 948[label="",style="dashed", color="red", weight=0]; 29.11/13.90 412[label="compare2 (vyw50,vyw51,vyw52) (vyw300,vyw301,vyw302) (vyw50 == vyw300 && vyw51 == vyw301 && vyw52 == vyw302)",fontsize=16,color="magenta"];412 -> 949[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 412 -> 950[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 412 -> 951[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 412 -> 952[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 412 -> 953[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 412 -> 954[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 412 -> 955[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 413[label="vyw51",fontsize=16,color="green",shape="box"];414[label="vyw301",fontsize=16,color="green",shape="box"];415 -> 491[label="",style="dashed", color="red", weight=0]; 29.11/13.90 415[label="primCompAux0 vyw44 (compare vyw50 vyw300)",fontsize=16,color="magenta"];415 -> 492[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 415 -> 493[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 319[label="False",fontsize=16,color="green",shape="box"];320[label="False",fontsize=16,color="green",shape="box"];321[label="True",fontsize=16,color="green",shape="box"];416[label="vyw34",fontsize=16,color="green",shape="box"];417[label="EQ",fontsize=16,color="green",shape="box"];418[label="compare1 Nothing (Just vyw300) (Nothing <= Just vyw300)",fontsize=16,color="black",shape="box"];418 -> 494[label="",style="solid", color="black", weight=3]; 29.11/13.90 419[label="compare1 (Just vyw50) Nothing (Just vyw50 <= Nothing)",fontsize=16,color="black",shape="box"];419 -> 495[label="",style="solid", color="black", weight=3]; 29.11/13.90 421[label="vyw300",fontsize=16,color="green",shape="box"];422[label="vyw50",fontsize=16,color="green",shape="box"];423[label="vyw50 == vyw300",fontsize=16,color="blue",shape="box"];3030[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 3030[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3030 -> 496[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3031[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 3031[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3031 -> 497[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3032[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 3032[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3032 -> 498[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3033[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 3033[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3033 -> 499[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3034[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 3034[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3034 -> 500[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3035[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 3035[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3035 -> 501[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3036[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 3036[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3036 -> 502[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3037[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 3037[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3037 -> 503[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3038[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 3038[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3038 -> 504[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3039[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 3039[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3039 -> 505[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3040[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 3040[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3040 -> 506[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3041[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 3041[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3041 -> 507[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3042[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 3042[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3042 -> 508[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3043[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];423 -> 3043[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3043 -> 509[label="",style="solid", color="blue", weight=3]; 29.11/13.90 420[label="compare2 (Just vyw49) (Just vyw50) vyw51",fontsize=16,color="burlywood",shape="triangle"];3044[label="vyw51/False",fontsize=10,color="white",style="solid",shape="box"];420 -> 3044[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3044 -> 510[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3045[label="vyw51/True",fontsize=10,color="white",style="solid",shape="box"];420 -> 3045[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3045 -> 511[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 893 -> 980[label="",style="dashed", color="red", weight=0]; 29.11/13.90 893[label="vyw50 == vyw300 && vyw51 == vyw301",fontsize=16,color="magenta"];893 -> 981[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 893 -> 982[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 894[label="vyw50",fontsize=16,color="green",shape="box"];895[label="vyw51",fontsize=16,color="green",shape="box"];896[label="vyw301",fontsize=16,color="green",shape="box"];897[label="vyw300",fontsize=16,color="green",shape="box"];892[label="compare2 (vyw103,vyw104) (vyw105,vyw106) vyw107",fontsize=16,color="burlywood",shape="triangle"];3046[label="vyw107/False",fontsize=10,color="white",style="solid",shape="box"];892 -> 3046[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3046 -> 917[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3047[label="vyw107/True",fontsize=10,color="white",style="solid",shape="box"];892 -> 3047[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3047 -> 918[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 430[label="primMulInt vyw50 vyw301",fontsize=16,color="burlywood",shape="triangle"];3048[label="vyw50/Pos vyw500",fontsize=10,color="white",style="solid",shape="box"];430 -> 3048[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3048 -> 528[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3049[label="vyw50/Neg vyw500",fontsize=10,color="white",style="solid",shape="box"];430 -> 3049[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3049 -> 529[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 431[label="vyw51",fontsize=16,color="green",shape="box"];432[label="vyw300",fontsize=16,color="green",shape="box"];433[label="Integer vyw500 * vyw301",fontsize=16,color="burlywood",shape="box"];3050[label="vyw301/Integer vyw3010",fontsize=10,color="white",style="solid",shape="box"];433 -> 3050[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3050 -> 530[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 434[label="vyw51",fontsize=16,color="green",shape="box"];435[label="vyw300",fontsize=16,color="green",shape="box"];436[label="EQ",fontsize=16,color="green",shape="box"];437[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];437 -> 531[label="",style="solid", color="black", weight=3]; 29.11/13.90 438[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];438 -> 532[label="",style="solid", color="black", weight=3]; 29.11/13.90 439[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];439 -> 533[label="",style="solid", color="black", weight=3]; 29.11/13.90 440[label="EQ",fontsize=16,color="green",shape="box"];441[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];441 -> 534[label="",style="solid", color="black", weight=3]; 29.11/13.90 442[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];442 -> 535[label="",style="solid", color="black", weight=3]; 29.11/13.90 443[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];443 -> 536[label="",style="solid", color="black", weight=3]; 29.11/13.90 444[label="EQ",fontsize=16,color="green",shape="box"];445 -> 172[label="",style="dashed", color="red", weight=0]; 29.11/13.90 445[label="compare (vyw50 * Pos vyw3010) (Pos vyw510 * vyw300)",fontsize=16,color="magenta"];445 -> 537[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 445 -> 538[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 446 -> 172[label="",style="dashed", color="red", weight=0]; 29.11/13.90 446[label="compare (vyw50 * Pos vyw3010) (Neg vyw510 * vyw300)",fontsize=16,color="magenta"];446 -> 539[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 446 -> 540[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 447 -> 172[label="",style="dashed", color="red", weight=0]; 29.11/13.90 447[label="compare (vyw50 * Neg vyw3010) (Pos vyw510 * vyw300)",fontsize=16,color="magenta"];447 -> 541[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 447 -> 542[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 448 -> 172[label="",style="dashed", color="red", weight=0]; 29.11/13.90 448[label="compare (vyw50 * Neg vyw3010) (Neg vyw510 * vyw300)",fontsize=16,color="magenta"];448 -> 543[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 448 -> 544[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 449[label="primCmpNat (Succ vyw500) (Succ vyw3000)",fontsize=16,color="black",shape="box"];449 -> 545[label="",style="solid", color="black", weight=3]; 29.11/13.90 450[label="primCmpNat (Succ vyw500) Zero",fontsize=16,color="black",shape="box"];450 -> 546[label="",style="solid", color="black", weight=3]; 29.11/13.90 451[label="primCmpNat Zero (Succ vyw3000)",fontsize=16,color="black",shape="box"];451 -> 547[label="",style="solid", color="black", weight=3]; 29.11/13.90 452[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];452 -> 548[label="",style="solid", color="black", weight=3]; 29.11/13.90 453[label="Succ vyw500",fontsize=16,color="green",shape="box"];454[label="vyw300",fontsize=16,color="green",shape="box"];455 -> 340[label="",style="dashed", color="red", weight=0]; 29.11/13.90 455[label="primCmpNat Zero (Succ vyw3000)",fontsize=16,color="magenta"];455 -> 549[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 455 -> 550[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 456[label="EQ",fontsize=16,color="green",shape="box"];457[label="GT",fontsize=16,color="green",shape="box"];458[label="EQ",fontsize=16,color="green",shape="box"];459[label="vyw300",fontsize=16,color="green",shape="box"];460[label="Succ vyw500",fontsize=16,color="green",shape="box"];461[label="LT",fontsize=16,color="green",shape="box"];462[label="EQ",fontsize=16,color="green",shape="box"];463 -> 340[label="",style="dashed", color="red", weight=0]; 29.11/13.90 463[label="primCmpNat (Succ vyw3000) Zero",fontsize=16,color="magenta"];463 -> 551[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 463 -> 552[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 464[label="EQ",fontsize=16,color="green",shape="box"];466[label="vyw300",fontsize=16,color="green",shape="box"];467[label="vyw50",fontsize=16,color="green",shape="box"];468[label="vyw50 == vyw300",fontsize=16,color="blue",shape="box"];3051[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3051[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3051 -> 553[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3052[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3052[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3052 -> 554[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3053[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3053[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3053 -> 555[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3054[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3054[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3054 -> 556[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3055[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3055[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3055 -> 557[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3056[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3056[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3056 -> 558[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3057[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3057[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3057 -> 559[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3058[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3058[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3058 -> 560[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3059[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3059[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3059 -> 561[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3060[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3060[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3060 -> 562[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3061[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3061[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3061 -> 563[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3062[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3062[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3062 -> 564[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3063[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3063[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3063 -> 565[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3064[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];468 -> 3064[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3064 -> 566[label="",style="solid", color="blue", weight=3]; 29.11/13.90 465[label="compare2 (Left vyw67) (Left vyw68) vyw69",fontsize=16,color="burlywood",shape="triangle"];3065[label="vyw69/False",fontsize=10,color="white",style="solid",shape="box"];465 -> 3065[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3065 -> 567[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3066[label="vyw69/True",fontsize=10,color="white",style="solid",shape="box"];465 -> 3066[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3066 -> 568[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 469[label="compare1 (Left vyw50) (Right vyw300) (Left vyw50 <= Right vyw300)",fontsize=16,color="black",shape="box"];469 -> 569[label="",style="solid", color="black", weight=3]; 29.11/13.90 470[label="compare1 (Right vyw50) (Left vyw300) (Right vyw50 <= Left vyw300)",fontsize=16,color="black",shape="box"];470 -> 570[label="",style="solid", color="black", weight=3]; 29.11/13.90 472[label="vyw50 == vyw300",fontsize=16,color="blue",shape="box"];3067[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];472 -> 3067[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3067 -> 571[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3068[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];472 -> 3068[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3068 -> 572[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3069[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];472 -> 3069[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3069 -> 573[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3070[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];472 -> 3070[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3070 -> 574[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3071[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];472 -> 3071[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3071 -> 575[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3072[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];472 -> 3072[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3072 -> 576[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3073[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];472 -> 3073[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3073 -> 577[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3074[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];472 -> 3074[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3074 -> 578[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3075[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];472 -> 3075[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3075 -> 579[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3076[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];472 -> 3076[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3076 -> 580[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3077[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];472 -> 3077[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3077 -> 581[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3078[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];472 -> 3078[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3078 -> 582[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3079[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];472 -> 3079[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3079 -> 583[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3080[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];472 -> 3080[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3080 -> 584[label="",style="solid", color="blue", weight=3]; 29.11/13.90 473[label="vyw50",fontsize=16,color="green",shape="box"];474[label="vyw300",fontsize=16,color="green",shape="box"];471[label="compare2 (Right vyw74) (Right vyw75) vyw76",fontsize=16,color="burlywood",shape="triangle"];3081[label="vyw76/False",fontsize=10,color="white",style="solid",shape="box"];471 -> 3081[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3081 -> 585[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3082[label="vyw76/True",fontsize=10,color="white",style="solid",shape="box"];471 -> 3082[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3082 -> 586[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 475[label="EQ",fontsize=16,color="green",shape="box"];476[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];476 -> 587[label="",style="solid", color="black", weight=3]; 29.11/13.90 477[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];477 -> 588[label="",style="solid", color="black", weight=3]; 29.11/13.90 478[label="EQ",fontsize=16,color="green",shape="box"];479 -> 172[label="",style="dashed", color="red", weight=0]; 29.11/13.90 479[label="compare (vyw50 * Pos vyw3010) (Pos vyw510 * vyw300)",fontsize=16,color="magenta"];479 -> 589[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 479 -> 590[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 480 -> 172[label="",style="dashed", color="red", weight=0]; 29.11/13.90 480[label="compare (vyw50 * Pos vyw3010) (Neg vyw510 * vyw300)",fontsize=16,color="magenta"];480 -> 591[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 480 -> 592[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 481 -> 172[label="",style="dashed", color="red", weight=0]; 29.11/13.90 481[label="compare (vyw50 * Neg vyw3010) (Pos vyw510 * vyw300)",fontsize=16,color="magenta"];481 -> 593[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 481 -> 594[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 482 -> 172[label="",style="dashed", color="red", weight=0]; 29.11/13.90 482[label="compare (vyw50 * Neg vyw3010) (Neg vyw510 * vyw300)",fontsize=16,color="magenta"];482 -> 595[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 482 -> 596[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 949[label="vyw300",fontsize=16,color="green",shape="box"];950[label="vyw52",fontsize=16,color="green",shape="box"];951[label="vyw301",fontsize=16,color="green",shape="box"];952[label="vyw51",fontsize=16,color="green",shape="box"];953[label="vyw302",fontsize=16,color="green",shape="box"];954 -> 980[label="",style="dashed", color="red", weight=0]; 29.11/13.90 954[label="vyw50 == vyw300 && vyw51 == vyw301 && vyw52 == vyw302",fontsize=16,color="magenta"];954 -> 983[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 954 -> 984[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 955[label="vyw50",fontsize=16,color="green",shape="box"];948[label="compare2 (vyw85,vyw86,vyw87) (vyw88,vyw89,vyw90) vyw115",fontsize=16,color="burlywood",shape="triangle"];3083[label="vyw115/False",fontsize=10,color="white",style="solid",shape="box"];948 -> 3083[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3083 -> 964[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3084[label="vyw115/True",fontsize=10,color="white",style="solid",shape="box"];948 -> 3084[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3084 -> 965[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 492[label="vyw44",fontsize=16,color="green",shape="box"];493[label="compare vyw50 vyw300",fontsize=16,color="blue",shape="box"];3085[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];493 -> 3085[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3085 -> 613[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3086[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];493 -> 3086[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3086 -> 614[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3087[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];493 -> 3087[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3087 -> 615[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3088[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];493 -> 3088[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3088 -> 616[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3089[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];493 -> 3089[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3089 -> 617[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3090[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];493 -> 3090[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3090 -> 618[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3091[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];493 -> 3091[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3091 -> 619[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3092[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];493 -> 3092[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3092 -> 620[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3093[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];493 -> 3093[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3093 -> 621[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3094[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];493 -> 3094[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3094 -> 622[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3095[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];493 -> 3095[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3095 -> 623[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3096[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];493 -> 3096[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3096 -> 624[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3097[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];493 -> 3097[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3097 -> 625[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3098[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];493 -> 3098[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3098 -> 626[label="",style="solid", color="blue", weight=3]; 29.11/13.90 491[label="primCompAux0 vyw95 vyw96",fontsize=16,color="burlywood",shape="triangle"];3099[label="vyw96/LT",fontsize=10,color="white",style="solid",shape="box"];491 -> 3099[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3099 -> 627[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3100[label="vyw96/EQ",fontsize=10,color="white",style="solid",shape="box"];491 -> 3100[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3100 -> 628[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3101[label="vyw96/GT",fontsize=10,color="white",style="solid",shape="box"];491 -> 3101[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3101 -> 629[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 494[label="compare1 Nothing (Just vyw300) True",fontsize=16,color="black",shape="box"];494 -> 630[label="",style="solid", color="black", weight=3]; 29.11/13.90 495[label="compare1 (Just vyw50) Nothing False",fontsize=16,color="black",shape="box"];495 -> 631[label="",style="solid", color="black", weight=3]; 29.11/13.90 496[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3102[label="vyw50/Integer vyw500",fontsize=10,color="white",style="solid",shape="box"];496 -> 3102[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3102 -> 632[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 497[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3103[label="vyw50/(vyw500,vyw501)",fontsize=10,color="white",style="solid",shape="box"];497 -> 3103[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3103 -> 633[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 498[label="vyw50 == vyw300",fontsize=16,color="black",shape="triangle"];498 -> 634[label="",style="solid", color="black", weight=3]; 29.11/13.90 499[label="vyw50 == vyw300",fontsize=16,color="black",shape="triangle"];499 -> 635[label="",style="solid", color="black", weight=3]; 29.11/13.90 500[label="vyw50 == vyw300",fontsize=16,color="black",shape="triangle"];500 -> 636[label="",style="solid", color="black", weight=3]; 29.11/13.90 501[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3104[label="vyw50/()",fontsize=10,color="white",style="solid",shape="box"];501 -> 3104[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3104 -> 637[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 502[label="vyw50 == vyw300",fontsize=16,color="black",shape="triangle"];502 -> 638[label="",style="solid", color="black", weight=3]; 29.11/13.90 503[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3105[label="vyw50/Nothing",fontsize=10,color="white",style="solid",shape="box"];503 -> 3105[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3105 -> 639[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3106[label="vyw50/Just vyw500",fontsize=10,color="white",style="solid",shape="box"];503 -> 3106[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3106 -> 640[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 504[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3107[label="vyw50/Left vyw500",fontsize=10,color="white",style="solid",shape="box"];504 -> 3107[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3107 -> 641[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3108[label="vyw50/Right vyw500",fontsize=10,color="white",style="solid",shape="box"];504 -> 3108[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3108 -> 642[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 505[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3109[label="vyw50/False",fontsize=10,color="white",style="solid",shape="box"];505 -> 3109[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3109 -> 643[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3110[label="vyw50/True",fontsize=10,color="white",style="solid",shape="box"];505 -> 3110[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3110 -> 644[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 506[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3111[label="vyw50/vyw500 : vyw501",fontsize=10,color="white",style="solid",shape="box"];506 -> 3111[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3111 -> 645[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3112[label="vyw50/[]",fontsize=10,color="white",style="solid",shape="box"];506 -> 3112[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3112 -> 646[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 507[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3113[label="vyw50/(vyw500,vyw501,vyw502)",fontsize=10,color="white",style="solid",shape="box"];507 -> 3113[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3113 -> 647[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 508[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3114[label="vyw50/vyw500 :% vyw501",fontsize=10,color="white",style="solid",shape="box"];508 -> 3114[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3114 -> 648[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 509[label="vyw50 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3115[label="vyw50/LT",fontsize=10,color="white",style="solid",shape="box"];509 -> 3115[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3115 -> 649[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3116[label="vyw50/EQ",fontsize=10,color="white",style="solid",shape="box"];509 -> 3116[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3116 -> 650[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3117[label="vyw50/GT",fontsize=10,color="white",style="solid",shape="box"];509 -> 3117[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3117 -> 651[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 510[label="compare2 (Just vyw49) (Just vyw50) False",fontsize=16,color="black",shape="box"];510 -> 652[label="",style="solid", color="black", weight=3]; 29.11/13.90 511[label="compare2 (Just vyw49) (Just vyw50) True",fontsize=16,color="black",shape="box"];511 -> 653[label="",style="solid", color="black", weight=3]; 29.11/13.90 981[label="vyw51 == vyw301",fontsize=16,color="blue",shape="box"];3118[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];981 -> 3118[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3118 -> 989[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3119[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];981 -> 3119[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3119 -> 990[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3120[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];981 -> 3120[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3120 -> 991[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3121[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];981 -> 3121[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3121 -> 992[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3122[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];981 -> 3122[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3122 -> 993[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3123[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];981 -> 3123[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3123 -> 994[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3124[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];981 -> 3124[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3124 -> 995[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3125[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];981 -> 3125[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3125 -> 996[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3126[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];981 -> 3126[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3126 -> 997[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3127[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];981 -> 3127[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3127 -> 998[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3128[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];981 -> 3128[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3128 -> 999[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3129[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];981 -> 3129[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3129 -> 1000[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3130[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];981 -> 3130[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3130 -> 1001[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3131[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];981 -> 3131[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3131 -> 1002[label="",style="solid", color="blue", weight=3]; 29.11/13.90 982[label="vyw50 == vyw300",fontsize=16,color="blue",shape="box"];3132[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 3132[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3132 -> 1003[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3133[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 3133[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3133 -> 1004[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3134[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 3134[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3134 -> 1005[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3135[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 3135[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3135 -> 1006[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3136[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 3136[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3136 -> 1007[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3137[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 3137[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3137 -> 1008[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3138[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 3138[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3138 -> 1009[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3139[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 3139[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3139 -> 1010[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3140[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 3140[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3140 -> 1011[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3141[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 3141[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3141 -> 1012[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3142[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 3142[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3142 -> 1013[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3143[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 3143[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3143 -> 1014[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3144[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 3144[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3144 -> 1015[label="",style="solid", color="blue", weight=3]; 29.11/13.90 3145[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 3145[label="",style="solid", color="blue", weight=9]; 29.11/13.90 3145 -> 1016[label="",style="solid", color="blue", weight=3]; 29.11/13.90 980[label="vyw120 && vyw121",fontsize=16,color="burlywood",shape="triangle"];3146[label="vyw120/False",fontsize=10,color="white",style="solid",shape="box"];980 -> 3146[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3146 -> 1017[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3147[label="vyw120/True",fontsize=10,color="white",style="solid",shape="box"];980 -> 3147[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3147 -> 1018[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 917[label="compare2 (vyw103,vyw104) (vyw105,vyw106) False",fontsize=16,color="black",shape="box"];917 -> 1019[label="",style="solid", color="black", weight=3]; 29.11/13.90 918[label="compare2 (vyw103,vyw104) (vyw105,vyw106) True",fontsize=16,color="black",shape="box"];918 -> 1020[label="",style="solid", color="black", weight=3]; 29.11/13.90 528[label="primMulInt (Pos vyw500) vyw301",fontsize=16,color="burlywood",shape="box"];3148[label="vyw301/Pos vyw3010",fontsize=10,color="white",style="solid",shape="box"];528 -> 3148[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3148 -> 684[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3149[label="vyw301/Neg vyw3010",fontsize=10,color="white",style="solid",shape="box"];528 -> 3149[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3149 -> 685[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 529[label="primMulInt (Neg vyw500) vyw301",fontsize=16,color="burlywood",shape="box"];3150[label="vyw301/Pos vyw3010",fontsize=10,color="white",style="solid",shape="box"];529 -> 3150[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3150 -> 686[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 3151[label="vyw301/Neg vyw3010",fontsize=10,color="white",style="solid",shape="box"];529 -> 3151[label="",style="solid", color="burlywood", weight=9]; 29.11/13.90 3151 -> 687[label="",style="solid", color="burlywood", weight=3]; 29.11/13.90 530[label="Integer vyw500 * Integer vyw3010",fontsize=16,color="black",shape="box"];530 -> 688[label="",style="solid", color="black", weight=3]; 29.11/13.90 531[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];531 -> 689[label="",style="solid", color="black", weight=3]; 29.11/13.90 532[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];532 -> 690[label="",style="solid", color="black", weight=3]; 29.11/13.90 533[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];533 -> 691[label="",style="solid", color="black", weight=3]; 29.11/13.90 534[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];534 -> 692[label="",style="solid", color="black", weight=3]; 29.11/13.90 535[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];535 -> 693[label="",style="solid", color="black", weight=3]; 29.11/13.90 536[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];536 -> 694[label="",style="solid", color="black", weight=3]; 29.11/13.90 537 -> 369[label="",style="dashed", color="red", weight=0]; 29.11/13.90 537[label="vyw50 * Pos vyw3010",fontsize=16,color="magenta"];537 -> 695[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 537 -> 696[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 538 -> 369[label="",style="dashed", color="red", weight=0]; 29.11/13.90 538[label="Pos vyw510 * vyw300",fontsize=16,color="magenta"];538 -> 697[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 538 -> 698[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 539 -> 369[label="",style="dashed", color="red", weight=0]; 29.11/13.90 539[label="vyw50 * Pos vyw3010",fontsize=16,color="magenta"];539 -> 699[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 539 -> 700[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 540 -> 369[label="",style="dashed", color="red", weight=0]; 29.11/13.90 540[label="Neg vyw510 * vyw300",fontsize=16,color="magenta"];540 -> 701[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 540 -> 702[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 541 -> 369[label="",style="dashed", color="red", weight=0]; 29.11/13.90 541[label="vyw50 * Neg vyw3010",fontsize=16,color="magenta"];541 -> 703[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 541 -> 704[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 542 -> 369[label="",style="dashed", color="red", weight=0]; 29.11/13.90 542[label="Pos vyw510 * vyw300",fontsize=16,color="magenta"];542 -> 705[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 542 -> 706[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 543 -> 369[label="",style="dashed", color="red", weight=0]; 29.11/13.90 543[label="vyw50 * Neg vyw3010",fontsize=16,color="magenta"];543 -> 707[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 543 -> 708[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 544 -> 369[label="",style="dashed", color="red", weight=0]; 29.11/13.90 544[label="Neg vyw510 * vyw300",fontsize=16,color="magenta"];544 -> 709[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 544 -> 710[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 545 -> 340[label="",style="dashed", color="red", weight=0]; 29.11/13.90 545[label="primCmpNat vyw500 vyw3000",fontsize=16,color="magenta"];545 -> 711[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 545 -> 712[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 546[label="GT",fontsize=16,color="green",shape="box"];547[label="LT",fontsize=16,color="green",shape="box"];548[label="EQ",fontsize=16,color="green",shape="box"];549[label="Zero",fontsize=16,color="green",shape="box"];550[label="Succ vyw3000",fontsize=16,color="green",shape="box"];551[label="Succ vyw3000",fontsize=16,color="green",shape="box"];552[label="Zero",fontsize=16,color="green",shape="box"];553 -> 496[label="",style="dashed", color="red", weight=0]; 29.11/13.90 553[label="vyw50 == vyw300",fontsize=16,color="magenta"];553 -> 713[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 553 -> 714[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 554 -> 497[label="",style="dashed", color="red", weight=0]; 29.11/13.90 554[label="vyw50 == vyw300",fontsize=16,color="magenta"];554 -> 715[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 554 -> 716[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 555 -> 498[label="",style="dashed", color="red", weight=0]; 29.11/13.90 555[label="vyw50 == vyw300",fontsize=16,color="magenta"];555 -> 717[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 555 -> 718[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 556 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.90 556[label="vyw50 == vyw300",fontsize=16,color="magenta"];556 -> 719[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 556 -> 720[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 557 -> 500[label="",style="dashed", color="red", weight=0]; 29.11/13.90 557[label="vyw50 == vyw300",fontsize=16,color="magenta"];557 -> 721[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 557 -> 722[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 558 -> 501[label="",style="dashed", color="red", weight=0]; 29.11/13.90 558[label="vyw50 == vyw300",fontsize=16,color="magenta"];558 -> 723[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 558 -> 724[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 559 -> 502[label="",style="dashed", color="red", weight=0]; 29.11/13.90 559[label="vyw50 == vyw300",fontsize=16,color="magenta"];559 -> 725[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 559 -> 726[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 560 -> 503[label="",style="dashed", color="red", weight=0]; 29.11/13.90 560[label="vyw50 == vyw300",fontsize=16,color="magenta"];560 -> 727[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 560 -> 728[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 561 -> 504[label="",style="dashed", color="red", weight=0]; 29.11/13.90 561[label="vyw50 == vyw300",fontsize=16,color="magenta"];561 -> 729[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 561 -> 730[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 562 -> 505[label="",style="dashed", color="red", weight=0]; 29.11/13.90 562[label="vyw50 == vyw300",fontsize=16,color="magenta"];562 -> 731[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 562 -> 732[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 563 -> 506[label="",style="dashed", color="red", weight=0]; 29.11/13.90 563[label="vyw50 == vyw300",fontsize=16,color="magenta"];563 -> 733[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 563 -> 734[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 564 -> 507[label="",style="dashed", color="red", weight=0]; 29.11/13.90 564[label="vyw50 == vyw300",fontsize=16,color="magenta"];564 -> 735[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 564 -> 736[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 565 -> 508[label="",style="dashed", color="red", weight=0]; 29.11/13.90 565[label="vyw50 == vyw300",fontsize=16,color="magenta"];565 -> 737[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 565 -> 738[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 566 -> 509[label="",style="dashed", color="red", weight=0]; 29.11/13.90 566[label="vyw50 == vyw300",fontsize=16,color="magenta"];566 -> 739[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 566 -> 740[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 567[label="compare2 (Left vyw67) (Left vyw68) False",fontsize=16,color="black",shape="box"];567 -> 741[label="",style="solid", color="black", weight=3]; 29.11/13.90 568[label="compare2 (Left vyw67) (Left vyw68) True",fontsize=16,color="black",shape="box"];568 -> 742[label="",style="solid", color="black", weight=3]; 29.11/13.90 569[label="compare1 (Left vyw50) (Right vyw300) True",fontsize=16,color="black",shape="box"];569 -> 743[label="",style="solid", color="black", weight=3]; 29.11/13.90 570[label="compare1 (Right vyw50) (Left vyw300) False",fontsize=16,color="black",shape="box"];570 -> 744[label="",style="solid", color="black", weight=3]; 29.11/13.90 571 -> 496[label="",style="dashed", color="red", weight=0]; 29.11/13.90 571[label="vyw50 == vyw300",fontsize=16,color="magenta"];571 -> 745[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 571 -> 746[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 572 -> 497[label="",style="dashed", color="red", weight=0]; 29.11/13.90 572[label="vyw50 == vyw300",fontsize=16,color="magenta"];572 -> 747[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 572 -> 748[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 573 -> 498[label="",style="dashed", color="red", weight=0]; 29.11/13.90 573[label="vyw50 == vyw300",fontsize=16,color="magenta"];573 -> 749[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 573 -> 750[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 574 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.90 574[label="vyw50 == vyw300",fontsize=16,color="magenta"];574 -> 751[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 574 -> 752[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 575 -> 500[label="",style="dashed", color="red", weight=0]; 29.11/13.90 575[label="vyw50 == vyw300",fontsize=16,color="magenta"];575 -> 753[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 575 -> 754[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 576 -> 501[label="",style="dashed", color="red", weight=0]; 29.11/13.90 576[label="vyw50 == vyw300",fontsize=16,color="magenta"];576 -> 755[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 576 -> 756[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 577 -> 502[label="",style="dashed", color="red", weight=0]; 29.11/13.90 577[label="vyw50 == vyw300",fontsize=16,color="magenta"];577 -> 757[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 577 -> 758[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 578 -> 503[label="",style="dashed", color="red", weight=0]; 29.11/13.90 578[label="vyw50 == vyw300",fontsize=16,color="magenta"];578 -> 759[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 578 -> 760[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 579 -> 504[label="",style="dashed", color="red", weight=0]; 29.11/13.90 579[label="vyw50 == vyw300",fontsize=16,color="magenta"];579 -> 761[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 579 -> 762[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 580 -> 505[label="",style="dashed", color="red", weight=0]; 29.11/13.90 580[label="vyw50 == vyw300",fontsize=16,color="magenta"];580 -> 763[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 580 -> 764[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 581 -> 506[label="",style="dashed", color="red", weight=0]; 29.11/13.90 581[label="vyw50 == vyw300",fontsize=16,color="magenta"];581 -> 765[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 581 -> 766[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 582 -> 507[label="",style="dashed", color="red", weight=0]; 29.11/13.90 582[label="vyw50 == vyw300",fontsize=16,color="magenta"];582 -> 767[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 582 -> 768[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 583 -> 508[label="",style="dashed", color="red", weight=0]; 29.11/13.90 583[label="vyw50 == vyw300",fontsize=16,color="magenta"];583 -> 769[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 583 -> 770[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 584 -> 509[label="",style="dashed", color="red", weight=0]; 29.11/13.90 584[label="vyw50 == vyw300",fontsize=16,color="magenta"];584 -> 771[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 584 -> 772[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 585[label="compare2 (Right vyw74) (Right vyw75) False",fontsize=16,color="black",shape="box"];585 -> 773[label="",style="solid", color="black", weight=3]; 29.11/13.90 586[label="compare2 (Right vyw74) (Right vyw75) True",fontsize=16,color="black",shape="box"];586 -> 774[label="",style="solid", color="black", weight=3]; 29.11/13.90 587[label="compare1 False True True",fontsize=16,color="black",shape="box"];587 -> 775[label="",style="solid", color="black", weight=3]; 29.11/13.90 588[label="compare1 True False False",fontsize=16,color="black",shape="box"];588 -> 776[label="",style="solid", color="black", weight=3]; 29.11/13.90 589 -> 369[label="",style="dashed", color="red", weight=0]; 29.11/13.90 589[label="vyw50 * Pos vyw3010",fontsize=16,color="magenta"];589 -> 777[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 589 -> 778[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 590 -> 369[label="",style="dashed", color="red", weight=0]; 29.11/13.90 590[label="Pos vyw510 * vyw300",fontsize=16,color="magenta"];590 -> 779[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 590 -> 780[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 591 -> 369[label="",style="dashed", color="red", weight=0]; 29.11/13.90 591[label="vyw50 * Pos vyw3010",fontsize=16,color="magenta"];591 -> 781[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 591 -> 782[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 592 -> 369[label="",style="dashed", color="red", weight=0]; 29.11/13.90 592[label="Neg vyw510 * vyw300",fontsize=16,color="magenta"];592 -> 783[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 592 -> 784[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 593 -> 369[label="",style="dashed", color="red", weight=0]; 29.11/13.90 593[label="vyw50 * Neg vyw3010",fontsize=16,color="magenta"];593 -> 785[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 593 -> 786[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 594 -> 369[label="",style="dashed", color="red", weight=0]; 29.11/13.90 594[label="Pos vyw510 * vyw300",fontsize=16,color="magenta"];594 -> 787[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 594 -> 788[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 595 -> 369[label="",style="dashed", color="red", weight=0]; 29.11/13.90 595[label="vyw50 * Neg vyw3010",fontsize=16,color="magenta"];595 -> 789[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 595 -> 790[label="",style="dashed", color="magenta", weight=3]; 29.11/13.90 596 -> 369[label="",style="dashed", color="red", weight=0]; 29.11/13.90 596[label="Neg vyw510 * vyw300",fontsize=16,color="magenta"];596 -> 791[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 596 -> 792[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 983 -> 980[label="",style="dashed", color="red", weight=0]; 29.11/13.91 983[label="vyw51 == vyw301 && vyw52 == vyw302",fontsize=16,color="magenta"];983 -> 1021[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 983 -> 1022[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 984[label="vyw50 == vyw300",fontsize=16,color="blue",shape="box"];3152[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];984 -> 3152[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3152 -> 1023[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3153[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];984 -> 3153[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3153 -> 1024[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3154[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];984 -> 3154[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3154 -> 1025[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3155[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];984 -> 3155[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3155 -> 1026[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3156[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];984 -> 3156[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3156 -> 1027[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3157[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];984 -> 3157[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3157 -> 1028[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3158[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];984 -> 3158[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3158 -> 1029[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3159[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];984 -> 3159[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3159 -> 1030[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3160[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];984 -> 3160[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3160 -> 1031[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3161[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];984 -> 3161[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3161 -> 1032[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3162[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];984 -> 3162[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3162 -> 1033[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3163[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];984 -> 3163[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3163 -> 1034[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3164[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];984 -> 3164[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3164 -> 1035[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3165[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];984 -> 3165[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3165 -> 1036[label="",style="solid", color="blue", weight=3]; 29.11/13.91 964[label="compare2 (vyw85,vyw86,vyw87) (vyw88,vyw89,vyw90) False",fontsize=16,color="black",shape="box"];964 -> 1037[label="",style="solid", color="black", weight=3]; 29.11/13.91 965[label="compare2 (vyw85,vyw86,vyw87) (vyw88,vyw89,vyw90) True",fontsize=16,color="black",shape="box"];965 -> 1038[label="",style="solid", color="black", weight=3]; 29.11/13.91 613 -> 165[label="",style="dashed", color="red", weight=0]; 29.11/13.91 613[label="compare vyw50 vyw300",fontsize=16,color="magenta"];613 -> 823[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 613 -> 824[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 614 -> 166[label="",style="dashed", color="red", weight=0]; 29.11/13.91 614[label="compare vyw50 vyw300",fontsize=16,color="magenta"];614 -> 825[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 614 -> 826[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 615 -> 167[label="",style="dashed", color="red", weight=0]; 29.11/13.91 615[label="compare vyw50 vyw300",fontsize=16,color="magenta"];615 -> 827[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 615 -> 828[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 616 -> 168[label="",style="dashed", color="red", weight=0]; 29.11/13.91 616[label="compare vyw50 vyw300",fontsize=16,color="magenta"];616 -> 829[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 616 -> 830[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 617 -> 169[label="",style="dashed", color="red", weight=0]; 29.11/13.91 617[label="compare vyw50 vyw300",fontsize=16,color="magenta"];617 -> 831[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 617 -> 832[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 618 -> 170[label="",style="dashed", color="red", weight=0]; 29.11/13.91 618[label="compare vyw50 vyw300",fontsize=16,color="magenta"];618 -> 833[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 618 -> 834[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 619 -> 171[label="",style="dashed", color="red", weight=0]; 29.11/13.91 619[label="compare vyw50 vyw300",fontsize=16,color="magenta"];619 -> 835[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 619 -> 836[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 620 -> 172[label="",style="dashed", color="red", weight=0]; 29.11/13.91 620[label="compare vyw50 vyw300",fontsize=16,color="magenta"];620 -> 837[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 620 -> 838[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 621 -> 173[label="",style="dashed", color="red", weight=0]; 29.11/13.91 621[label="compare vyw50 vyw300",fontsize=16,color="magenta"];621 -> 839[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 621 -> 840[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 622 -> 174[label="",style="dashed", color="red", weight=0]; 29.11/13.91 622[label="compare vyw50 vyw300",fontsize=16,color="magenta"];622 -> 841[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 622 -> 842[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 623 -> 175[label="",style="dashed", color="red", weight=0]; 29.11/13.91 623[label="compare vyw50 vyw300",fontsize=16,color="magenta"];623 -> 843[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 623 -> 844[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 624 -> 176[label="",style="dashed", color="red", weight=0]; 29.11/13.91 624[label="compare vyw50 vyw300",fontsize=16,color="magenta"];624 -> 845[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 624 -> 846[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 625 -> 177[label="",style="dashed", color="red", weight=0]; 29.11/13.91 625[label="compare vyw50 vyw300",fontsize=16,color="magenta"];625 -> 847[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 625 -> 848[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 626 -> 178[label="",style="dashed", color="red", weight=0]; 29.11/13.91 626[label="compare vyw50 vyw300",fontsize=16,color="magenta"];626 -> 849[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 626 -> 850[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 627[label="primCompAux0 vyw95 LT",fontsize=16,color="black",shape="box"];627 -> 851[label="",style="solid", color="black", weight=3]; 29.11/13.91 628[label="primCompAux0 vyw95 EQ",fontsize=16,color="black",shape="box"];628 -> 852[label="",style="solid", color="black", weight=3]; 29.11/13.91 629[label="primCompAux0 vyw95 GT",fontsize=16,color="black",shape="box"];629 -> 853[label="",style="solid", color="black", weight=3]; 29.11/13.91 630[label="LT",fontsize=16,color="green",shape="box"];631[label="compare0 (Just vyw50) Nothing otherwise",fontsize=16,color="black",shape="box"];631 -> 854[label="",style="solid", color="black", weight=3]; 29.11/13.91 632[label="Integer vyw500 == vyw300",fontsize=16,color="burlywood",shape="box"];3166[label="vyw300/Integer vyw3000",fontsize=10,color="white",style="solid",shape="box"];632 -> 3166[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3166 -> 855[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 633[label="(vyw500,vyw501) == vyw300",fontsize=16,color="burlywood",shape="box"];3167[label="vyw300/(vyw3000,vyw3001)",fontsize=10,color="white",style="solid",shape="box"];633 -> 3167[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3167 -> 856[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 634[label="primEqChar vyw50 vyw300",fontsize=16,color="burlywood",shape="box"];3168[label="vyw50/Char vyw500",fontsize=10,color="white",style="solid",shape="box"];634 -> 3168[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3168 -> 857[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 635[label="primEqInt vyw50 vyw300",fontsize=16,color="burlywood",shape="triangle"];3169[label="vyw50/Pos vyw500",fontsize=10,color="white",style="solid",shape="box"];635 -> 3169[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3169 -> 858[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3170[label="vyw50/Neg vyw500",fontsize=10,color="white",style="solid",shape="box"];635 -> 3170[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3170 -> 859[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 636[label="primEqFloat vyw50 vyw300",fontsize=16,color="burlywood",shape="box"];3171[label="vyw50/Float vyw500 vyw501",fontsize=10,color="white",style="solid",shape="box"];636 -> 3171[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3171 -> 860[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 637[label="() == vyw300",fontsize=16,color="burlywood",shape="box"];3172[label="vyw300/()",fontsize=10,color="white",style="solid",shape="box"];637 -> 3172[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3172 -> 861[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 638[label="primEqDouble vyw50 vyw300",fontsize=16,color="burlywood",shape="box"];3173[label="vyw50/Double vyw500 vyw501",fontsize=10,color="white",style="solid",shape="box"];638 -> 3173[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3173 -> 862[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 639[label="Nothing == vyw300",fontsize=16,color="burlywood",shape="box"];3174[label="vyw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];639 -> 3174[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3174 -> 863[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3175[label="vyw300/Just vyw3000",fontsize=10,color="white",style="solid",shape="box"];639 -> 3175[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3175 -> 864[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 640[label="Just vyw500 == vyw300",fontsize=16,color="burlywood",shape="box"];3176[label="vyw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];640 -> 3176[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3176 -> 865[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3177[label="vyw300/Just vyw3000",fontsize=10,color="white",style="solid",shape="box"];640 -> 3177[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3177 -> 866[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 641[label="Left vyw500 == vyw300",fontsize=16,color="burlywood",shape="box"];3178[label="vyw300/Left vyw3000",fontsize=10,color="white",style="solid",shape="box"];641 -> 3178[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3178 -> 867[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3179[label="vyw300/Right vyw3000",fontsize=10,color="white",style="solid",shape="box"];641 -> 3179[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3179 -> 868[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 642[label="Right vyw500 == vyw300",fontsize=16,color="burlywood",shape="box"];3180[label="vyw300/Left vyw3000",fontsize=10,color="white",style="solid",shape="box"];642 -> 3180[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3180 -> 869[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3181[label="vyw300/Right vyw3000",fontsize=10,color="white",style="solid",shape="box"];642 -> 3181[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3181 -> 870[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 643[label="False == vyw300",fontsize=16,color="burlywood",shape="box"];3182[label="vyw300/False",fontsize=10,color="white",style="solid",shape="box"];643 -> 3182[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3182 -> 871[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3183[label="vyw300/True",fontsize=10,color="white",style="solid",shape="box"];643 -> 3183[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3183 -> 872[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 644[label="True == vyw300",fontsize=16,color="burlywood",shape="box"];3184[label="vyw300/False",fontsize=10,color="white",style="solid",shape="box"];644 -> 3184[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3184 -> 873[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3185[label="vyw300/True",fontsize=10,color="white",style="solid",shape="box"];644 -> 3185[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3185 -> 874[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 645[label="vyw500 : vyw501 == vyw300",fontsize=16,color="burlywood",shape="box"];3186[label="vyw300/vyw3000 : vyw3001",fontsize=10,color="white",style="solid",shape="box"];645 -> 3186[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3186 -> 875[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3187[label="vyw300/[]",fontsize=10,color="white",style="solid",shape="box"];645 -> 3187[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3187 -> 876[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 646[label="[] == vyw300",fontsize=16,color="burlywood",shape="box"];3188[label="vyw300/vyw3000 : vyw3001",fontsize=10,color="white",style="solid",shape="box"];646 -> 3188[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3188 -> 877[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3189[label="vyw300/[]",fontsize=10,color="white",style="solid",shape="box"];646 -> 3189[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3189 -> 878[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 647[label="(vyw500,vyw501,vyw502) == vyw300",fontsize=16,color="burlywood",shape="box"];3190[label="vyw300/(vyw3000,vyw3001,vyw3002)",fontsize=10,color="white",style="solid",shape="box"];647 -> 3190[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3190 -> 879[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 648[label="vyw500 :% vyw501 == vyw300",fontsize=16,color="burlywood",shape="box"];3191[label="vyw300/vyw3000 :% vyw3001",fontsize=10,color="white",style="solid",shape="box"];648 -> 3191[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3191 -> 880[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 649[label="LT == vyw300",fontsize=16,color="burlywood",shape="box"];3192[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];649 -> 3192[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3192 -> 881[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3193[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];649 -> 3193[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3193 -> 882[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3194[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];649 -> 3194[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3194 -> 883[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 650[label="EQ == vyw300",fontsize=16,color="burlywood",shape="box"];3195[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];650 -> 3195[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3195 -> 884[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3196[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];650 -> 3196[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3196 -> 885[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3197[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];650 -> 3197[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3197 -> 886[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 651[label="GT == vyw300",fontsize=16,color="burlywood",shape="box"];3198[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];651 -> 3198[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3198 -> 887[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3199[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];651 -> 3199[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3199 -> 888[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3200[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];651 -> 3200[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3200 -> 889[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 652 -> 1077[label="",style="dashed", color="red", weight=0]; 29.11/13.91 652[label="compare1 (Just vyw49) (Just vyw50) (Just vyw49 <= Just vyw50)",fontsize=16,color="magenta"];652 -> 1078[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 652 -> 1079[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 652 -> 1080[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 653[label="EQ",fontsize=16,color="green",shape="box"];989 -> 496[label="",style="dashed", color="red", weight=0]; 29.11/13.91 989[label="vyw51 == vyw301",fontsize=16,color="magenta"];989 -> 1084[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 989 -> 1085[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 990 -> 497[label="",style="dashed", color="red", weight=0]; 29.11/13.91 990[label="vyw51 == vyw301",fontsize=16,color="magenta"];990 -> 1086[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 990 -> 1087[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 991 -> 498[label="",style="dashed", color="red", weight=0]; 29.11/13.91 991[label="vyw51 == vyw301",fontsize=16,color="magenta"];991 -> 1088[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 991 -> 1089[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 992 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.91 992[label="vyw51 == vyw301",fontsize=16,color="magenta"];992 -> 1090[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 992 -> 1091[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 993 -> 500[label="",style="dashed", color="red", weight=0]; 29.11/13.91 993[label="vyw51 == vyw301",fontsize=16,color="magenta"];993 -> 1092[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 993 -> 1093[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 994 -> 501[label="",style="dashed", color="red", weight=0]; 29.11/13.91 994[label="vyw51 == vyw301",fontsize=16,color="magenta"];994 -> 1094[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 994 -> 1095[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 995 -> 502[label="",style="dashed", color="red", weight=0]; 29.11/13.91 995[label="vyw51 == vyw301",fontsize=16,color="magenta"];995 -> 1096[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 995 -> 1097[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 996 -> 503[label="",style="dashed", color="red", weight=0]; 29.11/13.91 996[label="vyw51 == vyw301",fontsize=16,color="magenta"];996 -> 1098[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 996 -> 1099[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 997 -> 504[label="",style="dashed", color="red", weight=0]; 29.11/13.91 997[label="vyw51 == vyw301",fontsize=16,color="magenta"];997 -> 1100[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 997 -> 1101[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 998 -> 505[label="",style="dashed", color="red", weight=0]; 29.11/13.91 998[label="vyw51 == vyw301",fontsize=16,color="magenta"];998 -> 1102[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 998 -> 1103[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 999 -> 506[label="",style="dashed", color="red", weight=0]; 29.11/13.91 999[label="vyw51 == vyw301",fontsize=16,color="magenta"];999 -> 1104[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 999 -> 1105[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1000 -> 507[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1000[label="vyw51 == vyw301",fontsize=16,color="magenta"];1000 -> 1106[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1000 -> 1107[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1001 -> 508[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1001[label="vyw51 == vyw301",fontsize=16,color="magenta"];1001 -> 1108[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1001 -> 1109[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1002 -> 509[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1002[label="vyw51 == vyw301",fontsize=16,color="magenta"];1002 -> 1110[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1002 -> 1111[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1003 -> 496[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1003[label="vyw50 == vyw300",fontsize=16,color="magenta"];1003 -> 1112[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1003 -> 1113[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1004 -> 497[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1004[label="vyw50 == vyw300",fontsize=16,color="magenta"];1004 -> 1114[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1004 -> 1115[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1005 -> 498[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1005[label="vyw50 == vyw300",fontsize=16,color="magenta"];1005 -> 1116[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1005 -> 1117[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1006 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1006[label="vyw50 == vyw300",fontsize=16,color="magenta"];1006 -> 1118[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1006 -> 1119[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1007 -> 500[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1007[label="vyw50 == vyw300",fontsize=16,color="magenta"];1007 -> 1120[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1007 -> 1121[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1008 -> 501[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1008[label="vyw50 == vyw300",fontsize=16,color="magenta"];1008 -> 1122[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1008 -> 1123[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1009 -> 502[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1009[label="vyw50 == vyw300",fontsize=16,color="magenta"];1009 -> 1124[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1009 -> 1125[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1010 -> 503[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1010[label="vyw50 == vyw300",fontsize=16,color="magenta"];1010 -> 1126[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1010 -> 1127[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1011 -> 504[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1011[label="vyw50 == vyw300",fontsize=16,color="magenta"];1011 -> 1128[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1011 -> 1129[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1012 -> 505[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1012[label="vyw50 == vyw300",fontsize=16,color="magenta"];1012 -> 1130[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1012 -> 1131[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1013 -> 506[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1013[label="vyw50 == vyw300",fontsize=16,color="magenta"];1013 -> 1132[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1013 -> 1133[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1014 -> 507[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1014[label="vyw50 == vyw300",fontsize=16,color="magenta"];1014 -> 1134[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1014 -> 1135[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1015 -> 508[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1015[label="vyw50 == vyw300",fontsize=16,color="magenta"];1015 -> 1136[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1015 -> 1137[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1016 -> 509[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1016[label="vyw50 == vyw300",fontsize=16,color="magenta"];1016 -> 1138[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1016 -> 1139[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1017[label="False && vyw121",fontsize=16,color="black",shape="box"];1017 -> 1140[label="",style="solid", color="black", weight=3]; 29.11/13.91 1018[label="True && vyw121",fontsize=16,color="black",shape="box"];1018 -> 1141[label="",style="solid", color="black", weight=3]; 29.11/13.91 1019[label="compare1 (vyw103,vyw104) (vyw105,vyw106) ((vyw103,vyw104) <= (vyw105,vyw106))",fontsize=16,color="black",shape="box"];1019 -> 1142[label="",style="solid", color="black", weight=3]; 29.11/13.91 1020[label="EQ",fontsize=16,color="green",shape="box"];684[label="primMulInt (Pos vyw500) (Pos vyw3010)",fontsize=16,color="black",shape="box"];684 -> 935[label="",style="solid", color="black", weight=3]; 29.11/13.91 685[label="primMulInt (Pos vyw500) (Neg vyw3010)",fontsize=16,color="black",shape="box"];685 -> 936[label="",style="solid", color="black", weight=3]; 29.11/13.91 686[label="primMulInt (Neg vyw500) (Pos vyw3010)",fontsize=16,color="black",shape="box"];686 -> 937[label="",style="solid", color="black", weight=3]; 29.11/13.91 687[label="primMulInt (Neg vyw500) (Neg vyw3010)",fontsize=16,color="black",shape="box"];687 -> 938[label="",style="solid", color="black", weight=3]; 29.11/13.91 688[label="Integer (primMulInt vyw500 vyw3010)",fontsize=16,color="green",shape="box"];688 -> 939[label="",style="dashed", color="green", weight=3]; 29.11/13.91 689[label="LT",fontsize=16,color="green",shape="box"];690[label="LT",fontsize=16,color="green",shape="box"];691[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];691 -> 940[label="",style="solid", color="black", weight=3]; 29.11/13.91 692[label="LT",fontsize=16,color="green",shape="box"];693[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];693 -> 941[label="",style="solid", color="black", weight=3]; 29.11/13.91 694[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];694 -> 942[label="",style="solid", color="black", weight=3]; 29.11/13.91 695[label="Pos vyw3010",fontsize=16,color="green",shape="box"];696[label="vyw50",fontsize=16,color="green",shape="box"];697[label="vyw300",fontsize=16,color="green",shape="box"];698[label="Pos vyw510",fontsize=16,color="green",shape="box"];699[label="Pos vyw3010",fontsize=16,color="green",shape="box"];700[label="vyw50",fontsize=16,color="green",shape="box"];701[label="vyw300",fontsize=16,color="green",shape="box"];702[label="Neg vyw510",fontsize=16,color="green",shape="box"];703[label="Neg vyw3010",fontsize=16,color="green",shape="box"];704[label="vyw50",fontsize=16,color="green",shape="box"];705[label="vyw300",fontsize=16,color="green",shape="box"];706[label="Pos vyw510",fontsize=16,color="green",shape="box"];707[label="Neg vyw3010",fontsize=16,color="green",shape="box"];708[label="vyw50",fontsize=16,color="green",shape="box"];709[label="vyw300",fontsize=16,color="green",shape="box"];710[label="Neg vyw510",fontsize=16,color="green",shape="box"];711[label="vyw500",fontsize=16,color="green",shape="box"];712[label="vyw3000",fontsize=16,color="green",shape="box"];713[label="vyw50",fontsize=16,color="green",shape="box"];714[label="vyw300",fontsize=16,color="green",shape="box"];715[label="vyw50",fontsize=16,color="green",shape="box"];716[label="vyw300",fontsize=16,color="green",shape="box"];717[label="vyw50",fontsize=16,color="green",shape="box"];718[label="vyw300",fontsize=16,color="green",shape="box"];719[label="vyw50",fontsize=16,color="green",shape="box"];720[label="vyw300",fontsize=16,color="green",shape="box"];721[label="vyw50",fontsize=16,color="green",shape="box"];722[label="vyw300",fontsize=16,color="green",shape="box"];723[label="vyw50",fontsize=16,color="green",shape="box"];724[label="vyw300",fontsize=16,color="green",shape="box"];725[label="vyw50",fontsize=16,color="green",shape="box"];726[label="vyw300",fontsize=16,color="green",shape="box"];727[label="vyw50",fontsize=16,color="green",shape="box"];728[label="vyw300",fontsize=16,color="green",shape="box"];729[label="vyw50",fontsize=16,color="green",shape="box"];730[label="vyw300",fontsize=16,color="green",shape="box"];731[label="vyw50",fontsize=16,color="green",shape="box"];732[label="vyw300",fontsize=16,color="green",shape="box"];733[label="vyw50",fontsize=16,color="green",shape="box"];734[label="vyw300",fontsize=16,color="green",shape="box"];735[label="vyw50",fontsize=16,color="green",shape="box"];736[label="vyw300",fontsize=16,color="green",shape="box"];737[label="vyw50",fontsize=16,color="green",shape="box"];738[label="vyw300",fontsize=16,color="green",shape="box"];739[label="vyw50",fontsize=16,color="green",shape="box"];740[label="vyw300",fontsize=16,color="green",shape="box"];741 -> 1212[label="",style="dashed", color="red", weight=0]; 29.11/13.91 741[label="compare1 (Left vyw67) (Left vyw68) (Left vyw67 <= Left vyw68)",fontsize=16,color="magenta"];741 -> 1213[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 741 -> 1214[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 741 -> 1215[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 742[label="EQ",fontsize=16,color="green",shape="box"];743[label="LT",fontsize=16,color="green",shape="box"];744[label="compare0 (Right vyw50) (Left vyw300) otherwise",fontsize=16,color="black",shape="box"];744 -> 944[label="",style="solid", color="black", weight=3]; 29.11/13.91 745[label="vyw50",fontsize=16,color="green",shape="box"];746[label="vyw300",fontsize=16,color="green",shape="box"];747[label="vyw50",fontsize=16,color="green",shape="box"];748[label="vyw300",fontsize=16,color="green",shape="box"];749[label="vyw50",fontsize=16,color="green",shape="box"];750[label="vyw300",fontsize=16,color="green",shape="box"];751[label="vyw50",fontsize=16,color="green",shape="box"];752[label="vyw300",fontsize=16,color="green",shape="box"];753[label="vyw50",fontsize=16,color="green",shape="box"];754[label="vyw300",fontsize=16,color="green",shape="box"];755[label="vyw50",fontsize=16,color="green",shape="box"];756[label="vyw300",fontsize=16,color="green",shape="box"];757[label="vyw50",fontsize=16,color="green",shape="box"];758[label="vyw300",fontsize=16,color="green",shape="box"];759[label="vyw50",fontsize=16,color="green",shape="box"];760[label="vyw300",fontsize=16,color="green",shape="box"];761[label="vyw50",fontsize=16,color="green",shape="box"];762[label="vyw300",fontsize=16,color="green",shape="box"];763[label="vyw50",fontsize=16,color="green",shape="box"];764[label="vyw300",fontsize=16,color="green",shape="box"];765[label="vyw50",fontsize=16,color="green",shape="box"];766[label="vyw300",fontsize=16,color="green",shape="box"];767[label="vyw50",fontsize=16,color="green",shape="box"];768[label="vyw300",fontsize=16,color="green",shape="box"];769[label="vyw50",fontsize=16,color="green",shape="box"];770[label="vyw300",fontsize=16,color="green",shape="box"];771[label="vyw50",fontsize=16,color="green",shape="box"];772[label="vyw300",fontsize=16,color="green",shape="box"];773 -> 1225[label="",style="dashed", color="red", weight=0]; 29.11/13.91 773[label="compare1 (Right vyw74) (Right vyw75) (Right vyw74 <= Right vyw75)",fontsize=16,color="magenta"];773 -> 1226[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 773 -> 1227[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 773 -> 1228[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 774[label="EQ",fontsize=16,color="green",shape="box"];775[label="LT",fontsize=16,color="green",shape="box"];776[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];776 -> 946[label="",style="solid", color="black", weight=3]; 29.11/13.91 777[label="Pos vyw3010",fontsize=16,color="green",shape="box"];778[label="vyw50",fontsize=16,color="green",shape="box"];779[label="vyw300",fontsize=16,color="green",shape="box"];780[label="Pos vyw510",fontsize=16,color="green",shape="box"];781[label="Pos vyw3010",fontsize=16,color="green",shape="box"];782[label="vyw50",fontsize=16,color="green",shape="box"];783[label="vyw300",fontsize=16,color="green",shape="box"];784[label="Neg vyw510",fontsize=16,color="green",shape="box"];785[label="Neg vyw3010",fontsize=16,color="green",shape="box"];786[label="vyw50",fontsize=16,color="green",shape="box"];787[label="vyw300",fontsize=16,color="green",shape="box"];788[label="Pos vyw510",fontsize=16,color="green",shape="box"];789[label="Neg vyw3010",fontsize=16,color="green",shape="box"];790[label="vyw50",fontsize=16,color="green",shape="box"];791[label="vyw300",fontsize=16,color="green",shape="box"];792[label="Neg vyw510",fontsize=16,color="green",shape="box"];1021[label="vyw52 == vyw302",fontsize=16,color="blue",shape="box"];3201[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3201[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3201 -> 1143[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3202[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3202[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3202 -> 1144[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3203[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3203[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3203 -> 1145[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3204[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3204[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3204 -> 1146[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3205[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3205[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3205 -> 1147[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3206[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3206[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3206 -> 1148[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3207[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3207[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3207 -> 1149[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3208[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3208[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3208 -> 1150[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3209[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3209[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3209 -> 1151[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3210[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3210[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3210 -> 1152[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3211[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3211[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3211 -> 1153[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3212[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3212[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3212 -> 1154[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3213[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3213[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3213 -> 1155[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3214[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3214[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3214 -> 1156[label="",style="solid", color="blue", weight=3]; 29.11/13.91 1022[label="vyw51 == vyw301",fontsize=16,color="blue",shape="box"];3215[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3215[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3215 -> 1157[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3216[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3216[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3216 -> 1158[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3217[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3217[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3217 -> 1159[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3218[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3218[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3218 -> 1160[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3219[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3219[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3219 -> 1161[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3220[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3220[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3220 -> 1162[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3221[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3221[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3221 -> 1163[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3222[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3222[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3222 -> 1164[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3223[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3223[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3223 -> 1165[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3224[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3224[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3224 -> 1166[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3225[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3225[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3225 -> 1167[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3226[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3226[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3226 -> 1168[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3227[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3227[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3227 -> 1169[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3228[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1022 -> 3228[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3228 -> 1170[label="",style="solid", color="blue", weight=3]; 29.11/13.91 1023 -> 496[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1023[label="vyw50 == vyw300",fontsize=16,color="magenta"];1023 -> 1171[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1023 -> 1172[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1024 -> 497[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1024[label="vyw50 == vyw300",fontsize=16,color="magenta"];1024 -> 1173[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1024 -> 1174[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1025 -> 498[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1025[label="vyw50 == vyw300",fontsize=16,color="magenta"];1025 -> 1175[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1025 -> 1176[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1026 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1026[label="vyw50 == vyw300",fontsize=16,color="magenta"];1026 -> 1177[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1026 -> 1178[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1027 -> 500[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1027[label="vyw50 == vyw300",fontsize=16,color="magenta"];1027 -> 1179[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1027 -> 1180[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1028 -> 501[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1028[label="vyw50 == vyw300",fontsize=16,color="magenta"];1028 -> 1181[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1028 -> 1182[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1029 -> 502[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1029[label="vyw50 == vyw300",fontsize=16,color="magenta"];1029 -> 1183[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1029 -> 1184[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1030 -> 503[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1030[label="vyw50 == vyw300",fontsize=16,color="magenta"];1030 -> 1185[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1030 -> 1186[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1031 -> 504[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1031[label="vyw50 == vyw300",fontsize=16,color="magenta"];1031 -> 1187[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1031 -> 1188[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1032 -> 505[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1032[label="vyw50 == vyw300",fontsize=16,color="magenta"];1032 -> 1189[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1032 -> 1190[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1033 -> 506[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1033[label="vyw50 == vyw300",fontsize=16,color="magenta"];1033 -> 1191[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1033 -> 1192[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1034 -> 507[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1034[label="vyw50 == vyw300",fontsize=16,color="magenta"];1034 -> 1193[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1034 -> 1194[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1035 -> 508[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1035[label="vyw50 == vyw300",fontsize=16,color="magenta"];1035 -> 1195[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1035 -> 1196[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1036 -> 509[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1036[label="vyw50 == vyw300",fontsize=16,color="magenta"];1036 -> 1197[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1036 -> 1198[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1037[label="compare1 (vyw85,vyw86,vyw87) (vyw88,vyw89,vyw90) ((vyw85,vyw86,vyw87) <= (vyw88,vyw89,vyw90))",fontsize=16,color="black",shape="box"];1037 -> 1199[label="",style="solid", color="black", weight=3]; 29.11/13.91 1038[label="EQ",fontsize=16,color="green",shape="box"];823[label="vyw50",fontsize=16,color="green",shape="box"];824[label="vyw300",fontsize=16,color="green",shape="box"];825[label="vyw50",fontsize=16,color="green",shape="box"];826[label="vyw300",fontsize=16,color="green",shape="box"];827[label="vyw50",fontsize=16,color="green",shape="box"];828[label="vyw300",fontsize=16,color="green",shape="box"];829[label="vyw50",fontsize=16,color="green",shape="box"];830[label="vyw300",fontsize=16,color="green",shape="box"];831[label="vyw50",fontsize=16,color="green",shape="box"];832[label="vyw300",fontsize=16,color="green",shape="box"];833[label="vyw50",fontsize=16,color="green",shape="box"];834[label="vyw300",fontsize=16,color="green",shape="box"];835[label="vyw50",fontsize=16,color="green",shape="box"];836[label="vyw300",fontsize=16,color="green",shape="box"];837[label="vyw50",fontsize=16,color="green",shape="box"];838[label="vyw300",fontsize=16,color="green",shape="box"];839[label="vyw50",fontsize=16,color="green",shape="box"];840[label="vyw300",fontsize=16,color="green",shape="box"];841[label="vyw50",fontsize=16,color="green",shape="box"];842[label="vyw300",fontsize=16,color="green",shape="box"];843[label="vyw50",fontsize=16,color="green",shape="box"];844[label="vyw300",fontsize=16,color="green",shape="box"];845[label="vyw50",fontsize=16,color="green",shape="box"];846[label="vyw300",fontsize=16,color="green",shape="box"];847[label="vyw50",fontsize=16,color="green",shape="box"];848[label="vyw300",fontsize=16,color="green",shape="box"];849[label="vyw50",fontsize=16,color="green",shape="box"];850[label="vyw300",fontsize=16,color="green",shape="box"];851[label="LT",fontsize=16,color="green",shape="box"];852[label="vyw95",fontsize=16,color="green",shape="box"];853[label="GT",fontsize=16,color="green",shape="box"];854[label="compare0 (Just vyw50) Nothing True",fontsize=16,color="black",shape="box"];854 -> 1039[label="",style="solid", color="black", weight=3]; 29.11/13.91 855[label="Integer vyw500 == Integer vyw3000",fontsize=16,color="black",shape="box"];855 -> 1040[label="",style="solid", color="black", weight=3]; 29.11/13.91 856[label="(vyw500,vyw501) == (vyw3000,vyw3001)",fontsize=16,color="black",shape="box"];856 -> 1041[label="",style="solid", color="black", weight=3]; 29.11/13.91 857[label="primEqChar (Char vyw500) vyw300",fontsize=16,color="burlywood",shape="box"];3229[label="vyw300/Char vyw3000",fontsize=10,color="white",style="solid",shape="box"];857 -> 3229[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3229 -> 1042[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 858[label="primEqInt (Pos vyw500) vyw300",fontsize=16,color="burlywood",shape="box"];3230[label="vyw500/Succ vyw5000",fontsize=10,color="white",style="solid",shape="box"];858 -> 3230[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3230 -> 1043[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3231[label="vyw500/Zero",fontsize=10,color="white",style="solid",shape="box"];858 -> 3231[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3231 -> 1044[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 859[label="primEqInt (Neg vyw500) vyw300",fontsize=16,color="burlywood",shape="box"];3232[label="vyw500/Succ vyw5000",fontsize=10,color="white",style="solid",shape="box"];859 -> 3232[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3232 -> 1045[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3233[label="vyw500/Zero",fontsize=10,color="white",style="solid",shape="box"];859 -> 3233[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3233 -> 1046[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 860[label="primEqFloat (Float vyw500 vyw501) vyw300",fontsize=16,color="burlywood",shape="box"];3234[label="vyw300/Float vyw3000 vyw3001",fontsize=10,color="white",style="solid",shape="box"];860 -> 3234[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3234 -> 1047[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 861[label="() == ()",fontsize=16,color="black",shape="box"];861 -> 1048[label="",style="solid", color="black", weight=3]; 29.11/13.91 862[label="primEqDouble (Double vyw500 vyw501) vyw300",fontsize=16,color="burlywood",shape="box"];3235[label="vyw300/Double vyw3000 vyw3001",fontsize=10,color="white",style="solid",shape="box"];862 -> 3235[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3235 -> 1049[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 863[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];863 -> 1050[label="",style="solid", color="black", weight=3]; 29.11/13.91 864[label="Nothing == Just vyw3000",fontsize=16,color="black",shape="box"];864 -> 1051[label="",style="solid", color="black", weight=3]; 29.11/13.91 865[label="Just vyw500 == Nothing",fontsize=16,color="black",shape="box"];865 -> 1052[label="",style="solid", color="black", weight=3]; 29.11/13.91 866[label="Just vyw500 == Just vyw3000",fontsize=16,color="black",shape="box"];866 -> 1053[label="",style="solid", color="black", weight=3]; 29.11/13.91 867[label="Left vyw500 == Left vyw3000",fontsize=16,color="black",shape="box"];867 -> 1054[label="",style="solid", color="black", weight=3]; 29.11/13.91 868[label="Left vyw500 == Right vyw3000",fontsize=16,color="black",shape="box"];868 -> 1055[label="",style="solid", color="black", weight=3]; 29.11/13.91 869[label="Right vyw500 == Left vyw3000",fontsize=16,color="black",shape="box"];869 -> 1056[label="",style="solid", color="black", weight=3]; 29.11/13.91 870[label="Right vyw500 == Right vyw3000",fontsize=16,color="black",shape="box"];870 -> 1057[label="",style="solid", color="black", weight=3]; 29.11/13.91 871[label="False == False",fontsize=16,color="black",shape="box"];871 -> 1058[label="",style="solid", color="black", weight=3]; 29.11/13.91 872[label="False == True",fontsize=16,color="black",shape="box"];872 -> 1059[label="",style="solid", color="black", weight=3]; 29.11/13.91 873[label="True == False",fontsize=16,color="black",shape="box"];873 -> 1060[label="",style="solid", color="black", weight=3]; 29.11/13.91 874[label="True == True",fontsize=16,color="black",shape="box"];874 -> 1061[label="",style="solid", color="black", weight=3]; 29.11/13.91 875[label="vyw500 : vyw501 == vyw3000 : vyw3001",fontsize=16,color="black",shape="box"];875 -> 1062[label="",style="solid", color="black", weight=3]; 29.11/13.91 876[label="vyw500 : vyw501 == []",fontsize=16,color="black",shape="box"];876 -> 1063[label="",style="solid", color="black", weight=3]; 29.11/13.91 877[label="[] == vyw3000 : vyw3001",fontsize=16,color="black",shape="box"];877 -> 1064[label="",style="solid", color="black", weight=3]; 29.11/13.91 878[label="[] == []",fontsize=16,color="black",shape="box"];878 -> 1065[label="",style="solid", color="black", weight=3]; 29.11/13.91 879[label="(vyw500,vyw501,vyw502) == (vyw3000,vyw3001,vyw3002)",fontsize=16,color="black",shape="box"];879 -> 1066[label="",style="solid", color="black", weight=3]; 29.11/13.91 880[label="vyw500 :% vyw501 == vyw3000 :% vyw3001",fontsize=16,color="black",shape="box"];880 -> 1067[label="",style="solid", color="black", weight=3]; 29.11/13.91 881[label="LT == LT",fontsize=16,color="black",shape="box"];881 -> 1068[label="",style="solid", color="black", weight=3]; 29.11/13.91 882[label="LT == EQ",fontsize=16,color="black",shape="box"];882 -> 1069[label="",style="solid", color="black", weight=3]; 29.11/13.91 883[label="LT == GT",fontsize=16,color="black",shape="box"];883 -> 1070[label="",style="solid", color="black", weight=3]; 29.11/13.91 884[label="EQ == LT",fontsize=16,color="black",shape="box"];884 -> 1071[label="",style="solid", color="black", weight=3]; 29.11/13.91 885[label="EQ == EQ",fontsize=16,color="black",shape="box"];885 -> 1072[label="",style="solid", color="black", weight=3]; 29.11/13.91 886[label="EQ == GT",fontsize=16,color="black",shape="box"];886 -> 1073[label="",style="solid", color="black", weight=3]; 29.11/13.91 887[label="GT == LT",fontsize=16,color="black",shape="box"];887 -> 1074[label="",style="solid", color="black", weight=3]; 29.11/13.91 888[label="GT == EQ",fontsize=16,color="black",shape="box"];888 -> 1075[label="",style="solid", color="black", weight=3]; 29.11/13.91 889[label="GT == GT",fontsize=16,color="black",shape="box"];889 -> 1076[label="",style="solid", color="black", weight=3]; 29.11/13.91 1078[label="vyw49",fontsize=16,color="green",shape="box"];1079[label="vyw50",fontsize=16,color="green",shape="box"];1080[label="Just vyw49 <= Just vyw50",fontsize=16,color="black",shape="box"];1080 -> 1200[label="",style="solid", color="black", weight=3]; 29.11/13.91 1077[label="compare1 (Just vyw126) (Just vyw127) vyw128",fontsize=16,color="burlywood",shape="triangle"];3236[label="vyw128/False",fontsize=10,color="white",style="solid",shape="box"];1077 -> 3236[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3236 -> 1201[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3237[label="vyw128/True",fontsize=10,color="white",style="solid",shape="box"];1077 -> 3237[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3237 -> 1202[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1084[label="vyw51",fontsize=16,color="green",shape="box"];1085[label="vyw301",fontsize=16,color="green",shape="box"];1086[label="vyw51",fontsize=16,color="green",shape="box"];1087[label="vyw301",fontsize=16,color="green",shape="box"];1088[label="vyw51",fontsize=16,color="green",shape="box"];1089[label="vyw301",fontsize=16,color="green",shape="box"];1090[label="vyw51",fontsize=16,color="green",shape="box"];1091[label="vyw301",fontsize=16,color="green",shape="box"];1092[label="vyw51",fontsize=16,color="green",shape="box"];1093[label="vyw301",fontsize=16,color="green",shape="box"];1094[label="vyw51",fontsize=16,color="green",shape="box"];1095[label="vyw301",fontsize=16,color="green",shape="box"];1096[label="vyw51",fontsize=16,color="green",shape="box"];1097[label="vyw301",fontsize=16,color="green",shape="box"];1098[label="vyw51",fontsize=16,color="green",shape="box"];1099[label="vyw301",fontsize=16,color="green",shape="box"];1100[label="vyw51",fontsize=16,color="green",shape="box"];1101[label="vyw301",fontsize=16,color="green",shape="box"];1102[label="vyw51",fontsize=16,color="green",shape="box"];1103[label="vyw301",fontsize=16,color="green",shape="box"];1104[label="vyw51",fontsize=16,color="green",shape="box"];1105[label="vyw301",fontsize=16,color="green",shape="box"];1106[label="vyw51",fontsize=16,color="green",shape="box"];1107[label="vyw301",fontsize=16,color="green",shape="box"];1108[label="vyw51",fontsize=16,color="green",shape="box"];1109[label="vyw301",fontsize=16,color="green",shape="box"];1110[label="vyw51",fontsize=16,color="green",shape="box"];1111[label="vyw301",fontsize=16,color="green",shape="box"];1112[label="vyw50",fontsize=16,color="green",shape="box"];1113[label="vyw300",fontsize=16,color="green",shape="box"];1114[label="vyw50",fontsize=16,color="green",shape="box"];1115[label="vyw300",fontsize=16,color="green",shape="box"];1116[label="vyw50",fontsize=16,color="green",shape="box"];1117[label="vyw300",fontsize=16,color="green",shape="box"];1118[label="vyw50",fontsize=16,color="green",shape="box"];1119[label="vyw300",fontsize=16,color="green",shape="box"];1120[label="vyw50",fontsize=16,color="green",shape="box"];1121[label="vyw300",fontsize=16,color="green",shape="box"];1122[label="vyw50",fontsize=16,color="green",shape="box"];1123[label="vyw300",fontsize=16,color="green",shape="box"];1124[label="vyw50",fontsize=16,color="green",shape="box"];1125[label="vyw300",fontsize=16,color="green",shape="box"];1126[label="vyw50",fontsize=16,color="green",shape="box"];1127[label="vyw300",fontsize=16,color="green",shape="box"];1128[label="vyw50",fontsize=16,color="green",shape="box"];1129[label="vyw300",fontsize=16,color="green",shape="box"];1130[label="vyw50",fontsize=16,color="green",shape="box"];1131[label="vyw300",fontsize=16,color="green",shape="box"];1132[label="vyw50",fontsize=16,color="green",shape="box"];1133[label="vyw300",fontsize=16,color="green",shape="box"];1134[label="vyw50",fontsize=16,color="green",shape="box"];1135[label="vyw300",fontsize=16,color="green",shape="box"];1136[label="vyw50",fontsize=16,color="green",shape="box"];1137[label="vyw300",fontsize=16,color="green",shape="box"];1138[label="vyw50",fontsize=16,color="green",shape="box"];1139[label="vyw300",fontsize=16,color="green",shape="box"];1140[label="False",fontsize=16,color="green",shape="box"];1141[label="vyw121",fontsize=16,color="green",shape="box"];1142 -> 1375[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1142[label="compare1 (vyw103,vyw104) (vyw105,vyw106) (vyw103 < vyw105 || vyw103 == vyw105 && vyw104 <= vyw106)",fontsize=16,color="magenta"];1142 -> 1376[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1142 -> 1377[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1142 -> 1378[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1142 -> 1379[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1142 -> 1380[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1142 -> 1381[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 935[label="Pos (primMulNat vyw500 vyw3010)",fontsize=16,color="green",shape="box"];935 -> 1203[label="",style="dashed", color="green", weight=3]; 29.11/13.91 936[label="Neg (primMulNat vyw500 vyw3010)",fontsize=16,color="green",shape="box"];936 -> 1204[label="",style="dashed", color="green", weight=3]; 29.11/13.91 937[label="Neg (primMulNat vyw500 vyw3010)",fontsize=16,color="green",shape="box"];937 -> 1205[label="",style="dashed", color="green", weight=3]; 29.11/13.91 938[label="Pos (primMulNat vyw500 vyw3010)",fontsize=16,color="green",shape="box"];938 -> 1206[label="",style="dashed", color="green", weight=3]; 29.11/13.91 939 -> 430[label="",style="dashed", color="red", weight=0]; 29.11/13.91 939[label="primMulInt vyw500 vyw3010",fontsize=16,color="magenta"];939 -> 1207[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 939 -> 1208[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 940[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];940 -> 1209[label="",style="solid", color="black", weight=3]; 29.11/13.91 941[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];941 -> 1210[label="",style="solid", color="black", weight=3]; 29.11/13.91 942[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];942 -> 1211[label="",style="solid", color="black", weight=3]; 29.11/13.91 1213[label="Left vyw67 <= Left vyw68",fontsize=16,color="black",shape="box"];1213 -> 1221[label="",style="solid", color="black", weight=3]; 29.11/13.91 1214[label="vyw67",fontsize=16,color="green",shape="box"];1215[label="vyw68",fontsize=16,color="green",shape="box"];1212[label="compare1 (Left vyw133) (Left vyw134) vyw135",fontsize=16,color="burlywood",shape="triangle"];3238[label="vyw135/False",fontsize=10,color="white",style="solid",shape="box"];1212 -> 3238[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3238 -> 1222[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3239[label="vyw135/True",fontsize=10,color="white",style="solid",shape="box"];1212 -> 3239[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3239 -> 1223[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 944[label="compare0 (Right vyw50) (Left vyw300) True",fontsize=16,color="black",shape="box"];944 -> 1224[label="",style="solid", color="black", weight=3]; 29.11/13.91 1226[label="vyw74",fontsize=16,color="green",shape="box"];1227[label="vyw75",fontsize=16,color="green",shape="box"];1228[label="Right vyw74 <= Right vyw75",fontsize=16,color="black",shape="box"];1228 -> 1232[label="",style="solid", color="black", weight=3]; 29.11/13.91 1225[label="compare1 (Right vyw141) (Right vyw142) vyw143",fontsize=16,color="burlywood",shape="triangle"];3240[label="vyw143/False",fontsize=10,color="white",style="solid",shape="box"];1225 -> 3240[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3240 -> 1233[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3241[label="vyw143/True",fontsize=10,color="white",style="solid",shape="box"];1225 -> 3241[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3241 -> 1234[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 946[label="compare0 True False True",fontsize=16,color="black",shape="box"];946 -> 1235[label="",style="solid", color="black", weight=3]; 29.11/13.91 1143 -> 496[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1143[label="vyw52 == vyw302",fontsize=16,color="magenta"];1143 -> 1236[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1143 -> 1237[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1144 -> 497[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1144[label="vyw52 == vyw302",fontsize=16,color="magenta"];1144 -> 1238[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1144 -> 1239[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1145 -> 498[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1145[label="vyw52 == vyw302",fontsize=16,color="magenta"];1145 -> 1240[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1145 -> 1241[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1146 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1146[label="vyw52 == vyw302",fontsize=16,color="magenta"];1146 -> 1242[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1146 -> 1243[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1147 -> 500[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1147[label="vyw52 == vyw302",fontsize=16,color="magenta"];1147 -> 1244[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1147 -> 1245[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1148 -> 501[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1148[label="vyw52 == vyw302",fontsize=16,color="magenta"];1148 -> 1246[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1148 -> 1247[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1149 -> 502[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1149[label="vyw52 == vyw302",fontsize=16,color="magenta"];1149 -> 1248[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1149 -> 1249[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1150 -> 503[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1150[label="vyw52 == vyw302",fontsize=16,color="magenta"];1150 -> 1250[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1150 -> 1251[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1151 -> 504[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1151[label="vyw52 == vyw302",fontsize=16,color="magenta"];1151 -> 1252[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1151 -> 1253[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1152 -> 505[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1152[label="vyw52 == vyw302",fontsize=16,color="magenta"];1152 -> 1254[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1152 -> 1255[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1153 -> 506[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1153[label="vyw52 == vyw302",fontsize=16,color="magenta"];1153 -> 1256[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1153 -> 1257[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1154 -> 507[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1154[label="vyw52 == vyw302",fontsize=16,color="magenta"];1154 -> 1258[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1154 -> 1259[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1155 -> 508[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1155[label="vyw52 == vyw302",fontsize=16,color="magenta"];1155 -> 1260[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1155 -> 1261[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1156 -> 509[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1156[label="vyw52 == vyw302",fontsize=16,color="magenta"];1156 -> 1262[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1156 -> 1263[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1157 -> 496[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1157[label="vyw51 == vyw301",fontsize=16,color="magenta"];1157 -> 1264[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1157 -> 1265[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1158 -> 497[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1158[label="vyw51 == vyw301",fontsize=16,color="magenta"];1158 -> 1266[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1158 -> 1267[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1159 -> 498[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1159[label="vyw51 == vyw301",fontsize=16,color="magenta"];1159 -> 1268[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1159 -> 1269[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1160 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1160[label="vyw51 == vyw301",fontsize=16,color="magenta"];1160 -> 1270[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1160 -> 1271[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1161 -> 500[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1161[label="vyw51 == vyw301",fontsize=16,color="magenta"];1161 -> 1272[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1161 -> 1273[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1162 -> 501[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1162[label="vyw51 == vyw301",fontsize=16,color="magenta"];1162 -> 1274[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1162 -> 1275[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1163 -> 502[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1163[label="vyw51 == vyw301",fontsize=16,color="magenta"];1163 -> 1276[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1163 -> 1277[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1164 -> 503[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1164[label="vyw51 == vyw301",fontsize=16,color="magenta"];1164 -> 1278[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1164 -> 1279[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1165 -> 504[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1165[label="vyw51 == vyw301",fontsize=16,color="magenta"];1165 -> 1280[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1165 -> 1281[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1166 -> 505[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1166[label="vyw51 == vyw301",fontsize=16,color="magenta"];1166 -> 1282[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1166 -> 1283[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1167 -> 506[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1167[label="vyw51 == vyw301",fontsize=16,color="magenta"];1167 -> 1284[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1167 -> 1285[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1168 -> 507[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1168[label="vyw51 == vyw301",fontsize=16,color="magenta"];1168 -> 1286[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1168 -> 1287[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1169 -> 508[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1169[label="vyw51 == vyw301",fontsize=16,color="magenta"];1169 -> 1288[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1169 -> 1289[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1170 -> 509[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1170[label="vyw51 == vyw301",fontsize=16,color="magenta"];1170 -> 1290[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1170 -> 1291[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1171[label="vyw50",fontsize=16,color="green",shape="box"];1172[label="vyw300",fontsize=16,color="green",shape="box"];1173[label="vyw50",fontsize=16,color="green",shape="box"];1174[label="vyw300",fontsize=16,color="green",shape="box"];1175[label="vyw50",fontsize=16,color="green",shape="box"];1176[label="vyw300",fontsize=16,color="green",shape="box"];1177[label="vyw50",fontsize=16,color="green",shape="box"];1178[label="vyw300",fontsize=16,color="green",shape="box"];1179[label="vyw50",fontsize=16,color="green",shape="box"];1180[label="vyw300",fontsize=16,color="green",shape="box"];1181[label="vyw50",fontsize=16,color="green",shape="box"];1182[label="vyw300",fontsize=16,color="green",shape="box"];1183[label="vyw50",fontsize=16,color="green",shape="box"];1184[label="vyw300",fontsize=16,color="green",shape="box"];1185[label="vyw50",fontsize=16,color="green",shape="box"];1186[label="vyw300",fontsize=16,color="green",shape="box"];1187[label="vyw50",fontsize=16,color="green",shape="box"];1188[label="vyw300",fontsize=16,color="green",shape="box"];1189[label="vyw50",fontsize=16,color="green",shape="box"];1190[label="vyw300",fontsize=16,color="green",shape="box"];1191[label="vyw50",fontsize=16,color="green",shape="box"];1192[label="vyw300",fontsize=16,color="green",shape="box"];1193[label="vyw50",fontsize=16,color="green",shape="box"];1194[label="vyw300",fontsize=16,color="green",shape="box"];1195[label="vyw50",fontsize=16,color="green",shape="box"];1196[label="vyw300",fontsize=16,color="green",shape="box"];1197[label="vyw50",fontsize=16,color="green",shape="box"];1198[label="vyw300",fontsize=16,color="green",shape="box"];1199 -> 1446[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1199[label="compare1 (vyw85,vyw86,vyw87) (vyw88,vyw89,vyw90) (vyw85 < vyw88 || vyw85 == vyw88 && (vyw86 < vyw89 || vyw86 == vyw89 && vyw87 <= vyw90))",fontsize=16,color="magenta"];1199 -> 1447[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1199 -> 1448[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1199 -> 1449[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1199 -> 1450[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1199 -> 1451[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1199 -> 1452[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1199 -> 1453[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1199 -> 1454[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1039[label="GT",fontsize=16,color="green",shape="box"];1040 -> 635[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1040[label="primEqInt vyw500 vyw3000",fontsize=16,color="magenta"];1040 -> 1294[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1040 -> 1295[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1041 -> 980[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1041[label="vyw500 == vyw3000 && vyw501 == vyw3001",fontsize=16,color="magenta"];1041 -> 1296[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1041 -> 1297[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1042[label="primEqChar (Char vyw500) (Char vyw3000)",fontsize=16,color="black",shape="box"];1042 -> 1298[label="",style="solid", color="black", weight=3]; 29.11/13.91 1043[label="primEqInt (Pos (Succ vyw5000)) vyw300",fontsize=16,color="burlywood",shape="box"];3242[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3242[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3242 -> 1299[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3243[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3243[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3243 -> 1300[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1044[label="primEqInt (Pos Zero) vyw300",fontsize=16,color="burlywood",shape="box"];3244[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];1044 -> 3244[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3244 -> 1301[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3245[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];1044 -> 3245[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3245 -> 1302[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1045[label="primEqInt (Neg (Succ vyw5000)) vyw300",fontsize=16,color="burlywood",shape="box"];3246[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];1045 -> 3246[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3246 -> 1303[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3247[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];1045 -> 3247[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3247 -> 1304[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1046[label="primEqInt (Neg Zero) vyw300",fontsize=16,color="burlywood",shape="box"];3248[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];1046 -> 3248[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3248 -> 1305[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3249[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];1046 -> 3249[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3249 -> 1306[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1047[label="primEqFloat (Float vyw500 vyw501) (Float vyw3000 vyw3001)",fontsize=16,color="black",shape="box"];1047 -> 1307[label="",style="solid", color="black", weight=3]; 29.11/13.91 1048[label="True",fontsize=16,color="green",shape="box"];1049[label="primEqDouble (Double vyw500 vyw501) (Double vyw3000 vyw3001)",fontsize=16,color="black",shape="box"];1049 -> 1308[label="",style="solid", color="black", weight=3]; 29.11/13.91 1050[label="True",fontsize=16,color="green",shape="box"];1051[label="False",fontsize=16,color="green",shape="box"];1052[label="False",fontsize=16,color="green",shape="box"];1053[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];3250[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3250[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3250 -> 1309[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3251[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3251[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3251 -> 1310[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3252[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3252[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3252 -> 1311[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3253[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3253[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3253 -> 1312[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3254[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3254[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3254 -> 1313[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3255[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3255[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3255 -> 1314[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3256[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3256[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3256 -> 1315[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3257[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3257[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3257 -> 1316[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3258[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3258[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3258 -> 1317[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3259[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3259[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3259 -> 1318[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3260[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3260[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3260 -> 1319[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3261[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3261[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3261 -> 1320[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3262[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3262[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3262 -> 1321[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3263[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3263[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3263 -> 1322[label="",style="solid", color="blue", weight=3]; 29.11/13.91 1054[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];3264[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3264[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3264 -> 1323[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3265[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3265[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3265 -> 1324[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3266[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3266[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3266 -> 1325[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3267[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3267[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3267 -> 1326[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3268[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3268[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3268 -> 1327[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3269[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3269[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3269 -> 1328[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3270[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3270[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3270 -> 1329[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3271[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3271[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3271 -> 1330[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3272[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3272[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3272 -> 1331[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3273[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3273[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3273 -> 1332[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3274[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3274[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3274 -> 1333[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3275[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3275[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3275 -> 1334[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3276[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3276[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3276 -> 1335[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3277[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3277[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3277 -> 1336[label="",style="solid", color="blue", weight=3]; 29.11/13.91 1055[label="False",fontsize=16,color="green",shape="box"];1056[label="False",fontsize=16,color="green",shape="box"];1057[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];3278[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3278[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3278 -> 1337[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3279[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3279[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3279 -> 1338[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3280[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3280[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3280 -> 1339[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3281[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3281[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3281 -> 1340[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3282[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3282[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3282 -> 1341[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3283[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3283[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3283 -> 1342[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3284[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3284[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3284 -> 1343[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3285[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3285[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3285 -> 1344[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3286[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3286[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3286 -> 1345[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3287[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3287[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3287 -> 1346[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3288[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3288[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3288 -> 1347[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3289[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3289[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3289 -> 1348[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3290[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3290[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3290 -> 1349[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3291[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3291[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3291 -> 1350[label="",style="solid", color="blue", weight=3]; 29.11/13.91 1058[label="True",fontsize=16,color="green",shape="box"];1059[label="False",fontsize=16,color="green",shape="box"];1060[label="False",fontsize=16,color="green",shape="box"];1061[label="True",fontsize=16,color="green",shape="box"];1062 -> 980[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1062[label="vyw500 == vyw3000 && vyw501 == vyw3001",fontsize=16,color="magenta"];1062 -> 1351[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1062 -> 1352[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1063[label="False",fontsize=16,color="green",shape="box"];1064[label="False",fontsize=16,color="green",shape="box"];1065[label="True",fontsize=16,color="green",shape="box"];1066 -> 980[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1066[label="vyw500 == vyw3000 && vyw501 == vyw3001 && vyw502 == vyw3002",fontsize=16,color="magenta"];1066 -> 1353[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1066 -> 1354[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1067 -> 980[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1067[label="vyw500 == vyw3000 && vyw501 == vyw3001",fontsize=16,color="magenta"];1067 -> 1355[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1067 -> 1356[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1068[label="True",fontsize=16,color="green",shape="box"];1069[label="False",fontsize=16,color="green",shape="box"];1070[label="False",fontsize=16,color="green",shape="box"];1071[label="False",fontsize=16,color="green",shape="box"];1072[label="True",fontsize=16,color="green",shape="box"];1073[label="False",fontsize=16,color="green",shape="box"];1074[label="False",fontsize=16,color="green",shape="box"];1075[label="False",fontsize=16,color="green",shape="box"];1076[label="True",fontsize=16,color="green",shape="box"];1200[label="vyw49 <= vyw50",fontsize=16,color="blue",shape="box"];3292[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3292[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3292 -> 1357[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3293[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3293[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3293 -> 1358[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3294[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3294[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3294 -> 1359[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3295[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3295[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3295 -> 1360[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3296[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3296[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3296 -> 1361[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3297[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3297[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3297 -> 1362[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3298[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3298[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3298 -> 1363[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3299[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3299[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3299 -> 1364[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3300[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3300[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3300 -> 1365[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3301[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3301[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3301 -> 1366[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3302[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3302[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3302 -> 1367[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3303[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3303[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3303 -> 1368[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3304[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3304[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3304 -> 1369[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3305[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3305[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3305 -> 1370[label="",style="solid", color="blue", weight=3]; 29.11/13.91 1201[label="compare1 (Just vyw126) (Just vyw127) False",fontsize=16,color="black",shape="box"];1201 -> 1371[label="",style="solid", color="black", weight=3]; 29.11/13.91 1202[label="compare1 (Just vyw126) (Just vyw127) True",fontsize=16,color="black",shape="box"];1202 -> 1372[label="",style="solid", color="black", weight=3]; 29.11/13.91 1376[label="vyw104",fontsize=16,color="green",shape="box"];1377[label="vyw103 < vyw105",fontsize=16,color="blue",shape="box"];3306[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 3306[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3306 -> 1388[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3307[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 3307[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3307 -> 1389[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3308[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 3308[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3308 -> 1390[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3309[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 3309[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3309 -> 1391[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3310[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 3310[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3310 -> 1392[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3311[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 3311[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3311 -> 1393[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3312[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 3312[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3312 -> 1394[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3313[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 3313[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3313 -> 1395[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3314[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 3314[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3314 -> 1396[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3315[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 3315[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3315 -> 1397[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3316[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 3316[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3316 -> 1398[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3317[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 3317[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3317 -> 1399[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3318[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 3318[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3318 -> 1400[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3319[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1377 -> 3319[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3319 -> 1401[label="",style="solid", color="blue", weight=3]; 29.11/13.91 1378 -> 980[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1378[label="vyw103 == vyw105 && vyw104 <= vyw106",fontsize=16,color="magenta"];1378 -> 1402[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1378 -> 1403[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1379[label="vyw106",fontsize=16,color="green",shape="box"];1380[label="vyw103",fontsize=16,color="green",shape="box"];1381[label="vyw105",fontsize=16,color="green",shape="box"];1375[label="compare1 (vyw153,vyw154) (vyw155,vyw156) (vyw157 || vyw158)",fontsize=16,color="burlywood",shape="triangle"];3320[label="vyw157/False",fontsize=10,color="white",style="solid",shape="box"];1375 -> 3320[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3320 -> 1404[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3321[label="vyw157/True",fontsize=10,color="white",style="solid",shape="box"];1375 -> 3321[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3321 -> 1405[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1203[label="primMulNat vyw500 vyw3010",fontsize=16,color="burlywood",shape="triangle"];3322[label="vyw500/Succ vyw5000",fontsize=10,color="white",style="solid",shape="box"];1203 -> 3322[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3322 -> 1406[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3323[label="vyw500/Zero",fontsize=10,color="white",style="solid",shape="box"];1203 -> 3323[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3323 -> 1407[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1204 -> 1203[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1204[label="primMulNat vyw500 vyw3010",fontsize=16,color="magenta"];1204 -> 1408[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1205 -> 1203[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1205[label="primMulNat vyw500 vyw3010",fontsize=16,color="magenta"];1205 -> 1409[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1206 -> 1203[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1206[label="primMulNat vyw500 vyw3010",fontsize=16,color="magenta"];1206 -> 1410[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1206 -> 1411[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1207[label="vyw3010",fontsize=16,color="green",shape="box"];1208[label="vyw500",fontsize=16,color="green",shape="box"];1209[label="GT",fontsize=16,color="green",shape="box"];1210[label="GT",fontsize=16,color="green",shape="box"];1211[label="GT",fontsize=16,color="green",shape="box"];1221[label="vyw67 <= vyw68",fontsize=16,color="blue",shape="box"];3324[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1221 -> 3324[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3324 -> 1412[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3325[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1221 -> 3325[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3325 -> 1413[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3326[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1221 -> 3326[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3326 -> 1414[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3327[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1221 -> 3327[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3327 -> 1415[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3328[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1221 -> 3328[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3328 -> 1416[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3329[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1221 -> 3329[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3329 -> 1417[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3330[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1221 -> 3330[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3330 -> 1418[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3331[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1221 -> 3331[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3331 -> 1419[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3332[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1221 -> 3332[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3332 -> 1420[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3333[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1221 -> 3333[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3333 -> 1421[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3334[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1221 -> 3334[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3334 -> 1422[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3335[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1221 -> 3335[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3335 -> 1423[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3336[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1221 -> 3336[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3336 -> 1424[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3337[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1221 -> 3337[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3337 -> 1425[label="",style="solid", color="blue", weight=3]; 29.11/13.91 1222[label="compare1 (Left vyw133) (Left vyw134) False",fontsize=16,color="black",shape="box"];1222 -> 1426[label="",style="solid", color="black", weight=3]; 29.11/13.91 1223[label="compare1 (Left vyw133) (Left vyw134) True",fontsize=16,color="black",shape="box"];1223 -> 1427[label="",style="solid", color="black", weight=3]; 29.11/13.91 1224[label="GT",fontsize=16,color="green",shape="box"];1232[label="vyw74 <= vyw75",fontsize=16,color="blue",shape="box"];3338[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 3338[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3338 -> 1428[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3339[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 3339[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3339 -> 1429[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3340[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 3340[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3340 -> 1430[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3341[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 3341[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3341 -> 1431[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3342[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 3342[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3342 -> 1432[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3343[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 3343[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3343 -> 1433[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3344[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 3344[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3344 -> 1434[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3345[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 3345[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3345 -> 1435[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3346[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 3346[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3346 -> 1436[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3347[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 3347[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3347 -> 1437[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3348[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 3348[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3348 -> 1438[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3349[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 3349[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3349 -> 1439[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3350[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 3350[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3350 -> 1440[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3351[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1232 -> 3351[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3351 -> 1441[label="",style="solid", color="blue", weight=3]; 29.11/13.91 1233[label="compare1 (Right vyw141) (Right vyw142) False",fontsize=16,color="black",shape="box"];1233 -> 1442[label="",style="solid", color="black", weight=3]; 29.11/13.91 1234[label="compare1 (Right vyw141) (Right vyw142) True",fontsize=16,color="black",shape="box"];1234 -> 1443[label="",style="solid", color="black", weight=3]; 29.11/13.91 1235[label="GT",fontsize=16,color="green",shape="box"];1236[label="vyw52",fontsize=16,color="green",shape="box"];1237[label="vyw302",fontsize=16,color="green",shape="box"];1238[label="vyw52",fontsize=16,color="green",shape="box"];1239[label="vyw302",fontsize=16,color="green",shape="box"];1240[label="vyw52",fontsize=16,color="green",shape="box"];1241[label="vyw302",fontsize=16,color="green",shape="box"];1242[label="vyw52",fontsize=16,color="green",shape="box"];1243[label="vyw302",fontsize=16,color="green",shape="box"];1244[label="vyw52",fontsize=16,color="green",shape="box"];1245[label="vyw302",fontsize=16,color="green",shape="box"];1246[label="vyw52",fontsize=16,color="green",shape="box"];1247[label="vyw302",fontsize=16,color="green",shape="box"];1248[label="vyw52",fontsize=16,color="green",shape="box"];1249[label="vyw302",fontsize=16,color="green",shape="box"];1250[label="vyw52",fontsize=16,color="green",shape="box"];1251[label="vyw302",fontsize=16,color="green",shape="box"];1252[label="vyw52",fontsize=16,color="green",shape="box"];1253[label="vyw302",fontsize=16,color="green",shape="box"];1254[label="vyw52",fontsize=16,color="green",shape="box"];1255[label="vyw302",fontsize=16,color="green",shape="box"];1256[label="vyw52",fontsize=16,color="green",shape="box"];1257[label="vyw302",fontsize=16,color="green",shape="box"];1258[label="vyw52",fontsize=16,color="green",shape="box"];1259[label="vyw302",fontsize=16,color="green",shape="box"];1260[label="vyw52",fontsize=16,color="green",shape="box"];1261[label="vyw302",fontsize=16,color="green",shape="box"];1262[label="vyw52",fontsize=16,color="green",shape="box"];1263[label="vyw302",fontsize=16,color="green",shape="box"];1264[label="vyw51",fontsize=16,color="green",shape="box"];1265[label="vyw301",fontsize=16,color="green",shape="box"];1266[label="vyw51",fontsize=16,color="green",shape="box"];1267[label="vyw301",fontsize=16,color="green",shape="box"];1268[label="vyw51",fontsize=16,color="green",shape="box"];1269[label="vyw301",fontsize=16,color="green",shape="box"];1270[label="vyw51",fontsize=16,color="green",shape="box"];1271[label="vyw301",fontsize=16,color="green",shape="box"];1272[label="vyw51",fontsize=16,color="green",shape="box"];1273[label="vyw301",fontsize=16,color="green",shape="box"];1274[label="vyw51",fontsize=16,color="green",shape="box"];1275[label="vyw301",fontsize=16,color="green",shape="box"];1276[label="vyw51",fontsize=16,color="green",shape="box"];1277[label="vyw301",fontsize=16,color="green",shape="box"];1278[label="vyw51",fontsize=16,color="green",shape="box"];1279[label="vyw301",fontsize=16,color="green",shape="box"];1280[label="vyw51",fontsize=16,color="green",shape="box"];1281[label="vyw301",fontsize=16,color="green",shape="box"];1282[label="vyw51",fontsize=16,color="green",shape="box"];1283[label="vyw301",fontsize=16,color="green",shape="box"];1284[label="vyw51",fontsize=16,color="green",shape="box"];1285[label="vyw301",fontsize=16,color="green",shape="box"];1286[label="vyw51",fontsize=16,color="green",shape="box"];1287[label="vyw301",fontsize=16,color="green",shape="box"];1288[label="vyw51",fontsize=16,color="green",shape="box"];1289[label="vyw301",fontsize=16,color="green",shape="box"];1290[label="vyw51",fontsize=16,color="green",shape="box"];1291[label="vyw301",fontsize=16,color="green",shape="box"];1447[label="vyw89",fontsize=16,color="green",shape="box"];1448 -> 980[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1448[label="vyw85 == vyw88 && (vyw86 < vyw89 || vyw86 == vyw89 && vyw87 <= vyw90)",fontsize=16,color="magenta"];1448 -> 1463[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1448 -> 1464[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1449[label="vyw85 < vyw88",fontsize=16,color="blue",shape="box"];3352[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1449 -> 3352[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3352 -> 1465[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3353[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1449 -> 3353[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3353 -> 1466[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3354[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1449 -> 3354[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3354 -> 1467[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3355[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1449 -> 3355[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3355 -> 1468[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3356[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1449 -> 3356[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3356 -> 1469[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3357[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1449 -> 3357[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3357 -> 1470[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3358[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1449 -> 3358[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3358 -> 1471[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3359[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1449 -> 3359[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3359 -> 1472[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3360[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1449 -> 3360[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3360 -> 1473[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3361[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1449 -> 3361[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3361 -> 1474[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3362[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1449 -> 3362[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3362 -> 1475[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3363[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1449 -> 3363[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3363 -> 1476[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3364[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1449 -> 3364[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3364 -> 1477[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3365[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1449 -> 3365[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3365 -> 1478[label="",style="solid", color="blue", weight=3]; 29.11/13.91 1450[label="vyw88",fontsize=16,color="green",shape="box"];1451[label="vyw86",fontsize=16,color="green",shape="box"];1452[label="vyw90",fontsize=16,color="green",shape="box"];1453[label="vyw85",fontsize=16,color="green",shape="box"];1454[label="vyw87",fontsize=16,color="green",shape="box"];1446[label="compare1 (vyw168,vyw169,vyw170) (vyw171,vyw172,vyw173) (vyw174 || vyw175)",fontsize=16,color="burlywood",shape="triangle"];3366[label="vyw174/False",fontsize=10,color="white",style="solid",shape="box"];1446 -> 3366[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3366 -> 1479[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3367[label="vyw174/True",fontsize=10,color="white",style="solid",shape="box"];1446 -> 3367[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3367 -> 1480[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1294[label="vyw500",fontsize=16,color="green",shape="box"];1295[label="vyw3000",fontsize=16,color="green",shape="box"];1296[label="vyw501 == vyw3001",fontsize=16,color="blue",shape="box"];3368[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 3368[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3368 -> 1481[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3369[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 3369[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3369 -> 1482[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3370[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 3370[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3370 -> 1483[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3371[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 3371[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3371 -> 1484[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3372[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 3372[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3372 -> 1485[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3373[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 3373[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3373 -> 1486[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3374[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 3374[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3374 -> 1487[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3375[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 3375[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3375 -> 1488[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3376[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 3376[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3376 -> 1489[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3377[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 3377[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3377 -> 1490[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3378[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 3378[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3378 -> 1491[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3379[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 3379[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3379 -> 1492[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3380[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 3380[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3380 -> 1493[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3381[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 3381[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3381 -> 1494[label="",style="solid", color="blue", weight=3]; 29.11/13.91 1297[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];3382[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 3382[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3382 -> 1495[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3383[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 3383[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3383 -> 1496[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3384[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 3384[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3384 -> 1497[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3385[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 3385[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3385 -> 1498[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3386[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 3386[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3386 -> 1499[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3387[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 3387[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3387 -> 1500[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3388[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 3388[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3388 -> 1501[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3389[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 3389[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3389 -> 1502[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3390[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 3390[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3390 -> 1503[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3391[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 3391[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3391 -> 1504[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3392[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 3392[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3392 -> 1505[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3393[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 3393[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3393 -> 1506[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3394[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 3394[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3394 -> 1507[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3395[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 3395[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3395 -> 1508[label="",style="solid", color="blue", weight=3]; 29.11/13.91 1298[label="primEqNat vyw500 vyw3000",fontsize=16,color="burlywood",shape="triangle"];3396[label="vyw500/Succ vyw5000",fontsize=10,color="white",style="solid",shape="box"];1298 -> 3396[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3396 -> 1509[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3397[label="vyw500/Zero",fontsize=10,color="white",style="solid",shape="box"];1298 -> 3397[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3397 -> 1510[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1299[label="primEqInt (Pos (Succ vyw5000)) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];3398[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1299 -> 3398[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3398 -> 1511[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3399[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1299 -> 3399[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3399 -> 1512[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1300[label="primEqInt (Pos (Succ vyw5000)) (Neg vyw3000)",fontsize=16,color="black",shape="box"];1300 -> 1513[label="",style="solid", color="black", weight=3]; 29.11/13.91 1301[label="primEqInt (Pos Zero) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];3400[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1301 -> 3400[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3400 -> 1514[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3401[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1301 -> 3401[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3401 -> 1515[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1302[label="primEqInt (Pos Zero) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];3402[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1302 -> 3402[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3402 -> 1516[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3403[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1302 -> 3403[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3403 -> 1517[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1303[label="primEqInt (Neg (Succ vyw5000)) (Pos vyw3000)",fontsize=16,color="black",shape="box"];1303 -> 1518[label="",style="solid", color="black", weight=3]; 29.11/13.91 1304[label="primEqInt (Neg (Succ vyw5000)) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];3404[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1304 -> 3404[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3404 -> 1519[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3405[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1304 -> 3405[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3405 -> 1520[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1305[label="primEqInt (Neg Zero) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];3406[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1305 -> 3406[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3406 -> 1521[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3407[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1305 -> 3407[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3407 -> 1522[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1306[label="primEqInt (Neg Zero) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];3408[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3408[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3408 -> 1523[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3409[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1306 -> 3409[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3409 -> 1524[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1307 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1307[label="vyw500 * vyw3001 == vyw501 * vyw3000",fontsize=16,color="magenta"];1307 -> 1525[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1307 -> 1526[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1308 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1308[label="vyw500 * vyw3001 == vyw501 * vyw3000",fontsize=16,color="magenta"];1308 -> 1527[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1308 -> 1528[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1309 -> 496[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1309[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1309 -> 1529[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1309 -> 1530[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1310 -> 497[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1310[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1310 -> 1531[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1310 -> 1532[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1311 -> 498[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1311[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1311 -> 1533[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1311 -> 1534[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1312 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1312[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1312 -> 1535[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1312 -> 1536[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1313 -> 500[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1313[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1313 -> 1537[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1313 -> 1538[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1314 -> 501[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1314[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1314 -> 1539[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1314 -> 1540[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1315 -> 502[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1315[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1315 -> 1541[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1315 -> 1542[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1316 -> 503[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1316[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1316 -> 1543[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1316 -> 1544[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1317 -> 504[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1317[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1317 -> 1545[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1317 -> 1546[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1318 -> 505[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1318[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1318 -> 1547[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1318 -> 1548[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1319 -> 506[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1319[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1319 -> 1549[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1319 -> 1550[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1320 -> 507[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1320[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1320 -> 1551[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1320 -> 1552[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1321 -> 508[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1321[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1321 -> 1553[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1321 -> 1554[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1322 -> 509[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1322[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1322 -> 1555[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1322 -> 1556[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1323 -> 496[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1323[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1323 -> 1557[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1323 -> 1558[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1324 -> 497[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1324[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1324 -> 1559[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1324 -> 1560[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1325 -> 498[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1325[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1325 -> 1561[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1325 -> 1562[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1326 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1326[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1326 -> 1563[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1326 -> 1564[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1327 -> 500[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1327[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1327 -> 1565[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1327 -> 1566[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1328 -> 501[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1328[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1328 -> 1567[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1328 -> 1568[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1329 -> 502[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1329[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1329 -> 1569[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1329 -> 1570[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1330 -> 503[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1330[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1330 -> 1571[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1330 -> 1572[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1331 -> 504[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1331[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1331 -> 1573[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1331 -> 1574[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1332 -> 505[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1332[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1332 -> 1575[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1332 -> 1576[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1333 -> 506[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1333[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1333 -> 1577[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1333 -> 1578[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1334 -> 507[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1334[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1334 -> 1579[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1334 -> 1580[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1335 -> 508[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1335[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1335 -> 1581[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1335 -> 1582[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1336 -> 509[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1336[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1336 -> 1583[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1336 -> 1584[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1337 -> 496[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1337[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1337 -> 1585[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1337 -> 1586[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1338 -> 497[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1338[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1338 -> 1587[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1338 -> 1588[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1339 -> 498[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1339[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1339 -> 1589[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1339 -> 1590[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1340 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1340[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1340 -> 1591[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1340 -> 1592[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1341 -> 500[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1341[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1341 -> 1593[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1341 -> 1594[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1342 -> 501[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1342[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1342 -> 1595[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1342 -> 1596[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1343 -> 502[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1343[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1343 -> 1597[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1343 -> 1598[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1344 -> 503[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1344[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1344 -> 1599[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1344 -> 1600[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1345 -> 504[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1345[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1345 -> 1601[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1345 -> 1602[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1346 -> 505[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1346[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1346 -> 1603[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1346 -> 1604[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1347 -> 506[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1347[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1347 -> 1605[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1347 -> 1606[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1348 -> 507[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1348[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1348 -> 1607[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1348 -> 1608[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1349 -> 508[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1349[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1349 -> 1609[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1349 -> 1610[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1350 -> 509[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1350[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1350 -> 1611[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1350 -> 1612[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1351 -> 506[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1351[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1351 -> 1613[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1351 -> 1614[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1352[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];3410[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 3410[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3410 -> 1615[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3411[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 3411[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3411 -> 1616[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3412[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 3412[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3412 -> 1617[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3413[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 3413[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3413 -> 1618[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3414[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 3414[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3414 -> 1619[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3415[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 3415[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3415 -> 1620[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3416[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 3416[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3416 -> 1621[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3417[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 3417[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3417 -> 1622[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3418[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 3418[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3418 -> 1623[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3419[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 3419[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3419 -> 1624[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3420[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 3420[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3420 -> 1625[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3421[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 3421[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3421 -> 1626[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3422[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 3422[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3422 -> 1627[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3423[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 3423[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3423 -> 1628[label="",style="solid", color="blue", weight=3]; 29.11/13.91 1353 -> 980[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1353[label="vyw501 == vyw3001 && vyw502 == vyw3002",fontsize=16,color="magenta"];1353 -> 1629[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1353 -> 1630[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1354[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];3424[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 3424[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3424 -> 1631[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3425[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 3425[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3425 -> 1632[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3426[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 3426[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3426 -> 1633[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3427[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 3427[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3427 -> 1634[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3428[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 3428[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3428 -> 1635[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3429[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 3429[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3429 -> 1636[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3430[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 3430[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3430 -> 1637[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3431[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 3431[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3431 -> 1638[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3432[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 3432[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3432 -> 1639[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3433[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 3433[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3433 -> 1640[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3434[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 3434[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3434 -> 1641[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3435[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 3435[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3435 -> 1642[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3436[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 3436[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3436 -> 1643[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3437[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 3437[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3437 -> 1644[label="",style="solid", color="blue", weight=3]; 29.11/13.91 1355[label="vyw501 == vyw3001",fontsize=16,color="blue",shape="box"];3438[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1355 -> 3438[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3438 -> 1645[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3439[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1355 -> 3439[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3439 -> 1646[label="",style="solid", color="blue", weight=3]; 29.11/13.91 1356[label="vyw500 == vyw3000",fontsize=16,color="blue",shape="box"];3440[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 3440[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3440 -> 1647[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3441[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 3441[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3441 -> 1648[label="",style="solid", color="blue", weight=3]; 29.11/13.91 1357[label="vyw49 <= vyw50",fontsize=16,color="burlywood",shape="triangle"];3442[label="vyw49/Nothing",fontsize=10,color="white",style="solid",shape="box"];1357 -> 3442[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3442 -> 1649[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3443[label="vyw49/Just vyw490",fontsize=10,color="white",style="solid",shape="box"];1357 -> 3443[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3443 -> 1650[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1358[label="vyw49 <= vyw50",fontsize=16,color="burlywood",shape="triangle"];3444[label="vyw49/(vyw490,vyw491)",fontsize=10,color="white",style="solid",shape="box"];1358 -> 3444[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3444 -> 1651[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1359[label="vyw49 <= vyw50",fontsize=16,color="black",shape="triangle"];1359 -> 1652[label="",style="solid", color="black", weight=3]; 29.11/13.91 1360[label="vyw49 <= vyw50",fontsize=16,color="burlywood",shape="triangle"];3445[label="vyw49/LT",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3445[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3445 -> 1653[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3446[label="vyw49/EQ",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3446[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3446 -> 1654[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3447[label="vyw49/GT",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3447[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3447 -> 1655[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1361[label="vyw49 <= vyw50",fontsize=16,color="black",shape="triangle"];1361 -> 1656[label="",style="solid", color="black", weight=3]; 29.11/13.91 1362[label="vyw49 <= vyw50",fontsize=16,color="black",shape="triangle"];1362 -> 1657[label="",style="solid", color="black", weight=3]; 29.11/13.91 1363[label="vyw49 <= vyw50",fontsize=16,color="black",shape="triangle"];1363 -> 1658[label="",style="solid", color="black", weight=3]; 29.11/13.91 1364[label="vyw49 <= vyw50",fontsize=16,color="black",shape="triangle"];1364 -> 1659[label="",style="solid", color="black", weight=3]; 29.11/13.91 1365[label="vyw49 <= vyw50",fontsize=16,color="black",shape="triangle"];1365 -> 1660[label="",style="solid", color="black", weight=3]; 29.11/13.91 1366[label="vyw49 <= vyw50",fontsize=16,color="burlywood",shape="triangle"];3448[label="vyw49/Left vyw490",fontsize=10,color="white",style="solid",shape="box"];1366 -> 3448[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3448 -> 1661[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3449[label="vyw49/Right vyw490",fontsize=10,color="white",style="solid",shape="box"];1366 -> 3449[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3449 -> 1662[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1367[label="vyw49 <= vyw50",fontsize=16,color="burlywood",shape="triangle"];3450[label="vyw49/False",fontsize=10,color="white",style="solid",shape="box"];1367 -> 3450[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3450 -> 1663[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3451[label="vyw49/True",fontsize=10,color="white",style="solid",shape="box"];1367 -> 3451[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3451 -> 1664[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1368[label="vyw49 <= vyw50",fontsize=16,color="black",shape="triangle"];1368 -> 1665[label="",style="solid", color="black", weight=3]; 29.11/13.91 1369[label="vyw49 <= vyw50",fontsize=16,color="burlywood",shape="triangle"];3452[label="vyw49/(vyw490,vyw491,vyw492)",fontsize=10,color="white",style="solid",shape="box"];1369 -> 3452[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3452 -> 1666[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1370[label="vyw49 <= vyw50",fontsize=16,color="black",shape="triangle"];1370 -> 1667[label="",style="solid", color="black", weight=3]; 29.11/13.91 1371[label="compare0 (Just vyw126) (Just vyw127) otherwise",fontsize=16,color="black",shape="box"];1371 -> 1668[label="",style="solid", color="black", weight=3]; 29.11/13.91 1372[label="LT",fontsize=16,color="green",shape="box"];1388 -> 23[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1388[label="vyw103 < vyw105",fontsize=16,color="magenta"];1388 -> 1669[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1388 -> 1670[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1389 -> 24[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1389[label="vyw103 < vyw105",fontsize=16,color="magenta"];1389 -> 1671[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1389 -> 1672[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1390 -> 25[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1390[label="vyw103 < vyw105",fontsize=16,color="magenta"];1390 -> 1673[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1390 -> 1674[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1391 -> 26[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1391[label="vyw103 < vyw105",fontsize=16,color="magenta"];1391 -> 1675[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1391 -> 1676[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1392 -> 27[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1392[label="vyw103 < vyw105",fontsize=16,color="magenta"];1392 -> 1677[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1392 -> 1678[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1393 -> 28[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1393[label="vyw103 < vyw105",fontsize=16,color="magenta"];1393 -> 1679[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1393 -> 1680[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1394 -> 29[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1394[label="vyw103 < vyw105",fontsize=16,color="magenta"];1394 -> 1681[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1394 -> 1682[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1395 -> 30[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1395[label="vyw103 < vyw105",fontsize=16,color="magenta"];1395 -> 1683[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1395 -> 1684[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1396 -> 31[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1396[label="vyw103 < vyw105",fontsize=16,color="magenta"];1396 -> 1685[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1396 -> 1686[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1397 -> 32[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1397[label="vyw103 < vyw105",fontsize=16,color="magenta"];1397 -> 1687[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1397 -> 1688[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1398 -> 33[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1398[label="vyw103 < vyw105",fontsize=16,color="magenta"];1398 -> 1689[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1398 -> 1690[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1399 -> 34[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1399[label="vyw103 < vyw105",fontsize=16,color="magenta"];1399 -> 1691[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1399 -> 1692[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1400 -> 35[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1400[label="vyw103 < vyw105",fontsize=16,color="magenta"];1400 -> 1693[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1400 -> 1694[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1401 -> 36[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1401[label="vyw103 < vyw105",fontsize=16,color="magenta"];1401 -> 1695[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1401 -> 1696[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1402[label="vyw104 <= vyw106",fontsize=16,color="blue",shape="box"];3453[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3453[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3453 -> 1697[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3454[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3454[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3454 -> 1698[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3455[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3455[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3455 -> 1699[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3456[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3456[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3456 -> 1700[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3457[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3457[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3457 -> 1701[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3458[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3458[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3458 -> 1702[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3459[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3459[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3459 -> 1703[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3460[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3460[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3460 -> 1704[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3461[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3461[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3461 -> 1705[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3462[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3462[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3462 -> 1706[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3463[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3463[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3463 -> 1707[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3464[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3464[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3464 -> 1708[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3465[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3465[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3465 -> 1709[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3466[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3466[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3466 -> 1710[label="",style="solid", color="blue", weight=3]; 29.11/13.91 1403[label="vyw103 == vyw105",fontsize=16,color="blue",shape="box"];3467[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 3467[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3467 -> 1711[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3468[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 3468[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3468 -> 1712[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3469[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 3469[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3469 -> 1713[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3470[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 3470[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3470 -> 1714[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3471[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 3471[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3471 -> 1715[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3472[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 3472[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3472 -> 1716[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3473[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 3473[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3473 -> 1717[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3474[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 3474[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3474 -> 1718[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3475[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 3475[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3475 -> 1719[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3476[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 3476[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3476 -> 1720[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3477[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 3477[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3477 -> 1721[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3478[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 3478[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3478 -> 1722[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3479[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 3479[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3479 -> 1723[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3480[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 3480[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3480 -> 1724[label="",style="solid", color="blue", weight=3]; 29.11/13.91 1404[label="compare1 (vyw153,vyw154) (vyw155,vyw156) (False || vyw158)",fontsize=16,color="black",shape="box"];1404 -> 1725[label="",style="solid", color="black", weight=3]; 29.11/13.91 1405[label="compare1 (vyw153,vyw154) (vyw155,vyw156) (True || vyw158)",fontsize=16,color="black",shape="box"];1405 -> 1726[label="",style="solid", color="black", weight=3]; 29.11/13.91 1406[label="primMulNat (Succ vyw5000) vyw3010",fontsize=16,color="burlywood",shape="box"];3481[label="vyw3010/Succ vyw30100",fontsize=10,color="white",style="solid",shape="box"];1406 -> 3481[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3481 -> 1727[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3482[label="vyw3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1406 -> 3482[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3482 -> 1728[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1407[label="primMulNat Zero vyw3010",fontsize=16,color="burlywood",shape="box"];3483[label="vyw3010/Succ vyw30100",fontsize=10,color="white",style="solid",shape="box"];1407 -> 3483[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3483 -> 1729[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3484[label="vyw3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1407 -> 3484[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3484 -> 1730[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1408[label="vyw3010",fontsize=16,color="green",shape="box"];1409[label="vyw500",fontsize=16,color="green",shape="box"];1410[label="vyw500",fontsize=16,color="green",shape="box"];1411[label="vyw3010",fontsize=16,color="green",shape="box"];1412 -> 1357[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1412[label="vyw67 <= vyw68",fontsize=16,color="magenta"];1412 -> 1731[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1412 -> 1732[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1413 -> 1358[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1413[label="vyw67 <= vyw68",fontsize=16,color="magenta"];1413 -> 1733[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1413 -> 1734[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1414 -> 1359[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1414[label="vyw67 <= vyw68",fontsize=16,color="magenta"];1414 -> 1735[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1414 -> 1736[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1415 -> 1360[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1415[label="vyw67 <= vyw68",fontsize=16,color="magenta"];1415 -> 1737[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1415 -> 1738[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1416 -> 1361[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1416[label="vyw67 <= vyw68",fontsize=16,color="magenta"];1416 -> 1739[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1416 -> 1740[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1417 -> 1362[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1417[label="vyw67 <= vyw68",fontsize=16,color="magenta"];1417 -> 1741[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1417 -> 1742[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1418 -> 1363[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1418[label="vyw67 <= vyw68",fontsize=16,color="magenta"];1418 -> 1743[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1418 -> 1744[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1419 -> 1364[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1419[label="vyw67 <= vyw68",fontsize=16,color="magenta"];1419 -> 1745[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1419 -> 1746[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1420 -> 1365[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1420[label="vyw67 <= vyw68",fontsize=16,color="magenta"];1420 -> 1747[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1420 -> 1748[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1421 -> 1366[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1421[label="vyw67 <= vyw68",fontsize=16,color="magenta"];1421 -> 1749[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1421 -> 1750[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1422 -> 1367[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1422[label="vyw67 <= vyw68",fontsize=16,color="magenta"];1422 -> 1751[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1422 -> 1752[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1423 -> 1368[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1423[label="vyw67 <= vyw68",fontsize=16,color="magenta"];1423 -> 1753[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1423 -> 1754[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1424 -> 1369[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1424[label="vyw67 <= vyw68",fontsize=16,color="magenta"];1424 -> 1755[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1424 -> 1756[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1425 -> 1370[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1425[label="vyw67 <= vyw68",fontsize=16,color="magenta"];1425 -> 1757[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1425 -> 1758[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1426[label="compare0 (Left vyw133) (Left vyw134) otherwise",fontsize=16,color="black",shape="box"];1426 -> 1759[label="",style="solid", color="black", weight=3]; 29.11/13.91 1427[label="LT",fontsize=16,color="green",shape="box"];1428 -> 1357[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1428[label="vyw74 <= vyw75",fontsize=16,color="magenta"];1428 -> 1760[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1428 -> 1761[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1429 -> 1358[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1429[label="vyw74 <= vyw75",fontsize=16,color="magenta"];1429 -> 1762[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1429 -> 1763[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1430 -> 1359[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1430[label="vyw74 <= vyw75",fontsize=16,color="magenta"];1430 -> 1764[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1430 -> 1765[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1431 -> 1360[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1431[label="vyw74 <= vyw75",fontsize=16,color="magenta"];1431 -> 1766[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1431 -> 1767[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1432 -> 1361[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1432[label="vyw74 <= vyw75",fontsize=16,color="magenta"];1432 -> 1768[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1432 -> 1769[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1433 -> 1362[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1433[label="vyw74 <= vyw75",fontsize=16,color="magenta"];1433 -> 1770[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1433 -> 1771[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1434 -> 1363[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1434[label="vyw74 <= vyw75",fontsize=16,color="magenta"];1434 -> 1772[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1434 -> 1773[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1435 -> 1364[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1435[label="vyw74 <= vyw75",fontsize=16,color="magenta"];1435 -> 1774[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1435 -> 1775[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1436 -> 1365[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1436[label="vyw74 <= vyw75",fontsize=16,color="magenta"];1436 -> 1776[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1436 -> 1777[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1437 -> 1366[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1437[label="vyw74 <= vyw75",fontsize=16,color="magenta"];1437 -> 1778[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1437 -> 1779[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1438 -> 1367[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1438[label="vyw74 <= vyw75",fontsize=16,color="magenta"];1438 -> 1780[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1438 -> 1781[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1439 -> 1368[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1439[label="vyw74 <= vyw75",fontsize=16,color="magenta"];1439 -> 1782[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1439 -> 1783[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1440 -> 1369[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1440[label="vyw74 <= vyw75",fontsize=16,color="magenta"];1440 -> 1784[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1440 -> 1785[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1441 -> 1370[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1441[label="vyw74 <= vyw75",fontsize=16,color="magenta"];1441 -> 1786[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1441 -> 1787[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1442[label="compare0 (Right vyw141) (Right vyw142) otherwise",fontsize=16,color="black",shape="box"];1442 -> 1788[label="",style="solid", color="black", weight=3]; 29.11/13.91 1443[label="LT",fontsize=16,color="green",shape="box"];1463 -> 2107[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1463[label="vyw86 < vyw89 || vyw86 == vyw89 && vyw87 <= vyw90",fontsize=16,color="magenta"];1463 -> 2108[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1463 -> 2109[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1464[label="vyw85 == vyw88",fontsize=16,color="blue",shape="box"];3485[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 3485[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3485 -> 1791[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3486[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 3486[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3486 -> 1792[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3487[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 3487[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3487 -> 1793[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3488[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 3488[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3488 -> 1794[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3489[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 3489[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3489 -> 1795[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3490[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 3490[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3490 -> 1796[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3491[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 3491[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3491 -> 1797[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3492[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 3492[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3492 -> 1798[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3493[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 3493[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3493 -> 1799[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3494[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 3494[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3494 -> 1800[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3495[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 3495[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3495 -> 1801[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3496[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 3496[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3496 -> 1802[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3497[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 3497[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3497 -> 1803[label="",style="solid", color="blue", weight=3]; 29.11/13.91 3498[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 3498[label="",style="solid", color="blue", weight=9]; 29.11/13.91 3498 -> 1804[label="",style="solid", color="blue", weight=3]; 29.11/13.91 1465 -> 23[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1465[label="vyw85 < vyw88",fontsize=16,color="magenta"];1465 -> 1805[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1465 -> 1806[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1466 -> 24[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1466[label="vyw85 < vyw88",fontsize=16,color="magenta"];1466 -> 1807[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1466 -> 1808[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1467 -> 25[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1467[label="vyw85 < vyw88",fontsize=16,color="magenta"];1467 -> 1809[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1467 -> 1810[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1468 -> 26[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1468[label="vyw85 < vyw88",fontsize=16,color="magenta"];1468 -> 1811[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1468 -> 1812[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1469 -> 27[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1469[label="vyw85 < vyw88",fontsize=16,color="magenta"];1469 -> 1813[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1469 -> 1814[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1470 -> 28[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1470[label="vyw85 < vyw88",fontsize=16,color="magenta"];1470 -> 1815[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1470 -> 1816[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1471 -> 29[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1471[label="vyw85 < vyw88",fontsize=16,color="magenta"];1471 -> 1817[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1471 -> 1818[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1472 -> 30[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1472[label="vyw85 < vyw88",fontsize=16,color="magenta"];1472 -> 1819[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1472 -> 1820[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1473 -> 31[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1473[label="vyw85 < vyw88",fontsize=16,color="magenta"];1473 -> 1821[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1473 -> 1822[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1474 -> 32[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1474[label="vyw85 < vyw88",fontsize=16,color="magenta"];1474 -> 1823[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1474 -> 1824[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1475 -> 33[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1475[label="vyw85 < vyw88",fontsize=16,color="magenta"];1475 -> 1825[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1475 -> 1826[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1476 -> 34[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1476[label="vyw85 < vyw88",fontsize=16,color="magenta"];1476 -> 1827[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1476 -> 1828[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1477 -> 35[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1477[label="vyw85 < vyw88",fontsize=16,color="magenta"];1477 -> 1829[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1477 -> 1830[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1478 -> 36[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1478[label="vyw85 < vyw88",fontsize=16,color="magenta"];1478 -> 1831[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1478 -> 1832[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1479[label="compare1 (vyw168,vyw169,vyw170) (vyw171,vyw172,vyw173) (False || vyw175)",fontsize=16,color="black",shape="box"];1479 -> 1833[label="",style="solid", color="black", weight=3]; 29.11/13.91 1480[label="compare1 (vyw168,vyw169,vyw170) (vyw171,vyw172,vyw173) (True || vyw175)",fontsize=16,color="black",shape="box"];1480 -> 1834[label="",style="solid", color="black", weight=3]; 29.11/13.91 1481 -> 496[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1481[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1481 -> 1835[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1481 -> 1836[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1482 -> 497[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1482[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1482 -> 1837[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1482 -> 1838[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1483 -> 498[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1483[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1483 -> 1839[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1483 -> 1840[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1484 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1484[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1484 -> 1841[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1484 -> 1842[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1485 -> 500[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1485[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1485 -> 1843[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1485 -> 1844[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1486 -> 501[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1486[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1486 -> 1845[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1486 -> 1846[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1487 -> 502[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1487[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1487 -> 1847[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1487 -> 1848[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1488 -> 503[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1488[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1488 -> 1849[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1488 -> 1850[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1489 -> 504[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1489[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1489 -> 1851[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1489 -> 1852[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1490 -> 505[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1490[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1490 -> 1853[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1490 -> 1854[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1491 -> 506[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1491[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1491 -> 1855[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1491 -> 1856[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1492 -> 507[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1492[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1492 -> 1857[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1492 -> 1858[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1493 -> 508[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1493[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1493 -> 1859[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1493 -> 1860[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1494 -> 509[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1494[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1494 -> 1861[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1494 -> 1862[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1495 -> 496[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1495[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1495 -> 1863[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1495 -> 1864[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1496 -> 497[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1496[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1496 -> 1865[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1496 -> 1866[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1497 -> 498[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1497[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1497 -> 1867[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1497 -> 1868[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1498 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1498[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1498 -> 1869[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1498 -> 1870[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1499 -> 500[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1499[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1499 -> 1871[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1499 -> 1872[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1500 -> 501[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1500[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1500 -> 1873[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1500 -> 1874[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1501 -> 502[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1501[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1501 -> 1875[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1501 -> 1876[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1502 -> 503[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1502[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1502 -> 1877[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1502 -> 1878[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1503 -> 504[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1503[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1503 -> 1879[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1503 -> 1880[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1504 -> 505[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1504[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1504 -> 1881[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1504 -> 1882[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1505 -> 506[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1505[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1505 -> 1883[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1505 -> 1884[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1506 -> 507[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1506[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1506 -> 1885[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1506 -> 1886[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1507 -> 508[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1507[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1507 -> 1887[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1507 -> 1888[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1508 -> 509[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1508[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1508 -> 1889[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1508 -> 1890[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1509[label="primEqNat (Succ vyw5000) vyw3000",fontsize=16,color="burlywood",shape="box"];3499[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1509 -> 3499[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3499 -> 1891[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3500[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1509 -> 3500[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3500 -> 1892[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1510[label="primEqNat Zero vyw3000",fontsize=16,color="burlywood",shape="box"];3501[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1510 -> 3501[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3501 -> 1893[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 3502[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1510 -> 3502[label="",style="solid", color="burlywood", weight=9]; 29.11/13.91 3502 -> 1894[label="",style="solid", color="burlywood", weight=3]; 29.11/13.91 1511[label="primEqInt (Pos (Succ vyw5000)) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];1511 -> 1895[label="",style="solid", color="black", weight=3]; 29.11/13.91 1512[label="primEqInt (Pos (Succ vyw5000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1512 -> 1896[label="",style="solid", color="black", weight=3]; 29.11/13.91 1513[label="False",fontsize=16,color="green",shape="box"];1514[label="primEqInt (Pos Zero) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];1514 -> 1897[label="",style="solid", color="black", weight=3]; 29.11/13.91 1515[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1515 -> 1898[label="",style="solid", color="black", weight=3]; 29.11/13.91 1516[label="primEqInt (Pos Zero) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];1516 -> 1899[label="",style="solid", color="black", weight=3]; 29.11/13.91 1517[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1517 -> 1900[label="",style="solid", color="black", weight=3]; 29.11/13.91 1518[label="False",fontsize=16,color="green",shape="box"];1519[label="primEqInt (Neg (Succ vyw5000)) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];1519 -> 1901[label="",style="solid", color="black", weight=3]; 29.11/13.91 1520[label="primEqInt (Neg (Succ vyw5000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1520 -> 1902[label="",style="solid", color="black", weight=3]; 29.11/13.91 1521[label="primEqInt (Neg Zero) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];1521 -> 1903[label="",style="solid", color="black", weight=3]; 29.11/13.91 1522[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1522 -> 1904[label="",style="solid", color="black", weight=3]; 29.11/13.91 1523[label="primEqInt (Neg Zero) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];1523 -> 1905[label="",style="solid", color="black", weight=3]; 29.11/13.91 1524[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1524 -> 1906[label="",style="solid", color="black", weight=3]; 29.11/13.91 1525 -> 369[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1525[label="vyw500 * vyw3001",fontsize=16,color="magenta"];1525 -> 1907[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1525 -> 1908[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1526 -> 369[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1526[label="vyw501 * vyw3000",fontsize=16,color="magenta"];1526 -> 1909[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1526 -> 1910[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1527 -> 369[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1527[label="vyw500 * vyw3001",fontsize=16,color="magenta"];1527 -> 1911[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1527 -> 1912[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1528 -> 369[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1528[label="vyw501 * vyw3000",fontsize=16,color="magenta"];1528 -> 1913[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1528 -> 1914[label="",style="dashed", color="magenta", weight=3]; 29.11/13.91 1529[label="vyw500",fontsize=16,color="green",shape="box"];1530[label="vyw3000",fontsize=16,color="green",shape="box"];1531[label="vyw500",fontsize=16,color="green",shape="box"];1532[label="vyw3000",fontsize=16,color="green",shape="box"];1533[label="vyw500",fontsize=16,color="green",shape="box"];1534[label="vyw3000",fontsize=16,color="green",shape="box"];1535[label="vyw500",fontsize=16,color="green",shape="box"];1536[label="vyw3000",fontsize=16,color="green",shape="box"];1537[label="vyw500",fontsize=16,color="green",shape="box"];1538[label="vyw3000",fontsize=16,color="green",shape="box"];1539[label="vyw500",fontsize=16,color="green",shape="box"];1540[label="vyw3000",fontsize=16,color="green",shape="box"];1541[label="vyw500",fontsize=16,color="green",shape="box"];1542[label="vyw3000",fontsize=16,color="green",shape="box"];1543[label="vyw500",fontsize=16,color="green",shape="box"];1544[label="vyw3000",fontsize=16,color="green",shape="box"];1545[label="vyw500",fontsize=16,color="green",shape="box"];1546[label="vyw3000",fontsize=16,color="green",shape="box"];1547[label="vyw500",fontsize=16,color="green",shape="box"];1548[label="vyw3000",fontsize=16,color="green",shape="box"];1549[label="vyw500",fontsize=16,color="green",shape="box"];1550[label="vyw3000",fontsize=16,color="green",shape="box"];1551[label="vyw500",fontsize=16,color="green",shape="box"];1552[label="vyw3000",fontsize=16,color="green",shape="box"];1553[label="vyw500",fontsize=16,color="green",shape="box"];1554[label="vyw3000",fontsize=16,color="green",shape="box"];1555[label="vyw500",fontsize=16,color="green",shape="box"];1556[label="vyw3000",fontsize=16,color="green",shape="box"];1557[label="vyw500",fontsize=16,color="green",shape="box"];1558[label="vyw3000",fontsize=16,color="green",shape="box"];1559[label="vyw500",fontsize=16,color="green",shape="box"];1560[label="vyw3000",fontsize=16,color="green",shape="box"];1561[label="vyw500",fontsize=16,color="green",shape="box"];1562[label="vyw3000",fontsize=16,color="green",shape="box"];1563[label="vyw500",fontsize=16,color="green",shape="box"];1564[label="vyw3000",fontsize=16,color="green",shape="box"];1565[label="vyw500",fontsize=16,color="green",shape="box"];1566[label="vyw3000",fontsize=16,color="green",shape="box"];1567[label="vyw500",fontsize=16,color="green",shape="box"];1568[label="vyw3000",fontsize=16,color="green",shape="box"];1569[label="vyw500",fontsize=16,color="green",shape="box"];1570[label="vyw3000",fontsize=16,color="green",shape="box"];1571[label="vyw500",fontsize=16,color="green",shape="box"];1572[label="vyw3000",fontsize=16,color="green",shape="box"];1573[label="vyw500",fontsize=16,color="green",shape="box"];1574[label="vyw3000",fontsize=16,color="green",shape="box"];1575[label="vyw500",fontsize=16,color="green",shape="box"];1576[label="vyw3000",fontsize=16,color="green",shape="box"];1577[label="vyw500",fontsize=16,color="green",shape="box"];1578[label="vyw3000",fontsize=16,color="green",shape="box"];1579[label="vyw500",fontsize=16,color="green",shape="box"];1580[label="vyw3000",fontsize=16,color="green",shape="box"];1581[label="vyw500",fontsize=16,color="green",shape="box"];1582[label="vyw3000",fontsize=16,color="green",shape="box"];1583[label="vyw500",fontsize=16,color="green",shape="box"];1584[label="vyw3000",fontsize=16,color="green",shape="box"];1585[label="vyw500",fontsize=16,color="green",shape="box"];1586[label="vyw3000",fontsize=16,color="green",shape="box"];1587[label="vyw500",fontsize=16,color="green",shape="box"];1588[label="vyw3000",fontsize=16,color="green",shape="box"];1589[label="vyw500",fontsize=16,color="green",shape="box"];1590[label="vyw3000",fontsize=16,color="green",shape="box"];1591[label="vyw500",fontsize=16,color="green",shape="box"];1592[label="vyw3000",fontsize=16,color="green",shape="box"];1593[label="vyw500",fontsize=16,color="green",shape="box"];1594[label="vyw3000",fontsize=16,color="green",shape="box"];1595[label="vyw500",fontsize=16,color="green",shape="box"];1596[label="vyw3000",fontsize=16,color="green",shape="box"];1597[label="vyw500",fontsize=16,color="green",shape="box"];1598[label="vyw3000",fontsize=16,color="green",shape="box"];1599[label="vyw500",fontsize=16,color="green",shape="box"];1600[label="vyw3000",fontsize=16,color="green",shape="box"];1601[label="vyw500",fontsize=16,color="green",shape="box"];1602[label="vyw3000",fontsize=16,color="green",shape="box"];1603[label="vyw500",fontsize=16,color="green",shape="box"];1604[label="vyw3000",fontsize=16,color="green",shape="box"];1605[label="vyw500",fontsize=16,color="green",shape="box"];1606[label="vyw3000",fontsize=16,color="green",shape="box"];1607[label="vyw500",fontsize=16,color="green",shape="box"];1608[label="vyw3000",fontsize=16,color="green",shape="box"];1609[label="vyw500",fontsize=16,color="green",shape="box"];1610[label="vyw3000",fontsize=16,color="green",shape="box"];1611[label="vyw500",fontsize=16,color="green",shape="box"];1612[label="vyw3000",fontsize=16,color="green",shape="box"];1613[label="vyw501",fontsize=16,color="green",shape="box"];1614[label="vyw3001",fontsize=16,color="green",shape="box"];1615 -> 496[label="",style="dashed", color="red", weight=0]; 29.11/13.91 1615[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1615 -> 1915[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1615 -> 1916[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1616 -> 497[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1616[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1616 -> 1917[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1616 -> 1918[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1617 -> 498[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1617[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1617 -> 1919[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1617 -> 1920[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1618 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1618[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1618 -> 1921[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1618 -> 1922[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1619 -> 500[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1619[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1619 -> 1923[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1619 -> 1924[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1620 -> 501[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1620[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1620 -> 1925[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1620 -> 1926[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1621 -> 502[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1621[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1621 -> 1927[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1621 -> 1928[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1622 -> 503[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1622[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1622 -> 1929[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1622 -> 1930[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1623 -> 504[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1623[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1623 -> 1931[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1623 -> 1932[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1624 -> 505[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1624[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1624 -> 1933[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1624 -> 1934[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1625 -> 506[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1625[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1625 -> 1935[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1625 -> 1936[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1626 -> 507[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1626[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1626 -> 1937[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1626 -> 1938[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1627 -> 508[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1627[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1627 -> 1939[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1627 -> 1940[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1628 -> 509[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1628[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1628 -> 1941[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1628 -> 1942[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1629[label="vyw502 == vyw3002",fontsize=16,color="blue",shape="box"];3503[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 3503[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3503 -> 1943[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3504[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 3504[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3504 -> 1944[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3505[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 3505[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3505 -> 1945[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3506[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 3506[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3506 -> 1946[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3507[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 3507[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3507 -> 1947[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3508[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 3508[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3508 -> 1948[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3509[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 3509[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3509 -> 1949[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3510[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 3510[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3510 -> 1950[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3511[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 3511[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3511 -> 1951[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3512[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 3512[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3512 -> 1952[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3513[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 3513[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3513 -> 1953[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3514[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 3514[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3514 -> 1954[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3515[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 3515[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3515 -> 1955[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3516[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 3516[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3516 -> 1956[label="",style="solid", color="blue", weight=3]; 29.11/13.92 1630[label="vyw501 == vyw3001",fontsize=16,color="blue",shape="box"];3517[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 3517[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3517 -> 1957[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3518[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 3518[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3518 -> 1958[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3519[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 3519[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3519 -> 1959[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3520[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 3520[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3520 -> 1960[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3521[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 3521[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3521 -> 1961[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3522[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 3522[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3522 -> 1962[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3523[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 3523[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3523 -> 1963[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3524[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 3524[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3524 -> 1964[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3525[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 3525[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3525 -> 1965[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3526[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 3526[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3526 -> 1966[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3527[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 3527[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3527 -> 1967[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3528[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 3528[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3528 -> 1968[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3529[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 3529[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3529 -> 1969[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3530[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 3530[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3530 -> 1970[label="",style="solid", color="blue", weight=3]; 29.11/13.92 1631 -> 496[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1631[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1631 -> 1971[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1631 -> 1972[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1632 -> 497[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1632[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1632 -> 1973[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1632 -> 1974[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1633 -> 498[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1633[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1633 -> 1975[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1633 -> 1976[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1634 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1634[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1634 -> 1977[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1634 -> 1978[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1635 -> 500[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1635[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1635 -> 1979[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1635 -> 1980[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1636 -> 501[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1636[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1636 -> 1981[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1636 -> 1982[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1637 -> 502[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1637[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1637 -> 1983[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1637 -> 1984[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1638 -> 503[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1638[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1638 -> 1985[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1638 -> 1986[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1639 -> 504[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1639[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1639 -> 1987[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1639 -> 1988[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1640 -> 505[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1640[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1640 -> 1989[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1640 -> 1990[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1641 -> 506[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1641[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1641 -> 1991[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1641 -> 1992[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1642 -> 507[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1642[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1642 -> 1993[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1642 -> 1994[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1643 -> 508[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1643[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1643 -> 1995[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1643 -> 1996[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1644 -> 509[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1644[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1644 -> 1997[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1644 -> 1998[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1645 -> 496[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1645[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1645 -> 1999[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1645 -> 2000[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1646 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1646[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1646 -> 2001[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1646 -> 2002[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1647 -> 496[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1647[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1647 -> 2003[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1647 -> 2004[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1648 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1648[label="vyw500 == vyw3000",fontsize=16,color="magenta"];1648 -> 2005[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1648 -> 2006[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1649[label="Nothing <= vyw50",fontsize=16,color="burlywood",shape="box"];3531[label="vyw50/Nothing",fontsize=10,color="white",style="solid",shape="box"];1649 -> 3531[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3531 -> 2007[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 3532[label="vyw50/Just vyw500",fontsize=10,color="white",style="solid",shape="box"];1649 -> 3532[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3532 -> 2008[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 1650[label="Just vyw490 <= vyw50",fontsize=16,color="burlywood",shape="box"];3533[label="vyw50/Nothing",fontsize=10,color="white",style="solid",shape="box"];1650 -> 3533[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3533 -> 2009[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 3534[label="vyw50/Just vyw500",fontsize=10,color="white",style="solid",shape="box"];1650 -> 3534[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3534 -> 2010[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 1651[label="(vyw490,vyw491) <= vyw50",fontsize=16,color="burlywood",shape="box"];3535[label="vyw50/(vyw500,vyw501)",fontsize=10,color="white",style="solid",shape="box"];1651 -> 3535[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3535 -> 2011[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 1652 -> 2012[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1652[label="compare vyw49 vyw50 /= GT",fontsize=16,color="magenta"];1652 -> 2013[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1653[label="LT <= vyw50",fontsize=16,color="burlywood",shape="box"];3536[label="vyw50/LT",fontsize=10,color="white",style="solid",shape="box"];1653 -> 3536[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3536 -> 2021[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 3537[label="vyw50/EQ",fontsize=10,color="white",style="solid",shape="box"];1653 -> 3537[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3537 -> 2022[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 3538[label="vyw50/GT",fontsize=10,color="white",style="solid",shape="box"];1653 -> 3538[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3538 -> 2023[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 1654[label="EQ <= vyw50",fontsize=16,color="burlywood",shape="box"];3539[label="vyw50/LT",fontsize=10,color="white",style="solid",shape="box"];1654 -> 3539[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3539 -> 2024[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 3540[label="vyw50/EQ",fontsize=10,color="white",style="solid",shape="box"];1654 -> 3540[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3540 -> 2025[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 3541[label="vyw50/GT",fontsize=10,color="white",style="solid",shape="box"];1654 -> 3541[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3541 -> 2026[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 1655[label="GT <= vyw50",fontsize=16,color="burlywood",shape="box"];3542[label="vyw50/LT",fontsize=10,color="white",style="solid",shape="box"];1655 -> 3542[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3542 -> 2027[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 3543[label="vyw50/EQ",fontsize=10,color="white",style="solid",shape="box"];1655 -> 3543[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3543 -> 2028[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 3544[label="vyw50/GT",fontsize=10,color="white",style="solid",shape="box"];1655 -> 3544[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3544 -> 2029[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 1656 -> 2012[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1656[label="compare vyw49 vyw50 /= GT",fontsize=16,color="magenta"];1656 -> 2014[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1657 -> 2012[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1657[label="compare vyw49 vyw50 /= GT",fontsize=16,color="magenta"];1657 -> 2015[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1658 -> 2012[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1658[label="compare vyw49 vyw50 /= GT",fontsize=16,color="magenta"];1658 -> 2016[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1659 -> 2012[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1659[label="compare vyw49 vyw50 /= GT",fontsize=16,color="magenta"];1659 -> 2017[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1660 -> 2012[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1660[label="compare vyw49 vyw50 /= GT",fontsize=16,color="magenta"];1660 -> 2018[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1661[label="Left vyw490 <= vyw50",fontsize=16,color="burlywood",shape="box"];3545[label="vyw50/Left vyw500",fontsize=10,color="white",style="solid",shape="box"];1661 -> 3545[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3545 -> 2030[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 3546[label="vyw50/Right vyw500",fontsize=10,color="white",style="solid",shape="box"];1661 -> 3546[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3546 -> 2031[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 1662[label="Right vyw490 <= vyw50",fontsize=16,color="burlywood",shape="box"];3547[label="vyw50/Left vyw500",fontsize=10,color="white",style="solid",shape="box"];1662 -> 3547[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3547 -> 2032[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 3548[label="vyw50/Right vyw500",fontsize=10,color="white",style="solid",shape="box"];1662 -> 3548[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3548 -> 2033[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 1663[label="False <= vyw50",fontsize=16,color="burlywood",shape="box"];3549[label="vyw50/False",fontsize=10,color="white",style="solid",shape="box"];1663 -> 3549[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3549 -> 2034[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 3550[label="vyw50/True",fontsize=10,color="white",style="solid",shape="box"];1663 -> 3550[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3550 -> 2035[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 1664[label="True <= vyw50",fontsize=16,color="burlywood",shape="box"];3551[label="vyw50/False",fontsize=10,color="white",style="solid",shape="box"];1664 -> 3551[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3551 -> 2036[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 3552[label="vyw50/True",fontsize=10,color="white",style="solid",shape="box"];1664 -> 3552[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3552 -> 2037[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 1665 -> 2012[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1665[label="compare vyw49 vyw50 /= GT",fontsize=16,color="magenta"];1665 -> 2019[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1666[label="(vyw490,vyw491,vyw492) <= vyw50",fontsize=16,color="burlywood",shape="box"];3553[label="vyw50/(vyw500,vyw501,vyw502)",fontsize=10,color="white",style="solid",shape="box"];1666 -> 3553[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3553 -> 2038[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 1667 -> 2012[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1667[label="compare vyw49 vyw50 /= GT",fontsize=16,color="magenta"];1667 -> 2020[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1668[label="compare0 (Just vyw126) (Just vyw127) True",fontsize=16,color="black",shape="box"];1668 -> 2039[label="",style="solid", color="black", weight=3]; 29.11/13.92 1669[label="vyw103",fontsize=16,color="green",shape="box"];1670[label="vyw105",fontsize=16,color="green",shape="box"];1671[label="vyw103",fontsize=16,color="green",shape="box"];1672[label="vyw105",fontsize=16,color="green",shape="box"];1673[label="vyw103",fontsize=16,color="green",shape="box"];1674[label="vyw105",fontsize=16,color="green",shape="box"];1675[label="vyw103",fontsize=16,color="green",shape="box"];1676[label="vyw105",fontsize=16,color="green",shape="box"];1677[label="vyw103",fontsize=16,color="green",shape="box"];1678[label="vyw105",fontsize=16,color="green",shape="box"];1679[label="vyw103",fontsize=16,color="green",shape="box"];1680[label="vyw105",fontsize=16,color="green",shape="box"];1681[label="vyw103",fontsize=16,color="green",shape="box"];1682[label="vyw105",fontsize=16,color="green",shape="box"];1683[label="vyw103",fontsize=16,color="green",shape="box"];1684[label="vyw105",fontsize=16,color="green",shape="box"];1685[label="vyw103",fontsize=16,color="green",shape="box"];1686[label="vyw105",fontsize=16,color="green",shape="box"];1687[label="vyw103",fontsize=16,color="green",shape="box"];1688[label="vyw105",fontsize=16,color="green",shape="box"];1689[label="vyw103",fontsize=16,color="green",shape="box"];1690[label="vyw105",fontsize=16,color="green",shape="box"];1691[label="vyw103",fontsize=16,color="green",shape="box"];1692[label="vyw105",fontsize=16,color="green",shape="box"];1693[label="vyw103",fontsize=16,color="green",shape="box"];1694[label="vyw105",fontsize=16,color="green",shape="box"];1695[label="vyw103",fontsize=16,color="green",shape="box"];1696[label="vyw105",fontsize=16,color="green",shape="box"];1697 -> 1357[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1697[label="vyw104 <= vyw106",fontsize=16,color="magenta"];1697 -> 2040[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1697 -> 2041[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1698 -> 1358[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1698[label="vyw104 <= vyw106",fontsize=16,color="magenta"];1698 -> 2042[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1698 -> 2043[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1699 -> 1359[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1699[label="vyw104 <= vyw106",fontsize=16,color="magenta"];1699 -> 2044[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1699 -> 2045[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1700 -> 1360[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1700[label="vyw104 <= vyw106",fontsize=16,color="magenta"];1700 -> 2046[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1700 -> 2047[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1701 -> 1361[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1701[label="vyw104 <= vyw106",fontsize=16,color="magenta"];1701 -> 2048[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1701 -> 2049[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1702 -> 1362[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1702[label="vyw104 <= vyw106",fontsize=16,color="magenta"];1702 -> 2050[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1702 -> 2051[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1703 -> 1363[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1703[label="vyw104 <= vyw106",fontsize=16,color="magenta"];1703 -> 2052[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1703 -> 2053[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1704 -> 1364[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1704[label="vyw104 <= vyw106",fontsize=16,color="magenta"];1704 -> 2054[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1704 -> 2055[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1705 -> 1365[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1705[label="vyw104 <= vyw106",fontsize=16,color="magenta"];1705 -> 2056[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1705 -> 2057[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1706 -> 1366[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1706[label="vyw104 <= vyw106",fontsize=16,color="magenta"];1706 -> 2058[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1706 -> 2059[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1707 -> 1367[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1707[label="vyw104 <= vyw106",fontsize=16,color="magenta"];1707 -> 2060[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1707 -> 2061[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1708 -> 1368[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1708[label="vyw104 <= vyw106",fontsize=16,color="magenta"];1708 -> 2062[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1708 -> 2063[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1709 -> 1369[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1709[label="vyw104 <= vyw106",fontsize=16,color="magenta"];1709 -> 2064[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1709 -> 2065[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1710 -> 1370[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1710[label="vyw104 <= vyw106",fontsize=16,color="magenta"];1710 -> 2066[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1710 -> 2067[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1711 -> 503[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1711[label="vyw103 == vyw105",fontsize=16,color="magenta"];1711 -> 2068[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1711 -> 2069[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1712 -> 497[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1712[label="vyw103 == vyw105",fontsize=16,color="magenta"];1712 -> 2070[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1712 -> 2071[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1713 -> 508[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1713[label="vyw103 == vyw105",fontsize=16,color="magenta"];1713 -> 2072[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1713 -> 2073[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1714 -> 509[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1714[label="vyw103 == vyw105",fontsize=16,color="magenta"];1714 -> 2074[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1714 -> 2075[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1715 -> 500[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1715[label="vyw103 == vyw105",fontsize=16,color="magenta"];1715 -> 2076[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1715 -> 2077[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1716 -> 501[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1716[label="vyw103 == vyw105",fontsize=16,color="magenta"];1716 -> 2078[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1716 -> 2079[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1717 -> 498[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1717[label="vyw103 == vyw105",fontsize=16,color="magenta"];1717 -> 2080[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1717 -> 2081[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1718 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1718[label="vyw103 == vyw105",fontsize=16,color="magenta"];1718 -> 2082[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1718 -> 2083[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1719 -> 496[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1719[label="vyw103 == vyw105",fontsize=16,color="magenta"];1719 -> 2084[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1719 -> 2085[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1720 -> 504[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1720[label="vyw103 == vyw105",fontsize=16,color="magenta"];1720 -> 2086[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1720 -> 2087[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1721 -> 505[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1721[label="vyw103 == vyw105",fontsize=16,color="magenta"];1721 -> 2088[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1721 -> 2089[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1722 -> 502[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1722[label="vyw103 == vyw105",fontsize=16,color="magenta"];1722 -> 2090[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1722 -> 2091[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1723 -> 507[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1723[label="vyw103 == vyw105",fontsize=16,color="magenta"];1723 -> 2092[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1723 -> 2093[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1724 -> 506[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1724[label="vyw103 == vyw105",fontsize=16,color="magenta"];1724 -> 2094[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1724 -> 2095[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1725[label="compare1 (vyw153,vyw154) (vyw155,vyw156) vyw158",fontsize=16,color="burlywood",shape="triangle"];3554[label="vyw158/False",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3554[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3554 -> 2096[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 3555[label="vyw158/True",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3555[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3555 -> 2097[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 1726 -> 1725[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1726[label="compare1 (vyw153,vyw154) (vyw155,vyw156) True",fontsize=16,color="magenta"];1726 -> 2098[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1727[label="primMulNat (Succ vyw5000) (Succ vyw30100)",fontsize=16,color="black",shape="box"];1727 -> 2099[label="",style="solid", color="black", weight=3]; 29.11/13.92 1728[label="primMulNat (Succ vyw5000) Zero",fontsize=16,color="black",shape="box"];1728 -> 2100[label="",style="solid", color="black", weight=3]; 29.11/13.92 1729[label="primMulNat Zero (Succ vyw30100)",fontsize=16,color="black",shape="box"];1729 -> 2101[label="",style="solid", color="black", weight=3]; 29.11/13.92 1730[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1730 -> 2102[label="",style="solid", color="black", weight=3]; 29.11/13.92 1731[label="vyw68",fontsize=16,color="green",shape="box"];1732[label="vyw67",fontsize=16,color="green",shape="box"];1733[label="vyw68",fontsize=16,color="green",shape="box"];1734[label="vyw67",fontsize=16,color="green",shape="box"];1735[label="vyw68",fontsize=16,color="green",shape="box"];1736[label="vyw67",fontsize=16,color="green",shape="box"];1737[label="vyw68",fontsize=16,color="green",shape="box"];1738[label="vyw67",fontsize=16,color="green",shape="box"];1739[label="vyw68",fontsize=16,color="green",shape="box"];1740[label="vyw67",fontsize=16,color="green",shape="box"];1741[label="vyw68",fontsize=16,color="green",shape="box"];1742[label="vyw67",fontsize=16,color="green",shape="box"];1743[label="vyw68",fontsize=16,color="green",shape="box"];1744[label="vyw67",fontsize=16,color="green",shape="box"];1745[label="vyw68",fontsize=16,color="green",shape="box"];1746[label="vyw67",fontsize=16,color="green",shape="box"];1747[label="vyw68",fontsize=16,color="green",shape="box"];1748[label="vyw67",fontsize=16,color="green",shape="box"];1749[label="vyw68",fontsize=16,color="green",shape="box"];1750[label="vyw67",fontsize=16,color="green",shape="box"];1751[label="vyw68",fontsize=16,color="green",shape="box"];1752[label="vyw67",fontsize=16,color="green",shape="box"];1753[label="vyw68",fontsize=16,color="green",shape="box"];1754[label="vyw67",fontsize=16,color="green",shape="box"];1755[label="vyw68",fontsize=16,color="green",shape="box"];1756[label="vyw67",fontsize=16,color="green",shape="box"];1757[label="vyw68",fontsize=16,color="green",shape="box"];1758[label="vyw67",fontsize=16,color="green",shape="box"];1759[label="compare0 (Left vyw133) (Left vyw134) True",fontsize=16,color="black",shape="box"];1759 -> 2103[label="",style="solid", color="black", weight=3]; 29.11/13.92 1760[label="vyw75",fontsize=16,color="green",shape="box"];1761[label="vyw74",fontsize=16,color="green",shape="box"];1762[label="vyw75",fontsize=16,color="green",shape="box"];1763[label="vyw74",fontsize=16,color="green",shape="box"];1764[label="vyw75",fontsize=16,color="green",shape="box"];1765[label="vyw74",fontsize=16,color="green",shape="box"];1766[label="vyw75",fontsize=16,color="green",shape="box"];1767[label="vyw74",fontsize=16,color="green",shape="box"];1768[label="vyw75",fontsize=16,color="green",shape="box"];1769[label="vyw74",fontsize=16,color="green",shape="box"];1770[label="vyw75",fontsize=16,color="green",shape="box"];1771[label="vyw74",fontsize=16,color="green",shape="box"];1772[label="vyw75",fontsize=16,color="green",shape="box"];1773[label="vyw74",fontsize=16,color="green",shape="box"];1774[label="vyw75",fontsize=16,color="green",shape="box"];1775[label="vyw74",fontsize=16,color="green",shape="box"];1776[label="vyw75",fontsize=16,color="green",shape="box"];1777[label="vyw74",fontsize=16,color="green",shape="box"];1778[label="vyw75",fontsize=16,color="green",shape="box"];1779[label="vyw74",fontsize=16,color="green",shape="box"];1780[label="vyw75",fontsize=16,color="green",shape="box"];1781[label="vyw74",fontsize=16,color="green",shape="box"];1782[label="vyw75",fontsize=16,color="green",shape="box"];1783[label="vyw74",fontsize=16,color="green",shape="box"];1784[label="vyw75",fontsize=16,color="green",shape="box"];1785[label="vyw74",fontsize=16,color="green",shape="box"];1786[label="vyw75",fontsize=16,color="green",shape="box"];1787[label="vyw74",fontsize=16,color="green",shape="box"];1788[label="compare0 (Right vyw141) (Right vyw142) True",fontsize=16,color="black",shape="box"];1788 -> 2104[label="",style="solid", color="black", weight=3]; 29.11/13.92 2108[label="vyw86 < vyw89",fontsize=16,color="blue",shape="box"];3556[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2108 -> 3556[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3556 -> 2112[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3557[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2108 -> 3557[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3557 -> 2113[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3558[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2108 -> 3558[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3558 -> 2114[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3559[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2108 -> 3559[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3559 -> 2115[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3560[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2108 -> 3560[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3560 -> 2116[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3561[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2108 -> 3561[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3561 -> 2117[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3562[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2108 -> 3562[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3562 -> 2118[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3563[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2108 -> 3563[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3563 -> 2119[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3564[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2108 -> 3564[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3564 -> 2120[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3565[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2108 -> 3565[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3565 -> 2121[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3566[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2108 -> 3566[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3566 -> 2122[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3567[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2108 -> 3567[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3567 -> 2123[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3568[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2108 -> 3568[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3568 -> 2124[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3569[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2108 -> 3569[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3569 -> 2125[label="",style="solid", color="blue", weight=3]; 29.11/13.92 2109 -> 980[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2109[label="vyw86 == vyw89 && vyw87 <= vyw90",fontsize=16,color="magenta"];2109 -> 2126[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2109 -> 2127[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2107[label="vyw181 || vyw182",fontsize=16,color="burlywood",shape="triangle"];3570[label="vyw181/False",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3570[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3570 -> 2128[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 3571[label="vyw181/True",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3571[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3571 -> 2129[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 1791 -> 503[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1791[label="vyw85 == vyw88",fontsize=16,color="magenta"];1791 -> 2130[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1791 -> 2131[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1792 -> 497[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1792[label="vyw85 == vyw88",fontsize=16,color="magenta"];1792 -> 2132[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1792 -> 2133[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1793 -> 508[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1793[label="vyw85 == vyw88",fontsize=16,color="magenta"];1793 -> 2134[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1793 -> 2135[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1794 -> 509[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1794[label="vyw85 == vyw88",fontsize=16,color="magenta"];1794 -> 2136[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1794 -> 2137[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1795 -> 500[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1795[label="vyw85 == vyw88",fontsize=16,color="magenta"];1795 -> 2138[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1795 -> 2139[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1796 -> 501[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1796[label="vyw85 == vyw88",fontsize=16,color="magenta"];1796 -> 2140[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1796 -> 2141[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1797 -> 498[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1797[label="vyw85 == vyw88",fontsize=16,color="magenta"];1797 -> 2142[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1797 -> 2143[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1798 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1798[label="vyw85 == vyw88",fontsize=16,color="magenta"];1798 -> 2144[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1798 -> 2145[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1799 -> 496[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1799[label="vyw85 == vyw88",fontsize=16,color="magenta"];1799 -> 2146[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1799 -> 2147[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1800 -> 504[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1800[label="vyw85 == vyw88",fontsize=16,color="magenta"];1800 -> 2148[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1800 -> 2149[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1801 -> 505[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1801[label="vyw85 == vyw88",fontsize=16,color="magenta"];1801 -> 2150[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1801 -> 2151[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1802 -> 502[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1802[label="vyw85 == vyw88",fontsize=16,color="magenta"];1802 -> 2152[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1802 -> 2153[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1803 -> 507[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1803[label="vyw85 == vyw88",fontsize=16,color="magenta"];1803 -> 2154[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1803 -> 2155[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1804 -> 506[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1804[label="vyw85 == vyw88",fontsize=16,color="magenta"];1804 -> 2156[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1804 -> 2157[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1805[label="vyw85",fontsize=16,color="green",shape="box"];1806[label="vyw88",fontsize=16,color="green",shape="box"];1807[label="vyw85",fontsize=16,color="green",shape="box"];1808[label="vyw88",fontsize=16,color="green",shape="box"];1809[label="vyw85",fontsize=16,color="green",shape="box"];1810[label="vyw88",fontsize=16,color="green",shape="box"];1811[label="vyw85",fontsize=16,color="green",shape="box"];1812[label="vyw88",fontsize=16,color="green",shape="box"];1813[label="vyw85",fontsize=16,color="green",shape="box"];1814[label="vyw88",fontsize=16,color="green",shape="box"];1815[label="vyw85",fontsize=16,color="green",shape="box"];1816[label="vyw88",fontsize=16,color="green",shape="box"];1817[label="vyw85",fontsize=16,color="green",shape="box"];1818[label="vyw88",fontsize=16,color="green",shape="box"];1819[label="vyw85",fontsize=16,color="green",shape="box"];1820[label="vyw88",fontsize=16,color="green",shape="box"];1821[label="vyw85",fontsize=16,color="green",shape="box"];1822[label="vyw88",fontsize=16,color="green",shape="box"];1823[label="vyw85",fontsize=16,color="green",shape="box"];1824[label="vyw88",fontsize=16,color="green",shape="box"];1825[label="vyw85",fontsize=16,color="green",shape="box"];1826[label="vyw88",fontsize=16,color="green",shape="box"];1827[label="vyw85",fontsize=16,color="green",shape="box"];1828[label="vyw88",fontsize=16,color="green",shape="box"];1829[label="vyw85",fontsize=16,color="green",shape="box"];1830[label="vyw88",fontsize=16,color="green",shape="box"];1831[label="vyw85",fontsize=16,color="green",shape="box"];1832[label="vyw88",fontsize=16,color="green",shape="box"];1833[label="compare1 (vyw168,vyw169,vyw170) (vyw171,vyw172,vyw173) vyw175",fontsize=16,color="burlywood",shape="triangle"];3572[label="vyw175/False",fontsize=10,color="white",style="solid",shape="box"];1833 -> 3572[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3572 -> 2158[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 3573[label="vyw175/True",fontsize=10,color="white",style="solid",shape="box"];1833 -> 3573[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3573 -> 2159[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 1834 -> 1833[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1834[label="compare1 (vyw168,vyw169,vyw170) (vyw171,vyw172,vyw173) True",fontsize=16,color="magenta"];1834 -> 2160[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1835[label="vyw501",fontsize=16,color="green",shape="box"];1836[label="vyw3001",fontsize=16,color="green",shape="box"];1837[label="vyw501",fontsize=16,color="green",shape="box"];1838[label="vyw3001",fontsize=16,color="green",shape="box"];1839[label="vyw501",fontsize=16,color="green",shape="box"];1840[label="vyw3001",fontsize=16,color="green",shape="box"];1841[label="vyw501",fontsize=16,color="green",shape="box"];1842[label="vyw3001",fontsize=16,color="green",shape="box"];1843[label="vyw501",fontsize=16,color="green",shape="box"];1844[label="vyw3001",fontsize=16,color="green",shape="box"];1845[label="vyw501",fontsize=16,color="green",shape="box"];1846[label="vyw3001",fontsize=16,color="green",shape="box"];1847[label="vyw501",fontsize=16,color="green",shape="box"];1848[label="vyw3001",fontsize=16,color="green",shape="box"];1849[label="vyw501",fontsize=16,color="green",shape="box"];1850[label="vyw3001",fontsize=16,color="green",shape="box"];1851[label="vyw501",fontsize=16,color="green",shape="box"];1852[label="vyw3001",fontsize=16,color="green",shape="box"];1853[label="vyw501",fontsize=16,color="green",shape="box"];1854[label="vyw3001",fontsize=16,color="green",shape="box"];1855[label="vyw501",fontsize=16,color="green",shape="box"];1856[label="vyw3001",fontsize=16,color="green",shape="box"];1857[label="vyw501",fontsize=16,color="green",shape="box"];1858[label="vyw3001",fontsize=16,color="green",shape="box"];1859[label="vyw501",fontsize=16,color="green",shape="box"];1860[label="vyw3001",fontsize=16,color="green",shape="box"];1861[label="vyw501",fontsize=16,color="green",shape="box"];1862[label="vyw3001",fontsize=16,color="green",shape="box"];1863[label="vyw500",fontsize=16,color="green",shape="box"];1864[label="vyw3000",fontsize=16,color="green",shape="box"];1865[label="vyw500",fontsize=16,color="green",shape="box"];1866[label="vyw3000",fontsize=16,color="green",shape="box"];1867[label="vyw500",fontsize=16,color="green",shape="box"];1868[label="vyw3000",fontsize=16,color="green",shape="box"];1869[label="vyw500",fontsize=16,color="green",shape="box"];1870[label="vyw3000",fontsize=16,color="green",shape="box"];1871[label="vyw500",fontsize=16,color="green",shape="box"];1872[label="vyw3000",fontsize=16,color="green",shape="box"];1873[label="vyw500",fontsize=16,color="green",shape="box"];1874[label="vyw3000",fontsize=16,color="green",shape="box"];1875[label="vyw500",fontsize=16,color="green",shape="box"];1876[label="vyw3000",fontsize=16,color="green",shape="box"];1877[label="vyw500",fontsize=16,color="green",shape="box"];1878[label="vyw3000",fontsize=16,color="green",shape="box"];1879[label="vyw500",fontsize=16,color="green",shape="box"];1880[label="vyw3000",fontsize=16,color="green",shape="box"];1881[label="vyw500",fontsize=16,color="green",shape="box"];1882[label="vyw3000",fontsize=16,color="green",shape="box"];1883[label="vyw500",fontsize=16,color="green",shape="box"];1884[label="vyw3000",fontsize=16,color="green",shape="box"];1885[label="vyw500",fontsize=16,color="green",shape="box"];1886[label="vyw3000",fontsize=16,color="green",shape="box"];1887[label="vyw500",fontsize=16,color="green",shape="box"];1888[label="vyw3000",fontsize=16,color="green",shape="box"];1889[label="vyw500",fontsize=16,color="green",shape="box"];1890[label="vyw3000",fontsize=16,color="green",shape="box"];1891[label="primEqNat (Succ vyw5000) (Succ vyw30000)",fontsize=16,color="black",shape="box"];1891 -> 2161[label="",style="solid", color="black", weight=3]; 29.11/13.92 1892[label="primEqNat (Succ vyw5000) Zero",fontsize=16,color="black",shape="box"];1892 -> 2162[label="",style="solid", color="black", weight=3]; 29.11/13.92 1893[label="primEqNat Zero (Succ vyw30000)",fontsize=16,color="black",shape="box"];1893 -> 2163[label="",style="solid", color="black", weight=3]; 29.11/13.92 1894[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1894 -> 2164[label="",style="solid", color="black", weight=3]; 29.11/13.92 1895 -> 1298[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1895[label="primEqNat vyw5000 vyw30000",fontsize=16,color="magenta"];1895 -> 2165[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1895 -> 2166[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1896[label="False",fontsize=16,color="green",shape="box"];1897[label="False",fontsize=16,color="green",shape="box"];1898[label="True",fontsize=16,color="green",shape="box"];1899[label="False",fontsize=16,color="green",shape="box"];1900[label="True",fontsize=16,color="green",shape="box"];1901 -> 1298[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1901[label="primEqNat vyw5000 vyw30000",fontsize=16,color="magenta"];1901 -> 2167[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1901 -> 2168[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1902[label="False",fontsize=16,color="green",shape="box"];1903[label="False",fontsize=16,color="green",shape="box"];1904[label="True",fontsize=16,color="green",shape="box"];1905[label="False",fontsize=16,color="green",shape="box"];1906[label="True",fontsize=16,color="green",shape="box"];1907[label="vyw3001",fontsize=16,color="green",shape="box"];1908[label="vyw500",fontsize=16,color="green",shape="box"];1909[label="vyw3000",fontsize=16,color="green",shape="box"];1910[label="vyw501",fontsize=16,color="green",shape="box"];1911[label="vyw3001",fontsize=16,color="green",shape="box"];1912[label="vyw500",fontsize=16,color="green",shape="box"];1913[label="vyw3000",fontsize=16,color="green",shape="box"];1914[label="vyw501",fontsize=16,color="green",shape="box"];1915[label="vyw500",fontsize=16,color="green",shape="box"];1916[label="vyw3000",fontsize=16,color="green",shape="box"];1917[label="vyw500",fontsize=16,color="green",shape="box"];1918[label="vyw3000",fontsize=16,color="green",shape="box"];1919[label="vyw500",fontsize=16,color="green",shape="box"];1920[label="vyw3000",fontsize=16,color="green",shape="box"];1921[label="vyw500",fontsize=16,color="green",shape="box"];1922[label="vyw3000",fontsize=16,color="green",shape="box"];1923[label="vyw500",fontsize=16,color="green",shape="box"];1924[label="vyw3000",fontsize=16,color="green",shape="box"];1925[label="vyw500",fontsize=16,color="green",shape="box"];1926[label="vyw3000",fontsize=16,color="green",shape="box"];1927[label="vyw500",fontsize=16,color="green",shape="box"];1928[label="vyw3000",fontsize=16,color="green",shape="box"];1929[label="vyw500",fontsize=16,color="green",shape="box"];1930[label="vyw3000",fontsize=16,color="green",shape="box"];1931[label="vyw500",fontsize=16,color="green",shape="box"];1932[label="vyw3000",fontsize=16,color="green",shape="box"];1933[label="vyw500",fontsize=16,color="green",shape="box"];1934[label="vyw3000",fontsize=16,color="green",shape="box"];1935[label="vyw500",fontsize=16,color="green",shape="box"];1936[label="vyw3000",fontsize=16,color="green",shape="box"];1937[label="vyw500",fontsize=16,color="green",shape="box"];1938[label="vyw3000",fontsize=16,color="green",shape="box"];1939[label="vyw500",fontsize=16,color="green",shape="box"];1940[label="vyw3000",fontsize=16,color="green",shape="box"];1941[label="vyw500",fontsize=16,color="green",shape="box"];1942[label="vyw3000",fontsize=16,color="green",shape="box"];1943 -> 496[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1943[label="vyw502 == vyw3002",fontsize=16,color="magenta"];1943 -> 2169[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1943 -> 2170[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1944 -> 497[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1944[label="vyw502 == vyw3002",fontsize=16,color="magenta"];1944 -> 2171[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1944 -> 2172[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1945 -> 498[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1945[label="vyw502 == vyw3002",fontsize=16,color="magenta"];1945 -> 2173[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1945 -> 2174[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1946 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1946[label="vyw502 == vyw3002",fontsize=16,color="magenta"];1946 -> 2175[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1946 -> 2176[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1947 -> 500[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1947[label="vyw502 == vyw3002",fontsize=16,color="magenta"];1947 -> 2177[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1947 -> 2178[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1948 -> 501[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1948[label="vyw502 == vyw3002",fontsize=16,color="magenta"];1948 -> 2179[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1948 -> 2180[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1949 -> 502[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1949[label="vyw502 == vyw3002",fontsize=16,color="magenta"];1949 -> 2181[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1949 -> 2182[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1950 -> 503[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1950[label="vyw502 == vyw3002",fontsize=16,color="magenta"];1950 -> 2183[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1950 -> 2184[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1951 -> 504[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1951[label="vyw502 == vyw3002",fontsize=16,color="magenta"];1951 -> 2185[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1951 -> 2186[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1952 -> 505[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1952[label="vyw502 == vyw3002",fontsize=16,color="magenta"];1952 -> 2187[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1952 -> 2188[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1953 -> 506[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1953[label="vyw502 == vyw3002",fontsize=16,color="magenta"];1953 -> 2189[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1953 -> 2190[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1954 -> 507[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1954[label="vyw502 == vyw3002",fontsize=16,color="magenta"];1954 -> 2191[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1954 -> 2192[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1955 -> 508[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1955[label="vyw502 == vyw3002",fontsize=16,color="magenta"];1955 -> 2193[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1955 -> 2194[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1956 -> 509[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1956[label="vyw502 == vyw3002",fontsize=16,color="magenta"];1956 -> 2195[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1956 -> 2196[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1957 -> 496[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1957[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1957 -> 2197[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1957 -> 2198[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1958 -> 497[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1958[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1958 -> 2199[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1958 -> 2200[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1959 -> 498[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1959[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1959 -> 2201[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1959 -> 2202[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1960 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1960[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1960 -> 2203[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1960 -> 2204[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1961 -> 500[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1961[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1961 -> 2205[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1961 -> 2206[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1962 -> 501[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1962[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1962 -> 2207[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1962 -> 2208[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1963 -> 502[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1963[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1963 -> 2209[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1963 -> 2210[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1964 -> 503[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1964[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1964 -> 2211[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1964 -> 2212[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1965 -> 504[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1965[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1965 -> 2213[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1965 -> 2214[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1966 -> 505[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1966[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1966 -> 2215[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1966 -> 2216[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1967 -> 506[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1967[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1967 -> 2217[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1967 -> 2218[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1968 -> 507[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1968[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1968 -> 2219[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1968 -> 2220[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1969 -> 508[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1969[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1969 -> 2221[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1969 -> 2222[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1970 -> 509[label="",style="dashed", color="red", weight=0]; 29.11/13.92 1970[label="vyw501 == vyw3001",fontsize=16,color="magenta"];1970 -> 2223[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1970 -> 2224[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 1971[label="vyw500",fontsize=16,color="green",shape="box"];1972[label="vyw3000",fontsize=16,color="green",shape="box"];1973[label="vyw500",fontsize=16,color="green",shape="box"];1974[label="vyw3000",fontsize=16,color="green",shape="box"];1975[label="vyw500",fontsize=16,color="green",shape="box"];1976[label="vyw3000",fontsize=16,color="green",shape="box"];1977[label="vyw500",fontsize=16,color="green",shape="box"];1978[label="vyw3000",fontsize=16,color="green",shape="box"];1979[label="vyw500",fontsize=16,color="green",shape="box"];1980[label="vyw3000",fontsize=16,color="green",shape="box"];1981[label="vyw500",fontsize=16,color="green",shape="box"];1982[label="vyw3000",fontsize=16,color="green",shape="box"];1983[label="vyw500",fontsize=16,color="green",shape="box"];1984[label="vyw3000",fontsize=16,color="green",shape="box"];1985[label="vyw500",fontsize=16,color="green",shape="box"];1986[label="vyw3000",fontsize=16,color="green",shape="box"];1987[label="vyw500",fontsize=16,color="green",shape="box"];1988[label="vyw3000",fontsize=16,color="green",shape="box"];1989[label="vyw500",fontsize=16,color="green",shape="box"];1990[label="vyw3000",fontsize=16,color="green",shape="box"];1991[label="vyw500",fontsize=16,color="green",shape="box"];1992[label="vyw3000",fontsize=16,color="green",shape="box"];1993[label="vyw500",fontsize=16,color="green",shape="box"];1994[label="vyw3000",fontsize=16,color="green",shape="box"];1995[label="vyw500",fontsize=16,color="green",shape="box"];1996[label="vyw3000",fontsize=16,color="green",shape="box"];1997[label="vyw500",fontsize=16,color="green",shape="box"];1998[label="vyw3000",fontsize=16,color="green",shape="box"];1999[label="vyw501",fontsize=16,color="green",shape="box"];2000[label="vyw3001",fontsize=16,color="green",shape="box"];2001[label="vyw501",fontsize=16,color="green",shape="box"];2002[label="vyw3001",fontsize=16,color="green",shape="box"];2003[label="vyw500",fontsize=16,color="green",shape="box"];2004[label="vyw3000",fontsize=16,color="green",shape="box"];2005[label="vyw500",fontsize=16,color="green",shape="box"];2006[label="vyw3000",fontsize=16,color="green",shape="box"];2007[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2007 -> 2225[label="",style="solid", color="black", weight=3]; 29.11/13.92 2008[label="Nothing <= Just vyw500",fontsize=16,color="black",shape="box"];2008 -> 2226[label="",style="solid", color="black", weight=3]; 29.11/13.92 2009[label="Just vyw490 <= Nothing",fontsize=16,color="black",shape="box"];2009 -> 2227[label="",style="solid", color="black", weight=3]; 29.11/13.92 2010[label="Just vyw490 <= Just vyw500",fontsize=16,color="black",shape="box"];2010 -> 2228[label="",style="solid", color="black", weight=3]; 29.11/13.92 2011[label="(vyw490,vyw491) <= (vyw500,vyw501)",fontsize=16,color="black",shape="box"];2011 -> 2229[label="",style="solid", color="black", weight=3]; 29.11/13.92 2013 -> 167[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2013[label="compare vyw49 vyw50",fontsize=16,color="magenta"];2013 -> 2230[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2013 -> 2231[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2012[label="vyw177 /= GT",fontsize=16,color="black",shape="triangle"];2012 -> 2232[label="",style="solid", color="black", weight=3]; 29.11/13.92 2021[label="LT <= LT",fontsize=16,color="black",shape="box"];2021 -> 2233[label="",style="solid", color="black", weight=3]; 29.11/13.92 2022[label="LT <= EQ",fontsize=16,color="black",shape="box"];2022 -> 2234[label="",style="solid", color="black", weight=3]; 29.11/13.92 2023[label="LT <= GT",fontsize=16,color="black",shape="box"];2023 -> 2235[label="",style="solid", color="black", weight=3]; 29.11/13.92 2024[label="EQ <= LT",fontsize=16,color="black",shape="box"];2024 -> 2236[label="",style="solid", color="black", weight=3]; 29.11/13.92 2025[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2025 -> 2237[label="",style="solid", color="black", weight=3]; 29.11/13.92 2026[label="EQ <= GT",fontsize=16,color="black",shape="box"];2026 -> 2238[label="",style="solid", color="black", weight=3]; 29.11/13.92 2027[label="GT <= LT",fontsize=16,color="black",shape="box"];2027 -> 2239[label="",style="solid", color="black", weight=3]; 29.11/13.92 2028[label="GT <= EQ",fontsize=16,color="black",shape="box"];2028 -> 2240[label="",style="solid", color="black", weight=3]; 29.11/13.92 2029[label="GT <= GT",fontsize=16,color="black",shape="box"];2029 -> 2241[label="",style="solid", color="black", weight=3]; 29.11/13.92 2014 -> 169[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2014[label="compare vyw49 vyw50",fontsize=16,color="magenta"];2014 -> 2242[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2014 -> 2243[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2015 -> 170[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2015[label="compare vyw49 vyw50",fontsize=16,color="magenta"];2015 -> 2244[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2015 -> 2245[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2016 -> 171[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2016[label="compare vyw49 vyw50",fontsize=16,color="magenta"];2016 -> 2246[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2016 -> 2247[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2017 -> 172[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2017[label="compare vyw49 vyw50",fontsize=16,color="magenta"];2017 -> 2248[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2017 -> 2249[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2018 -> 173[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2018[label="compare vyw49 vyw50",fontsize=16,color="magenta"];2018 -> 2250[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2018 -> 2251[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2030[label="Left vyw490 <= Left vyw500",fontsize=16,color="black",shape="box"];2030 -> 2252[label="",style="solid", color="black", weight=3]; 29.11/13.92 2031[label="Left vyw490 <= Right vyw500",fontsize=16,color="black",shape="box"];2031 -> 2253[label="",style="solid", color="black", weight=3]; 29.11/13.92 2032[label="Right vyw490 <= Left vyw500",fontsize=16,color="black",shape="box"];2032 -> 2254[label="",style="solid", color="black", weight=3]; 29.11/13.92 2033[label="Right vyw490 <= Right vyw500",fontsize=16,color="black",shape="box"];2033 -> 2255[label="",style="solid", color="black", weight=3]; 29.11/13.92 2034[label="False <= False",fontsize=16,color="black",shape="box"];2034 -> 2256[label="",style="solid", color="black", weight=3]; 29.11/13.92 2035[label="False <= True",fontsize=16,color="black",shape="box"];2035 -> 2257[label="",style="solid", color="black", weight=3]; 29.11/13.92 2036[label="True <= False",fontsize=16,color="black",shape="box"];2036 -> 2258[label="",style="solid", color="black", weight=3]; 29.11/13.92 2037[label="True <= True",fontsize=16,color="black",shape="box"];2037 -> 2259[label="",style="solid", color="black", weight=3]; 29.11/13.92 2019 -> 176[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2019[label="compare vyw49 vyw50",fontsize=16,color="magenta"];2019 -> 2260[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2019 -> 2261[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2038[label="(vyw490,vyw491,vyw492) <= (vyw500,vyw501,vyw502)",fontsize=16,color="black",shape="box"];2038 -> 2262[label="",style="solid", color="black", weight=3]; 29.11/13.92 2020 -> 178[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2020[label="compare vyw49 vyw50",fontsize=16,color="magenta"];2020 -> 2263[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2020 -> 2264[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2039[label="GT",fontsize=16,color="green",shape="box"];2040[label="vyw106",fontsize=16,color="green",shape="box"];2041[label="vyw104",fontsize=16,color="green",shape="box"];2042[label="vyw106",fontsize=16,color="green",shape="box"];2043[label="vyw104",fontsize=16,color="green",shape="box"];2044[label="vyw106",fontsize=16,color="green",shape="box"];2045[label="vyw104",fontsize=16,color="green",shape="box"];2046[label="vyw106",fontsize=16,color="green",shape="box"];2047[label="vyw104",fontsize=16,color="green",shape="box"];2048[label="vyw106",fontsize=16,color="green",shape="box"];2049[label="vyw104",fontsize=16,color="green",shape="box"];2050[label="vyw106",fontsize=16,color="green",shape="box"];2051[label="vyw104",fontsize=16,color="green",shape="box"];2052[label="vyw106",fontsize=16,color="green",shape="box"];2053[label="vyw104",fontsize=16,color="green",shape="box"];2054[label="vyw106",fontsize=16,color="green",shape="box"];2055[label="vyw104",fontsize=16,color="green",shape="box"];2056[label="vyw106",fontsize=16,color="green",shape="box"];2057[label="vyw104",fontsize=16,color="green",shape="box"];2058[label="vyw106",fontsize=16,color="green",shape="box"];2059[label="vyw104",fontsize=16,color="green",shape="box"];2060[label="vyw106",fontsize=16,color="green",shape="box"];2061[label="vyw104",fontsize=16,color="green",shape="box"];2062[label="vyw106",fontsize=16,color="green",shape="box"];2063[label="vyw104",fontsize=16,color="green",shape="box"];2064[label="vyw106",fontsize=16,color="green",shape="box"];2065[label="vyw104",fontsize=16,color="green",shape="box"];2066[label="vyw106",fontsize=16,color="green",shape="box"];2067[label="vyw104",fontsize=16,color="green",shape="box"];2068[label="vyw103",fontsize=16,color="green",shape="box"];2069[label="vyw105",fontsize=16,color="green",shape="box"];2070[label="vyw103",fontsize=16,color="green",shape="box"];2071[label="vyw105",fontsize=16,color="green",shape="box"];2072[label="vyw103",fontsize=16,color="green",shape="box"];2073[label="vyw105",fontsize=16,color="green",shape="box"];2074[label="vyw103",fontsize=16,color="green",shape="box"];2075[label="vyw105",fontsize=16,color="green",shape="box"];2076[label="vyw103",fontsize=16,color="green",shape="box"];2077[label="vyw105",fontsize=16,color="green",shape="box"];2078[label="vyw103",fontsize=16,color="green",shape="box"];2079[label="vyw105",fontsize=16,color="green",shape="box"];2080[label="vyw103",fontsize=16,color="green",shape="box"];2081[label="vyw105",fontsize=16,color="green",shape="box"];2082[label="vyw103",fontsize=16,color="green",shape="box"];2083[label="vyw105",fontsize=16,color="green",shape="box"];2084[label="vyw103",fontsize=16,color="green",shape="box"];2085[label="vyw105",fontsize=16,color="green",shape="box"];2086[label="vyw103",fontsize=16,color="green",shape="box"];2087[label="vyw105",fontsize=16,color="green",shape="box"];2088[label="vyw103",fontsize=16,color="green",shape="box"];2089[label="vyw105",fontsize=16,color="green",shape="box"];2090[label="vyw103",fontsize=16,color="green",shape="box"];2091[label="vyw105",fontsize=16,color="green",shape="box"];2092[label="vyw103",fontsize=16,color="green",shape="box"];2093[label="vyw105",fontsize=16,color="green",shape="box"];2094[label="vyw103",fontsize=16,color="green",shape="box"];2095[label="vyw105",fontsize=16,color="green",shape="box"];2096[label="compare1 (vyw153,vyw154) (vyw155,vyw156) False",fontsize=16,color="black",shape="box"];2096 -> 2265[label="",style="solid", color="black", weight=3]; 29.11/13.92 2097[label="compare1 (vyw153,vyw154) (vyw155,vyw156) True",fontsize=16,color="black",shape="box"];2097 -> 2266[label="",style="solid", color="black", weight=3]; 29.11/13.92 2098[label="True",fontsize=16,color="green",shape="box"];2099 -> 2267[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2099[label="primPlusNat (primMulNat vyw5000 (Succ vyw30100)) (Succ vyw30100)",fontsize=16,color="magenta"];2099 -> 2268[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2100[label="Zero",fontsize=16,color="green",shape="box"];2101[label="Zero",fontsize=16,color="green",shape="box"];2102[label="Zero",fontsize=16,color="green",shape="box"];2103[label="GT",fontsize=16,color="green",shape="box"];2104[label="GT",fontsize=16,color="green",shape="box"];2112 -> 23[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2112[label="vyw86 < vyw89",fontsize=16,color="magenta"];2112 -> 2269[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2112 -> 2270[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2113 -> 24[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2113[label="vyw86 < vyw89",fontsize=16,color="magenta"];2113 -> 2271[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2113 -> 2272[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2114 -> 25[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2114[label="vyw86 < vyw89",fontsize=16,color="magenta"];2114 -> 2273[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2114 -> 2274[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2115 -> 26[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2115[label="vyw86 < vyw89",fontsize=16,color="magenta"];2115 -> 2275[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2115 -> 2276[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2116 -> 27[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2116[label="vyw86 < vyw89",fontsize=16,color="magenta"];2116 -> 2277[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2116 -> 2278[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2117 -> 28[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2117[label="vyw86 < vyw89",fontsize=16,color="magenta"];2117 -> 2279[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2117 -> 2280[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2118 -> 29[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2118[label="vyw86 < vyw89",fontsize=16,color="magenta"];2118 -> 2281[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2118 -> 2282[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2119 -> 30[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2119[label="vyw86 < vyw89",fontsize=16,color="magenta"];2119 -> 2283[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2119 -> 2284[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2120 -> 31[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2120[label="vyw86 < vyw89",fontsize=16,color="magenta"];2120 -> 2285[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2120 -> 2286[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2121 -> 32[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2121[label="vyw86 < vyw89",fontsize=16,color="magenta"];2121 -> 2287[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2121 -> 2288[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2122 -> 33[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2122[label="vyw86 < vyw89",fontsize=16,color="magenta"];2122 -> 2289[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2122 -> 2290[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2123 -> 34[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2123[label="vyw86 < vyw89",fontsize=16,color="magenta"];2123 -> 2291[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2123 -> 2292[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2124 -> 35[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2124[label="vyw86 < vyw89",fontsize=16,color="magenta"];2124 -> 2293[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2124 -> 2294[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2125 -> 36[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2125[label="vyw86 < vyw89",fontsize=16,color="magenta"];2125 -> 2295[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2125 -> 2296[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2126[label="vyw87 <= vyw90",fontsize=16,color="blue",shape="box"];3574[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3574[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3574 -> 2297[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3575[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3575[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3575 -> 2298[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3576[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3576[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3576 -> 2299[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3577[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3577[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3577 -> 2300[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3578[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3578[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3578 -> 2301[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3579[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3579[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3579 -> 2302[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3580[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3580[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3580 -> 2303[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3581[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3581[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3581 -> 2304[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3582[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3582[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3582 -> 2305[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3583[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3583[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3583 -> 2306[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3584[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3584[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3584 -> 2307[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3585[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3585[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3585 -> 2308[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3586[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3586[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3586 -> 2309[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3587[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3587[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3587 -> 2310[label="",style="solid", color="blue", weight=3]; 29.11/13.92 2127[label="vyw86 == vyw89",fontsize=16,color="blue",shape="box"];3588[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2127 -> 3588[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3588 -> 2311[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3589[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2127 -> 3589[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3589 -> 2312[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3590[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2127 -> 3590[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3590 -> 2313[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3591[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2127 -> 3591[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3591 -> 2314[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3592[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2127 -> 3592[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3592 -> 2315[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3593[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2127 -> 3593[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3593 -> 2316[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3594[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2127 -> 3594[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3594 -> 2317[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3595[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2127 -> 3595[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3595 -> 2318[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3596[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2127 -> 3596[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3596 -> 2319[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3597[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2127 -> 3597[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3597 -> 2320[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3598[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2127 -> 3598[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3598 -> 2321[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3599[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2127 -> 3599[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3599 -> 2322[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3600[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2127 -> 3600[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3600 -> 2323[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3601[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2127 -> 3601[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3601 -> 2324[label="",style="solid", color="blue", weight=3]; 29.11/13.92 2128[label="False || vyw182",fontsize=16,color="black",shape="box"];2128 -> 2325[label="",style="solid", color="black", weight=3]; 29.11/13.92 2129[label="True || vyw182",fontsize=16,color="black",shape="box"];2129 -> 2326[label="",style="solid", color="black", weight=3]; 29.11/13.92 2130[label="vyw85",fontsize=16,color="green",shape="box"];2131[label="vyw88",fontsize=16,color="green",shape="box"];2132[label="vyw85",fontsize=16,color="green",shape="box"];2133[label="vyw88",fontsize=16,color="green",shape="box"];2134[label="vyw85",fontsize=16,color="green",shape="box"];2135[label="vyw88",fontsize=16,color="green",shape="box"];2136[label="vyw85",fontsize=16,color="green",shape="box"];2137[label="vyw88",fontsize=16,color="green",shape="box"];2138[label="vyw85",fontsize=16,color="green",shape="box"];2139[label="vyw88",fontsize=16,color="green",shape="box"];2140[label="vyw85",fontsize=16,color="green",shape="box"];2141[label="vyw88",fontsize=16,color="green",shape="box"];2142[label="vyw85",fontsize=16,color="green",shape="box"];2143[label="vyw88",fontsize=16,color="green",shape="box"];2144[label="vyw85",fontsize=16,color="green",shape="box"];2145[label="vyw88",fontsize=16,color="green",shape="box"];2146[label="vyw85",fontsize=16,color="green",shape="box"];2147[label="vyw88",fontsize=16,color="green",shape="box"];2148[label="vyw85",fontsize=16,color="green",shape="box"];2149[label="vyw88",fontsize=16,color="green",shape="box"];2150[label="vyw85",fontsize=16,color="green",shape="box"];2151[label="vyw88",fontsize=16,color="green",shape="box"];2152[label="vyw85",fontsize=16,color="green",shape="box"];2153[label="vyw88",fontsize=16,color="green",shape="box"];2154[label="vyw85",fontsize=16,color="green",shape="box"];2155[label="vyw88",fontsize=16,color="green",shape="box"];2156[label="vyw85",fontsize=16,color="green",shape="box"];2157[label="vyw88",fontsize=16,color="green",shape="box"];2158[label="compare1 (vyw168,vyw169,vyw170) (vyw171,vyw172,vyw173) False",fontsize=16,color="black",shape="box"];2158 -> 2327[label="",style="solid", color="black", weight=3]; 29.11/13.92 2159[label="compare1 (vyw168,vyw169,vyw170) (vyw171,vyw172,vyw173) True",fontsize=16,color="black",shape="box"];2159 -> 2328[label="",style="solid", color="black", weight=3]; 29.11/13.92 2160[label="True",fontsize=16,color="green",shape="box"];2161 -> 1298[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2161[label="primEqNat vyw5000 vyw30000",fontsize=16,color="magenta"];2161 -> 2329[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2161 -> 2330[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2162[label="False",fontsize=16,color="green",shape="box"];2163[label="False",fontsize=16,color="green",shape="box"];2164[label="True",fontsize=16,color="green",shape="box"];2165[label="vyw30000",fontsize=16,color="green",shape="box"];2166[label="vyw5000",fontsize=16,color="green",shape="box"];2167[label="vyw30000",fontsize=16,color="green",shape="box"];2168[label="vyw5000",fontsize=16,color="green",shape="box"];2169[label="vyw502",fontsize=16,color="green",shape="box"];2170[label="vyw3002",fontsize=16,color="green",shape="box"];2171[label="vyw502",fontsize=16,color="green",shape="box"];2172[label="vyw3002",fontsize=16,color="green",shape="box"];2173[label="vyw502",fontsize=16,color="green",shape="box"];2174[label="vyw3002",fontsize=16,color="green",shape="box"];2175[label="vyw502",fontsize=16,color="green",shape="box"];2176[label="vyw3002",fontsize=16,color="green",shape="box"];2177[label="vyw502",fontsize=16,color="green",shape="box"];2178[label="vyw3002",fontsize=16,color="green",shape="box"];2179[label="vyw502",fontsize=16,color="green",shape="box"];2180[label="vyw3002",fontsize=16,color="green",shape="box"];2181[label="vyw502",fontsize=16,color="green",shape="box"];2182[label="vyw3002",fontsize=16,color="green",shape="box"];2183[label="vyw502",fontsize=16,color="green",shape="box"];2184[label="vyw3002",fontsize=16,color="green",shape="box"];2185[label="vyw502",fontsize=16,color="green",shape="box"];2186[label="vyw3002",fontsize=16,color="green",shape="box"];2187[label="vyw502",fontsize=16,color="green",shape="box"];2188[label="vyw3002",fontsize=16,color="green",shape="box"];2189[label="vyw502",fontsize=16,color="green",shape="box"];2190[label="vyw3002",fontsize=16,color="green",shape="box"];2191[label="vyw502",fontsize=16,color="green",shape="box"];2192[label="vyw3002",fontsize=16,color="green",shape="box"];2193[label="vyw502",fontsize=16,color="green",shape="box"];2194[label="vyw3002",fontsize=16,color="green",shape="box"];2195[label="vyw502",fontsize=16,color="green",shape="box"];2196[label="vyw3002",fontsize=16,color="green",shape="box"];2197[label="vyw501",fontsize=16,color="green",shape="box"];2198[label="vyw3001",fontsize=16,color="green",shape="box"];2199[label="vyw501",fontsize=16,color="green",shape="box"];2200[label="vyw3001",fontsize=16,color="green",shape="box"];2201[label="vyw501",fontsize=16,color="green",shape="box"];2202[label="vyw3001",fontsize=16,color="green",shape="box"];2203[label="vyw501",fontsize=16,color="green",shape="box"];2204[label="vyw3001",fontsize=16,color="green",shape="box"];2205[label="vyw501",fontsize=16,color="green",shape="box"];2206[label="vyw3001",fontsize=16,color="green",shape="box"];2207[label="vyw501",fontsize=16,color="green",shape="box"];2208[label="vyw3001",fontsize=16,color="green",shape="box"];2209[label="vyw501",fontsize=16,color="green",shape="box"];2210[label="vyw3001",fontsize=16,color="green",shape="box"];2211[label="vyw501",fontsize=16,color="green",shape="box"];2212[label="vyw3001",fontsize=16,color="green",shape="box"];2213[label="vyw501",fontsize=16,color="green",shape="box"];2214[label="vyw3001",fontsize=16,color="green",shape="box"];2215[label="vyw501",fontsize=16,color="green",shape="box"];2216[label="vyw3001",fontsize=16,color="green",shape="box"];2217[label="vyw501",fontsize=16,color="green",shape="box"];2218[label="vyw3001",fontsize=16,color="green",shape="box"];2219[label="vyw501",fontsize=16,color="green",shape="box"];2220[label="vyw3001",fontsize=16,color="green",shape="box"];2221[label="vyw501",fontsize=16,color="green",shape="box"];2222[label="vyw3001",fontsize=16,color="green",shape="box"];2223[label="vyw501",fontsize=16,color="green",shape="box"];2224[label="vyw3001",fontsize=16,color="green",shape="box"];2225[label="True",fontsize=16,color="green",shape="box"];2226[label="True",fontsize=16,color="green",shape="box"];2227[label="False",fontsize=16,color="green",shape="box"];2228[label="vyw490 <= vyw500",fontsize=16,color="blue",shape="box"];3602[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 3602[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3602 -> 2331[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3603[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 3603[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3603 -> 2332[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3604[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 3604[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3604 -> 2333[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3605[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 3605[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3605 -> 2334[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3606[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 3606[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3606 -> 2335[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3607[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 3607[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3607 -> 2336[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3608[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 3608[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3608 -> 2337[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3609[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 3609[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3609 -> 2338[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3610[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 3610[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3610 -> 2339[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3611[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 3611[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3611 -> 2340[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3612[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 3612[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3612 -> 2341[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3613[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 3613[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3613 -> 2342[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3614[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 3614[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3614 -> 2343[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3615[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2228 -> 3615[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3615 -> 2344[label="",style="solid", color="blue", weight=3]; 29.11/13.92 2229 -> 2107[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2229[label="vyw490 < vyw500 || vyw490 == vyw500 && vyw491 <= vyw501",fontsize=16,color="magenta"];2229 -> 2345[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2229 -> 2346[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2230[label="vyw49",fontsize=16,color="green",shape="box"];2231[label="vyw50",fontsize=16,color="green",shape="box"];2232 -> 2347[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2232[label="not (vyw177 == GT)",fontsize=16,color="magenta"];2232 -> 2348[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2233[label="True",fontsize=16,color="green",shape="box"];2234[label="True",fontsize=16,color="green",shape="box"];2235[label="True",fontsize=16,color="green",shape="box"];2236[label="False",fontsize=16,color="green",shape="box"];2237[label="True",fontsize=16,color="green",shape="box"];2238[label="True",fontsize=16,color="green",shape="box"];2239[label="False",fontsize=16,color="green",shape="box"];2240[label="False",fontsize=16,color="green",shape="box"];2241[label="True",fontsize=16,color="green",shape="box"];2242[label="vyw49",fontsize=16,color="green",shape="box"];2243[label="vyw50",fontsize=16,color="green",shape="box"];2244[label="vyw49",fontsize=16,color="green",shape="box"];2245[label="vyw50",fontsize=16,color="green",shape="box"];2246[label="vyw49",fontsize=16,color="green",shape="box"];2247[label="vyw50",fontsize=16,color="green",shape="box"];2248[label="vyw49",fontsize=16,color="green",shape="box"];2249[label="vyw50",fontsize=16,color="green",shape="box"];2250[label="vyw49",fontsize=16,color="green",shape="box"];2251[label="vyw50",fontsize=16,color="green",shape="box"];2252[label="vyw490 <= vyw500",fontsize=16,color="blue",shape="box"];3616[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 3616[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3616 -> 2349[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3617[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 3617[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3617 -> 2350[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3618[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 3618[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3618 -> 2351[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3619[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 3619[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3619 -> 2352[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3620[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 3620[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3620 -> 2353[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3621[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 3621[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3621 -> 2354[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3622[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 3622[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3622 -> 2355[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3623[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 3623[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3623 -> 2356[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3624[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 3624[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3624 -> 2357[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3625[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 3625[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3625 -> 2358[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3626[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 3626[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3626 -> 2359[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3627[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 3627[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3627 -> 2360[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3628[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 3628[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3628 -> 2361[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3629[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 3629[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3629 -> 2362[label="",style="solid", color="blue", weight=3]; 29.11/13.92 2253[label="True",fontsize=16,color="green",shape="box"];2254[label="False",fontsize=16,color="green",shape="box"];2255[label="vyw490 <= vyw500",fontsize=16,color="blue",shape="box"];3630[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3630[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3630 -> 2363[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3631[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3631[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3631 -> 2364[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3632[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3632[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3632 -> 2365[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3633[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3633[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3633 -> 2366[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3634[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3634[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3634 -> 2367[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3635[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3635[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3635 -> 2368[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3636[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3636[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3636 -> 2369[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3637[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3637[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3637 -> 2370[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3638[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3638[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3638 -> 2371[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3639[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3639[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3639 -> 2372[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3640[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3640[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3640 -> 2373[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3641[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3641[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3641 -> 2374[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3642[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3642[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3642 -> 2375[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3643[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3643[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3643 -> 2376[label="",style="solid", color="blue", weight=3]; 29.11/13.92 2256[label="True",fontsize=16,color="green",shape="box"];2257[label="True",fontsize=16,color="green",shape="box"];2258[label="False",fontsize=16,color="green",shape="box"];2259[label="True",fontsize=16,color="green",shape="box"];2260[label="vyw49",fontsize=16,color="green",shape="box"];2261[label="vyw50",fontsize=16,color="green",shape="box"];2262 -> 2107[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2262[label="vyw490 < vyw500 || vyw490 == vyw500 && (vyw491 < vyw501 || vyw491 == vyw501 && vyw492 <= vyw502)",fontsize=16,color="magenta"];2262 -> 2377[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2262 -> 2378[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2263[label="vyw49",fontsize=16,color="green",shape="box"];2264[label="vyw50",fontsize=16,color="green",shape="box"];2265[label="compare0 (vyw153,vyw154) (vyw155,vyw156) otherwise",fontsize=16,color="black",shape="box"];2265 -> 2379[label="",style="solid", color="black", weight=3]; 29.11/13.92 2266[label="LT",fontsize=16,color="green",shape="box"];2268 -> 1203[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2268[label="primMulNat vyw5000 (Succ vyw30100)",fontsize=16,color="magenta"];2268 -> 2380[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2268 -> 2381[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2267[label="primPlusNat vyw183 (Succ vyw30100)",fontsize=16,color="burlywood",shape="triangle"];3644[label="vyw183/Succ vyw1830",fontsize=10,color="white",style="solid",shape="box"];2267 -> 3644[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3644 -> 2382[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 3645[label="vyw183/Zero",fontsize=10,color="white",style="solid",shape="box"];2267 -> 3645[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3645 -> 2383[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 2269[label="vyw86",fontsize=16,color="green",shape="box"];2270[label="vyw89",fontsize=16,color="green",shape="box"];2271[label="vyw86",fontsize=16,color="green",shape="box"];2272[label="vyw89",fontsize=16,color="green",shape="box"];2273[label="vyw86",fontsize=16,color="green",shape="box"];2274[label="vyw89",fontsize=16,color="green",shape="box"];2275[label="vyw86",fontsize=16,color="green",shape="box"];2276[label="vyw89",fontsize=16,color="green",shape="box"];2277[label="vyw86",fontsize=16,color="green",shape="box"];2278[label="vyw89",fontsize=16,color="green",shape="box"];2279[label="vyw86",fontsize=16,color="green",shape="box"];2280[label="vyw89",fontsize=16,color="green",shape="box"];2281[label="vyw86",fontsize=16,color="green",shape="box"];2282[label="vyw89",fontsize=16,color="green",shape="box"];2283[label="vyw86",fontsize=16,color="green",shape="box"];2284[label="vyw89",fontsize=16,color="green",shape="box"];2285[label="vyw86",fontsize=16,color="green",shape="box"];2286[label="vyw89",fontsize=16,color="green",shape="box"];2287[label="vyw86",fontsize=16,color="green",shape="box"];2288[label="vyw89",fontsize=16,color="green",shape="box"];2289[label="vyw86",fontsize=16,color="green",shape="box"];2290[label="vyw89",fontsize=16,color="green",shape="box"];2291[label="vyw86",fontsize=16,color="green",shape="box"];2292[label="vyw89",fontsize=16,color="green",shape="box"];2293[label="vyw86",fontsize=16,color="green",shape="box"];2294[label="vyw89",fontsize=16,color="green",shape="box"];2295[label="vyw86",fontsize=16,color="green",shape="box"];2296[label="vyw89",fontsize=16,color="green",shape="box"];2297 -> 1357[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2297[label="vyw87 <= vyw90",fontsize=16,color="magenta"];2297 -> 2384[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2297 -> 2385[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2298 -> 1358[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2298[label="vyw87 <= vyw90",fontsize=16,color="magenta"];2298 -> 2386[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2298 -> 2387[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2299 -> 1359[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2299[label="vyw87 <= vyw90",fontsize=16,color="magenta"];2299 -> 2388[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2299 -> 2389[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2300 -> 1360[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2300[label="vyw87 <= vyw90",fontsize=16,color="magenta"];2300 -> 2390[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2300 -> 2391[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2301 -> 1361[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2301[label="vyw87 <= vyw90",fontsize=16,color="magenta"];2301 -> 2392[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2301 -> 2393[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2302 -> 1362[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2302[label="vyw87 <= vyw90",fontsize=16,color="magenta"];2302 -> 2394[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2302 -> 2395[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2303 -> 1363[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2303[label="vyw87 <= vyw90",fontsize=16,color="magenta"];2303 -> 2396[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2303 -> 2397[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2304 -> 1364[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2304[label="vyw87 <= vyw90",fontsize=16,color="magenta"];2304 -> 2398[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2304 -> 2399[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2305 -> 1365[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2305[label="vyw87 <= vyw90",fontsize=16,color="magenta"];2305 -> 2400[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2305 -> 2401[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2306 -> 1366[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2306[label="vyw87 <= vyw90",fontsize=16,color="magenta"];2306 -> 2402[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2306 -> 2403[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2307 -> 1367[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2307[label="vyw87 <= vyw90",fontsize=16,color="magenta"];2307 -> 2404[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2307 -> 2405[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2308 -> 1368[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2308[label="vyw87 <= vyw90",fontsize=16,color="magenta"];2308 -> 2406[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2308 -> 2407[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2309 -> 1369[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2309[label="vyw87 <= vyw90",fontsize=16,color="magenta"];2309 -> 2408[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2309 -> 2409[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2310 -> 1370[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2310[label="vyw87 <= vyw90",fontsize=16,color="magenta"];2310 -> 2410[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2310 -> 2411[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2311 -> 503[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2311[label="vyw86 == vyw89",fontsize=16,color="magenta"];2311 -> 2412[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2311 -> 2413[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2312 -> 497[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2312[label="vyw86 == vyw89",fontsize=16,color="magenta"];2312 -> 2414[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2312 -> 2415[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2313 -> 508[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2313[label="vyw86 == vyw89",fontsize=16,color="magenta"];2313 -> 2416[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2313 -> 2417[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2314 -> 509[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2314[label="vyw86 == vyw89",fontsize=16,color="magenta"];2314 -> 2418[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2314 -> 2419[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2315 -> 500[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2315[label="vyw86 == vyw89",fontsize=16,color="magenta"];2315 -> 2420[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2315 -> 2421[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2316 -> 501[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2316[label="vyw86 == vyw89",fontsize=16,color="magenta"];2316 -> 2422[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2316 -> 2423[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2317 -> 498[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2317[label="vyw86 == vyw89",fontsize=16,color="magenta"];2317 -> 2424[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2317 -> 2425[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2318 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2318[label="vyw86 == vyw89",fontsize=16,color="magenta"];2318 -> 2426[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2318 -> 2427[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2319 -> 496[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2319[label="vyw86 == vyw89",fontsize=16,color="magenta"];2319 -> 2428[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2319 -> 2429[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2320 -> 504[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2320[label="vyw86 == vyw89",fontsize=16,color="magenta"];2320 -> 2430[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2320 -> 2431[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2321 -> 505[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2321[label="vyw86 == vyw89",fontsize=16,color="magenta"];2321 -> 2432[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2321 -> 2433[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2322 -> 502[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2322[label="vyw86 == vyw89",fontsize=16,color="magenta"];2322 -> 2434[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2322 -> 2435[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2323 -> 507[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2323[label="vyw86 == vyw89",fontsize=16,color="magenta"];2323 -> 2436[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2323 -> 2437[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2324 -> 506[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2324[label="vyw86 == vyw89",fontsize=16,color="magenta"];2324 -> 2438[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2324 -> 2439[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2325[label="vyw182",fontsize=16,color="green",shape="box"];2326[label="True",fontsize=16,color="green",shape="box"];2327[label="compare0 (vyw168,vyw169,vyw170) (vyw171,vyw172,vyw173) otherwise",fontsize=16,color="black",shape="box"];2327 -> 2440[label="",style="solid", color="black", weight=3]; 29.11/13.92 2328[label="LT",fontsize=16,color="green",shape="box"];2329[label="vyw30000",fontsize=16,color="green",shape="box"];2330[label="vyw5000",fontsize=16,color="green",shape="box"];2331 -> 1357[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2331[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2331 -> 2441[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2331 -> 2442[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2332 -> 1358[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2332[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2332 -> 2443[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2332 -> 2444[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2333 -> 1359[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2333[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2333 -> 2445[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2333 -> 2446[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2334 -> 1360[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2334[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2334 -> 2447[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2334 -> 2448[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2335 -> 1361[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2335[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2335 -> 2449[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2335 -> 2450[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2336 -> 1362[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2336[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2336 -> 2451[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2336 -> 2452[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2337 -> 1363[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2337[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2337 -> 2453[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2337 -> 2454[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2338 -> 1364[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2338[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2338 -> 2455[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2338 -> 2456[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2339 -> 1365[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2339[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2339 -> 2457[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2339 -> 2458[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2340 -> 1366[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2340[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2340 -> 2459[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2340 -> 2460[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2341 -> 1367[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2341[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2341 -> 2461[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2341 -> 2462[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2342 -> 1368[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2342[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2342 -> 2463[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2342 -> 2464[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2343 -> 1369[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2343[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2343 -> 2465[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2343 -> 2466[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2344 -> 1370[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2344[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2344 -> 2467[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2344 -> 2468[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2345[label="vyw490 < vyw500",fontsize=16,color="blue",shape="box"];3646[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3646[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3646 -> 2469[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3647[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3647[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3647 -> 2470[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3648[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3648[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3648 -> 2471[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3649[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3649[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3649 -> 2472[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3650[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3650[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3650 -> 2473[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3651[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3651[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3651 -> 2474[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3652[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3652[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3652 -> 2475[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3653[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3653[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3653 -> 2476[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3654[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3654[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3654 -> 2477[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3655[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3655[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3655 -> 2478[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3656[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3656[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3656 -> 2479[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3657[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3657[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3657 -> 2480[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3658[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3658[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3658 -> 2481[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3659[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3659[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3659 -> 2482[label="",style="solid", color="blue", weight=3]; 29.11/13.92 2346 -> 980[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2346[label="vyw490 == vyw500 && vyw491 <= vyw501",fontsize=16,color="magenta"];2346 -> 2483[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2346 -> 2484[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2348 -> 509[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2348[label="vyw177 == GT",fontsize=16,color="magenta"];2348 -> 2485[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2348 -> 2486[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2347[label="not vyw184",fontsize=16,color="burlywood",shape="triangle"];3660[label="vyw184/False",fontsize=10,color="white",style="solid",shape="box"];2347 -> 3660[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3660 -> 2487[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 3661[label="vyw184/True",fontsize=10,color="white",style="solid",shape="box"];2347 -> 3661[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3661 -> 2488[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 2349 -> 1357[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2349[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2349 -> 2489[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2349 -> 2490[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2350 -> 1358[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2350[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2350 -> 2491[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2350 -> 2492[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2351 -> 1359[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2351[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2351 -> 2493[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2351 -> 2494[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2352 -> 1360[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2352[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2352 -> 2495[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2352 -> 2496[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2353 -> 1361[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2353[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2353 -> 2497[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2353 -> 2498[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2354 -> 1362[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2354[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2354 -> 2499[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2354 -> 2500[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2355 -> 1363[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2355[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2355 -> 2501[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2355 -> 2502[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2356 -> 1364[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2356[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2356 -> 2503[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2356 -> 2504[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2357 -> 1365[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2357[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2357 -> 2505[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2357 -> 2506[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2358 -> 1366[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2358[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2358 -> 2507[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2358 -> 2508[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2359 -> 1367[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2359[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2359 -> 2509[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2359 -> 2510[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2360 -> 1368[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2360[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2360 -> 2511[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2360 -> 2512[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2361 -> 1369[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2361[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2361 -> 2513[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2361 -> 2514[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2362 -> 1370[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2362[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2362 -> 2515[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2362 -> 2516[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2363 -> 1357[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2363[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2363 -> 2517[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2363 -> 2518[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2364 -> 1358[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2364[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2364 -> 2519[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2364 -> 2520[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2365 -> 1359[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2365[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2365 -> 2521[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2365 -> 2522[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2366 -> 1360[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2366[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2366 -> 2523[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2366 -> 2524[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2367 -> 1361[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2367[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2367 -> 2525[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2367 -> 2526[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2368 -> 1362[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2368[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2368 -> 2527[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2368 -> 2528[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2369 -> 1363[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2369[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2369 -> 2529[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2369 -> 2530[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2370 -> 1364[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2370[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2370 -> 2531[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2370 -> 2532[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2371 -> 1365[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2371[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2371 -> 2533[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2371 -> 2534[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2372 -> 1366[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2372[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2372 -> 2535[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2372 -> 2536[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2373 -> 1367[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2373[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2373 -> 2537[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2373 -> 2538[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2374 -> 1368[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2374[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2374 -> 2539[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2374 -> 2540[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2375 -> 1369[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2375[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2375 -> 2541[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2375 -> 2542[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2376 -> 1370[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2376[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2376 -> 2543[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2376 -> 2544[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2377[label="vyw490 < vyw500",fontsize=16,color="blue",shape="box"];3662[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2377 -> 3662[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3662 -> 2545[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3663[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2377 -> 3663[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3663 -> 2546[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3664[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2377 -> 3664[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3664 -> 2547[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3665[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2377 -> 3665[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3665 -> 2548[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3666[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2377 -> 3666[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3666 -> 2549[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3667[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2377 -> 3667[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3667 -> 2550[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3668[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2377 -> 3668[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3668 -> 2551[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3669[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2377 -> 3669[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3669 -> 2552[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3670[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2377 -> 3670[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3670 -> 2553[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3671[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2377 -> 3671[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3671 -> 2554[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3672[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2377 -> 3672[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3672 -> 2555[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3673[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2377 -> 3673[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3673 -> 2556[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3674[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2377 -> 3674[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3674 -> 2557[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3675[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2377 -> 3675[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3675 -> 2558[label="",style="solid", color="blue", weight=3]; 29.11/13.92 2378 -> 980[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2378[label="vyw490 == vyw500 && (vyw491 < vyw501 || vyw491 == vyw501 && vyw492 <= vyw502)",fontsize=16,color="magenta"];2378 -> 2559[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2378 -> 2560[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2379[label="compare0 (vyw153,vyw154) (vyw155,vyw156) True",fontsize=16,color="black",shape="box"];2379 -> 2561[label="",style="solid", color="black", weight=3]; 29.11/13.92 2380[label="vyw5000",fontsize=16,color="green",shape="box"];2381[label="Succ vyw30100",fontsize=16,color="green",shape="box"];2382[label="primPlusNat (Succ vyw1830) (Succ vyw30100)",fontsize=16,color="black",shape="box"];2382 -> 2562[label="",style="solid", color="black", weight=3]; 29.11/13.92 2383[label="primPlusNat Zero (Succ vyw30100)",fontsize=16,color="black",shape="box"];2383 -> 2563[label="",style="solid", color="black", weight=3]; 29.11/13.92 2384[label="vyw90",fontsize=16,color="green",shape="box"];2385[label="vyw87",fontsize=16,color="green",shape="box"];2386[label="vyw90",fontsize=16,color="green",shape="box"];2387[label="vyw87",fontsize=16,color="green",shape="box"];2388[label="vyw90",fontsize=16,color="green",shape="box"];2389[label="vyw87",fontsize=16,color="green",shape="box"];2390[label="vyw90",fontsize=16,color="green",shape="box"];2391[label="vyw87",fontsize=16,color="green",shape="box"];2392[label="vyw90",fontsize=16,color="green",shape="box"];2393[label="vyw87",fontsize=16,color="green",shape="box"];2394[label="vyw90",fontsize=16,color="green",shape="box"];2395[label="vyw87",fontsize=16,color="green",shape="box"];2396[label="vyw90",fontsize=16,color="green",shape="box"];2397[label="vyw87",fontsize=16,color="green",shape="box"];2398[label="vyw90",fontsize=16,color="green",shape="box"];2399[label="vyw87",fontsize=16,color="green",shape="box"];2400[label="vyw90",fontsize=16,color="green",shape="box"];2401[label="vyw87",fontsize=16,color="green",shape="box"];2402[label="vyw90",fontsize=16,color="green",shape="box"];2403[label="vyw87",fontsize=16,color="green",shape="box"];2404[label="vyw90",fontsize=16,color="green",shape="box"];2405[label="vyw87",fontsize=16,color="green",shape="box"];2406[label="vyw90",fontsize=16,color="green",shape="box"];2407[label="vyw87",fontsize=16,color="green",shape="box"];2408[label="vyw90",fontsize=16,color="green",shape="box"];2409[label="vyw87",fontsize=16,color="green",shape="box"];2410[label="vyw90",fontsize=16,color="green",shape="box"];2411[label="vyw87",fontsize=16,color="green",shape="box"];2412[label="vyw86",fontsize=16,color="green",shape="box"];2413[label="vyw89",fontsize=16,color="green",shape="box"];2414[label="vyw86",fontsize=16,color="green",shape="box"];2415[label="vyw89",fontsize=16,color="green",shape="box"];2416[label="vyw86",fontsize=16,color="green",shape="box"];2417[label="vyw89",fontsize=16,color="green",shape="box"];2418[label="vyw86",fontsize=16,color="green",shape="box"];2419[label="vyw89",fontsize=16,color="green",shape="box"];2420[label="vyw86",fontsize=16,color="green",shape="box"];2421[label="vyw89",fontsize=16,color="green",shape="box"];2422[label="vyw86",fontsize=16,color="green",shape="box"];2423[label="vyw89",fontsize=16,color="green",shape="box"];2424[label="vyw86",fontsize=16,color="green",shape="box"];2425[label="vyw89",fontsize=16,color="green",shape="box"];2426[label="vyw86",fontsize=16,color="green",shape="box"];2427[label="vyw89",fontsize=16,color="green",shape="box"];2428[label="vyw86",fontsize=16,color="green",shape="box"];2429[label="vyw89",fontsize=16,color="green",shape="box"];2430[label="vyw86",fontsize=16,color="green",shape="box"];2431[label="vyw89",fontsize=16,color="green",shape="box"];2432[label="vyw86",fontsize=16,color="green",shape="box"];2433[label="vyw89",fontsize=16,color="green",shape="box"];2434[label="vyw86",fontsize=16,color="green",shape="box"];2435[label="vyw89",fontsize=16,color="green",shape="box"];2436[label="vyw86",fontsize=16,color="green",shape="box"];2437[label="vyw89",fontsize=16,color="green",shape="box"];2438[label="vyw86",fontsize=16,color="green",shape="box"];2439[label="vyw89",fontsize=16,color="green",shape="box"];2440[label="compare0 (vyw168,vyw169,vyw170) (vyw171,vyw172,vyw173) True",fontsize=16,color="black",shape="box"];2440 -> 2564[label="",style="solid", color="black", weight=3]; 29.11/13.92 2441[label="vyw500",fontsize=16,color="green",shape="box"];2442[label="vyw490",fontsize=16,color="green",shape="box"];2443[label="vyw500",fontsize=16,color="green",shape="box"];2444[label="vyw490",fontsize=16,color="green",shape="box"];2445[label="vyw500",fontsize=16,color="green",shape="box"];2446[label="vyw490",fontsize=16,color="green",shape="box"];2447[label="vyw500",fontsize=16,color="green",shape="box"];2448[label="vyw490",fontsize=16,color="green",shape="box"];2449[label="vyw500",fontsize=16,color="green",shape="box"];2450[label="vyw490",fontsize=16,color="green",shape="box"];2451[label="vyw500",fontsize=16,color="green",shape="box"];2452[label="vyw490",fontsize=16,color="green",shape="box"];2453[label="vyw500",fontsize=16,color="green",shape="box"];2454[label="vyw490",fontsize=16,color="green",shape="box"];2455[label="vyw500",fontsize=16,color="green",shape="box"];2456[label="vyw490",fontsize=16,color="green",shape="box"];2457[label="vyw500",fontsize=16,color="green",shape="box"];2458[label="vyw490",fontsize=16,color="green",shape="box"];2459[label="vyw500",fontsize=16,color="green",shape="box"];2460[label="vyw490",fontsize=16,color="green",shape="box"];2461[label="vyw500",fontsize=16,color="green",shape="box"];2462[label="vyw490",fontsize=16,color="green",shape="box"];2463[label="vyw500",fontsize=16,color="green",shape="box"];2464[label="vyw490",fontsize=16,color="green",shape="box"];2465[label="vyw500",fontsize=16,color="green",shape="box"];2466[label="vyw490",fontsize=16,color="green",shape="box"];2467[label="vyw500",fontsize=16,color="green",shape="box"];2468[label="vyw490",fontsize=16,color="green",shape="box"];2469 -> 23[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2469[label="vyw490 < vyw500",fontsize=16,color="magenta"];2469 -> 2565[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2469 -> 2566[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2470 -> 24[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2470[label="vyw490 < vyw500",fontsize=16,color="magenta"];2470 -> 2567[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2470 -> 2568[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2471 -> 25[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2471[label="vyw490 < vyw500",fontsize=16,color="magenta"];2471 -> 2569[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2471 -> 2570[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2472 -> 26[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2472[label="vyw490 < vyw500",fontsize=16,color="magenta"];2472 -> 2571[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2472 -> 2572[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2473 -> 27[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2473[label="vyw490 < vyw500",fontsize=16,color="magenta"];2473 -> 2573[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2473 -> 2574[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2474 -> 28[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2474[label="vyw490 < vyw500",fontsize=16,color="magenta"];2474 -> 2575[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2474 -> 2576[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2475 -> 29[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2475[label="vyw490 < vyw500",fontsize=16,color="magenta"];2475 -> 2577[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2475 -> 2578[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2476 -> 30[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2476[label="vyw490 < vyw500",fontsize=16,color="magenta"];2476 -> 2579[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2476 -> 2580[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2477 -> 31[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2477[label="vyw490 < vyw500",fontsize=16,color="magenta"];2477 -> 2581[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2477 -> 2582[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2478 -> 32[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2478[label="vyw490 < vyw500",fontsize=16,color="magenta"];2478 -> 2583[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2478 -> 2584[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2479 -> 33[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2479[label="vyw490 < vyw500",fontsize=16,color="magenta"];2479 -> 2585[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2479 -> 2586[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2480 -> 34[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2480[label="vyw490 < vyw500",fontsize=16,color="magenta"];2480 -> 2587[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2480 -> 2588[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2481 -> 35[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2481[label="vyw490 < vyw500",fontsize=16,color="magenta"];2481 -> 2589[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2481 -> 2590[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2482 -> 36[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2482[label="vyw490 < vyw500",fontsize=16,color="magenta"];2482 -> 2591[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2482 -> 2592[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2483[label="vyw491 <= vyw501",fontsize=16,color="blue",shape="box"];3676[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3676[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3676 -> 2593[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3677[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3677[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3677 -> 2594[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3678[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3678[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3678 -> 2595[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3679[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3679[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3679 -> 2596[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3680[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3680[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3680 -> 2597[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3681[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3681[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3681 -> 2598[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3682[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3682[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3682 -> 2599[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3683[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3683[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3683 -> 2600[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3684[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3684[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3684 -> 2601[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3685[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3685[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3685 -> 2602[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3686[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3686[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3686 -> 2603[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3687[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3687[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3687 -> 2604[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3688[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3688[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3688 -> 2605[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3689[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3689[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3689 -> 2606[label="",style="solid", color="blue", weight=3]; 29.11/13.92 2484[label="vyw490 == vyw500",fontsize=16,color="blue",shape="box"];3690[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3690[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3690 -> 2607[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3691[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3691[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3691 -> 2608[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3692[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3692[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3692 -> 2609[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3693[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3693[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3693 -> 2610[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3694[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3694[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3694 -> 2611[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3695[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3695[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3695 -> 2612[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3696[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3696[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3696 -> 2613[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3697[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3697[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3697 -> 2614[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3698[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3698[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3698 -> 2615[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3699[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3699[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3699 -> 2616[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3700[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3700[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3700 -> 2617[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3701[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3701[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3701 -> 2618[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3702[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3702[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3702 -> 2619[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3703[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3703[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3703 -> 2620[label="",style="solid", color="blue", weight=3]; 29.11/13.92 2485[label="vyw177",fontsize=16,color="green",shape="box"];2486[label="GT",fontsize=16,color="green",shape="box"];2487[label="not False",fontsize=16,color="black",shape="box"];2487 -> 2621[label="",style="solid", color="black", weight=3]; 29.11/13.92 2488[label="not True",fontsize=16,color="black",shape="box"];2488 -> 2622[label="",style="solid", color="black", weight=3]; 29.11/13.92 2489[label="vyw500",fontsize=16,color="green",shape="box"];2490[label="vyw490",fontsize=16,color="green",shape="box"];2491[label="vyw500",fontsize=16,color="green",shape="box"];2492[label="vyw490",fontsize=16,color="green",shape="box"];2493[label="vyw500",fontsize=16,color="green",shape="box"];2494[label="vyw490",fontsize=16,color="green",shape="box"];2495[label="vyw500",fontsize=16,color="green",shape="box"];2496[label="vyw490",fontsize=16,color="green",shape="box"];2497[label="vyw500",fontsize=16,color="green",shape="box"];2498[label="vyw490",fontsize=16,color="green",shape="box"];2499[label="vyw500",fontsize=16,color="green",shape="box"];2500[label="vyw490",fontsize=16,color="green",shape="box"];2501[label="vyw500",fontsize=16,color="green",shape="box"];2502[label="vyw490",fontsize=16,color="green",shape="box"];2503[label="vyw500",fontsize=16,color="green",shape="box"];2504[label="vyw490",fontsize=16,color="green",shape="box"];2505[label="vyw500",fontsize=16,color="green",shape="box"];2506[label="vyw490",fontsize=16,color="green",shape="box"];2507[label="vyw500",fontsize=16,color="green",shape="box"];2508[label="vyw490",fontsize=16,color="green",shape="box"];2509[label="vyw500",fontsize=16,color="green",shape="box"];2510[label="vyw490",fontsize=16,color="green",shape="box"];2511[label="vyw500",fontsize=16,color="green",shape="box"];2512[label="vyw490",fontsize=16,color="green",shape="box"];2513[label="vyw500",fontsize=16,color="green",shape="box"];2514[label="vyw490",fontsize=16,color="green",shape="box"];2515[label="vyw500",fontsize=16,color="green",shape="box"];2516[label="vyw490",fontsize=16,color="green",shape="box"];2517[label="vyw500",fontsize=16,color="green",shape="box"];2518[label="vyw490",fontsize=16,color="green",shape="box"];2519[label="vyw500",fontsize=16,color="green",shape="box"];2520[label="vyw490",fontsize=16,color="green",shape="box"];2521[label="vyw500",fontsize=16,color="green",shape="box"];2522[label="vyw490",fontsize=16,color="green",shape="box"];2523[label="vyw500",fontsize=16,color="green",shape="box"];2524[label="vyw490",fontsize=16,color="green",shape="box"];2525[label="vyw500",fontsize=16,color="green",shape="box"];2526[label="vyw490",fontsize=16,color="green",shape="box"];2527[label="vyw500",fontsize=16,color="green",shape="box"];2528[label="vyw490",fontsize=16,color="green",shape="box"];2529[label="vyw500",fontsize=16,color="green",shape="box"];2530[label="vyw490",fontsize=16,color="green",shape="box"];2531[label="vyw500",fontsize=16,color="green",shape="box"];2532[label="vyw490",fontsize=16,color="green",shape="box"];2533[label="vyw500",fontsize=16,color="green",shape="box"];2534[label="vyw490",fontsize=16,color="green",shape="box"];2535[label="vyw500",fontsize=16,color="green",shape="box"];2536[label="vyw490",fontsize=16,color="green",shape="box"];2537[label="vyw500",fontsize=16,color="green",shape="box"];2538[label="vyw490",fontsize=16,color="green",shape="box"];2539[label="vyw500",fontsize=16,color="green",shape="box"];2540[label="vyw490",fontsize=16,color="green",shape="box"];2541[label="vyw500",fontsize=16,color="green",shape="box"];2542[label="vyw490",fontsize=16,color="green",shape="box"];2543[label="vyw500",fontsize=16,color="green",shape="box"];2544[label="vyw490",fontsize=16,color="green",shape="box"];2545 -> 23[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2545[label="vyw490 < vyw500",fontsize=16,color="magenta"];2545 -> 2623[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2545 -> 2624[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2546 -> 24[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2546[label="vyw490 < vyw500",fontsize=16,color="magenta"];2546 -> 2625[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2546 -> 2626[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2547 -> 25[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2547[label="vyw490 < vyw500",fontsize=16,color="magenta"];2547 -> 2627[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2547 -> 2628[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2548 -> 26[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2548[label="vyw490 < vyw500",fontsize=16,color="magenta"];2548 -> 2629[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2548 -> 2630[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2549 -> 27[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2549[label="vyw490 < vyw500",fontsize=16,color="magenta"];2549 -> 2631[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2549 -> 2632[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2550 -> 28[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2550[label="vyw490 < vyw500",fontsize=16,color="magenta"];2550 -> 2633[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2550 -> 2634[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2551 -> 29[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2551[label="vyw490 < vyw500",fontsize=16,color="magenta"];2551 -> 2635[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2551 -> 2636[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2552 -> 30[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2552[label="vyw490 < vyw500",fontsize=16,color="magenta"];2552 -> 2637[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2552 -> 2638[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2553 -> 31[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2553[label="vyw490 < vyw500",fontsize=16,color="magenta"];2553 -> 2639[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2553 -> 2640[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2554 -> 32[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2554[label="vyw490 < vyw500",fontsize=16,color="magenta"];2554 -> 2641[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2554 -> 2642[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2555 -> 33[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2555[label="vyw490 < vyw500",fontsize=16,color="magenta"];2555 -> 2643[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2555 -> 2644[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2556 -> 34[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2556[label="vyw490 < vyw500",fontsize=16,color="magenta"];2556 -> 2645[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2556 -> 2646[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2557 -> 35[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2557[label="vyw490 < vyw500",fontsize=16,color="magenta"];2557 -> 2647[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2557 -> 2648[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2558 -> 36[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2558[label="vyw490 < vyw500",fontsize=16,color="magenta"];2558 -> 2649[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2558 -> 2650[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2559 -> 2107[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2559[label="vyw491 < vyw501 || vyw491 == vyw501 && vyw492 <= vyw502",fontsize=16,color="magenta"];2559 -> 2651[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2559 -> 2652[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2560[label="vyw490 == vyw500",fontsize=16,color="blue",shape="box"];3704[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 3704[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3704 -> 2653[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3705[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 3705[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3705 -> 2654[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3706[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 3706[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3706 -> 2655[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3707[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 3707[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3707 -> 2656[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3708[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 3708[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3708 -> 2657[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3709[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 3709[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3709 -> 2658[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3710[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 3710[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3710 -> 2659[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3711[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 3711[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3711 -> 2660[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3712[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 3712[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3712 -> 2661[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3713[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 3713[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3713 -> 2662[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3714[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 3714[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3714 -> 2663[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3715[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 3715[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3715 -> 2664[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3716[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 3716[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3716 -> 2665[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3717[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 3717[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3717 -> 2666[label="",style="solid", color="blue", weight=3]; 29.11/13.92 2561[label="GT",fontsize=16,color="green",shape="box"];2562[label="Succ (Succ (primPlusNat vyw1830 vyw30100))",fontsize=16,color="green",shape="box"];2562 -> 2667[label="",style="dashed", color="green", weight=3]; 29.11/13.92 2563[label="Succ vyw30100",fontsize=16,color="green",shape="box"];2564[label="GT",fontsize=16,color="green",shape="box"];2565[label="vyw490",fontsize=16,color="green",shape="box"];2566[label="vyw500",fontsize=16,color="green",shape="box"];2567[label="vyw490",fontsize=16,color="green",shape="box"];2568[label="vyw500",fontsize=16,color="green",shape="box"];2569[label="vyw490",fontsize=16,color="green",shape="box"];2570[label="vyw500",fontsize=16,color="green",shape="box"];2571[label="vyw490",fontsize=16,color="green",shape="box"];2572[label="vyw500",fontsize=16,color="green",shape="box"];2573[label="vyw490",fontsize=16,color="green",shape="box"];2574[label="vyw500",fontsize=16,color="green",shape="box"];2575[label="vyw490",fontsize=16,color="green",shape="box"];2576[label="vyw500",fontsize=16,color="green",shape="box"];2577[label="vyw490",fontsize=16,color="green",shape="box"];2578[label="vyw500",fontsize=16,color="green",shape="box"];2579[label="vyw490",fontsize=16,color="green",shape="box"];2580[label="vyw500",fontsize=16,color="green",shape="box"];2581[label="vyw490",fontsize=16,color="green",shape="box"];2582[label="vyw500",fontsize=16,color="green",shape="box"];2583[label="vyw490",fontsize=16,color="green",shape="box"];2584[label="vyw500",fontsize=16,color="green",shape="box"];2585[label="vyw490",fontsize=16,color="green",shape="box"];2586[label="vyw500",fontsize=16,color="green",shape="box"];2587[label="vyw490",fontsize=16,color="green",shape="box"];2588[label="vyw500",fontsize=16,color="green",shape="box"];2589[label="vyw490",fontsize=16,color="green",shape="box"];2590[label="vyw500",fontsize=16,color="green",shape="box"];2591[label="vyw490",fontsize=16,color="green",shape="box"];2592[label="vyw500",fontsize=16,color="green",shape="box"];2593 -> 1357[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2593[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2593 -> 2668[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2593 -> 2669[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2594 -> 1358[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2594[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2594 -> 2670[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2594 -> 2671[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2595 -> 1359[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2595[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2595 -> 2672[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2595 -> 2673[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2596 -> 1360[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2596[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2596 -> 2674[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2596 -> 2675[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2597 -> 1361[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2597[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2597 -> 2676[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2597 -> 2677[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2598 -> 1362[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2598[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2598 -> 2678[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2598 -> 2679[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2599 -> 1363[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2599[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2599 -> 2680[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2599 -> 2681[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2600 -> 1364[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2600[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2600 -> 2682[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2600 -> 2683[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2601 -> 1365[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2601[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2601 -> 2684[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2601 -> 2685[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2602 -> 1366[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2602[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2602 -> 2686[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2602 -> 2687[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2603 -> 1367[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2603[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2603 -> 2688[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2603 -> 2689[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2604 -> 1368[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2604[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2604 -> 2690[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2604 -> 2691[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2605 -> 1369[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2605[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2605 -> 2692[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2605 -> 2693[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2606 -> 1370[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2606[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2606 -> 2694[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2606 -> 2695[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2607 -> 503[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2607[label="vyw490 == vyw500",fontsize=16,color="magenta"];2607 -> 2696[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2607 -> 2697[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2608 -> 497[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2608[label="vyw490 == vyw500",fontsize=16,color="magenta"];2608 -> 2698[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2608 -> 2699[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2609 -> 508[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2609[label="vyw490 == vyw500",fontsize=16,color="magenta"];2609 -> 2700[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2609 -> 2701[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2610 -> 509[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2610[label="vyw490 == vyw500",fontsize=16,color="magenta"];2610 -> 2702[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2610 -> 2703[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2611 -> 500[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2611[label="vyw490 == vyw500",fontsize=16,color="magenta"];2611 -> 2704[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2611 -> 2705[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2612 -> 501[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2612[label="vyw490 == vyw500",fontsize=16,color="magenta"];2612 -> 2706[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2612 -> 2707[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2613 -> 498[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2613[label="vyw490 == vyw500",fontsize=16,color="magenta"];2613 -> 2708[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2613 -> 2709[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2614 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2614[label="vyw490 == vyw500",fontsize=16,color="magenta"];2614 -> 2710[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2614 -> 2711[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2615 -> 496[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2615[label="vyw490 == vyw500",fontsize=16,color="magenta"];2615 -> 2712[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2615 -> 2713[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2616 -> 504[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2616[label="vyw490 == vyw500",fontsize=16,color="magenta"];2616 -> 2714[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2616 -> 2715[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2617 -> 505[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2617[label="vyw490 == vyw500",fontsize=16,color="magenta"];2617 -> 2716[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2617 -> 2717[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2618 -> 502[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2618[label="vyw490 == vyw500",fontsize=16,color="magenta"];2618 -> 2718[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2618 -> 2719[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2619 -> 507[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2619[label="vyw490 == vyw500",fontsize=16,color="magenta"];2619 -> 2720[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2619 -> 2721[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2620 -> 506[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2620[label="vyw490 == vyw500",fontsize=16,color="magenta"];2620 -> 2722[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2620 -> 2723[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2621[label="True",fontsize=16,color="green",shape="box"];2622[label="False",fontsize=16,color="green",shape="box"];2623[label="vyw490",fontsize=16,color="green",shape="box"];2624[label="vyw500",fontsize=16,color="green",shape="box"];2625[label="vyw490",fontsize=16,color="green",shape="box"];2626[label="vyw500",fontsize=16,color="green",shape="box"];2627[label="vyw490",fontsize=16,color="green",shape="box"];2628[label="vyw500",fontsize=16,color="green",shape="box"];2629[label="vyw490",fontsize=16,color="green",shape="box"];2630[label="vyw500",fontsize=16,color="green",shape="box"];2631[label="vyw490",fontsize=16,color="green",shape="box"];2632[label="vyw500",fontsize=16,color="green",shape="box"];2633[label="vyw490",fontsize=16,color="green",shape="box"];2634[label="vyw500",fontsize=16,color="green",shape="box"];2635[label="vyw490",fontsize=16,color="green",shape="box"];2636[label="vyw500",fontsize=16,color="green",shape="box"];2637[label="vyw490",fontsize=16,color="green",shape="box"];2638[label="vyw500",fontsize=16,color="green",shape="box"];2639[label="vyw490",fontsize=16,color="green",shape="box"];2640[label="vyw500",fontsize=16,color="green",shape="box"];2641[label="vyw490",fontsize=16,color="green",shape="box"];2642[label="vyw500",fontsize=16,color="green",shape="box"];2643[label="vyw490",fontsize=16,color="green",shape="box"];2644[label="vyw500",fontsize=16,color="green",shape="box"];2645[label="vyw490",fontsize=16,color="green",shape="box"];2646[label="vyw500",fontsize=16,color="green",shape="box"];2647[label="vyw490",fontsize=16,color="green",shape="box"];2648[label="vyw500",fontsize=16,color="green",shape="box"];2649[label="vyw490",fontsize=16,color="green",shape="box"];2650[label="vyw500",fontsize=16,color="green",shape="box"];2651[label="vyw491 < vyw501",fontsize=16,color="blue",shape="box"];3718[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 3718[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3718 -> 2724[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3719[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 3719[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3719 -> 2725[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3720[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 3720[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3720 -> 2726[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3721[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 3721[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3721 -> 2727[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3722[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 3722[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3722 -> 2728[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3723[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 3723[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3723 -> 2729[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3724[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 3724[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3724 -> 2730[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3725[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 3725[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3725 -> 2731[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3726[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 3726[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3726 -> 2732[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3727[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 3727[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3727 -> 2733[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3728[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 3728[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3728 -> 2734[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3729[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 3729[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3729 -> 2735[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3730[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 3730[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3730 -> 2736[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3731[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 3731[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3731 -> 2737[label="",style="solid", color="blue", weight=3]; 29.11/13.92 2652 -> 980[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2652[label="vyw491 == vyw501 && vyw492 <= vyw502",fontsize=16,color="magenta"];2652 -> 2738[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2652 -> 2739[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2653 -> 503[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2653[label="vyw490 == vyw500",fontsize=16,color="magenta"];2653 -> 2740[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2653 -> 2741[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2654 -> 497[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2654[label="vyw490 == vyw500",fontsize=16,color="magenta"];2654 -> 2742[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2654 -> 2743[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2655 -> 508[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2655[label="vyw490 == vyw500",fontsize=16,color="magenta"];2655 -> 2744[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2655 -> 2745[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2656 -> 509[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2656[label="vyw490 == vyw500",fontsize=16,color="magenta"];2656 -> 2746[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2656 -> 2747[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2657 -> 500[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2657[label="vyw490 == vyw500",fontsize=16,color="magenta"];2657 -> 2748[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2657 -> 2749[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2658 -> 501[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2658[label="vyw490 == vyw500",fontsize=16,color="magenta"];2658 -> 2750[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2658 -> 2751[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2659 -> 498[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2659[label="vyw490 == vyw500",fontsize=16,color="magenta"];2659 -> 2752[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2659 -> 2753[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2660 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2660[label="vyw490 == vyw500",fontsize=16,color="magenta"];2660 -> 2754[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2660 -> 2755[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2661 -> 496[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2661[label="vyw490 == vyw500",fontsize=16,color="magenta"];2661 -> 2756[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2661 -> 2757[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2662 -> 504[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2662[label="vyw490 == vyw500",fontsize=16,color="magenta"];2662 -> 2758[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2662 -> 2759[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2663 -> 505[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2663[label="vyw490 == vyw500",fontsize=16,color="magenta"];2663 -> 2760[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2663 -> 2761[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2664 -> 502[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2664[label="vyw490 == vyw500",fontsize=16,color="magenta"];2664 -> 2762[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2664 -> 2763[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2665 -> 507[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2665[label="vyw490 == vyw500",fontsize=16,color="magenta"];2665 -> 2764[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2665 -> 2765[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2666 -> 506[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2666[label="vyw490 == vyw500",fontsize=16,color="magenta"];2666 -> 2766[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2666 -> 2767[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2667[label="primPlusNat vyw1830 vyw30100",fontsize=16,color="burlywood",shape="triangle"];3732[label="vyw1830/Succ vyw18300",fontsize=10,color="white",style="solid",shape="box"];2667 -> 3732[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3732 -> 2768[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 3733[label="vyw1830/Zero",fontsize=10,color="white",style="solid",shape="box"];2667 -> 3733[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3733 -> 2769[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 2668[label="vyw501",fontsize=16,color="green",shape="box"];2669[label="vyw491",fontsize=16,color="green",shape="box"];2670[label="vyw501",fontsize=16,color="green",shape="box"];2671[label="vyw491",fontsize=16,color="green",shape="box"];2672[label="vyw501",fontsize=16,color="green",shape="box"];2673[label="vyw491",fontsize=16,color="green",shape="box"];2674[label="vyw501",fontsize=16,color="green",shape="box"];2675[label="vyw491",fontsize=16,color="green",shape="box"];2676[label="vyw501",fontsize=16,color="green",shape="box"];2677[label="vyw491",fontsize=16,color="green",shape="box"];2678[label="vyw501",fontsize=16,color="green",shape="box"];2679[label="vyw491",fontsize=16,color="green",shape="box"];2680[label="vyw501",fontsize=16,color="green",shape="box"];2681[label="vyw491",fontsize=16,color="green",shape="box"];2682[label="vyw501",fontsize=16,color="green",shape="box"];2683[label="vyw491",fontsize=16,color="green",shape="box"];2684[label="vyw501",fontsize=16,color="green",shape="box"];2685[label="vyw491",fontsize=16,color="green",shape="box"];2686[label="vyw501",fontsize=16,color="green",shape="box"];2687[label="vyw491",fontsize=16,color="green",shape="box"];2688[label="vyw501",fontsize=16,color="green",shape="box"];2689[label="vyw491",fontsize=16,color="green",shape="box"];2690[label="vyw501",fontsize=16,color="green",shape="box"];2691[label="vyw491",fontsize=16,color="green",shape="box"];2692[label="vyw501",fontsize=16,color="green",shape="box"];2693[label="vyw491",fontsize=16,color="green",shape="box"];2694[label="vyw501",fontsize=16,color="green",shape="box"];2695[label="vyw491",fontsize=16,color="green",shape="box"];2696[label="vyw490",fontsize=16,color="green",shape="box"];2697[label="vyw500",fontsize=16,color="green",shape="box"];2698[label="vyw490",fontsize=16,color="green",shape="box"];2699[label="vyw500",fontsize=16,color="green",shape="box"];2700[label="vyw490",fontsize=16,color="green",shape="box"];2701[label="vyw500",fontsize=16,color="green",shape="box"];2702[label="vyw490",fontsize=16,color="green",shape="box"];2703[label="vyw500",fontsize=16,color="green",shape="box"];2704[label="vyw490",fontsize=16,color="green",shape="box"];2705[label="vyw500",fontsize=16,color="green",shape="box"];2706[label="vyw490",fontsize=16,color="green",shape="box"];2707[label="vyw500",fontsize=16,color="green",shape="box"];2708[label="vyw490",fontsize=16,color="green",shape="box"];2709[label="vyw500",fontsize=16,color="green",shape="box"];2710[label="vyw490",fontsize=16,color="green",shape="box"];2711[label="vyw500",fontsize=16,color="green",shape="box"];2712[label="vyw490",fontsize=16,color="green",shape="box"];2713[label="vyw500",fontsize=16,color="green",shape="box"];2714[label="vyw490",fontsize=16,color="green",shape="box"];2715[label="vyw500",fontsize=16,color="green",shape="box"];2716[label="vyw490",fontsize=16,color="green",shape="box"];2717[label="vyw500",fontsize=16,color="green",shape="box"];2718[label="vyw490",fontsize=16,color="green",shape="box"];2719[label="vyw500",fontsize=16,color="green",shape="box"];2720[label="vyw490",fontsize=16,color="green",shape="box"];2721[label="vyw500",fontsize=16,color="green",shape="box"];2722[label="vyw490",fontsize=16,color="green",shape="box"];2723[label="vyw500",fontsize=16,color="green",shape="box"];2724 -> 23[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2724[label="vyw491 < vyw501",fontsize=16,color="magenta"];2724 -> 2770[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2724 -> 2771[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2725 -> 24[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2725[label="vyw491 < vyw501",fontsize=16,color="magenta"];2725 -> 2772[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2725 -> 2773[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2726 -> 25[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2726[label="vyw491 < vyw501",fontsize=16,color="magenta"];2726 -> 2774[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2726 -> 2775[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2727 -> 26[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2727[label="vyw491 < vyw501",fontsize=16,color="magenta"];2727 -> 2776[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2727 -> 2777[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2728 -> 27[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2728[label="vyw491 < vyw501",fontsize=16,color="magenta"];2728 -> 2778[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2728 -> 2779[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2729 -> 28[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2729[label="vyw491 < vyw501",fontsize=16,color="magenta"];2729 -> 2780[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2729 -> 2781[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2730 -> 29[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2730[label="vyw491 < vyw501",fontsize=16,color="magenta"];2730 -> 2782[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2730 -> 2783[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2731 -> 30[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2731[label="vyw491 < vyw501",fontsize=16,color="magenta"];2731 -> 2784[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2731 -> 2785[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2732 -> 31[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2732[label="vyw491 < vyw501",fontsize=16,color="magenta"];2732 -> 2786[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2732 -> 2787[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2733 -> 32[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2733[label="vyw491 < vyw501",fontsize=16,color="magenta"];2733 -> 2788[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2733 -> 2789[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2734 -> 33[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2734[label="vyw491 < vyw501",fontsize=16,color="magenta"];2734 -> 2790[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2734 -> 2791[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2735 -> 34[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2735[label="vyw491 < vyw501",fontsize=16,color="magenta"];2735 -> 2792[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2735 -> 2793[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2736 -> 35[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2736[label="vyw491 < vyw501",fontsize=16,color="magenta"];2736 -> 2794[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2736 -> 2795[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2737 -> 36[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2737[label="vyw491 < vyw501",fontsize=16,color="magenta"];2737 -> 2796[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2737 -> 2797[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2738[label="vyw492 <= vyw502",fontsize=16,color="blue",shape="box"];3734[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2738 -> 3734[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3734 -> 2798[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3735[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2738 -> 3735[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3735 -> 2799[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3736[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2738 -> 3736[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3736 -> 2800[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3737[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2738 -> 3737[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3737 -> 2801[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3738[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2738 -> 3738[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3738 -> 2802[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3739[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2738 -> 3739[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3739 -> 2803[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3740[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2738 -> 3740[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3740 -> 2804[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3741[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2738 -> 3741[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3741 -> 2805[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3742[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2738 -> 3742[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3742 -> 2806[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3743[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2738 -> 3743[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3743 -> 2807[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3744[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2738 -> 3744[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3744 -> 2808[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3745[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2738 -> 3745[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3745 -> 2809[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3746[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2738 -> 3746[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3746 -> 2810[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3747[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2738 -> 3747[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3747 -> 2811[label="",style="solid", color="blue", weight=3]; 29.11/13.92 2739[label="vyw491 == vyw501",fontsize=16,color="blue",shape="box"];3748[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 3748[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3748 -> 2812[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3749[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 3749[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3749 -> 2813[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3750[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 3750[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3750 -> 2814[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3751[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 3751[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3751 -> 2815[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3752[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 3752[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3752 -> 2816[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3753[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 3753[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3753 -> 2817[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3754[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 3754[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3754 -> 2818[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3755[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 3755[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3755 -> 2819[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3756[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 3756[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3756 -> 2820[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3757[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 3757[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3757 -> 2821[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3758[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 3758[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3758 -> 2822[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3759[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 3759[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3759 -> 2823[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3760[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 3760[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3760 -> 2824[label="",style="solid", color="blue", weight=3]; 29.11/13.92 3761[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 3761[label="",style="solid", color="blue", weight=9]; 29.11/13.92 3761 -> 2825[label="",style="solid", color="blue", weight=3]; 29.11/13.92 2740[label="vyw490",fontsize=16,color="green",shape="box"];2741[label="vyw500",fontsize=16,color="green",shape="box"];2742[label="vyw490",fontsize=16,color="green",shape="box"];2743[label="vyw500",fontsize=16,color="green",shape="box"];2744[label="vyw490",fontsize=16,color="green",shape="box"];2745[label="vyw500",fontsize=16,color="green",shape="box"];2746[label="vyw490",fontsize=16,color="green",shape="box"];2747[label="vyw500",fontsize=16,color="green",shape="box"];2748[label="vyw490",fontsize=16,color="green",shape="box"];2749[label="vyw500",fontsize=16,color="green",shape="box"];2750[label="vyw490",fontsize=16,color="green",shape="box"];2751[label="vyw500",fontsize=16,color="green",shape="box"];2752[label="vyw490",fontsize=16,color="green",shape="box"];2753[label="vyw500",fontsize=16,color="green",shape="box"];2754[label="vyw490",fontsize=16,color="green",shape="box"];2755[label="vyw500",fontsize=16,color="green",shape="box"];2756[label="vyw490",fontsize=16,color="green",shape="box"];2757[label="vyw500",fontsize=16,color="green",shape="box"];2758[label="vyw490",fontsize=16,color="green",shape="box"];2759[label="vyw500",fontsize=16,color="green",shape="box"];2760[label="vyw490",fontsize=16,color="green",shape="box"];2761[label="vyw500",fontsize=16,color="green",shape="box"];2762[label="vyw490",fontsize=16,color="green",shape="box"];2763[label="vyw500",fontsize=16,color="green",shape="box"];2764[label="vyw490",fontsize=16,color="green",shape="box"];2765[label="vyw500",fontsize=16,color="green",shape="box"];2766[label="vyw490",fontsize=16,color="green",shape="box"];2767[label="vyw500",fontsize=16,color="green",shape="box"];2768[label="primPlusNat (Succ vyw18300) vyw30100",fontsize=16,color="burlywood",shape="box"];3762[label="vyw30100/Succ vyw301000",fontsize=10,color="white",style="solid",shape="box"];2768 -> 3762[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3762 -> 2826[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 3763[label="vyw30100/Zero",fontsize=10,color="white",style="solid",shape="box"];2768 -> 3763[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3763 -> 2827[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 2769[label="primPlusNat Zero vyw30100",fontsize=16,color="burlywood",shape="box"];3764[label="vyw30100/Succ vyw301000",fontsize=10,color="white",style="solid",shape="box"];2769 -> 3764[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3764 -> 2828[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 3765[label="vyw30100/Zero",fontsize=10,color="white",style="solid",shape="box"];2769 -> 3765[label="",style="solid", color="burlywood", weight=9]; 29.11/13.92 3765 -> 2829[label="",style="solid", color="burlywood", weight=3]; 29.11/13.92 2770[label="vyw491",fontsize=16,color="green",shape="box"];2771[label="vyw501",fontsize=16,color="green",shape="box"];2772[label="vyw491",fontsize=16,color="green",shape="box"];2773[label="vyw501",fontsize=16,color="green",shape="box"];2774[label="vyw491",fontsize=16,color="green",shape="box"];2775[label="vyw501",fontsize=16,color="green",shape="box"];2776[label="vyw491",fontsize=16,color="green",shape="box"];2777[label="vyw501",fontsize=16,color="green",shape="box"];2778[label="vyw491",fontsize=16,color="green",shape="box"];2779[label="vyw501",fontsize=16,color="green",shape="box"];2780[label="vyw491",fontsize=16,color="green",shape="box"];2781[label="vyw501",fontsize=16,color="green",shape="box"];2782[label="vyw491",fontsize=16,color="green",shape="box"];2783[label="vyw501",fontsize=16,color="green",shape="box"];2784[label="vyw491",fontsize=16,color="green",shape="box"];2785[label="vyw501",fontsize=16,color="green",shape="box"];2786[label="vyw491",fontsize=16,color="green",shape="box"];2787[label="vyw501",fontsize=16,color="green",shape="box"];2788[label="vyw491",fontsize=16,color="green",shape="box"];2789[label="vyw501",fontsize=16,color="green",shape="box"];2790[label="vyw491",fontsize=16,color="green",shape="box"];2791[label="vyw501",fontsize=16,color="green",shape="box"];2792[label="vyw491",fontsize=16,color="green",shape="box"];2793[label="vyw501",fontsize=16,color="green",shape="box"];2794[label="vyw491",fontsize=16,color="green",shape="box"];2795[label="vyw501",fontsize=16,color="green",shape="box"];2796[label="vyw491",fontsize=16,color="green",shape="box"];2797[label="vyw501",fontsize=16,color="green",shape="box"];2798 -> 1357[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2798[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2798 -> 2830[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2798 -> 2831[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2799 -> 1358[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2799[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2799 -> 2832[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2799 -> 2833[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2800 -> 1359[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2800[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2800 -> 2834[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2800 -> 2835[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2801 -> 1360[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2801[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2801 -> 2836[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2801 -> 2837[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2802 -> 1361[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2802[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2802 -> 2838[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2802 -> 2839[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2803 -> 1362[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2803[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2803 -> 2840[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2803 -> 2841[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2804 -> 1363[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2804[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2804 -> 2842[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2804 -> 2843[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2805 -> 1364[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2805[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2805 -> 2844[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2805 -> 2845[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2806 -> 1365[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2806[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2806 -> 2846[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2806 -> 2847[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2807 -> 1366[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2807[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2807 -> 2848[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2807 -> 2849[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2808 -> 1367[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2808[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2808 -> 2850[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2808 -> 2851[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2809 -> 1368[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2809[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2809 -> 2852[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2809 -> 2853[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2810 -> 1369[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2810[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2810 -> 2854[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2810 -> 2855[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2811 -> 1370[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2811[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2811 -> 2856[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2811 -> 2857[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2812 -> 503[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2812[label="vyw491 == vyw501",fontsize=16,color="magenta"];2812 -> 2858[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2812 -> 2859[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2813 -> 497[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2813[label="vyw491 == vyw501",fontsize=16,color="magenta"];2813 -> 2860[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2813 -> 2861[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2814 -> 508[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2814[label="vyw491 == vyw501",fontsize=16,color="magenta"];2814 -> 2862[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2814 -> 2863[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2815 -> 509[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2815[label="vyw491 == vyw501",fontsize=16,color="magenta"];2815 -> 2864[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2815 -> 2865[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2816 -> 500[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2816[label="vyw491 == vyw501",fontsize=16,color="magenta"];2816 -> 2866[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2816 -> 2867[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2817 -> 501[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2817[label="vyw491 == vyw501",fontsize=16,color="magenta"];2817 -> 2868[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2817 -> 2869[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2818 -> 498[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2818[label="vyw491 == vyw501",fontsize=16,color="magenta"];2818 -> 2870[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2818 -> 2871[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2819 -> 499[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2819[label="vyw491 == vyw501",fontsize=16,color="magenta"];2819 -> 2872[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2819 -> 2873[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2820 -> 496[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2820[label="vyw491 == vyw501",fontsize=16,color="magenta"];2820 -> 2874[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2820 -> 2875[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2821 -> 504[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2821[label="vyw491 == vyw501",fontsize=16,color="magenta"];2821 -> 2876[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2821 -> 2877[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2822 -> 505[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2822[label="vyw491 == vyw501",fontsize=16,color="magenta"];2822 -> 2878[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2822 -> 2879[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2823 -> 502[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2823[label="vyw491 == vyw501",fontsize=16,color="magenta"];2823 -> 2880[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2823 -> 2881[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2824 -> 507[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2824[label="vyw491 == vyw501",fontsize=16,color="magenta"];2824 -> 2882[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2824 -> 2883[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2825 -> 506[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2825[label="vyw491 == vyw501",fontsize=16,color="magenta"];2825 -> 2884[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2825 -> 2885[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2826[label="primPlusNat (Succ vyw18300) (Succ vyw301000)",fontsize=16,color="black",shape="box"];2826 -> 2886[label="",style="solid", color="black", weight=3]; 29.11/13.92 2827[label="primPlusNat (Succ vyw18300) Zero",fontsize=16,color="black",shape="box"];2827 -> 2887[label="",style="solid", color="black", weight=3]; 29.11/13.92 2828[label="primPlusNat Zero (Succ vyw301000)",fontsize=16,color="black",shape="box"];2828 -> 2888[label="",style="solid", color="black", weight=3]; 29.11/13.92 2829[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2829 -> 2889[label="",style="solid", color="black", weight=3]; 29.11/13.92 2830[label="vyw502",fontsize=16,color="green",shape="box"];2831[label="vyw492",fontsize=16,color="green",shape="box"];2832[label="vyw502",fontsize=16,color="green",shape="box"];2833[label="vyw492",fontsize=16,color="green",shape="box"];2834[label="vyw502",fontsize=16,color="green",shape="box"];2835[label="vyw492",fontsize=16,color="green",shape="box"];2836[label="vyw502",fontsize=16,color="green",shape="box"];2837[label="vyw492",fontsize=16,color="green",shape="box"];2838[label="vyw502",fontsize=16,color="green",shape="box"];2839[label="vyw492",fontsize=16,color="green",shape="box"];2840[label="vyw502",fontsize=16,color="green",shape="box"];2841[label="vyw492",fontsize=16,color="green",shape="box"];2842[label="vyw502",fontsize=16,color="green",shape="box"];2843[label="vyw492",fontsize=16,color="green",shape="box"];2844[label="vyw502",fontsize=16,color="green",shape="box"];2845[label="vyw492",fontsize=16,color="green",shape="box"];2846[label="vyw502",fontsize=16,color="green",shape="box"];2847[label="vyw492",fontsize=16,color="green",shape="box"];2848[label="vyw502",fontsize=16,color="green",shape="box"];2849[label="vyw492",fontsize=16,color="green",shape="box"];2850[label="vyw502",fontsize=16,color="green",shape="box"];2851[label="vyw492",fontsize=16,color="green",shape="box"];2852[label="vyw502",fontsize=16,color="green",shape="box"];2853[label="vyw492",fontsize=16,color="green",shape="box"];2854[label="vyw502",fontsize=16,color="green",shape="box"];2855[label="vyw492",fontsize=16,color="green",shape="box"];2856[label="vyw502",fontsize=16,color="green",shape="box"];2857[label="vyw492",fontsize=16,color="green",shape="box"];2858[label="vyw491",fontsize=16,color="green",shape="box"];2859[label="vyw501",fontsize=16,color="green",shape="box"];2860[label="vyw491",fontsize=16,color="green",shape="box"];2861[label="vyw501",fontsize=16,color="green",shape="box"];2862[label="vyw491",fontsize=16,color="green",shape="box"];2863[label="vyw501",fontsize=16,color="green",shape="box"];2864[label="vyw491",fontsize=16,color="green",shape="box"];2865[label="vyw501",fontsize=16,color="green",shape="box"];2866[label="vyw491",fontsize=16,color="green",shape="box"];2867[label="vyw501",fontsize=16,color="green",shape="box"];2868[label="vyw491",fontsize=16,color="green",shape="box"];2869[label="vyw501",fontsize=16,color="green",shape="box"];2870[label="vyw491",fontsize=16,color="green",shape="box"];2871[label="vyw501",fontsize=16,color="green",shape="box"];2872[label="vyw491",fontsize=16,color="green",shape="box"];2873[label="vyw501",fontsize=16,color="green",shape="box"];2874[label="vyw491",fontsize=16,color="green",shape="box"];2875[label="vyw501",fontsize=16,color="green",shape="box"];2876[label="vyw491",fontsize=16,color="green",shape="box"];2877[label="vyw501",fontsize=16,color="green",shape="box"];2878[label="vyw491",fontsize=16,color="green",shape="box"];2879[label="vyw501",fontsize=16,color="green",shape="box"];2880[label="vyw491",fontsize=16,color="green",shape="box"];2881[label="vyw501",fontsize=16,color="green",shape="box"];2882[label="vyw491",fontsize=16,color="green",shape="box"];2883[label="vyw501",fontsize=16,color="green",shape="box"];2884[label="vyw491",fontsize=16,color="green",shape="box"];2885[label="vyw501",fontsize=16,color="green",shape="box"];2886[label="Succ (Succ (primPlusNat vyw18300 vyw301000))",fontsize=16,color="green",shape="box"];2886 -> 2890[label="",style="dashed", color="green", weight=3]; 29.11/13.92 2887[label="Succ vyw18300",fontsize=16,color="green",shape="box"];2888[label="Succ vyw301000",fontsize=16,color="green",shape="box"];2889[label="Zero",fontsize=16,color="green",shape="box"];2890 -> 2667[label="",style="dashed", color="red", weight=0]; 29.11/13.92 2890[label="primPlusNat vyw18300 vyw301000",fontsize=16,color="magenta"];2890 -> 2891[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2890 -> 2892[label="",style="dashed", color="magenta", weight=3]; 29.11/13.92 2891[label="vyw18300",fontsize=16,color="green",shape="box"];2892[label="vyw301000",fontsize=16,color="green",shape="box"];} 29.11/13.92 29.11/13.92 ---------------------------------------- 29.11/13.92 29.11/13.92 (16) 29.11/13.92 Complex Obligation (AND) 29.11/13.92 29.11/13.92 ---------------------------------------- 29.11/13.92 29.11/13.92 (17) 29.11/13.92 Obligation: 29.11/13.92 Q DP problem: 29.11/13.92 The TRS P consists of the following rules: 29.11/13.92 29.11/13.92 new_primCmpNat(Succ(vyw500), Succ(vyw3000)) -> new_primCmpNat(vyw500, vyw3000) 29.11/13.92 29.11/13.92 R is empty. 29.11/13.92 Q is empty. 29.11/13.92 We have to consider all minimal (P,Q,R)-chains. 29.11/13.92 ---------------------------------------- 29.11/13.92 29.11/13.92 (18) QDPSizeChangeProof (EQUIVALENT) 29.11/13.92 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 29.11/13.92 29.11/13.92 From the DPs we obtained the following set of size-change graphs: 29.11/13.92 *new_primCmpNat(Succ(vyw500), Succ(vyw3000)) -> new_primCmpNat(vyw500, vyw3000) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2 29.11/13.92 29.11/13.92 29.11/13.92 ---------------------------------------- 29.11/13.92 29.11/13.92 (19) 29.11/13.92 YES 29.11/13.92 29.11/13.92 ---------------------------------------- 29.11/13.92 29.11/13.92 (20) 29.11/13.92 Obligation: 29.11/13.92 Q DP problem: 29.11/13.92 The TRS P consists of the following rules: 29.11/13.92 29.11/13.92 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bae, app(app(ty_Either, bcd), bce), bcb) -> new_esEs1(vyw501, vyw3001, bcd, bce) 29.11/13.92 new_esEs0(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, ec), ed), ee)) -> new_esEs3(vyw500, vyw3000, ec, ed, ee) 29.11/13.92 new_esEs1(Left(vyw500), Left(vyw3000), app(app(ty_Either, fb), fc), eh) -> new_esEs1(vyw500, vyw3000, fb, fc) 29.11/13.92 new_esEs2(:(vyw500, vyw501), :(vyw3000, vyw3001), hc) -> new_esEs2(vyw501, vyw3001, hc) 29.11/13.92 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bae, baf, app(ty_Maybe, bba)) -> new_esEs0(vyw502, vyw3002, bba) 29.11/13.92 new_esEs1(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, ff), fg), fh), eh) -> new_esEs3(vyw500, vyw3000, ff, fg, fh) 29.11/13.92 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(ty_Either, bde), bdf), baf, bcb) -> new_esEs1(vyw500, vyw3000, bde, bdf) 29.11/13.92 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(app(ty_@3, bdh), bea), beb), baf, bcb) -> new_esEs3(vyw500, vyw3000, bdh, bea, beb) 29.11/13.92 new_esEs(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(ty_@2, cb), cc), cd) -> new_esEs(vyw500, vyw3000, cb, cc) 29.11/13.92 new_esEs2(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(ty_@2, hd), he)) -> new_esEs(vyw500, vyw3000, hd, he) 29.11/13.92 new_esEs(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(app(ty_@3, db), dc), dd), cd) -> new_esEs3(vyw500, vyw3000, db, dc, dd) 29.11/13.92 new_esEs1(Right(vyw500), Right(vyw3000), ga, app(ty_[], gg)) -> new_esEs2(vyw500, vyw3000, gg) 29.11/13.92 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(ty_[], bdg), baf, bcb) -> new_esEs2(vyw500, vyw3000, bdg) 29.11/13.92 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(vyw502, vyw3002, bbe, bbf, bbg) 29.11/13.92 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bae, app(ty_Maybe, bcc), bcb) -> new_esEs0(vyw501, vyw3001, bcc) 29.11/13.92 new_esEs(@2(vyw500, vyw501), @2(vyw3000, vyw3001), h, app(app(ty_@2, ba), bb)) -> new_esEs(vyw501, vyw3001, ba, bb) 29.11/13.92 new_esEs1(Right(vyw500), Right(vyw3000), ga, app(ty_Maybe, gd)) -> new_esEs0(vyw500, vyw3000, gd) 29.11/13.92 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(ty_Maybe, bdd), baf, bcb) -> new_esEs0(vyw500, vyw3000, bdd) 29.11/13.92 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bae, baf, app(app(ty_Either, bbb), bbc)) -> new_esEs1(vyw502, vyw3002, bbb, bbc) 29.11/13.92 new_esEs1(Left(vyw500), Left(vyw3000), app(app(ty_@2, ef), eg), eh) -> new_esEs(vyw500, vyw3000, ef, eg) 29.11/13.92 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bae, baf, app(app(ty_@2, bag), bah)) -> new_esEs(vyw502, vyw3002, bag, bah) 29.11/13.92 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bae, app(app(ty_@2, bbh), bca), bcb) -> new_esEs(vyw501, vyw3001, bbh, bca) 29.11/13.92 new_esEs(@2(vyw500, vyw501), @2(vyw3000, vyw3001), h, app(app(app(ty_@3, bg), bh), ca)) -> new_esEs3(vyw501, vyw3001, bg, bh, ca) 29.11/13.92 new_esEs(@2(vyw500, vyw501), @2(vyw3000, vyw3001), h, app(app(ty_Either, bd), be)) -> new_esEs1(vyw501, vyw3001, bd, be) 29.11/13.92 new_esEs2(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(ty_Either, hg), hh)) -> new_esEs1(vyw500, vyw3000, hg, hh) 29.11/13.92 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bae, app(ty_[], bcf), bcb) -> new_esEs2(vyw501, vyw3001, bcf) 29.11/13.92 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bae, app(app(app(ty_@3, bcg), bch), bda), bcb) -> new_esEs3(vyw501, vyw3001, bcg, bch, bda) 29.11/13.92 new_esEs(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(ty_Either, cf), cg), cd) -> new_esEs1(vyw500, vyw3000, cf, cg) 29.11/13.92 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bae, baf, app(ty_[], bbd)) -> new_esEs2(vyw502, vyw3002, bbd) 29.11/13.92 new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(ty_@2, bdb), bdc), baf, bcb) -> new_esEs(vyw500, vyw3000, bdb, bdc) 29.11/13.92 new_esEs0(Just(vyw500), Just(vyw3000), app(app(ty_@2, de), df)) -> new_esEs(vyw500, vyw3000, de, df) 29.11/13.92 new_esEs2(:(vyw500, vyw501), :(vyw3000, vyw3001), app(ty_Maybe, hf)) -> new_esEs0(vyw500, vyw3000, hf) 29.11/13.92 new_esEs2(:(vyw500, vyw501), :(vyw3000, vyw3001), app(ty_[], baa)) -> new_esEs2(vyw500, vyw3000, baa) 29.11/13.92 new_esEs0(Just(vyw500), Just(vyw3000), app(app(ty_Either, dh), ea)) -> new_esEs1(vyw500, vyw3000, dh, ea) 29.11/13.92 new_esEs0(Just(vyw500), Just(vyw3000), app(ty_[], eb)) -> new_esEs2(vyw500, vyw3000, eb) 29.11/13.92 new_esEs0(Just(vyw500), Just(vyw3000), app(ty_Maybe, dg)) -> new_esEs0(vyw500, vyw3000, dg) 29.11/13.92 new_esEs1(Right(vyw500), Right(vyw3000), ga, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs3(vyw500, vyw3000, gh, ha, hb) 29.11/13.92 new_esEs2(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vyw500, vyw3000, bab, bac, bad) 29.11/13.92 new_esEs1(Right(vyw500), Right(vyw3000), ga, app(app(ty_@2, gb), gc)) -> new_esEs(vyw500, vyw3000, gb, gc) 29.11/13.92 new_esEs1(Left(vyw500), Left(vyw3000), app(ty_Maybe, fa), eh) -> new_esEs0(vyw500, vyw3000, fa) 29.11/13.92 new_esEs1(Left(vyw500), Left(vyw3000), app(ty_[], fd), eh) -> new_esEs2(vyw500, vyw3000, fd) 29.11/13.92 new_esEs(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(ty_Maybe, ce), cd) -> new_esEs0(vyw500, vyw3000, ce) 29.11/13.92 new_esEs1(Right(vyw500), Right(vyw3000), ga, app(app(ty_Either, ge), gf)) -> new_esEs1(vyw500, vyw3000, ge, gf) 29.11/13.92 new_esEs(@2(vyw500, vyw501), @2(vyw3000, vyw3001), h, app(ty_[], bf)) -> new_esEs2(vyw501, vyw3001, bf) 29.11/13.92 new_esEs(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(ty_[], da), cd) -> new_esEs2(vyw500, vyw3000, da) 29.11/13.92 new_esEs(@2(vyw500, vyw501), @2(vyw3000, vyw3001), h, app(ty_Maybe, bc)) -> new_esEs0(vyw501, vyw3001, bc) 29.11/13.92 29.11/13.92 R is empty. 29.11/13.92 Q is empty. 29.11/13.92 We have to consider all minimal (P,Q,R)-chains. 29.11/13.92 ---------------------------------------- 29.11/13.92 29.11/13.92 (21) QDPSizeChangeProof (EQUIVALENT) 29.11/13.92 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 29.11/13.92 29.11/13.92 From the DPs we obtained the following set of size-change graphs: 29.11/13.92 *new_esEs2(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vyw500, vyw3000, bab, bac, bad) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs2(:(vyw500, vyw501), :(vyw3000, vyw3001), app(ty_Maybe, hf)) -> new_esEs0(vyw500, vyw3000, hf) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs2(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(ty_Either, hg), hh)) -> new_esEs1(vyw500, vyw3000, hg, hh) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs2(:(vyw500, vyw501), :(vyw3000, vyw3001), app(app(ty_@2, hd), he)) -> new_esEs(vyw500, vyw3000, hd, he) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs0(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, ec), ed), ee)) -> new_esEs3(vyw500, vyw3000, ec, ed, ee) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs0(Just(vyw500), Just(vyw3000), app(ty_Maybe, dg)) -> new_esEs0(vyw500, vyw3000, dg) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs0(Just(vyw500), Just(vyw3000), app(app(ty_Either, dh), ea)) -> new_esEs1(vyw500, vyw3000, dh, ea) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs0(Just(vyw500), Just(vyw3000), app(ty_[], eb)) -> new_esEs2(vyw500, vyw3000, eb) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs0(Just(vyw500), Just(vyw3000), app(app(ty_@2, de), df)) -> new_esEs(vyw500, vyw3000, de, df) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs1(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, ff), fg), fh), eh) -> new_esEs3(vyw500, vyw3000, ff, fg, fh) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs1(Right(vyw500), Right(vyw3000), ga, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs3(vyw500, vyw3000, gh, ha, hb) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs1(Right(vyw500), Right(vyw3000), ga, app(ty_Maybe, gd)) -> new_esEs0(vyw500, vyw3000, gd) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs1(Left(vyw500), Left(vyw3000), app(ty_Maybe, fa), eh) -> new_esEs0(vyw500, vyw3000, fa) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs1(Left(vyw500), Left(vyw3000), app(app(ty_Either, fb), fc), eh) -> new_esEs1(vyw500, vyw3000, fb, fc) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs1(Right(vyw500), Right(vyw3000), ga, app(app(ty_Either, ge), gf)) -> new_esEs1(vyw500, vyw3000, ge, gf) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs1(Right(vyw500), Right(vyw3000), ga, app(ty_[], gg)) -> new_esEs2(vyw500, vyw3000, gg) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs1(Left(vyw500), Left(vyw3000), app(ty_[], fd), eh) -> new_esEs2(vyw500, vyw3000, fd) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs1(Left(vyw500), Left(vyw3000), app(app(ty_@2, ef), eg), eh) -> new_esEs(vyw500, vyw3000, ef, eg) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs1(Right(vyw500), Right(vyw3000), ga, app(app(ty_@2, gb), gc)) -> new_esEs(vyw500, vyw3000, gb, gc) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(app(ty_@3, bdh), bea), beb), baf, bcb) -> new_esEs3(vyw500, vyw3000, bdh, bea, beb) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(vyw502, vyw3002, bbe, bbf, bbg) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bae, app(app(app(ty_@3, bcg), bch), bda), bcb) -> new_esEs3(vyw501, vyw3001, bcg, bch, bda) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(app(ty_@3, db), dc), dd), cd) -> new_esEs3(vyw500, vyw3000, db, dc, dd) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs(@2(vyw500, vyw501), @2(vyw3000, vyw3001), h, app(app(app(ty_@3, bg), bh), ca)) -> new_esEs3(vyw501, vyw3001, bg, bh, ca) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bae, baf, app(ty_Maybe, bba)) -> new_esEs0(vyw502, vyw3002, bba) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bae, app(ty_Maybe, bcc), bcb) -> new_esEs0(vyw501, vyw3001, bcc) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(ty_Maybe, bdd), baf, bcb) -> new_esEs0(vyw500, vyw3000, bdd) 29.11/13.92 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.11/13.92 29.11/13.92 29.11/13.92 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bae, app(app(ty_Either, bcd), bce), bcb) -> new_esEs1(vyw501, vyw3001, bcd, bce) 29.11/13.93 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.93 29.11/13.93 29.11/13.93 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(ty_Either, bde), bdf), baf, bcb) -> new_esEs1(vyw500, vyw3000, bde, bdf) 29.11/13.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.11/13.93 29.11/13.93 29.11/13.93 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bae, baf, app(app(ty_Either, bbb), bbc)) -> new_esEs1(vyw502, vyw3002, bbb, bbc) 29.11/13.93 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.11/13.93 29.11/13.93 29.11/13.93 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(ty_[], bdg), baf, bcb) -> new_esEs2(vyw500, vyw3000, bdg) 29.11/13.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.11/13.93 29.11/13.93 29.11/13.93 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bae, app(ty_[], bcf), bcb) -> new_esEs2(vyw501, vyw3001, bcf) 29.11/13.93 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.93 29.11/13.93 29.11/13.93 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bae, baf, app(ty_[], bbd)) -> new_esEs2(vyw502, vyw3002, bbd) 29.11/13.93 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.11/13.93 29.11/13.93 29.11/13.93 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bae, baf, app(app(ty_@2, bag), bah)) -> new_esEs(vyw502, vyw3002, bag, bah) 29.11/13.93 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.11/13.93 29.11/13.93 29.11/13.93 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), bae, app(app(ty_@2, bbh), bca), bcb) -> new_esEs(vyw501, vyw3001, bbh, bca) 29.11/13.93 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.93 29.11/13.93 29.11/13.93 *new_esEs3(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), app(app(ty_@2, bdb), bdc), baf, bcb) -> new_esEs(vyw500, vyw3000, bdb, bdc) 29.11/13.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.11/13.93 29.11/13.93 29.11/13.93 *new_esEs(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(ty_Maybe, ce), cd) -> new_esEs0(vyw500, vyw3000, ce) 29.11/13.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.11/13.93 29.11/13.93 29.11/13.93 *new_esEs(@2(vyw500, vyw501), @2(vyw3000, vyw3001), h, app(ty_Maybe, bc)) -> new_esEs0(vyw501, vyw3001, bc) 29.11/13.93 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.93 29.11/13.93 29.11/13.93 *new_esEs(@2(vyw500, vyw501), @2(vyw3000, vyw3001), h, app(app(ty_Either, bd), be)) -> new_esEs1(vyw501, vyw3001, bd, be) 29.11/13.93 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.93 29.11/13.93 29.11/13.93 *new_esEs(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(ty_Either, cf), cg), cd) -> new_esEs1(vyw500, vyw3000, cf, cg) 29.11/13.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.11/13.93 29.11/13.93 29.11/13.93 *new_esEs2(:(vyw500, vyw501), :(vyw3000, vyw3001), hc) -> new_esEs2(vyw501, vyw3001, hc) 29.11/13.93 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 29.11/13.93 29.11/13.93 29.11/13.93 *new_esEs2(:(vyw500, vyw501), :(vyw3000, vyw3001), app(ty_[], baa)) -> new_esEs2(vyw500, vyw3000, baa) 29.11/13.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.11/13.93 29.11/13.93 29.11/13.93 *new_esEs(@2(vyw500, vyw501), @2(vyw3000, vyw3001), h, app(ty_[], bf)) -> new_esEs2(vyw501, vyw3001, bf) 29.11/13.93 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.93 29.11/13.93 29.11/13.93 *new_esEs(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(ty_[], da), cd) -> new_esEs2(vyw500, vyw3000, da) 29.11/13.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.11/13.93 29.11/13.93 29.11/13.93 *new_esEs(@2(vyw500, vyw501), @2(vyw3000, vyw3001), app(app(ty_@2, cb), cc), cd) -> new_esEs(vyw500, vyw3000, cb, cc) 29.11/13.93 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.11/13.93 29.11/13.93 29.11/13.93 *new_esEs(@2(vyw500, vyw501), @2(vyw3000, vyw3001), h, app(app(ty_@2, ba), bb)) -> new_esEs(vyw501, vyw3001, ba, bb) 29.11/13.93 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.93 29.11/13.93 29.11/13.93 ---------------------------------------- 29.11/13.93 29.11/13.93 (22) 29.11/13.93 YES 29.11/13.93 29.11/13.93 ---------------------------------------- 29.11/13.93 29.11/13.93 (23) 29.11/13.93 Obligation: 29.11/13.93 Q DP problem: 29.11/13.93 The TRS P consists of the following rules: 29.11/13.93 29.11/13.93 new_lookupWithDefaultFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, True, h, ba) -> new_lookupWithDefaultFM01(vyw15, vyw19, vyw21, h, ba) 29.11/13.93 new_lookupWithDefaultFM01(vyw4, Branch(vyw30, vyw31, vyw32, vyw33, vyw34), vyw5, bd, be) -> new_lookupWithDefaultFM0(vyw4, vyw30, vyw31, vyw32, vyw33, vyw34, vyw5, new_lt24(vyw5, vyw30, be), bd, be) 29.11/13.93 new_lookupWithDefaultFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, False, h, ba) -> new_lookupWithDefaultFM00(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, new_gt(vyw21, vyw16, ba), h, ba) 29.11/13.93 new_lookupWithDefaultFM00(vyw32, vyw33, vyw34, vyw35, vyw36, vyw37, vyw38, True, bb, bc) -> new_lookupWithDefaultFM01(vyw32, vyw37, vyw38, bb, bc) 29.11/13.93 29.11/13.93 The TRS R consists of the following rules: 29.11/13.93 29.11/13.93 new_lt10(vyw490, vyw500, ty_Bool) -> new_lt5(vyw490, vyw500) 29.11/13.93 new_esEs38(vyw500, vyw3000, app(app(ty_Either, faf), fag)) -> new_esEs23(vyw500, vyw3000, faf, fag) 29.11/13.93 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 29.11/13.93 new_lt17(vyw5, vyw30, eag, eah) -> new_esEs12(new_compare29(vyw5, vyw30, eag, eah)) 29.11/13.93 new_primPlusNat0(Zero, Zero) -> Zero 29.11/13.93 new_compare210(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, fbe, fbf, fbg) -> new_compare10(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, new_lt23(vyw85, vyw88, fbe), new_asAs(new_esEs40(vyw85, vyw88, fbe), new_pePe(new_lt22(vyw86, vyw89, fbf), new_asAs(new_esEs39(vyw86, vyw89, fbf), new_ltEs24(vyw87, vyw90, fbg)))), fbe, fbf, fbg) 29.11/13.93 new_lt23(vyw85, vyw88, app(ty_[], ffe)) -> new_lt8(vyw85, vyw88, ffe) 29.11/13.93 new_pePe(True, vyw182) -> True 29.11/13.93 new_esEs7(vyw50, vyw300, ty_@0) -> new_esEs20(vyw50, vyw300) 29.11/13.93 new_compare25(vyw103, vyw104, vyw105, vyw106, False, cch, cda) -> new_compare111(vyw103, vyw104, vyw105, vyw106, new_lt19(vyw103, vyw105, cch), new_asAs(new_esEs32(vyw103, vyw105, cch), new_ltEs20(vyw104, vyw106, cda)), cch, cda) 29.11/13.93 new_esEs22(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs26(vyw500, vyw3000, bfa, bfb, bfc) 29.11/13.93 new_esEs38(vyw500, vyw3000, ty_Float) -> new_esEs19(vyw500, vyw3000) 29.11/13.93 new_esEs11(vyw50, vyw300, ty_Ordering) -> new_esEs28(vyw50, vyw300) 29.11/13.93 new_ltEs21(vyw74, vyw75, ty_Float) -> new_ltEs8(vyw74, vyw75) 29.11/13.93 new_esEs40(vyw85, vyw88, ty_@0) -> new_esEs20(vyw85, vyw88) 29.11/13.93 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 29.11/13.93 new_esEs8(vyw50, vyw300, ty_Double) -> new_esEs21(vyw50, vyw300) 29.11/13.93 new_esEs10(vyw51, vyw301, app(ty_Ratio, gaa)) -> new_esEs27(vyw51, vyw301, gaa) 29.11/13.93 new_lt20(vyw490, vyw500, app(app(ty_Either, dbb), dbc)) -> new_lt17(vyw490, vyw500, dbb, dbc) 29.11/13.93 new_esEs33(vyw502, vyw3002, ty_Integer) -> new_esEs16(vyw502, vyw3002) 29.11/13.93 new_esEs37(vyw490, vyw500, app(ty_Maybe, daf)) -> new_esEs22(vyw490, vyw500, daf) 29.11/13.93 new_compare26(Float(vyw50, Neg(vyw510)), Float(vyw300, Neg(vyw3010))) -> new_compare13(new_sr(vyw50, Neg(vyw3010)), new_sr(Neg(vyw510), vyw300)) 29.11/13.93 new_ltEs23(vyw492, vyw502, ty_Double) -> new_ltEs15(vyw492, vyw502) 29.11/13.93 new_ltEs4(Nothing, Nothing, ca) -> True 29.11/13.93 new_lt4(vyw5, vyw30) -> new_esEs12(new_compare6(vyw5, vyw30)) 29.11/13.93 new_ltEs4(Just(vyw490), Nothing, ca) -> False 29.11/13.93 new_primMulNat0(Succ(vyw5000), Succ(vyw30100)) -> new_primPlusNat1(new_primMulNat0(vyw5000, Succ(vyw30100)), vyw30100) 29.11/13.93 new_ltEs18(vyw49, vyw50, ty_Char) -> new_ltEs10(vyw49, vyw50) 29.11/13.93 new_lt20(vyw490, vyw500, ty_Double) -> new_lt9(vyw490, vyw500) 29.11/13.93 new_lt19(vyw103, vyw105, app(ty_Ratio, cde)) -> new_lt11(vyw103, vyw105, cde) 29.11/13.93 new_esEs31(vyw490, vyw500, app(app(ty_@2, cac), cad)) -> new_esEs13(vyw490, vyw500, cac, cad) 29.11/13.93 new_esEs5(vyw51, vyw301, ty_Ordering) -> new_esEs28(vyw51, vyw301) 29.11/13.93 new_ltEs13(Right(vyw490), Right(vyw500), gh, ty_Double) -> new_ltEs15(vyw490, vyw500) 29.11/13.93 new_esEs32(vyw103, vyw105, app(ty_[], cec)) -> new_esEs25(vyw103, vyw105, cec) 29.11/13.93 new_compare19(@0, @0) -> EQ 29.11/13.93 new_ltEs22(vyw67, vyw68, app(ty_Maybe, chd)) -> new_ltEs4(vyw67, vyw68, chd) 29.11/13.93 new_ltEs4(Just(vyw490), Just(vyw500), app(ty_Maybe, cb)) -> new_ltEs4(vyw490, vyw500, cb) 29.11/13.93 new_esEs7(vyw50, vyw300, ty_Int) -> new_esEs18(vyw50, vyw300) 29.11/13.93 new_esEs40(vyw85, vyw88, ty_Int) -> new_esEs18(vyw85, vyw88) 29.11/13.93 new_lt10(vyw490, vyw500, app(app(ty_Either, caf), cag)) -> new_lt17(vyw490, vyw500, caf, cag) 29.11/13.93 new_esEs8(vyw50, vyw300, ty_Bool) -> new_esEs24(vyw50, vyw300) 29.11/13.93 new_compare11(vyw168, vyw169, vyw170, vyw171, vyw172, vyw173, False, bf, bg, bh) -> GT 29.11/13.93 new_ltEs24(vyw87, vyw90, ty_Int) -> new_ltEs11(vyw87, vyw90) 29.11/13.93 new_lt20(vyw490, vyw500, app(ty_Maybe, daf)) -> new_lt7(vyw490, vyw500, daf) 29.11/13.93 new_ltEs19(vyw491, vyw501, ty_Bool) -> new_ltEs14(vyw491, vyw501) 29.11/13.93 new_esEs23(Left(vyw500), Left(vyw3000), ty_Ordering, efd) -> new_esEs28(vyw500, vyw3000) 29.11/13.93 new_lt22(vyw86, vyw89, ty_Int) -> new_lt16(vyw86, vyw89) 29.11/13.93 new_esEs15(vyw500, vyw3000, app(ty_Ratio, gc)) -> new_esEs27(vyw500, vyw3000, gc) 29.11/13.93 new_primEqNat0(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat0(vyw5000, vyw30000) 29.11/13.93 new_ltEs13(Right(vyw490), Right(vyw500), gh, ty_Ordering) -> new_ltEs7(vyw490, vyw500) 29.11/13.93 new_esEs28(LT, LT) -> True 29.11/13.93 new_lt7(vyw5, vyw30, bea) -> new_esEs12(new_compare16(vyw5, vyw30, bea)) 29.11/13.93 new_not(True) -> False 29.11/13.93 new_esEs35(vyw500, vyw3000, app(ty_Ratio, ead)) -> new_esEs27(vyw500, vyw3000, ead) 29.11/13.93 new_esEs38(vyw500, vyw3000, ty_@0) -> new_esEs20(vyw500, vyw3000) 29.11/13.93 new_lt22(vyw86, vyw89, ty_Ordering) -> new_lt12(vyw86, vyw89) 29.11/13.93 new_primCompAux00(vyw95, LT) -> LT 29.11/13.93 new_esEs36(vyw491, vyw501, app(app(ty_@2, dca), dcb)) -> new_esEs13(vyw491, vyw501, dca, dcb) 29.11/13.93 new_esEs40(vyw85, vyw88, app(app(ty_Either, feh), ffa)) -> new_esEs23(vyw85, vyw88, feh, ffa) 29.11/13.93 new_esEs22(Nothing, Just(vyw3000), beb) -> False 29.11/13.93 new_esEs22(Just(vyw500), Nothing, beb) -> False 29.11/13.93 new_esEs22(Nothing, Nothing, beb) -> True 29.11/13.93 new_ltEs13(Left(vyw490), Left(vyw500), ty_Bool, ha) -> new_ltEs14(vyw490, vyw500) 29.11/13.93 new_esEs5(vyw51, vyw301, app(app(app(ty_@3, bcc), bcd), bce)) -> new_esEs26(vyw51, vyw301, bcc, bcd, bce) 29.11/13.93 new_ltEs24(vyw87, vyw90, app(ty_[], fec)) -> new_ltEs17(vyw87, vyw90, fec) 29.11/13.93 new_esEs30(vyw500, vyw3000, ty_Int) -> new_esEs18(vyw500, vyw3000) 29.11/13.93 new_esEs39(vyw86, vyw89, ty_Double) -> new_esEs21(vyw86, vyw89) 29.11/13.93 new_compare18(Double(vyw50, Pos(vyw510)), Double(vyw300, Neg(vyw3010))) -> new_compare13(new_sr(vyw50, Pos(vyw3010)), new_sr(Neg(vyw510), vyw300)) 29.11/13.93 new_compare18(Double(vyw50, Neg(vyw510)), Double(vyw300, Pos(vyw3010))) -> new_compare13(new_sr(vyw50, Neg(vyw3010)), new_sr(Pos(vyw510), vyw300)) 29.11/13.93 new_lt23(vyw85, vyw88, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_lt18(vyw85, vyw88, ffb, ffc, ffd) 29.11/13.93 new_ltEs19(vyw491, vyw501, ty_Float) -> new_ltEs8(vyw491, vyw501) 29.11/13.93 new_esEs32(vyw103, vyw105, app(ty_Maybe, cdb)) -> new_esEs22(vyw103, vyw105, cdb) 29.11/13.93 new_compare28(vyw67, vyw68, False, chb, chc) -> new_compare15(vyw67, vyw68, new_ltEs22(vyw67, vyw68, chb), chb, chc) 29.11/13.93 new_compare27(vyw74, vyw75, False, cff, cfg) -> new_compare110(vyw74, vyw75, new_ltEs21(vyw74, vyw75, cfg), cff, cfg) 29.11/13.93 new_esEs40(vyw85, vyw88, ty_Float) -> new_esEs19(vyw85, vyw88) 29.11/13.93 new_ltEs19(vyw491, vyw501, ty_Int) -> new_ltEs11(vyw491, vyw501) 29.11/13.93 new_primEqNat0(Succ(vyw5000), Zero) -> False 29.11/13.93 new_primEqNat0(Zero, Succ(vyw30000)) -> False 29.11/13.93 new_esEs22(Just(vyw500), Just(vyw3000), ty_Integer) -> new_esEs16(vyw500, vyw3000) 29.11/13.93 new_ltEs10(vyw49, vyw50) -> new_fsEs(new_compare17(vyw49, vyw50)) 29.11/13.93 new_esEs24(False, True) -> False 29.11/13.93 new_esEs24(True, False) -> False 29.11/13.93 new_lt10(vyw490, vyw500, ty_Double) -> new_lt9(vyw490, vyw500) 29.11/13.93 new_esEs9(vyw52, vyw302, app(ty_[], fgc)) -> new_esEs25(vyw52, vyw302, fgc) 29.11/13.93 new_lt10(vyw490, vyw500, ty_Integer) -> new_lt4(vyw490, vyw500) 29.11/13.93 new_esEs33(vyw502, vyw3002, app(app(ty_Either, dfb), dfc)) -> new_esEs23(vyw502, vyw3002, dfb, dfc) 29.11/13.93 new_esEs8(vyw50, vyw300, app(app(ty_@2, ecc), ecd)) -> new_esEs13(vyw50, vyw300, ecc, ecd) 29.11/13.93 new_esEs23(Right(vyw500), Right(vyw3000), egg, ty_Int) -> new_esEs18(vyw500, vyw3000) 29.11/13.93 new_compare7(True, True) -> EQ 29.11/13.93 new_lt23(vyw85, vyw88, ty_Float) -> new_lt13(vyw85, vyw88) 29.11/13.93 new_esEs28(GT, GT) -> True 29.11/13.93 new_lt10(vyw490, vyw500, ty_@0) -> new_lt14(vyw490, vyw500) 29.11/13.93 new_compare15(vyw133, vyw134, True, bbc, bbd) -> LT 29.11/13.93 new_compare210(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, True, fbe, fbf, fbg) -> EQ 29.11/13.93 new_compare6(Integer(vyw50), Integer(vyw300)) -> new_primCmpInt(vyw50, vyw300) 29.11/13.93 new_esEs14(vyw501, vyw3001, app(app(ty_@2, dg), dh)) -> new_esEs13(vyw501, vyw3001, dg, dh) 29.11/13.93 new_esEs28(EQ, EQ) -> True 29.11/13.93 new_primCmpInt(Pos(Succ(vyw500)), Neg(vyw300)) -> GT 29.11/13.93 new_esEs36(vyw491, vyw501, ty_Ordering) -> new_esEs28(vyw491, vyw501) 29.11/13.93 new_lt22(vyw86, vyw89, ty_Integer) -> new_lt4(vyw86, vyw89) 29.11/13.93 new_ltEs20(vyw104, vyw106, app(app(ty_@2, cee), cef)) -> new_ltEs5(vyw104, vyw106, cee, cef) 29.11/13.93 new_compare112(vyw153, vyw154, vyw155, vyw156, True, eae, eaf) -> LT 29.11/13.93 new_ltEs18(vyw49, vyw50, ty_Double) -> new_ltEs15(vyw49, vyw50) 29.11/13.93 new_ltEs21(vyw74, vyw75, ty_Bool) -> new_ltEs14(vyw74, vyw75) 29.11/13.93 new_ltEs13(Left(vyw490), Left(vyw500), ty_Float, ha) -> new_ltEs8(vyw490, vyw500) 29.11/13.93 new_ltEs18(vyw49, vyw50, ty_Ordering) -> new_ltEs7(vyw49, vyw50) 29.11/13.93 new_esEs33(vyw502, vyw3002, ty_Float) -> new_esEs19(vyw502, vyw3002) 29.11/13.93 new_esEs38(vyw500, vyw3000, ty_Integer) -> new_esEs16(vyw500, vyw3000) 29.11/13.93 new_lt11(vyw5, vyw30, efc) -> new_esEs12(new_compare9(vyw5, vyw30, efc)) 29.11/13.93 new_ltEs7(GT, GT) -> True 29.11/13.93 new_esEs39(vyw86, vyw89, ty_Bool) -> new_esEs24(vyw86, vyw89) 29.11/13.93 new_ltEs20(vyw104, vyw106, ty_Integer) -> new_ltEs12(vyw104, vyw106) 29.11/13.93 new_lt21(vyw491, vyw501, ty_Char) -> new_lt15(vyw491, vyw501) 29.11/13.93 new_compare5(:(vyw50, vyw51), [], bfe) -> GT 29.11/13.93 new_primCmpNat0(Zero, Succ(vyw3000)) -> LT 29.11/13.93 new_ltEs23(vyw492, vyw502, ty_@0) -> new_ltEs9(vyw492, vyw502) 29.11/13.93 new_esEs31(vyw490, vyw500, ty_Ordering) -> new_esEs28(vyw490, vyw500) 29.11/13.93 new_ltEs23(vyw492, vyw502, app(app(app(ty_@3, ddh), dea), deb)) -> new_ltEs16(vyw492, vyw502, ddh, dea, deb) 29.11/13.93 new_esEs13(@2(vyw500, vyw501), @2(vyw3000, vyw3001), de, df) -> new_asAs(new_esEs15(vyw500, vyw3000, de), new_esEs14(vyw501, vyw3001, df)) 29.11/13.93 new_esEs39(vyw86, vyw89, ty_Char) -> new_esEs17(vyw86, vyw89) 29.11/13.93 new_lt10(vyw490, vyw500, ty_Ordering) -> new_lt12(vyw490, vyw500) 29.11/13.93 new_lt10(vyw490, vyw500, ty_Int) -> new_lt16(vyw490, vyw500) 29.11/13.93 new_esEs5(vyw51, vyw301, app(app(ty_@2, bbe), bbf)) -> new_esEs13(vyw51, vyw301, bbe, bbf) 29.11/13.93 new_esEs40(vyw85, vyw88, app(ty_Ratio, feg)) -> new_esEs27(vyw85, vyw88, feg) 29.11/13.93 new_ltEs4(Just(vyw490), Just(vyw500), app(ty_Ratio, ce)) -> new_ltEs6(vyw490, vyw500, ce) 29.11/13.93 new_gt(vyw21, vyw16, ty_Int) -> new_esEs41(new_compare13(vyw21, vyw16)) 29.11/13.93 new_esEs5(vyw51, vyw301, ty_Integer) -> new_esEs16(vyw51, vyw301) 29.11/13.93 new_ltEs18(vyw49, vyw50, ty_@0) -> new_ltEs9(vyw49, vyw50) 29.11/13.93 new_lt24(vyw5, vyw30, app(ty_Ratio, efc)) -> new_lt11(vyw5, vyw30, efc) 29.11/13.93 new_esEs33(vyw502, vyw3002, ty_Ordering) -> new_esEs28(vyw502, vyw3002) 29.11/13.93 new_compare18(Double(vyw50, Neg(vyw510)), Double(vyw300, Neg(vyw3010))) -> new_compare13(new_sr(vyw50, Neg(vyw3010)), new_sr(Neg(vyw510), vyw300)) 29.11/13.93 new_gt(vyw21, vyw16, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs41(new_compare31(vyw21, vyw16, bad, bae, baf)) 29.11/13.93 new_esEs39(vyw86, vyw89, app(app(ty_@2, fca), fcb)) -> new_esEs13(vyw86, vyw89, fca, fcb) 29.11/13.93 new_esEs19(Float(vyw500, vyw501), Float(vyw3000, vyw3001)) -> new_esEs18(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 29.11/13.93 new_compare16(Just(vyw50), Just(vyw300), bea) -> new_compare24(vyw50, vyw300, new_esEs4(vyw50, vyw300, bea), bea) 29.11/13.93 new_ltEs21(vyw74, vyw75, ty_Int) -> new_ltEs11(vyw74, vyw75) 29.11/13.93 new_ltEs14(True, True) -> True 29.11/13.93 new_ltEs13(Right(vyw490), Left(vyw500), gh, ha) -> False 29.11/13.93 new_ltEs18(vyw49, vyw50, app(app(ty_@2, ge), gf)) -> new_ltEs5(vyw49, vyw50, ge, gf) 29.11/13.93 new_esEs23(Right(vyw500), Right(vyw3000), egg, app(ty_Maybe, ehb)) -> new_esEs22(vyw500, vyw3000, ehb) 29.11/13.93 new_ltEs24(vyw87, vyw90, ty_Float) -> new_ltEs8(vyw87, vyw90) 29.11/13.93 new_primEqInt(Neg(Succ(vyw5000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 29.11/13.93 new_esEs4(vyw50, vyw300, ty_@0) -> new_esEs20(vyw50, vyw300) 29.11/13.93 new_primCmpInt(Neg(Zero), Pos(Succ(vyw3000))) -> LT 29.11/13.93 new_ltEs20(vyw104, vyw106, app(app(ty_Either, ceh), cfa)) -> new_ltEs13(vyw104, vyw106, ceh, cfa) 29.11/13.93 new_ltEs18(vyw49, vyw50, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs16(vyw49, vyw50, hb, hc, hd) 29.11/13.93 new_esEs5(vyw51, vyw301, ty_Double) -> new_esEs21(vyw51, vyw301) 29.11/13.93 new_esEs7(vyw50, vyw300, ty_Integer) -> new_esEs16(vyw50, vyw300) 29.11/13.93 new_primMulInt(Pos(vyw500), Pos(vyw3010)) -> Pos(new_primMulNat0(vyw500, vyw3010)) 29.11/13.93 new_esEs5(vyw51, vyw301, app(app(ty_Either, bbh), bca)) -> new_esEs23(vyw51, vyw301, bbh, bca) 29.11/13.93 new_ltEs20(vyw104, vyw106, ty_Double) -> new_ltEs15(vyw104, vyw106) 29.11/13.93 new_esEs11(vyw50, vyw300, app(app(app(ty_@3, gah), gba), gbb)) -> new_esEs26(vyw50, vyw300, gah, gba, gbb) 29.11/13.93 new_esEs23(Right(vyw500), Right(vyw3000), egg, app(app(ty_@2, egh), eha)) -> new_esEs13(vyw500, vyw3000, egh, eha) 29.11/13.93 new_esEs22(Just(vyw500), Just(vyw3000), ty_Float) -> new_esEs19(vyw500, vyw3000) 29.11/13.93 new_esEs5(vyw51, vyw301, ty_Bool) -> new_esEs24(vyw51, vyw301) 29.11/13.93 new_compare12(vyw126, vyw127, False, efb) -> GT 29.11/13.93 new_compare29(Left(vyw50), Left(vyw300), eag, eah) -> new_compare28(vyw50, vyw300, new_esEs7(vyw50, vyw300, eag), eag, eah) 29.11/13.93 new_ltEs18(vyw49, vyw50, ty_Integer) -> new_ltEs12(vyw49, vyw50) 29.11/13.93 new_esEs7(vyw50, vyw300, app(app(app(ty_@3, ebg), ebh), eca)) -> new_esEs26(vyw50, vyw300, ebg, ebh, eca) 29.11/13.93 new_primMulNat0(Succ(vyw5000), Zero) -> Zero 29.11/13.93 new_primMulNat0(Zero, Succ(vyw30100)) -> Zero 29.11/13.93 new_esEs40(vyw85, vyw88, ty_Integer) -> new_esEs16(vyw85, vyw88) 29.11/13.93 new_esEs8(vyw50, vyw300, ty_Ordering) -> new_esEs28(vyw50, vyw300) 29.11/13.93 new_ltEs13(Right(vyw490), Right(vyw500), gh, app(ty_[], caa)) -> new_ltEs17(vyw490, vyw500, caa) 29.11/13.93 new_esEs23(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, egc), egd), ege), efd) -> new_esEs26(vyw500, vyw3000, egc, egd, ege) 29.11/13.93 new_primPlusNat1(Succ(vyw1830), vyw30100) -> Succ(Succ(new_primPlusNat0(vyw1830, vyw30100))) 29.11/13.93 new_primPlusNat0(Succ(vyw18300), Zero) -> Succ(vyw18300) 29.11/13.93 new_primPlusNat0(Zero, Succ(vyw301000)) -> Succ(vyw301000) 29.11/13.93 new_primPlusNat1(Zero, vyw30100) -> Succ(vyw30100) 29.11/13.93 new_lt24(vyw5, vyw30, ty_Char) -> new_lt15(vyw5, vyw30) 29.11/13.93 new_ltEs13(Right(vyw490), Right(vyw500), gh, ty_Char) -> new_ltEs10(vyw490, vyw500) 29.11/13.93 new_ltEs20(vyw104, vyw106, ty_@0) -> new_ltEs9(vyw104, vyw106) 29.11/13.93 new_ltEs22(vyw67, vyw68, app(ty_Ratio, chg)) -> new_ltEs6(vyw67, vyw68, chg) 29.11/13.93 new_esEs23(Left(vyw500), Left(vyw3000), ty_Bool, efd) -> new_esEs24(vyw500, vyw3000) 29.11/13.93 new_esEs7(vyw50, vyw300, app(app(ty_Either, ebd), ebe)) -> new_esEs23(vyw50, vyw300, ebd, ebe) 29.11/13.93 new_ltEs21(vyw74, vyw75, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_ltEs16(vyw74, vyw75, cgf, cgg, cgh) 29.11/13.93 new_esEs6(vyw50, vyw300, app(ty_[], bdd)) -> new_esEs25(vyw50, vyw300, bdd) 29.11/13.93 new_lt20(vyw490, vyw500, ty_Int) -> new_lt16(vyw490, vyw500) 29.11/13.93 new_esEs12(LT) -> True 29.11/13.93 new_lt23(vyw85, vyw88, ty_Char) -> new_lt15(vyw85, vyw88) 29.11/13.93 new_esEs23(Left(vyw500), Left(vyw3000), ty_Double, efd) -> new_esEs21(vyw500, vyw3000) 29.11/13.93 new_esEs6(vyw50, vyw300, app(ty_Maybe, bda)) -> new_esEs22(vyw50, vyw300, bda) 29.11/13.93 new_lt9(vyw5, vyw30) -> new_esEs12(new_compare18(vyw5, vyw30)) 29.11/13.93 new_esEs35(vyw500, vyw3000, ty_Float) -> new_esEs19(vyw500, vyw3000) 29.11/13.93 new_ltEs21(vyw74, vyw75, ty_@0) -> new_ltEs9(vyw74, vyw75) 29.11/13.93 new_ltEs13(Left(vyw490), Left(vyw500), ty_@0, ha) -> new_ltEs9(vyw490, vyw500) 29.11/13.93 new_esEs22(Just(vyw500), Just(vyw3000), ty_Int) -> new_esEs18(vyw500, vyw3000) 29.11/13.93 new_ltEs18(vyw49, vyw50, app(app(ty_Either, gh), ha)) -> new_ltEs13(vyw49, vyw50, gh, ha) 29.11/13.93 new_esEs8(vyw50, vyw300, app(app(app(ty_@3, eda), edb), edc)) -> new_esEs26(vyw50, vyw300, eda, edb, edc) 29.11/13.93 new_esEs30(vyw500, vyw3000, ty_Integer) -> new_esEs16(vyw500, vyw3000) 29.11/13.93 new_ltEs19(vyw491, vyw501, app(ty_[], cce)) -> new_ltEs17(vyw491, vyw501, cce) 29.11/13.93 new_ltEs20(vyw104, vyw106, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_ltEs16(vyw104, vyw106, cfb, cfc, cfd) 29.11/13.93 new_esEs31(vyw490, vyw500, ty_Double) -> new_esEs21(vyw490, vyw500) 29.11/13.93 new_esEs36(vyw491, vyw501, ty_Float) -> new_esEs19(vyw491, vyw501) 29.11/13.93 new_compare30(vyw50, vyw300, ty_Float) -> new_compare26(vyw50, vyw300) 29.11/13.93 new_esEs15(vyw500, vyw3000, ty_Int) -> new_esEs18(vyw500, vyw3000) 29.11/13.93 new_compare8(EQ, GT) -> LT 29.11/13.93 new_lt20(vyw490, vyw500, ty_Ordering) -> new_lt12(vyw490, vyw500) 29.11/13.93 new_esEs6(vyw50, vyw300, ty_Char) -> new_esEs17(vyw50, vyw300) 29.11/13.93 new_gt(vyw21, vyw16, ty_Char) -> new_esEs41(new_compare17(vyw21, vyw16)) 29.11/13.93 new_esEs31(vyw490, vyw500, ty_Bool) -> new_esEs24(vyw490, vyw500) 29.11/13.93 new_esEs38(vyw500, vyw3000, ty_Int) -> new_esEs18(vyw500, vyw3000) 29.11/13.93 new_esEs23(Left(vyw500), Left(vyw3000), ty_Integer, efd) -> new_esEs16(vyw500, vyw3000) 29.11/13.93 new_lt14(vyw5, vyw30) -> new_esEs12(new_compare19(vyw5, vyw30)) 29.11/13.93 new_esEs4(vyw50, vyw300, app(ty_Ratio, bah)) -> new_esEs27(vyw50, vyw300, bah) 29.11/13.93 new_esEs5(vyw51, vyw301, ty_@0) -> new_esEs20(vyw51, vyw301) 29.11/13.93 new_esEs6(vyw50, vyw300, ty_Double) -> new_esEs21(vyw50, vyw300) 29.11/13.93 new_esEs33(vyw502, vyw3002, app(app(app(ty_@3, dfe), dff), dfg)) -> new_esEs26(vyw502, vyw3002, dfe, dff, dfg) 29.11/13.93 new_esEs23(Right(vyw500), Right(vyw3000), egg, ty_Float) -> new_esEs19(vyw500, vyw3000) 29.11/13.93 new_ltEs21(vyw74, vyw75, ty_Double) -> new_ltEs15(vyw74, vyw75) 29.11/13.93 new_esEs6(vyw50, vyw300, ty_Bool) -> new_esEs24(vyw50, vyw300) 29.11/13.93 new_esEs34(vyw501, vyw3001, ty_Ordering) -> new_esEs28(vyw501, vyw3001) 29.11/13.93 new_esEs15(vyw500, vyw3000, ty_Float) -> new_esEs19(vyw500, vyw3000) 29.11/13.93 new_esEs7(vyw50, vyw300, ty_Ordering) -> new_esEs28(vyw50, vyw300) 29.11/13.93 new_esEs15(vyw500, vyw3000, ty_Char) -> new_esEs17(vyw500, vyw3000) 29.11/13.93 new_esEs12(GT) -> False 29.11/13.93 new_esEs36(vyw491, vyw501, ty_Int) -> new_esEs18(vyw491, vyw501) 29.11/13.93 new_esEs12(EQ) -> False 29.11/13.93 new_compare18(Double(vyw50, Pos(vyw510)), Double(vyw300, Pos(vyw3010))) -> new_compare13(new_sr(vyw50, Pos(vyw3010)), new_sr(Pos(vyw510), vyw300)) 29.11/13.93 new_lt21(vyw491, vyw501, ty_Float) -> new_lt13(vyw491, vyw501) 29.11/13.93 new_esEs11(vyw50, vyw300, ty_Int) -> new_esEs18(vyw50, vyw300) 29.11/13.93 new_esEs23(Left(vyw500), Right(vyw3000), egg, efd) -> False 29.11/13.93 new_esEs23(Right(vyw500), Left(vyw3000), egg, efd) -> False 29.11/13.93 new_esEs33(vyw502, vyw3002, ty_Bool) -> new_esEs24(vyw502, vyw3002) 29.11/13.93 new_compare31(@3(vyw50, vyw51, vyw52), @3(vyw300, vyw301, vyw302), eeg, eeh, efa) -> new_compare210(vyw50, vyw51, vyw52, vyw300, vyw301, vyw302, new_asAs(new_esEs11(vyw50, vyw300, eeg), new_asAs(new_esEs10(vyw51, vyw301, eeh), new_esEs9(vyw52, vyw302, efa))), eeg, eeh, efa) 29.11/13.93 new_ltEs19(vyw491, vyw501, ty_@0) -> new_ltEs9(vyw491, vyw501) 29.11/13.93 new_esEs4(vyw50, vyw300, ty_Float) -> new_esEs19(vyw50, vyw300) 29.11/13.93 new_compare5([], [], bfe) -> EQ 29.11/13.93 new_esEs10(vyw51, vyw301, ty_Integer) -> new_esEs16(vyw51, vyw301) 29.11/13.93 new_compare24(vyw49, vyw50, False, gd) -> new_compare12(vyw49, vyw50, new_ltEs18(vyw49, vyw50, gd), gd) 29.11/13.93 new_ltEs19(vyw491, vyw501, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_ltEs16(vyw491, vyw501, ccb, ccc, ccd) 29.11/13.93 new_esEs35(vyw500, vyw3000, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs26(vyw500, vyw3000, eaa, eab, eac) 29.11/13.93 new_lt20(vyw490, vyw500, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_lt18(vyw490, vyw500, dbd, dbe, dbf) 29.11/13.93 new_esEs33(vyw502, vyw3002, app(ty_Ratio, dfh)) -> new_esEs27(vyw502, vyw3002, dfh) 29.11/13.93 new_esEs23(Left(vyw500), Left(vyw3000), ty_Float, efd) -> new_esEs19(vyw500, vyw3000) 29.11/13.93 new_ltEs13(Left(vyw490), Left(vyw500), ty_Ordering, ha) -> new_ltEs7(vyw490, vyw500) 29.11/13.93 new_esEs39(vyw86, vyw89, app(app(app(ty_@3, fcf), fcg), fch)) -> new_esEs26(vyw86, vyw89, fcf, fcg, fch) 29.11/13.93 new_ltEs21(vyw74, vyw75, app(ty_[], cha)) -> new_ltEs17(vyw74, vyw75, cha) 29.11/13.93 new_esEs21(Double(vyw500, vyw501), Double(vyw3000, vyw3001)) -> new_esEs18(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 29.11/13.93 new_lt22(vyw86, vyw89, app(app(ty_Either, fcd), fce)) -> new_lt17(vyw86, vyw89, fcd, fce) 29.11/13.93 new_ltEs13(Right(vyw490), Right(vyw500), gh, ty_Float) -> new_ltEs8(vyw490, vyw500) 29.11/13.93 new_lt19(vyw103, vyw105, app(app(app(ty_@3, cdh), cea), ceb)) -> new_lt18(vyw103, vyw105, cdh, cea, ceb) 29.11/13.93 new_gt(vyw21, vyw16, ty_Float) -> new_esEs41(new_compare26(vyw21, vyw16)) 29.11/13.93 new_esEs14(vyw501, vyw3001, app(ty_Maybe, ea)) -> new_esEs22(vyw501, vyw3001, ea) 29.11/13.93 new_esEs36(vyw491, vyw501, ty_@0) -> new_esEs20(vyw491, vyw501) 29.11/13.93 new_esEs31(vyw490, vyw500, ty_Char) -> new_esEs17(vyw490, vyw500) 29.11/13.93 new_ltEs4(Nothing, Just(vyw500), ca) -> True 29.11/13.93 new_ltEs4(Just(vyw490), Just(vyw500), app(app(ty_Either, cf), cg)) -> new_ltEs13(vyw490, vyw500, cf, cg) 29.11/13.93 new_esEs4(vyw50, vyw300, ty_Char) -> new_esEs17(vyw50, vyw300) 29.11/13.93 new_esEs31(vyw490, vyw500, ty_Integer) -> new_esEs16(vyw490, vyw500) 29.11/13.93 new_esEs39(vyw86, vyw89, app(ty_Maybe, fbh)) -> new_esEs22(vyw86, vyw89, fbh) 29.11/13.93 new_esEs11(vyw50, vyw300, ty_@0) -> new_esEs20(vyw50, vyw300) 29.11/13.93 new_esEs38(vyw500, vyw3000, app(ty_Ratio, fbd)) -> new_esEs27(vyw500, vyw3000, fbd) 29.11/13.93 new_lt23(vyw85, vyw88, ty_Bool) -> new_lt5(vyw85, vyw88) 29.11/13.93 new_ltEs13(Left(vyw490), Left(vyw500), app(app(ty_@2, bfg), bfh), ha) -> new_ltEs5(vyw490, vyw500, bfg, bfh) 29.11/13.93 new_ltEs22(vyw67, vyw68, app(app(ty_@2, che), chf)) -> new_ltEs5(vyw67, vyw68, che, chf) 29.11/13.93 new_esEs28(LT, EQ) -> False 29.11/13.93 new_esEs28(EQ, LT) -> False 29.11/13.93 new_ltEs13(Left(vyw490), Left(vyw500), ty_Double, ha) -> new_ltEs15(vyw490, vyw500) 29.11/13.93 new_esEs6(vyw50, vyw300, app(app(ty_@2, bcg), bch)) -> new_esEs13(vyw50, vyw300, bcg, bch) 29.11/13.93 new_esEs15(vyw500, vyw3000, app(app(ty_Either, fd), ff)) -> new_esEs23(vyw500, vyw3000, fd, ff) 29.11/13.93 new_primCmpInt(Pos(Succ(vyw500)), Pos(vyw300)) -> new_primCmpNat0(Succ(vyw500), vyw300) 29.11/13.93 new_esEs14(vyw501, vyw3001, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs26(vyw501, vyw3001, ee, ef, eg) 29.11/13.93 new_lt23(vyw85, vyw88, ty_@0) -> new_lt14(vyw85, vyw88) 29.11/13.93 new_ltEs4(Just(vyw490), Just(vyw500), ty_Char) -> new_ltEs10(vyw490, vyw500) 29.11/13.93 new_esEs4(vyw50, vyw300, ty_Integer) -> new_esEs16(vyw50, vyw300) 29.11/13.93 new_primCompAux00(vyw95, EQ) -> vyw95 29.11/13.93 new_compare7(False, True) -> LT 29.11/13.93 new_esEs4(vyw50, vyw300, app(ty_Maybe, beb)) -> new_esEs22(vyw50, vyw300, beb) 29.11/13.93 new_esEs37(vyw490, vyw500, app(ty_Ratio, dba)) -> new_esEs27(vyw490, vyw500, dba) 29.11/13.93 new_compare8(GT, EQ) -> GT 29.11/13.93 new_esEs17(Char(vyw500), Char(vyw3000)) -> new_primEqNat0(vyw500, vyw3000) 29.11/13.93 new_compare13(vyw5, vyw30) -> new_primCmpInt(vyw5, vyw30) 29.11/13.93 new_esEs10(vyw51, vyw301, app(app(ty_Either, fhc), fhd)) -> new_esEs23(vyw51, vyw301, fhc, fhd) 29.11/13.93 new_esEs11(vyw50, vyw300, ty_Char) -> new_esEs17(vyw50, vyw300) 29.11/13.93 new_esEs14(vyw501, vyw3001, ty_Integer) -> new_esEs16(vyw501, vyw3001) 29.11/13.93 new_esEs10(vyw51, vyw301, ty_Char) -> new_esEs17(vyw51, vyw301) 29.11/13.93 new_esEs15(vyw500, vyw3000, ty_@0) -> new_esEs20(vyw500, vyw3000) 29.11/13.93 new_esEs22(Just(vyw500), Just(vyw3000), ty_@0) -> new_esEs20(vyw500, vyw3000) 29.11/13.93 new_ltEs7(LT, EQ) -> True 29.11/13.93 new_esEs22(Just(vyw500), Just(vyw3000), app(ty_Ratio, bfd)) -> new_esEs27(vyw500, vyw3000, bfd) 29.11/13.93 new_compare26(Float(vyw50, Pos(vyw510)), Float(vyw300, Neg(vyw3010))) -> new_compare13(new_sr(vyw50, Pos(vyw3010)), new_sr(Neg(vyw510), vyw300)) 29.11/13.93 new_compare26(Float(vyw50, Neg(vyw510)), Float(vyw300, Pos(vyw3010))) -> new_compare13(new_sr(vyw50, Neg(vyw3010)), new_sr(Pos(vyw510), vyw300)) 29.11/13.93 new_ltEs11(vyw49, vyw50) -> new_fsEs(new_compare13(vyw49, vyw50)) 29.11/13.93 new_esEs23(Right(vyw500), Right(vyw3000), egg, app(ty_[], ehe)) -> new_esEs25(vyw500, vyw3000, ehe) 29.11/13.93 new_compare30(vyw50, vyw300, ty_Integer) -> new_compare6(vyw50, vyw300) 29.11/13.93 new_ltEs13(Left(vyw490), Left(vyw500), app(ty_Ratio, bga), ha) -> new_ltEs6(vyw490, vyw500, bga) 29.11/13.93 new_esEs14(vyw501, vyw3001, ty_Ordering) -> new_esEs28(vyw501, vyw3001) 29.11/13.93 new_ltEs22(vyw67, vyw68, app(ty_[], dae)) -> new_ltEs17(vyw67, vyw68, dae) 29.11/13.93 new_esEs28(EQ, GT) -> False 29.11/13.93 new_esEs28(GT, EQ) -> False 29.11/13.93 new_esEs8(vyw50, vyw300, ty_Float) -> new_esEs19(vyw50, vyw300) 29.11/13.93 new_compare9(:%(vyw50, vyw51), :%(vyw300, vyw301), ty_Int) -> new_compare13(new_sr(vyw50, vyw301), new_sr(vyw300, vyw51)) 29.11/13.93 new_lt24(vyw5, vyw30, app(app(app(ty_@3, eeg), eeh), efa)) -> new_lt18(vyw5, vyw30, eeg, eeh, efa) 29.11/13.93 new_lt23(vyw85, vyw88, ty_Integer) -> new_lt4(vyw85, vyw88) 29.11/13.93 new_esEs38(vyw500, vyw3000, ty_Bool) -> new_esEs24(vyw500, vyw3000) 29.11/13.93 new_ltEs14(False, True) -> True 29.11/13.93 new_ltEs18(vyw49, vyw50, ty_Float) -> new_ltEs8(vyw49, vyw50) 29.11/13.93 new_esEs37(vyw490, vyw500, ty_@0) -> new_esEs20(vyw490, vyw500) 29.11/13.93 new_esEs32(vyw103, vyw105, ty_Char) -> new_esEs17(vyw103, vyw105) 29.11/13.93 new_compare30(vyw50, vyw300, ty_Bool) -> new_compare7(vyw50, vyw300) 29.11/13.93 new_ltEs13(Right(vyw490), Right(vyw500), gh, ty_Bool) -> new_ltEs14(vyw490, vyw500) 29.11/13.93 new_esEs4(vyw50, vyw300, app(app(ty_Either, egg), efd)) -> new_esEs23(vyw50, vyw300, egg, efd) 29.11/13.93 new_esEs25(:(vyw500, vyw501), [], fab) -> False 29.11/13.93 new_esEs25([], :(vyw3000, vyw3001), fab) -> False 29.11/13.93 new_ltEs13(Left(vyw490), Left(vyw500), ty_Int, ha) -> new_ltEs11(vyw490, vyw500) 29.11/13.93 new_esEs10(vyw51, vyw301, app(ty_Maybe, fhb)) -> new_esEs22(vyw51, vyw301, fhb) 29.11/13.93 new_ltEs13(Right(vyw490), Right(vyw500), gh, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_ltEs16(vyw490, vyw500, bhf, bhg, bhh) 29.11/13.93 new_ltEs13(Right(vyw490), Right(vyw500), gh, app(app(ty_@2, bha), bhb)) -> new_ltEs5(vyw490, vyw500, bha, bhb) 29.11/13.93 new_ltEs24(vyw87, vyw90, app(ty_Ratio, fde)) -> new_ltEs6(vyw87, vyw90, fde) 29.11/13.93 new_esEs7(vyw50, vyw300, app(app(ty_@2, eba), ebb)) -> new_esEs13(vyw50, vyw300, eba, ebb) 29.11/13.93 new_lt22(vyw86, vyw89, ty_@0) -> new_lt14(vyw86, vyw89) 29.11/13.93 new_esEs9(vyw52, vyw302, ty_Float) -> new_esEs19(vyw52, vyw302) 29.11/13.93 new_ltEs13(Right(vyw490), Right(vyw500), gh, ty_Integer) -> new_ltEs12(vyw490, vyw500) 29.11/13.93 new_esEs32(vyw103, vyw105, ty_@0) -> new_esEs20(vyw103, vyw105) 29.11/13.93 new_esEs11(vyw50, vyw300, app(app(ty_Either, gae), gaf)) -> new_esEs23(vyw50, vyw300, gae, gaf) 29.11/13.93 new_esEs41(GT) -> True 29.11/13.93 new_esEs15(vyw500, vyw3000, ty_Integer) -> new_esEs16(vyw500, vyw3000) 29.11/13.93 new_lt23(vyw85, vyw88, app(app(ty_Either, feh), ffa)) -> new_lt17(vyw85, vyw88, feh, ffa) 29.11/13.93 new_esEs15(vyw500, vyw3000, app(ty_Maybe, fc)) -> new_esEs22(vyw500, vyw3000, fc) 29.11/13.93 new_lt22(vyw86, vyw89, ty_Bool) -> new_lt5(vyw86, vyw89) 29.11/13.93 new_esEs35(vyw500, vyw3000, ty_Int) -> new_esEs18(vyw500, vyw3000) 29.11/13.93 new_esEs22(Just(vyw500), Just(vyw3000), app(app(ty_Either, bef), beg)) -> new_esEs23(vyw500, vyw3000, bef, beg) 29.11/13.93 new_esEs39(vyw86, vyw89, ty_Float) -> new_esEs19(vyw86, vyw89) 29.11/13.93 new_esEs14(vyw501, vyw3001, app(app(ty_Either, eb), ec)) -> new_esEs23(vyw501, vyw3001, eb, ec) 29.11/13.93 new_lt20(vyw490, vyw500, ty_Integer) -> new_lt4(vyw490, vyw500) 29.11/13.93 new_esEs36(vyw491, vyw501, app(ty_Maybe, dbh)) -> new_esEs22(vyw491, vyw501, dbh) 29.11/13.93 new_lt20(vyw490, vyw500, ty_Char) -> new_lt15(vyw490, vyw500) 29.11/13.93 new_esEs23(Left(vyw500), Left(vyw3000), app(ty_Ratio, egf), efd) -> new_esEs27(vyw500, vyw3000, egf) 29.11/13.93 new_lt15(vyw5, vyw30) -> new_esEs12(new_compare17(vyw5, vyw30)) 29.11/13.93 new_esEs32(vyw103, vyw105, app(ty_Ratio, cde)) -> new_esEs27(vyw103, vyw105, cde) 29.11/13.93 new_esEs36(vyw491, vyw501, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs26(vyw491, vyw501, dcf, dcg, dch) 29.11/13.93 new_compare30(vyw50, vyw300, ty_Ordering) -> new_compare8(vyw50, vyw300) 29.11/13.93 new_esEs25([], [], fab) -> True 29.11/13.93 new_esEs38(vyw500, vyw3000, app(app(app(ty_@3, fba), fbb), fbc)) -> new_esEs26(vyw500, vyw3000, fba, fbb, fbc) 29.11/13.93 new_compare112(vyw153, vyw154, vyw155, vyw156, False, eae, eaf) -> GT 29.11/13.93 new_esEs34(vyw501, vyw3001, ty_Bool) -> new_esEs24(vyw501, vyw3001) 29.11/13.93 new_compare30(vyw50, vyw300, ty_@0) -> new_compare19(vyw50, vyw300) 29.11/13.93 new_esEs37(vyw490, vyw500, app(app(ty_Either, dbb), dbc)) -> new_esEs23(vyw490, vyw500, dbb, dbc) 29.11/13.93 new_esEs6(vyw50, vyw300, ty_Ordering) -> new_esEs28(vyw50, vyw300) 29.11/13.93 new_lt20(vyw490, vyw500, ty_Float) -> new_lt13(vyw490, vyw500) 29.11/13.93 new_esEs10(vyw51, vyw301, ty_Int) -> new_esEs18(vyw51, vyw301) 29.11/13.93 new_compare30(vyw50, vyw300, app(ty_Maybe, ede)) -> new_compare16(vyw50, vyw300, ede) 29.11/13.93 new_esEs11(vyw50, vyw300, ty_Bool) -> new_esEs24(vyw50, vyw300) 29.11/13.93 new_lt21(vyw491, vyw501, app(app(ty_Either, dcd), dce)) -> new_lt17(vyw491, vyw501, dcd, dce) 29.11/13.93 new_esEs33(vyw502, vyw3002, ty_@0) -> new_esEs20(vyw502, vyw3002) 29.11/13.93 new_primPlusNat0(Succ(vyw18300), Succ(vyw301000)) -> Succ(Succ(new_primPlusNat0(vyw18300, vyw301000))) 29.11/13.93 new_esEs16(Integer(vyw500), Integer(vyw3000)) -> new_primEqInt(vyw500, vyw3000) 29.11/13.93 new_ltEs12(vyw49, vyw50) -> new_fsEs(new_compare6(vyw49, vyw50)) 29.11/13.93 new_esEs22(Just(vyw500), Just(vyw3000), ty_Char) -> new_esEs17(vyw500, vyw3000) 29.11/13.93 new_esEs10(vyw51, vyw301, ty_@0) -> new_esEs20(vyw51, vyw301) 29.11/13.93 new_esEs5(vyw51, vyw301, ty_Float) -> new_esEs19(vyw51, vyw301) 29.11/13.93 new_compare27(vyw74, vyw75, True, cff, cfg) -> EQ 29.11/13.93 new_esEs33(vyw502, vyw3002, ty_Int) -> new_esEs18(vyw502, vyw3002) 29.11/13.93 new_esEs11(vyw50, vyw300, ty_Integer) -> new_esEs16(vyw50, vyw300) 29.11/13.93 new_esEs34(vyw501, vyw3001, ty_Integer) -> new_esEs16(vyw501, vyw3001) 29.11/13.93 new_esEs37(vyw490, vyw500, ty_Char) -> new_esEs17(vyw490, vyw500) 29.11/13.93 new_esEs22(Just(vyw500), Just(vyw3000), ty_Ordering) -> new_esEs28(vyw500, vyw3000) 29.11/13.93 new_esEs11(vyw50, vyw300, app(ty_Maybe, gad)) -> new_esEs22(vyw50, vyw300, gad) 29.11/13.93 new_esEs34(vyw501, vyw3001, app(ty_Maybe, dgc)) -> new_esEs22(vyw501, vyw3001, dgc) 29.11/13.93 new_lt19(vyw103, vyw105, ty_Char) -> new_lt15(vyw103, vyw105) 29.11/13.93 new_esEs14(vyw501, vyw3001, ty_Char) -> new_esEs17(vyw501, vyw3001) 29.11/13.93 new_ltEs4(Just(vyw490), Just(vyw500), ty_Bool) -> new_ltEs14(vyw490, vyw500) 29.11/13.93 new_lt23(vyw85, vyw88, app(ty_Maybe, fed)) -> new_lt7(vyw85, vyw88, fed) 29.11/13.93 new_ltEs13(Left(vyw490), Left(vyw500), app(app(app(ty_@3, bgd), bge), bgf), ha) -> new_ltEs16(vyw490, vyw500, bgd, bge, bgf) 29.11/13.93 new_esEs35(vyw500, vyw3000, app(app(ty_Either, dhf), dhg)) -> new_esEs23(vyw500, vyw3000, dhf, dhg) 29.11/13.93 new_esEs34(vyw501, vyw3001, ty_Char) -> new_esEs17(vyw501, vyw3001) 29.11/13.93 new_esEs22(Just(vyw500), Just(vyw3000), ty_Bool) -> new_esEs24(vyw500, vyw3000) 29.11/13.93 new_lt22(vyw86, vyw89, ty_Float) -> new_lt13(vyw86, vyw89) 29.11/13.93 new_ltEs7(EQ, LT) -> False 29.11/13.93 new_lt10(vyw490, vyw500, app(app(ty_@2, cac), cad)) -> new_lt6(vyw490, vyw500, cac, cad) 29.11/13.93 new_esEs9(vyw52, vyw302, app(app(ty_@2, fff), ffg)) -> new_esEs13(vyw52, vyw302, fff, ffg) 29.11/13.93 new_ltEs5(@2(vyw490, vyw491), @2(vyw500, vyw501), ge, gf) -> new_pePe(new_lt10(vyw490, vyw500, ge), new_asAs(new_esEs31(vyw490, vyw500, ge), new_ltEs19(vyw491, vyw501, gf))) 29.11/13.93 new_compare30(vyw50, vyw300, app(app(app(ty_@3, eec), eed), eee)) -> new_compare31(vyw50, vyw300, eec, eed, eee) 29.11/13.93 new_esEs15(vyw500, vyw3000, ty_Ordering) -> new_esEs28(vyw500, vyw3000) 29.11/13.93 new_esEs31(vyw490, vyw500, ty_Int) -> new_esEs18(vyw490, vyw500) 29.11/13.93 new_ltEs13(Right(vyw490), Right(vyw500), gh, ty_@0) -> new_ltEs9(vyw490, vyw500) 29.11/13.93 new_ltEs23(vyw492, vyw502, app(app(ty_@2, ddc), ddd)) -> new_ltEs5(vyw492, vyw502, ddc, ddd) 29.11/13.93 new_ltEs4(Just(vyw490), Just(vyw500), ty_Integer) -> new_ltEs12(vyw490, vyw500) 29.11/13.93 new_esEs14(vyw501, vyw3001, ty_Bool) -> new_esEs24(vyw501, vyw3001) 29.11/13.93 new_esEs40(vyw85, vyw88, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_esEs26(vyw85, vyw88, ffb, ffc, ffd) 29.11/13.93 new_gt(vyw21, vyw16, ty_@0) -> new_esEs41(new_compare19(vyw21, vyw16)) 29.11/13.93 new_esEs35(vyw500, vyw3000, ty_Char) -> new_esEs17(vyw500, vyw3000) 29.11/13.93 new_ltEs14(False, False) -> True 29.11/13.93 new_ltEs7(GT, LT) -> False 29.11/13.93 new_esEs37(vyw490, vyw500, ty_Bool) -> new_esEs24(vyw490, vyw500) 29.11/13.93 new_lt20(vyw490, vyw500, ty_@0) -> new_lt14(vyw490, vyw500) 29.11/13.93 new_esEs7(vyw50, vyw300, ty_Float) -> new_esEs19(vyw50, vyw300) 29.11/13.93 new_primCmpNat0(Succ(vyw500), Succ(vyw3000)) -> new_primCmpNat0(vyw500, vyw3000) 29.11/13.93 new_lt19(vyw103, vyw105, ty_Float) -> new_lt13(vyw103, vyw105) 29.11/13.93 new_ltEs13(Left(vyw490), Left(vyw500), ty_Char, ha) -> new_ltEs10(vyw490, vyw500) 29.11/13.93 new_esEs38(vyw500, vyw3000, ty_Ordering) -> new_esEs28(vyw500, vyw3000) 29.11/13.93 new_ltEs13(Left(vyw490), Left(vyw500), app(ty_[], bgg), ha) -> new_ltEs17(vyw490, vyw500, bgg) 29.11/13.93 new_lt8(vyw5, vyw30, bfe) -> new_esEs12(new_compare5(vyw5, vyw30, bfe)) 29.11/13.93 new_ltEs8(vyw49, vyw50) -> new_fsEs(new_compare26(vyw49, vyw50)) 29.11/13.93 new_lt22(vyw86, vyw89, app(ty_Maybe, fbh)) -> new_lt7(vyw86, vyw89, fbh) 29.11/13.93 new_esEs36(vyw491, vyw501, ty_Integer) -> new_esEs16(vyw491, vyw501) 29.11/13.93 new_ltEs24(vyw87, vyw90, app(app(ty_@2, fdc), fdd)) -> new_ltEs5(vyw87, vyw90, fdc, fdd) 29.11/13.93 new_esEs4(vyw50, vyw300, app(app(app(ty_@3, ded), dee), def)) -> new_esEs26(vyw50, vyw300, ded, dee, def) 29.11/13.93 new_compare15(vyw133, vyw134, False, bbc, bbd) -> GT 29.11/13.93 new_esEs36(vyw491, vyw501, ty_Char) -> new_esEs17(vyw491, vyw501) 29.11/13.93 new_lt20(vyw490, vyw500, ty_Bool) -> new_lt5(vyw490, vyw500) 29.11/13.93 new_ltEs7(LT, GT) -> True 29.11/13.93 new_gt(vyw21, vyw16, app(ty_Ratio, baa)) -> new_esEs41(new_compare9(vyw21, vyw16, baa)) 29.11/13.93 new_lt21(vyw491, vyw501, app(app(app(ty_@3, dcf), dcg), dch)) -> new_lt18(vyw491, vyw501, dcf, dcg, dch) 29.11/13.93 new_lt12(vyw5, vyw30) -> new_esEs12(new_compare8(vyw5, vyw30)) 29.11/13.93 new_ltEs9(vyw49, vyw50) -> new_fsEs(new_compare19(vyw49, vyw50)) 29.11/13.93 new_compare17(Char(vyw50), Char(vyw300)) -> new_primCmpNat0(vyw50, vyw300) 29.11/13.93 new_esEs11(vyw50, vyw300, app(ty_Ratio, gbc)) -> new_esEs27(vyw50, vyw300, gbc) 29.11/13.93 new_lt21(vyw491, vyw501, app(ty_Maybe, dbh)) -> new_lt7(vyw491, vyw501, dbh) 29.11/13.93 new_esEs35(vyw500, vyw3000, ty_Integer) -> new_esEs16(vyw500, vyw3000) 29.11/13.93 new_esEs34(vyw501, vyw3001, app(ty_Ratio, dhb)) -> new_esEs27(vyw501, vyw3001, dhb) 29.11/13.93 new_ltEs14(True, False) -> False 29.11/13.93 new_esEs15(vyw500, vyw3000, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs26(vyw500, vyw3000, fh, ga, gb) 29.11/13.93 new_esEs36(vyw491, vyw501, app(app(ty_Either, dcd), dce)) -> new_esEs23(vyw491, vyw501, dcd, dce) 29.11/13.93 new_compare11(vyw168, vyw169, vyw170, vyw171, vyw172, vyw173, True, bf, bg, bh) -> LT 29.11/13.93 new_esEs23(Left(vyw500), Left(vyw3000), app(ty_Maybe, efg), efd) -> new_esEs22(vyw500, vyw3000, efg) 29.11/13.93 new_ltEs4(Just(vyw490), Just(vyw500), ty_Ordering) -> new_ltEs7(vyw490, vyw500) 29.11/13.93 new_esEs40(vyw85, vyw88, ty_Ordering) -> new_esEs28(vyw85, vyw88) 29.11/13.93 new_esEs23(Right(vyw500), Right(vyw3000), egg, ty_Double) -> new_esEs21(vyw500, vyw3000) 29.11/13.93 new_lt19(vyw103, vyw105, ty_Integer) -> new_lt4(vyw103, vyw105) 29.11/13.93 new_gt(vyw21, vyw16, app(app(ty_Either, bab), bac)) -> new_esEs41(new_compare29(vyw21, vyw16, bab, bac)) 29.11/13.93 new_compare28(vyw67, vyw68, True, chb, chc) -> EQ 29.11/13.93 new_gt(vyw21, vyw16, app(app(ty_@2, hg), hh)) -> new_esEs41(new_compare14(vyw21, vyw16, hg, hh)) 29.11/13.93 new_esEs32(vyw103, vyw105, ty_Int) -> new_esEs18(vyw103, vyw105) 29.11/13.93 new_esEs4(vyw50, vyw300, ty_Ordering) -> new_esEs28(vyw50, vyw300) 29.11/13.93 new_esEs35(vyw500, vyw3000, app(ty_Maybe, dhe)) -> new_esEs22(vyw500, vyw3000, dhe) 29.11/13.93 new_esEs35(vyw500, vyw3000, ty_@0) -> new_esEs20(vyw500, vyw3000) 29.11/13.93 new_esEs36(vyw491, vyw501, ty_Bool) -> new_esEs24(vyw491, vyw501) 29.11/13.93 new_esEs6(vyw50, vyw300, ty_Float) -> new_esEs19(vyw50, vyw300) 29.11/13.93 new_esEs39(vyw86, vyw89, ty_Ordering) -> new_esEs28(vyw86, vyw89) 29.11/13.93 new_lt10(vyw490, vyw500, app(ty_[], cbc)) -> new_lt8(vyw490, vyw500, cbc) 29.11/13.93 new_esEs10(vyw51, vyw301, ty_Double) -> new_esEs21(vyw51, vyw301) 29.11/13.93 new_esEs37(vyw490, vyw500, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs26(vyw490, vyw500, dbd, dbe, dbf) 29.11/13.93 new_ltEs24(vyw87, vyw90, ty_Char) -> new_ltEs10(vyw87, vyw90) 29.11/13.93 new_lt19(vyw103, vyw105, ty_Bool) -> new_lt5(vyw103, vyw105) 29.11/13.93 new_primCmpInt(Neg(Succ(vyw500)), Pos(vyw300)) -> LT 29.11/13.93 new_ltEs21(vyw74, vyw75, ty_Integer) -> new_ltEs12(vyw74, vyw75) 29.11/13.93 new_esEs23(Right(vyw500), Right(vyw3000), egg, ty_Char) -> new_esEs17(vyw500, vyw3000) 29.11/13.93 new_esEs10(vyw51, vyw301, ty_Bool) -> new_esEs24(vyw51, vyw301) 29.11/13.93 new_ltEs20(vyw104, vyw106, ty_Int) -> new_ltEs11(vyw104, vyw106) 29.11/13.93 new_esEs34(vyw501, vyw3001, ty_@0) -> new_esEs20(vyw501, vyw3001) 29.11/13.93 new_esEs24(True, True) -> True 29.11/13.93 new_esEs22(Just(vyw500), Just(vyw3000), app(ty_[], beh)) -> new_esEs25(vyw500, vyw3000, beh) 29.11/13.93 new_primCmpInt(Pos(Zero), Neg(Succ(vyw3000))) -> GT 29.11/13.93 new_esEs35(vyw500, vyw3000, ty_Double) -> new_esEs21(vyw500, vyw3000) 29.11/13.93 new_compare111(vyw153, vyw154, vyw155, vyw156, False, vyw158, eae, eaf) -> new_compare112(vyw153, vyw154, vyw155, vyw156, vyw158, eae, eaf) 29.11/13.93 new_ltEs19(vyw491, vyw501, app(app(ty_@2, cbe), cbf)) -> new_ltEs5(vyw491, vyw501, cbe, cbf) 29.11/13.93 new_lt22(vyw86, vyw89, app(app(ty_@2, fca), fcb)) -> new_lt6(vyw86, vyw89, fca, fcb) 29.11/13.93 new_primCmpInt(Neg(Succ(vyw500)), Neg(vyw300)) -> new_primCmpNat0(vyw300, Succ(vyw500)) 29.11/13.93 new_esEs6(vyw50, vyw300, ty_Integer) -> new_esEs16(vyw50, vyw300) 29.11/13.93 new_esEs4(vyw50, vyw300, app(app(ty_@2, de), df)) -> new_esEs13(vyw50, vyw300, de, df) 29.11/13.93 new_lt19(vyw103, vyw105, ty_@0) -> new_lt14(vyw103, vyw105) 29.11/13.93 new_lt19(vyw103, vyw105, app(app(ty_Either, cdf), cdg)) -> new_lt17(vyw103, vyw105, cdf, cdg) 29.11/13.93 new_esEs5(vyw51, vyw301, app(ty_[], bcb)) -> new_esEs25(vyw51, vyw301, bcb) 29.11/13.93 new_esEs10(vyw51, vyw301, app(app(ty_@2, fgh), fha)) -> new_esEs13(vyw51, vyw301, fgh, fha) 29.11/13.93 new_esEs35(vyw500, vyw3000, ty_Bool) -> new_esEs24(vyw500, vyw3000) 29.11/13.93 new_esEs8(vyw50, vyw300, app(ty_Ratio, edd)) -> new_esEs27(vyw50, vyw300, edd) 29.11/13.93 new_esEs27(:%(vyw500, vyw501), :%(vyw3000, vyw3001), bah) -> new_asAs(new_esEs30(vyw500, vyw3000, bah), new_esEs29(vyw501, vyw3001, bah)) 29.11/13.93 new_esEs32(vyw103, vyw105, ty_Ordering) -> new_esEs28(vyw103, vyw105) 29.11/13.93 new_compare30(vyw50, vyw300, ty_Char) -> new_compare17(vyw50, vyw300) 29.11/13.93 new_lt19(vyw103, vyw105, app(ty_Maybe, cdb)) -> new_lt7(vyw103, vyw105, cdb) 29.11/13.93 new_esEs41(EQ) -> False 29.11/13.93 new_esEs15(vyw500, vyw3000, app(app(ty_@2, fa), fb)) -> new_esEs13(vyw500, vyw3000, fa, fb) 29.11/13.93 new_lt10(vyw490, vyw500, app(ty_Ratio, cae)) -> new_lt11(vyw490, vyw500, cae) 29.11/13.93 new_primCompAux0(vyw50, vyw300, vyw44, bfe) -> new_primCompAux00(vyw44, new_compare30(vyw50, vyw300, bfe)) 29.11/13.93 new_ltEs18(vyw49, vyw50, app(ty_[], he)) -> new_ltEs17(vyw49, vyw50, he) 29.11/13.93 new_primEqInt(Pos(Succ(vyw5000)), Pos(Zero)) -> False 29.11/13.93 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 29.11/13.93 new_esEs34(vyw501, vyw3001, ty_Int) -> new_esEs18(vyw501, vyw3001) 29.11/13.93 new_lt22(vyw86, vyw89, app(app(app(ty_@3, fcf), fcg), fch)) -> new_lt18(vyw86, vyw89, fcf, fcg, fch) 29.11/13.93 new_lt21(vyw491, vyw501, ty_Integer) -> new_lt4(vyw491, vyw501) 29.11/13.93 new_compare8(GT, GT) -> EQ 29.11/13.93 new_ltEs23(vyw492, vyw502, app(ty_Ratio, dde)) -> new_ltEs6(vyw492, vyw502, dde) 29.11/13.93 new_esEs39(vyw86, vyw89, ty_@0) -> new_esEs20(vyw86, vyw89) 29.11/13.93 new_ltEs22(vyw67, vyw68, app(app(app(ty_@3, dab), dac), dad)) -> new_ltEs16(vyw67, vyw68, dab, dac, dad) 29.11/13.93 new_ltEs19(vyw491, vyw501, ty_Integer) -> new_ltEs12(vyw491, vyw501) 29.11/13.93 new_primCmpNat0(Zero, Zero) -> EQ 29.11/13.93 new_lt24(vyw5, vyw30, app(app(ty_Either, eag), eah)) -> new_lt17(vyw5, vyw30, eag, eah) 29.11/13.93 new_esEs6(vyw50, vyw300, app(app(app(ty_@3, bde), bdf), bdg)) -> new_esEs26(vyw50, vyw300, bde, bdf, bdg) 29.11/13.93 new_esEs20(@0, @0) -> True 29.11/13.93 new_esEs37(vyw490, vyw500, ty_Integer) -> new_esEs16(vyw490, vyw500) 29.11/13.93 new_lt21(vyw491, vyw501, ty_Bool) -> new_lt5(vyw491, vyw501) 29.11/13.93 new_lt24(vyw5, vyw30, app(ty_Maybe, bea)) -> new_lt7(vyw5, vyw30, bea) 29.11/13.93 new_esEs34(vyw501, vyw3001, app(app(ty_Either, dgd), dge)) -> new_esEs23(vyw501, vyw3001, dgd, dge) 29.11/13.93 new_ltEs24(vyw87, vyw90, ty_Ordering) -> new_ltEs7(vyw87, vyw90) 29.11/13.93 new_esEs34(vyw501, vyw3001, ty_Float) -> new_esEs19(vyw501, vyw3001) 29.11/13.93 new_esEs36(vyw491, vyw501, app(ty_Ratio, dcc)) -> new_esEs27(vyw491, vyw501, dcc) 29.11/13.93 new_esEs33(vyw502, vyw3002, app(ty_[], dfd)) -> new_esEs25(vyw502, vyw3002, dfd) 29.11/13.93 new_esEs15(vyw500, vyw3000, ty_Bool) -> new_esEs24(vyw500, vyw3000) 29.11/13.93 new_ltEs13(Left(vyw490), Left(vyw500), ty_Integer, ha) -> new_ltEs12(vyw490, vyw500) 29.11/13.93 new_lt10(vyw490, vyw500, ty_Char) -> new_lt15(vyw490, vyw500) 29.11/13.93 new_esEs14(vyw501, vyw3001, app(ty_Ratio, eh)) -> new_esEs27(vyw501, vyw3001, eh) 29.11/13.93 new_ltEs21(vyw74, vyw75, app(app(ty_@2, cga), cgb)) -> new_ltEs5(vyw74, vyw75, cga, cgb) 29.11/13.93 new_lt21(vyw491, vyw501, ty_@0) -> new_lt14(vyw491, vyw501) 29.11/13.93 new_esEs4(vyw50, vyw300, ty_Double) -> new_esEs21(vyw50, vyw300) 29.11/13.93 new_esEs14(vyw501, vyw3001, ty_@0) -> new_esEs20(vyw501, vyw3001) 29.11/13.93 new_fsEs(vyw177) -> new_not(new_esEs28(vyw177, GT)) 29.11/13.93 new_esEs15(vyw500, vyw3000, ty_Double) -> new_esEs21(vyw500, vyw3000) 29.11/13.93 new_ltEs20(vyw104, vyw106, ty_Bool) -> new_ltEs14(vyw104, vyw106) 29.11/13.93 new_primCompAux00(vyw95, GT) -> GT 29.11/13.93 new_esEs37(vyw490, vyw500, ty_Ordering) -> new_esEs28(vyw490, vyw500) 29.11/13.93 new_lt24(vyw5, vyw30, ty_Float) -> new_lt13(vyw5, vyw30) 29.11/13.93 new_esEs22(Just(vyw500), Just(vyw3000), app(ty_Maybe, bee)) -> new_esEs22(vyw500, vyw3000, bee) 29.11/13.93 new_esEs33(vyw502, vyw3002, app(ty_Maybe, dfa)) -> new_esEs22(vyw502, vyw3002, dfa) 29.11/13.93 new_esEs38(vyw500, vyw3000, app(ty_Maybe, fae)) -> new_esEs22(vyw500, vyw3000, fae) 29.11/13.93 new_esEs9(vyw52, vyw302, ty_Double) -> new_esEs21(vyw52, vyw302) 29.11/13.93 new_compare14(@2(vyw50, vyw51), @2(vyw300, vyw301), bba, bbb) -> new_compare25(vyw50, vyw51, vyw300, vyw301, new_asAs(new_esEs6(vyw50, vyw300, bba), new_esEs5(vyw51, vyw301, bbb)), bba, bbb) 29.11/13.93 new_ltEs24(vyw87, vyw90, ty_Double) -> new_ltEs15(vyw87, vyw90) 29.11/13.93 new_esEs4(vyw50, vyw300, ty_Bool) -> new_esEs24(vyw50, vyw300) 29.11/13.93 new_esEs33(vyw502, vyw3002, ty_Char) -> new_esEs17(vyw502, vyw3002) 29.11/13.93 new_compare110(vyw141, vyw142, True, ccf, ccg) -> LT 29.11/13.93 new_esEs31(vyw490, vyw500, app(ty_Ratio, cae)) -> new_esEs27(vyw490, vyw500, cae) 29.11/13.93 new_esEs39(vyw86, vyw89, app(app(ty_Either, fcd), fce)) -> new_esEs23(vyw86, vyw89, fcd, fce) 29.11/13.93 new_esEs38(vyw500, vyw3000, ty_Char) -> new_esEs17(vyw500, vyw3000) 29.11/13.93 new_esEs8(vyw50, vyw300, ty_@0) -> new_esEs20(vyw50, vyw300) 29.11/13.93 new_lt24(vyw5, vyw30, app(ty_[], bfe)) -> new_lt8(vyw5, vyw30, bfe) 29.11/13.93 new_ltEs23(vyw492, vyw502, app(ty_[], dec)) -> new_ltEs17(vyw492, vyw502, dec) 29.11/13.93 new_esEs11(vyw50, vyw300, app(ty_[], gag)) -> new_esEs25(vyw50, vyw300, gag) 29.11/13.93 new_esEs29(vyw501, vyw3001, ty_Int) -> new_esEs18(vyw501, vyw3001) 29.11/13.93 new_ltEs13(Right(vyw490), Right(vyw500), gh, ty_Int) -> new_ltEs11(vyw490, vyw500) 29.11/13.93 new_esEs9(vyw52, vyw302, ty_Bool) -> new_esEs24(vyw52, vyw302) 29.11/13.93 new_esEs32(vyw103, vyw105, ty_Integer) -> new_esEs16(vyw103, vyw105) 29.11/13.93 new_primCmpNat0(Succ(vyw500), Zero) -> GT 29.11/13.93 new_esEs40(vyw85, vyw88, ty_Bool) -> new_esEs24(vyw85, vyw88) 29.11/13.93 new_compare16(Just(vyw50), Nothing, bea) -> GT 29.11/13.93 new_pePe(False, vyw182) -> vyw182 29.11/13.93 new_lt19(vyw103, vyw105, ty_Int) -> new_lt16(vyw103, vyw105) 29.11/13.93 new_esEs7(vyw50, vyw300, ty_Double) -> new_esEs21(vyw50, vyw300) 29.11/13.93 new_compare25(vyw103, vyw104, vyw105, vyw106, True, cch, cda) -> EQ 29.11/13.93 new_compare26(Float(vyw50, Pos(vyw510)), Float(vyw300, Pos(vyw3010))) -> new_compare13(new_sr(vyw50, Pos(vyw3010)), new_sr(Pos(vyw510), vyw300)) 29.11/13.93 new_ltEs13(Left(vyw490), Right(vyw500), gh, ha) -> True 29.11/13.93 new_esEs5(vyw51, vyw301, app(ty_Ratio, bcf)) -> new_esEs27(vyw51, vyw301, bcf) 29.11/13.93 new_ltEs22(vyw67, vyw68, ty_Double) -> new_ltEs15(vyw67, vyw68) 29.11/13.93 new_ltEs4(Just(vyw490), Just(vyw500), ty_@0) -> new_ltEs9(vyw490, vyw500) 29.11/13.93 new_lt21(vyw491, vyw501, ty_Double) -> new_lt9(vyw491, vyw501) 29.11/13.93 new_lt24(vyw5, vyw30, ty_@0) -> new_lt14(vyw5, vyw30) 29.11/13.93 new_ltEs4(Just(vyw490), Just(vyw500), app(app(app(ty_@3, da), db), dc)) -> new_ltEs16(vyw490, vyw500, da, db, dc) 29.11/13.93 new_esEs9(vyw52, vyw302, app(app(app(ty_@3, fgd), fge), fgf)) -> new_esEs26(vyw52, vyw302, fgd, fge, fgf) 29.11/13.93 new_compare16(Nothing, Nothing, bea) -> EQ 29.11/13.93 new_ltEs13(Left(vyw490), Left(vyw500), app(app(ty_Either, bgb), bgc), ha) -> new_ltEs13(vyw490, vyw500, bgb, bgc) 29.11/13.93 new_ltEs20(vyw104, vyw106, ty_Float) -> new_ltEs8(vyw104, vyw106) 29.11/13.93 new_esEs10(vyw51, vyw301, ty_Ordering) -> new_esEs28(vyw51, vyw301) 29.11/13.93 new_esEs6(vyw50, vyw300, ty_@0) -> new_esEs20(vyw50, vyw300) 29.11/13.93 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 29.11/13.93 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 29.11/13.93 new_lt19(vyw103, vyw105, ty_Ordering) -> new_lt12(vyw103, vyw105) 29.11/13.93 new_esEs40(vyw85, vyw88, ty_Double) -> new_esEs21(vyw85, vyw88) 29.11/13.93 new_esEs23(Right(vyw500), Right(vyw3000), egg, app(ty_Ratio, faa)) -> new_esEs27(vyw500, vyw3000, faa) 29.11/13.93 new_compare24(vyw49, vyw50, True, gd) -> EQ 29.11/13.93 new_esEs7(vyw50, vyw300, ty_Bool) -> new_esEs24(vyw50, vyw300) 29.11/13.93 new_compare30(vyw50, vyw300, app(app(ty_Either, eea), eeb)) -> new_compare29(vyw50, vyw300, eea, eeb) 29.11/13.93 new_compare111(vyw153, vyw154, vyw155, vyw156, True, vyw158, eae, eaf) -> new_compare112(vyw153, vyw154, vyw155, vyw156, True, eae, eaf) 29.11/13.93 new_esEs37(vyw490, vyw500, ty_Int) -> new_esEs18(vyw490, vyw500) 29.11/13.93 new_compare10(vyw168, vyw169, vyw170, vyw171, vyw172, vyw173, True, vyw175, bf, bg, bh) -> new_compare11(vyw168, vyw169, vyw170, vyw171, vyw172, vyw173, True, bf, bg, bh) 29.11/13.93 new_esEs31(vyw490, vyw500, ty_@0) -> new_esEs20(vyw490, vyw500) 29.11/13.93 new_compare5([], :(vyw300, vyw301), bfe) -> LT 29.11/13.93 new_esEs39(vyw86, vyw89, ty_Integer) -> new_esEs16(vyw86, vyw89) 29.11/13.93 new_esEs14(vyw501, vyw3001, ty_Int) -> new_esEs18(vyw501, vyw3001) 29.11/13.93 new_lt22(vyw86, vyw89, ty_Char) -> new_lt15(vyw86, vyw89) 29.11/13.93 new_esEs40(vyw85, vyw88, app(ty_Maybe, fed)) -> new_esEs22(vyw85, vyw88, fed) 29.11/13.93 new_esEs7(vyw50, vyw300, app(ty_Maybe, ebc)) -> new_esEs22(vyw50, vyw300, ebc) 29.11/13.93 new_esEs23(Left(vyw500), Left(vyw3000), app(app(ty_Either, efh), ega), efd) -> new_esEs23(vyw500, vyw3000, efh, ega) 29.11/13.93 new_ltEs22(vyw67, vyw68, ty_@0) -> new_ltEs9(vyw67, vyw68) 29.11/13.93 new_esEs34(vyw501, vyw3001, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs26(vyw501, vyw3001, dgg, dgh, dha) 29.11/13.93 new_ltEs4(Just(vyw490), Just(vyw500), ty_Double) -> new_ltEs15(vyw490, vyw500) 29.11/13.93 new_esEs40(vyw85, vyw88, ty_Char) -> new_esEs17(vyw85, vyw88) 29.11/13.93 new_esEs32(vyw103, vyw105, ty_Double) -> new_esEs21(vyw103, vyw105) 29.11/13.93 new_esEs14(vyw501, vyw3001, ty_Float) -> new_esEs19(vyw501, vyw3001) 29.11/13.93 new_esEs7(vyw50, vyw300, ty_Char) -> new_esEs17(vyw50, vyw300) 29.11/13.93 new_compare5(:(vyw50, vyw51), :(vyw300, vyw301), bfe) -> new_primCompAux0(vyw50, vyw300, new_compare5(vyw51, vyw301, bfe), bfe) 29.11/13.93 new_esEs37(vyw490, vyw500, ty_Float) -> new_esEs19(vyw490, vyw500) 29.11/13.93 new_ltEs19(vyw491, vyw501, app(app(ty_Either, cbh), cca)) -> new_ltEs13(vyw491, vyw501, cbh, cca) 29.11/13.93 new_esEs35(vyw500, vyw3000, ty_Ordering) -> new_esEs28(vyw500, vyw3000) 29.11/13.93 new_esEs8(vyw50, vyw300, app(app(ty_Either, ecf), ecg)) -> new_esEs23(vyw50, vyw300, ecf, ecg) 29.11/13.93 new_esEs32(vyw103, vyw105, ty_Bool) -> new_esEs24(vyw103, vyw105) 29.11/13.93 new_esEs39(vyw86, vyw89, ty_Int) -> new_esEs18(vyw86, vyw89) 29.11/13.93 new_ltEs21(vyw74, vyw75, app(ty_Ratio, cgc)) -> new_ltEs6(vyw74, vyw75, cgc) 29.11/13.93 new_lt21(vyw491, vyw501, ty_Int) -> new_lt16(vyw491, vyw501) 29.11/13.93 new_esEs31(vyw490, vyw500, app(ty_Maybe, cab)) -> new_esEs22(vyw490, vyw500, cab) 29.11/13.93 new_esEs23(Left(vyw500), Left(vyw3000), app(app(ty_@2, efe), eff), efd) -> new_esEs13(vyw500, vyw3000, efe, eff) 29.11/13.93 new_ltEs4(Just(vyw490), Just(vyw500), ty_Int) -> new_ltEs11(vyw490, vyw500) 29.11/13.93 new_esEs23(Left(vyw500), Left(vyw3000), ty_@0, efd) -> new_esEs20(vyw500, vyw3000) 29.11/13.93 new_esEs32(vyw103, vyw105, app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs26(vyw103, vyw105, cdh, cea, ceb) 29.11/13.93 new_esEs8(vyw50, vyw300, app(ty_[], ech)) -> new_esEs25(vyw50, vyw300, ech) 29.11/13.93 new_esEs5(vyw51, vyw301, app(ty_Maybe, bbg)) -> new_esEs22(vyw51, vyw301, bbg) 29.11/13.93 new_lt19(vyw103, vyw105, ty_Double) -> new_lt9(vyw103, vyw105) 29.11/13.93 new_esEs32(vyw103, vyw105, app(app(ty_Either, cdf), cdg)) -> new_esEs23(vyw103, vyw105, cdf, cdg) 29.11/13.93 new_lt24(vyw5, vyw30, ty_Integer) -> new_lt4(vyw5, vyw30) 29.11/13.93 new_compare8(LT, GT) -> LT 29.11/13.93 new_ltEs18(vyw49, vyw50, ty_Bool) -> new_ltEs14(vyw49, vyw50) 29.11/13.93 new_lt21(vyw491, vyw501, ty_Ordering) -> new_lt12(vyw491, vyw501) 29.11/13.93 new_esEs6(vyw50, vyw300, app(app(ty_Either, bdb), bdc)) -> new_esEs23(vyw50, vyw300, bdb, bdc) 29.11/13.93 new_lt24(vyw5, vyw30, ty_Bool) -> new_lt5(vyw5, vyw30) 29.11/13.93 new_compare7(False, False) -> EQ 29.11/13.93 new_esEs5(vyw51, vyw301, ty_Char) -> new_esEs17(vyw51, vyw301) 29.11/13.93 new_ltEs15(vyw49, vyw50) -> new_fsEs(new_compare18(vyw49, vyw50)) 29.11/13.93 new_ltEs23(vyw492, vyw502, ty_Int) -> new_ltEs11(vyw492, vyw502) 29.11/13.93 new_compare29(Left(vyw50), Right(vyw300), eag, eah) -> LT 29.11/13.93 new_primMulInt(Neg(vyw500), Neg(vyw3010)) -> Pos(new_primMulNat0(vyw500, vyw3010)) 29.11/13.93 new_primCmpInt(Pos(Zero), Pos(Succ(vyw3000))) -> new_primCmpNat0(Zero, Succ(vyw3000)) 29.11/13.93 new_esEs31(vyw490, vyw500, app(ty_[], cbc)) -> new_esEs25(vyw490, vyw500, cbc) 29.11/13.93 new_esEs40(vyw85, vyw88, app(app(ty_@2, fee), fef)) -> new_esEs13(vyw85, vyw88, fee, fef) 29.11/13.93 new_esEs9(vyw52, vyw302, ty_Ordering) -> new_esEs28(vyw52, vyw302) 29.11/13.93 new_esEs10(vyw51, vyw301, app(app(app(ty_@3, fhf), fhg), fhh)) -> new_esEs26(vyw51, vyw301, fhf, fhg, fhh) 29.11/13.93 new_ltEs20(vyw104, vyw106, app(ty_[], cfe)) -> new_ltEs17(vyw104, vyw106, cfe) 29.11/13.93 new_esEs23(Left(vyw500), Left(vyw3000), ty_Char, efd) -> new_esEs17(vyw500, vyw3000) 29.11/13.93 new_esEs29(vyw501, vyw3001, ty_Integer) -> new_esEs16(vyw501, vyw3001) 29.11/13.93 new_compare7(True, False) -> GT 29.11/13.93 new_esEs7(vyw50, vyw300, app(ty_[], ebf)) -> new_esEs25(vyw50, vyw300, ebf) 29.11/13.93 new_esEs39(vyw86, vyw89, app(ty_Ratio, fcc)) -> new_esEs27(vyw86, vyw89, fcc) 29.11/13.93 new_compare30(vyw50, vyw300, app(ty_Ratio, edh)) -> new_compare9(vyw50, vyw300, edh) 29.11/13.93 new_ltEs22(vyw67, vyw68, ty_Float) -> new_ltEs8(vyw67, vyw68) 29.11/13.93 new_esEs31(vyw490, vyw500, app(app(ty_Either, caf), cag)) -> new_esEs23(vyw490, vyw500, caf, cag) 29.11/13.93 new_ltEs4(Just(vyw490), Just(vyw500), ty_Float) -> new_ltEs8(vyw490, vyw500) 29.11/13.93 new_lt13(vyw5, vyw30) -> new_esEs12(new_compare26(vyw5, vyw30)) 29.11/13.93 new_ltEs7(LT, LT) -> True 29.11/13.93 new_gt(vyw21, vyw16, ty_Double) -> new_esEs41(new_compare18(vyw21, vyw16)) 29.11/13.93 new_primMulInt(Pos(vyw500), Neg(vyw3010)) -> Neg(new_primMulNat0(vyw500, vyw3010)) 29.11/13.93 new_primMulInt(Neg(vyw500), Pos(vyw3010)) -> Neg(new_primMulNat0(vyw500, vyw3010)) 29.11/13.93 new_esEs33(vyw502, vyw3002, ty_Double) -> new_esEs21(vyw502, vyw3002) 29.11/13.93 new_ltEs23(vyw492, vyw502, ty_Bool) -> new_ltEs14(vyw492, vyw502) 29.11/13.93 new_esEs9(vyw52, vyw302, ty_Int) -> new_esEs18(vyw52, vyw302) 29.11/13.93 new_ltEs24(vyw87, vyw90, app(ty_Maybe, fdb)) -> new_ltEs4(vyw87, vyw90, fdb) 29.11/13.93 new_esEs39(vyw86, vyw89, app(ty_[], fda)) -> new_esEs25(vyw86, vyw89, fda) 29.11/13.93 new_esEs28(LT, GT) -> False 29.11/13.93 new_esEs28(GT, LT) -> False 29.11/13.93 new_ltEs23(vyw492, vyw502, ty_Float) -> new_ltEs8(vyw492, vyw502) 29.11/13.93 new_sr0(Integer(vyw500), Integer(vyw3010)) -> Integer(new_primMulInt(vyw500, vyw3010)) 29.11/13.93 new_ltEs13(Left(vyw490), Left(vyw500), app(ty_Maybe, bff), ha) -> new_ltEs4(vyw490, vyw500, bff) 29.11/13.93 new_lt16(vyw5, vyw30) -> new_esEs12(new_compare13(vyw5, vyw30)) 29.11/13.93 new_esEs6(vyw50, vyw300, app(ty_Ratio, bdh)) -> new_esEs27(vyw50, vyw300, bdh) 29.11/13.93 new_lt10(vyw490, vyw500, app(app(app(ty_@3, cah), cba), cbb)) -> new_lt18(vyw490, vyw500, cah, cba, cbb) 29.11/13.93 new_ltEs19(vyw491, vyw501, app(ty_Ratio, cbg)) -> new_ltEs6(vyw491, vyw501, cbg) 29.11/13.93 new_ltEs16(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), hb, hc, hd) -> new_pePe(new_lt20(vyw490, vyw500, hb), new_asAs(new_esEs37(vyw490, vyw500, hb), new_pePe(new_lt21(vyw491, vyw501, hc), new_asAs(new_esEs36(vyw491, vyw501, hc), new_ltEs23(vyw492, vyw502, hd))))) 29.11/13.93 new_esEs31(vyw490, vyw500, ty_Float) -> new_esEs19(vyw490, vyw500) 29.11/13.93 new_esEs38(vyw500, vyw3000, app(app(ty_@2, fac), fad)) -> new_esEs13(vyw500, vyw3000, fac, fad) 29.11/13.93 new_esEs9(vyw52, vyw302, ty_@0) -> new_esEs20(vyw52, vyw302) 29.11/13.93 new_esEs18(vyw50, vyw300) -> new_primEqInt(vyw50, vyw300) 29.11/13.93 new_ltEs4(Just(vyw490), Just(vyw500), app(ty_[], dd)) -> new_ltEs17(vyw490, vyw500, dd) 29.11/13.93 new_asAs(True, vyw121) -> vyw121 29.11/13.93 new_gt(vyw21, vyw16, app(ty_[], bag)) -> new_esEs41(new_compare5(vyw21, vyw16, bag)) 29.11/13.93 new_esEs23(Left(vyw500), Left(vyw3000), app(ty_[], egb), efd) -> new_esEs25(vyw500, vyw3000, egb) 29.11/13.93 new_compare29(Right(vyw50), Right(vyw300), eag, eah) -> new_compare27(vyw50, vyw300, new_esEs8(vyw50, vyw300, eah), eag, eah) 29.11/13.93 new_lt24(vyw5, vyw30, ty_Int) -> new_lt16(vyw5, vyw30) 29.11/13.93 new_ltEs22(vyw67, vyw68, ty_Int) -> new_ltEs11(vyw67, vyw68) 29.11/13.93 new_lt24(vyw5, vyw30, ty_Ordering) -> new_lt12(vyw5, vyw30) 29.11/13.93 new_esEs23(Right(vyw500), Right(vyw3000), egg, app(app(ty_Either, ehc), ehd)) -> new_esEs23(vyw500, vyw3000, ehc, ehd) 29.11/13.93 new_ltEs13(Right(vyw490), Right(vyw500), gh, app(app(ty_Either, bhd), bhe)) -> new_ltEs13(vyw490, vyw500, bhd, bhe) 29.11/13.93 new_esEs26(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), ded, dee, def) -> new_asAs(new_esEs35(vyw500, vyw3000, ded), new_asAs(new_esEs34(vyw501, vyw3001, dee), new_esEs33(vyw502, vyw3002, def))) 29.11/13.93 new_esEs37(vyw490, vyw500, ty_Double) -> new_esEs21(vyw490, vyw500) 29.11/13.93 new_ltEs18(vyw49, vyw50, app(ty_Maybe, ca)) -> new_ltEs4(vyw49, vyw50, ca) 29.11/13.93 new_ltEs19(vyw491, vyw501, ty_Double) -> new_ltEs15(vyw491, vyw501) 29.11/13.93 new_compare30(vyw50, vyw300, app(app(ty_@2, edf), edg)) -> new_compare14(vyw50, vyw300, edf, edg) 29.11/13.93 new_lt24(vyw5, vyw30, app(app(ty_@2, bba), bbb)) -> new_lt6(vyw5, vyw30, bba, bbb) 29.11/13.93 new_gt(vyw21, vyw16, ty_Bool) -> new_esEs41(new_compare7(vyw21, vyw16)) 29.11/13.93 new_ltEs13(Right(vyw490), Right(vyw500), gh, app(ty_Maybe, bgh)) -> new_ltEs4(vyw490, vyw500, bgh) 29.11/13.93 new_esEs33(vyw502, vyw3002, app(app(ty_@2, deg), deh)) -> new_esEs13(vyw502, vyw3002, deg, deh) 29.11/13.93 new_compare30(vyw50, vyw300, app(ty_[], eef)) -> new_compare5(vyw50, vyw300, eef) 29.11/13.93 new_ltEs22(vyw67, vyw68, ty_Char) -> new_ltEs10(vyw67, vyw68) 29.11/13.93 new_sr(vyw50, vyw301) -> new_primMulInt(vyw50, vyw301) 29.11/13.93 new_esEs24(False, False) -> True 29.11/13.93 new_primMulNat0(Zero, Zero) -> Zero 29.11/13.93 new_esEs38(vyw500, vyw3000, ty_Double) -> new_esEs21(vyw500, vyw3000) 29.11/13.93 new_esEs11(vyw50, vyw300, ty_Float) -> new_esEs19(vyw50, vyw300) 29.11/13.93 new_esEs22(Just(vyw500), Just(vyw3000), ty_Double) -> new_esEs21(vyw500, vyw3000) 29.11/13.93 new_esEs4(vyw50, vyw300, ty_Int) -> new_esEs18(vyw50, vyw300) 29.11/13.93 new_compare8(LT, LT) -> EQ 29.11/13.93 new_esEs10(vyw51, vyw301, app(ty_[], fhe)) -> new_esEs25(vyw51, vyw301, fhe) 29.11/13.93 new_compare8(LT, EQ) -> LT 29.11/13.93 new_ltEs22(vyw67, vyw68, app(app(ty_Either, chh), daa)) -> new_ltEs13(vyw67, vyw68, chh, daa) 29.11/13.93 new_esEs35(vyw500, vyw3000, app(ty_[], dhh)) -> new_esEs25(vyw500, vyw3000, dhh) 29.11/13.93 new_esEs8(vyw50, vyw300, ty_Char) -> new_esEs17(vyw50, vyw300) 29.11/13.93 new_compare30(vyw50, vyw300, ty_Int) -> new_compare13(vyw50, vyw300) 29.11/13.93 new_lt19(vyw103, vyw105, app(ty_[], cec)) -> new_lt8(vyw103, vyw105, cec) 29.11/13.93 new_ltEs20(vyw104, vyw106, app(ty_Ratio, ceg)) -> new_ltEs6(vyw104, vyw106, ceg) 29.11/13.93 new_esEs9(vyw52, vyw302, ty_Integer) -> new_esEs16(vyw52, vyw302) 29.11/13.93 new_esEs31(vyw490, vyw500, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs26(vyw490, vyw500, cah, cba, cbb) 29.11/13.93 new_gt(vyw21, vyw16, app(ty_Maybe, hf)) -> new_esEs41(new_compare16(vyw21, vyw16, hf)) 29.11/13.93 new_lt19(vyw103, vyw105, app(app(ty_@2, cdc), cdd)) -> new_lt6(vyw103, vyw105, cdc, cdd) 29.11/13.93 new_lt18(vyw5, vyw30, eeg, eeh, efa) -> new_esEs12(new_compare31(vyw5, vyw30, eeg, eeh, efa)) 29.11/13.93 new_gt(vyw21, vyw16, ty_Integer) -> new_esEs41(new_compare6(vyw21, vyw16)) 29.11/13.93 new_esEs9(vyw52, vyw302, ty_Char) -> new_esEs17(vyw52, vyw302) 29.11/13.93 new_esEs23(Right(vyw500), Right(vyw3000), egg, ty_Ordering) -> new_esEs28(vyw500, vyw3000) 29.11/13.93 new_ltEs6(vyw49, vyw50, gg) -> new_fsEs(new_compare9(vyw49, vyw50, gg)) 29.11/13.93 new_esEs23(Left(vyw500), Left(vyw3000), ty_Int, efd) -> new_esEs18(vyw500, vyw3000) 29.11/13.93 new_esEs8(vyw50, vyw300, ty_Integer) -> new_esEs16(vyw50, vyw300) 29.11/13.93 new_primEqInt(Neg(Succ(vyw5000)), Neg(Zero)) -> False 29.11/13.93 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 29.11/13.93 new_esEs7(vyw50, vyw300, app(ty_Ratio, ecb)) -> new_esEs27(vyw50, vyw300, ecb) 29.11/13.93 new_primEqInt(Pos(Succ(vyw5000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 29.11/13.93 new_esEs9(vyw52, vyw302, app(app(ty_Either, fga), fgb)) -> new_esEs23(vyw52, vyw302, fga, fgb) 29.11/13.93 new_esEs22(Just(vyw500), Just(vyw3000), app(app(ty_@2, bec), bed)) -> new_esEs13(vyw500, vyw3000, bec, bed) 29.11/13.93 new_lt23(vyw85, vyw88, ty_Ordering) -> new_lt12(vyw85, vyw88) 29.11/13.93 new_esEs37(vyw490, vyw500, app(app(ty_@2, dag), dah)) -> new_esEs13(vyw490, vyw500, dag, dah) 29.11/13.93 new_esEs4(vyw50, vyw300, app(ty_[], fab)) -> new_esEs25(vyw50, vyw300, fab) 29.11/13.93 new_esEs5(vyw51, vyw301, ty_Int) -> new_esEs18(vyw51, vyw301) 29.11/13.93 new_primEqInt(Pos(Succ(vyw5000)), Neg(vyw3000)) -> False 29.11/13.93 new_primEqInt(Neg(Succ(vyw5000)), Pos(vyw3000)) -> False 29.11/13.93 new_esEs10(vyw51, vyw301, ty_Float) -> new_esEs19(vyw51, vyw301) 29.11/13.93 new_lt20(vyw490, vyw500, app(app(ty_@2, dag), dah)) -> new_lt6(vyw490, vyw500, dag, dah) 29.11/13.93 new_ltEs21(vyw74, vyw75, app(app(ty_Either, cgd), cge)) -> new_ltEs13(vyw74, vyw75, cgd, cge) 29.11/13.93 new_primCmpInt(Neg(Zero), Neg(Succ(vyw3000))) -> new_primCmpNat0(Succ(vyw3000), Zero) 29.11/13.93 new_lt23(vyw85, vyw88, ty_Int) -> new_lt16(vyw85, vyw88) 29.11/13.93 new_esEs8(vyw50, vyw300, app(ty_Maybe, ece)) -> new_esEs22(vyw50, vyw300, ece) 29.11/13.93 new_compare9(:%(vyw50, vyw51), :%(vyw300, vyw301), ty_Integer) -> new_compare6(new_sr0(vyw50, vyw301), new_sr0(vyw300, vyw51)) 29.11/13.93 new_ltEs23(vyw492, vyw502, app(ty_Maybe, ddb)) -> new_ltEs4(vyw492, vyw502, ddb) 29.11/13.93 new_esEs34(vyw501, vyw3001, app(ty_[], dgf)) -> new_esEs25(vyw501, vyw3001, dgf) 29.11/13.93 new_ltEs13(Right(vyw490), Right(vyw500), gh, app(ty_Ratio, bhc)) -> new_ltEs6(vyw490, vyw500, bhc) 29.11/13.93 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 29.11/13.93 new_lt22(vyw86, vyw89, ty_Double) -> new_lt9(vyw86, vyw89) 29.11/13.93 new_esEs40(vyw85, vyw88, app(ty_[], ffe)) -> new_esEs25(vyw85, vyw88, ffe) 29.11/13.93 new_lt23(vyw85, vyw88, app(ty_Ratio, feg)) -> new_lt11(vyw85, vyw88, feg) 29.11/13.93 new_lt5(vyw5, vyw30) -> new_esEs12(new_compare7(vyw5, vyw30)) 29.11/13.93 new_lt23(vyw85, vyw88, app(app(ty_@2, fee), fef)) -> new_lt6(vyw85, vyw88, fee, fef) 29.11/13.93 new_esEs15(vyw500, vyw3000, app(ty_[], fg)) -> new_esEs25(vyw500, vyw3000, fg) 29.11/13.93 new_esEs9(vyw52, vyw302, app(ty_Maybe, ffh)) -> new_esEs22(vyw52, vyw302, ffh) 29.11/13.93 new_esEs34(vyw501, vyw3001, ty_Double) -> new_esEs21(vyw501, vyw3001) 29.11/13.93 new_compare12(vyw126, vyw127, True, efb) -> LT 29.11/13.93 new_compare8(GT, LT) -> GT 29.11/13.93 new_ltEs18(vyw49, vyw50, app(ty_Ratio, gg)) -> new_ltEs6(vyw49, vyw50, gg) 29.11/13.93 new_ltEs22(vyw67, vyw68, ty_Integer) -> new_ltEs12(vyw67, vyw68) 29.11/13.93 new_compare10(vyw168, vyw169, vyw170, vyw171, vyw172, vyw173, False, vyw175, bf, bg, bh) -> new_compare11(vyw168, vyw169, vyw170, vyw171, vyw172, vyw173, vyw175, bf, bg, bh) 29.11/13.93 new_esEs32(vyw103, vyw105, app(app(ty_@2, cdc), cdd)) -> new_esEs13(vyw103, vyw105, cdc, cdd) 29.11/13.93 new_ltEs23(vyw492, vyw502, ty_Char) -> new_ltEs10(vyw492, vyw502) 29.11/13.93 new_ltEs7(EQ, GT) -> True 29.11/13.93 new_compare29(Right(vyw50), Left(vyw300), eag, eah) -> GT 29.11/13.93 new_esEs11(vyw50, vyw300, ty_Double) -> new_esEs21(vyw50, vyw300) 29.11/13.93 new_not(False) -> True 29.11/13.93 new_ltEs24(vyw87, vyw90, ty_@0) -> new_ltEs9(vyw87, vyw90) 29.11/13.93 new_compare8(EQ, LT) -> GT 29.11/13.93 new_lt22(vyw86, vyw89, app(ty_[], fda)) -> new_lt8(vyw86, vyw89, fda) 29.11/13.93 new_ltEs24(vyw87, vyw90, ty_Bool) -> new_ltEs14(vyw87, vyw90) 29.11/13.93 new_ltEs7(EQ, EQ) -> True 29.11/13.93 new_ltEs19(vyw491, vyw501, ty_Ordering) -> new_ltEs7(vyw491, vyw501) 29.11/13.93 new_ltEs7(GT, EQ) -> False 29.11/13.93 new_lt20(vyw490, vyw500, app(ty_[], dbg)) -> new_lt8(vyw490, vyw500, dbg) 29.11/13.93 new_ltEs24(vyw87, vyw90, ty_Integer) -> new_ltEs12(vyw87, vyw90) 29.11/13.93 new_esEs41(LT) -> False 29.11/13.93 new_lt21(vyw491, vyw501, app(app(ty_@2, dca), dcb)) -> new_lt6(vyw491, vyw501, dca, dcb) 29.11/13.93 new_esEs6(vyw50, vyw300, ty_Int) -> new_esEs18(vyw50, vyw300) 29.11/13.93 new_ltEs4(Just(vyw490), Just(vyw500), app(app(ty_@2, cc), cd)) -> new_ltEs5(vyw490, vyw500, cc, cd) 29.11/13.93 new_ltEs24(vyw87, vyw90, app(app(app(ty_@3, fdh), fea), feb)) -> new_ltEs16(vyw87, vyw90, fdh, fea, feb) 29.11/13.93 new_lt23(vyw85, vyw88, ty_Double) -> new_lt9(vyw85, vyw88) 29.11/13.93 new_ltEs20(vyw104, vyw106, ty_Ordering) -> new_ltEs7(vyw104, vyw106) 29.11/13.93 new_lt22(vyw86, vyw89, app(ty_Ratio, fcc)) -> new_lt11(vyw86, vyw89, fcc) 29.11/13.93 new_ltEs19(vyw491, vyw501, ty_Char) -> new_ltEs10(vyw491, vyw501) 29.11/13.93 new_esEs32(vyw103, vyw105, ty_Float) -> new_esEs19(vyw103, vyw105) 29.11/13.93 new_ltEs17(vyw49, vyw50, he) -> new_fsEs(new_compare5(vyw49, vyw50, he)) 29.11/13.93 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 29.11/13.93 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 29.11/13.93 new_ltEs22(vyw67, vyw68, ty_Bool) -> new_ltEs14(vyw67, vyw68) 29.11/13.93 new_compare30(vyw50, vyw300, ty_Double) -> new_compare18(vyw50, vyw300) 29.11/13.93 new_esEs38(vyw500, vyw3000, app(ty_[], fah)) -> new_esEs25(vyw500, vyw3000, fah) 29.11/13.93 new_ltEs23(vyw492, vyw502, ty_Ordering) -> new_ltEs7(vyw492, vyw502) 29.11/13.93 new_lt20(vyw490, vyw500, app(ty_Ratio, dba)) -> new_lt11(vyw490, vyw500, dba) 29.11/13.93 new_ltEs23(vyw492, vyw502, app(app(ty_Either, ddf), ddg)) -> new_ltEs13(vyw492, vyw502, ddf, ddg) 29.11/13.93 new_ltEs18(vyw49, vyw50, ty_Int) -> new_ltEs11(vyw49, vyw50) 29.11/13.93 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 29.11/13.93 new_esEs25(:(vyw500, vyw501), :(vyw3000, vyw3001), fab) -> new_asAs(new_esEs38(vyw500, vyw3000, fab), new_esEs25(vyw501, vyw3001, fab)) 29.11/13.93 new_esEs14(vyw501, vyw3001, ty_Double) -> new_esEs21(vyw501, vyw3001) 29.11/13.93 new_ltEs22(vyw67, vyw68, ty_Ordering) -> new_ltEs7(vyw67, vyw68) 29.11/13.93 new_esEs11(vyw50, vyw300, app(app(ty_@2, gab), gac)) -> new_esEs13(vyw50, vyw300, gab, gac) 29.11/13.93 new_compare8(EQ, EQ) -> EQ 29.11/13.93 new_lt10(vyw490, vyw500, ty_Float) -> new_lt13(vyw490, vyw500) 29.11/13.93 new_ltEs20(vyw104, vyw106, ty_Char) -> new_ltEs10(vyw104, vyw106) 29.11/13.93 new_lt24(vyw5, vyw30, ty_Double) -> new_lt9(vyw5, vyw30) 29.11/13.93 new_ltEs21(vyw74, vyw75, app(ty_Maybe, cfh)) -> new_ltEs4(vyw74, vyw75, cfh) 29.11/13.93 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 29.11/13.93 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 29.11/13.93 new_esEs23(Right(vyw500), Right(vyw3000), egg, ty_@0) -> new_esEs20(vyw500, vyw3000) 29.11/13.93 new_esEs35(vyw500, vyw3000, app(app(ty_@2, dhc), dhd)) -> new_esEs13(vyw500, vyw3000, dhc, dhd) 29.11/13.93 new_lt21(vyw491, vyw501, app(ty_Ratio, dcc)) -> new_lt11(vyw491, vyw501, dcc) 29.11/13.93 new_ltEs21(vyw74, vyw75, ty_Ordering) -> new_ltEs7(vyw74, vyw75) 29.11/13.93 new_esEs36(vyw491, vyw501, app(ty_[], dda)) -> new_esEs25(vyw491, vyw501, dda) 29.11/13.93 new_ltEs19(vyw491, vyw501, app(ty_Maybe, cbd)) -> new_ltEs4(vyw491, vyw501, cbd) 29.11/13.93 new_compare110(vyw141, vyw142, False, ccf, ccg) -> GT 29.11/13.93 new_lt6(vyw5, vyw30, bba, bbb) -> new_esEs12(new_compare14(vyw5, vyw30, bba, bbb)) 29.11/13.93 new_esEs36(vyw491, vyw501, ty_Double) -> new_esEs21(vyw491, vyw501) 29.11/13.93 new_primEqNat0(Zero, Zero) -> True 29.11/13.93 new_esEs23(Right(vyw500), Right(vyw3000), egg, ty_Integer) -> new_esEs16(vyw500, vyw3000) 29.11/13.93 new_compare16(Nothing, Just(vyw300), bea) -> LT 29.11/13.93 new_esEs34(vyw501, vyw3001, app(app(ty_@2, dga), dgb)) -> new_esEs13(vyw501, vyw3001, dga, dgb) 29.11/13.93 new_lt21(vyw491, vyw501, app(ty_[], dda)) -> new_lt8(vyw491, vyw501, dda) 29.11/13.93 new_esEs23(Right(vyw500), Right(vyw3000), egg, ty_Bool) -> new_esEs24(vyw500, vyw3000) 29.11/13.93 new_esEs23(Right(vyw500), Right(vyw3000), egg, app(app(app(ty_@3, ehf), ehg), ehh)) -> new_esEs26(vyw500, vyw3000, ehf, ehg, ehh) 29.11/13.93 new_asAs(False, vyw121) -> False 29.11/13.93 new_ltEs21(vyw74, vyw75, ty_Char) -> new_ltEs10(vyw74, vyw75) 29.11/13.93 new_esEs37(vyw490, vyw500, app(ty_[], dbg)) -> new_esEs25(vyw490, vyw500, dbg) 29.11/13.93 new_esEs9(vyw52, vyw302, app(ty_Ratio, fgg)) -> new_esEs27(vyw52, vyw302, fgg) 29.11/13.93 new_esEs14(vyw501, vyw3001, app(ty_[], ed)) -> new_esEs25(vyw501, vyw3001, ed) 29.11/13.93 new_gt(vyw21, vyw16, ty_Ordering) -> new_esEs41(new_compare8(vyw21, vyw16)) 29.11/13.93 new_ltEs20(vyw104, vyw106, app(ty_Maybe, ced)) -> new_ltEs4(vyw104, vyw106, ced) 29.11/13.93 new_ltEs24(vyw87, vyw90, app(app(ty_Either, fdf), fdg)) -> new_ltEs13(vyw87, vyw90, fdf, fdg) 29.11/13.93 new_esEs8(vyw50, vyw300, ty_Int) -> new_esEs18(vyw50, vyw300) 29.11/13.93 new_ltEs23(vyw492, vyw502, ty_Integer) -> new_ltEs12(vyw492, vyw502) 29.11/13.93 new_lt10(vyw490, vyw500, app(ty_Maybe, cab)) -> new_lt7(vyw490, vyw500, cab) 29.11/13.93 29.11/13.93 The set Q consists of the following terms: 29.11/13.93 29.11/13.93 new_esEs36(x0, x1, ty_Char) 29.11/13.93 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 29.11/13.93 new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_esEs24(False, True) 29.11/13.93 new_esEs24(True, False) 29.11/13.93 new_ltEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.11/13.93 new_esEs37(x0, x1, ty_Ordering) 29.11/13.93 new_compare15(x0, x1, True, x2, x3) 29.11/13.93 new_esEs35(x0, x1, ty_Double) 29.11/13.93 new_esEs31(x0, x1, ty_Int) 29.11/13.93 new_lt7(x0, x1, x2) 29.11/13.93 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_compare16(Just(x0), Nothing, x1) 29.11/13.93 new_esEs35(x0, x1, ty_Ordering) 29.11/13.93 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 29.11/13.93 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_ltEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) 29.11/13.93 new_esEs34(x0, x1, ty_Ordering) 29.11/13.93 new_esEs20(@0, @0) 29.11/13.93 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_esEs15(x0, x1, app(ty_[], x2)) 29.11/13.93 new_esEs38(x0, x1, ty_Float) 29.11/13.93 new_lt21(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_primEqInt(Pos(Zero), Pos(Zero)) 29.11/13.93 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_esEs7(x0, x1, app(ty_[], x2)) 29.11/13.93 new_compare28(x0, x1, False, x2, x3) 29.11/13.93 new_asAs(False, x0) 29.11/13.93 new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 29.11/13.93 new_compare5([], :(x0, x1), x2) 29.11/13.93 new_esEs34(x0, x1, ty_Char) 29.11/13.93 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_primEqInt(Neg(Zero), Neg(Zero)) 29.11/13.93 new_lt21(x0, x1, ty_Ordering) 29.11/13.93 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_esEs36(x0, x1, ty_Double) 29.11/13.93 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_esEs34(x0, x1, ty_Double) 29.11/13.93 new_lt6(x0, x1, x2, x3) 29.11/13.93 new_esEs35(x0, x1, app(ty_[], x2)) 29.11/13.93 new_esEs35(x0, x1, ty_Char) 29.11/13.93 new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 29.11/13.93 new_esEs39(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_esEs4(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_esEs33(x0, x1, ty_Ordering) 29.11/13.93 new_esEs26(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.11/13.93 new_ltEs13(Right(x0), Right(x1), x2, ty_Int) 29.11/13.93 new_ltEs19(x0, x1, ty_Double) 29.11/13.93 new_gt(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_esEs28(LT, GT) 29.11/13.93 new_esEs28(GT, LT) 29.11/13.93 new_ltEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 29.11/13.93 new_esEs23(Right(x0), Right(x1), x2, app(ty_[], x3)) 29.11/13.93 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_lt21(x0, x1, ty_Double) 29.11/13.93 new_esEs38(x0, x1, ty_Bool) 29.11/13.93 new_compare8(EQ, EQ) 29.11/13.93 new_primEqInt(Pos(Zero), Neg(Zero)) 29.11/13.93 new_primEqInt(Neg(Zero), Pos(Zero)) 29.11/13.93 new_esEs38(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_esEs30(x0, x1, ty_Integer) 29.11/13.93 new_lt23(x0, x1, ty_Float) 29.11/13.93 new_ltEs18(x0, x1, ty_Integer) 29.11/13.93 new_lt10(x0, x1, ty_Float) 29.11/13.93 new_esEs7(x0, x1, ty_Char) 29.11/13.93 new_esEs37(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_esEs37(x0, x1, ty_Char) 29.11/13.93 new_esEs36(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_esEs39(x0, x1, ty_Int) 29.11/13.93 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_esEs37(x0, x1, ty_Double) 29.11/13.93 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 29.11/13.93 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_compare7(True, True) 29.11/13.93 new_esEs5(x0, x1, ty_Ordering) 29.11/13.93 new_esEs31(x0, x1, ty_@0) 29.11/13.93 new_compare24(x0, x1, False, x2) 29.11/13.93 new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 29.11/13.93 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_esEs40(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_esEs22(Just(x0), Just(x1), ty_Int) 29.11/13.93 new_esEs5(x0, x1, ty_Char) 29.11/13.93 new_esEs23(Left(x0), Left(x1), ty_@0, x2) 29.11/13.93 new_lt13(x0, x1) 29.11/13.93 new_esEs14(x0, x1, app(ty_[], x2)) 29.11/13.93 new_esEs6(x0, x1, ty_Double) 29.11/13.93 new_ltEs9(x0, x1) 29.11/13.93 new_ltEs19(x0, x1, ty_Char) 29.11/13.93 new_esEs11(x0, x1, ty_Double) 29.11/13.93 new_lt23(x0, x1, ty_Double) 29.11/13.93 new_esEs10(x0, x1, ty_Char) 29.11/13.93 new_esEs14(x0, x1, ty_Float) 29.11/13.93 new_lt21(x0, x1, ty_Char) 29.11/13.93 new_esEs23(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 29.11/13.93 new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_lt19(x0, x1, ty_Char) 29.11/13.93 new_lt10(x0, x1, ty_Double) 29.11/13.93 new_esEs29(x0, x1, ty_Int) 29.11/13.93 new_esEs12(GT) 29.11/13.93 new_lt17(x0, x1, x2, x3) 29.11/13.93 new_esEs40(x0, x1, ty_Integer) 29.11/13.93 new_lt22(x0, x1, ty_Char) 29.11/13.93 new_esEs8(x0, x1, app(ty_[], x2)) 29.11/13.93 new_esEs14(x0, x1, ty_Char) 29.11/13.93 new_ltEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 29.11/13.93 new_lt22(x0, x1, ty_Float) 29.11/13.93 new_lt21(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_ltEs7(GT, LT) 29.11/13.93 new_ltEs7(LT, GT) 29.11/13.93 new_esEs16(Integer(x0), Integer(x1)) 29.11/13.93 new_fsEs(x0) 29.11/13.93 new_lt22(x0, x1, ty_Ordering) 29.11/13.93 new_gt(x0, x1, ty_Ordering) 29.11/13.93 new_primEqNat0(Zero, Succ(x0)) 29.11/13.93 new_esEs15(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_ltEs18(x0, x1, ty_Bool) 29.11/13.93 new_lt20(x0, x1, ty_Int) 29.11/13.93 new_esEs38(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) 29.11/13.93 new_esEs22(Just(x0), Nothing, x1) 29.11/13.93 new_lt23(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_lt23(x0, x1, app(ty_[], x2)) 29.11/13.93 new_ltEs12(x0, x1) 29.11/13.93 new_compare30(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_ltEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 29.11/13.93 new_esEs40(x0, x1, ty_Bool) 29.11/13.93 new_esEs39(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_ltEs14(False, False) 29.11/13.93 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_esEs5(x0, x1, ty_Float) 29.11/13.93 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_esEs40(x0, x1, ty_Float) 29.11/13.93 new_esEs9(x0, x1, ty_Ordering) 29.11/13.93 new_primEqNat0(Succ(x0), Succ(x1)) 29.11/13.93 new_ltEs18(x0, x1, ty_Int) 29.11/13.93 new_lt21(x0, x1, ty_Float) 29.11/13.93 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 29.11/13.93 new_esEs36(x0, x1, ty_Ordering) 29.11/13.93 new_esEs32(x0, x1, ty_Double) 29.11/13.93 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_ltEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 29.11/13.93 new_esEs37(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_esEs5(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_gt(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_esEs31(x0, x1, app(ty_[], x2)) 29.11/13.93 new_ltEs13(Left(x0), Left(x1), app(ty_[], x2), x3) 29.11/13.93 new_compare19(@0, @0) 29.11/13.93 new_esEs33(x0, x1, ty_Char) 29.11/13.93 new_esEs8(x0, x1, ty_Int) 29.11/13.93 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_esEs22(Just(x0), Just(x1), ty_Bool) 29.11/13.93 new_ltEs21(x0, x1, ty_Char) 29.11/13.93 new_ltEs18(x0, x1, ty_Float) 29.11/13.93 new_esEs29(x0, x1, ty_Integer) 29.11/13.93 new_esEs15(x0, x1, ty_Double) 29.11/13.93 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_esEs40(x0, x1, ty_Int) 29.11/13.93 new_esEs23(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 29.11/13.93 new_ltEs13(Left(x0), Left(x1), ty_Double, x2) 29.11/13.93 new_lt10(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_lt20(x0, x1, ty_Bool) 29.11/13.93 new_lt10(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_esEs15(x0, x1, ty_@0) 29.11/13.93 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_lt24(x0, x1, app(ty_[], x2)) 29.11/13.93 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_primCompAux00(x0, GT) 29.11/13.93 new_compare30(x0, x1, ty_@0) 29.11/13.93 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_ltEs19(x0, x1, ty_Ordering) 29.11/13.93 new_lt24(x0, x1, ty_Char) 29.11/13.93 new_ltEs23(x0, x1, app(ty_[], x2)) 29.11/13.93 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_compare112(x0, x1, x2, x3, True, x4, x5) 29.11/13.93 new_ltEs23(x0, x1, ty_Char) 29.11/13.93 new_ltEs19(x0, x1, ty_Integer) 29.11/13.93 new_compare25(x0, x1, x2, x3, False, x4, x5) 29.11/13.93 new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 29.11/13.93 new_esEs28(LT, LT) 29.11/13.93 new_esEs10(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_esEs30(x0, x1, ty_Int) 29.11/13.93 new_primEqNat0(Succ(x0), Zero) 29.11/13.93 new_sr(x0, x1) 29.11/13.93 new_lt24(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_esEs35(x0, x1, ty_Float) 29.11/13.93 new_esEs23(Right(x0), Right(x1), x2, ty_Int) 29.11/13.93 new_esEs14(x0, x1, ty_Integer) 29.11/13.93 new_esEs5(x0, x1, ty_Integer) 29.11/13.93 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_ltEs22(x0, x1, ty_Char) 29.11/13.93 new_esEs23(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 29.11/13.93 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_esEs23(Right(x0), Right(x1), x2, ty_Ordering) 29.11/13.93 new_ltEs24(x0, x1, ty_Char) 29.11/13.93 new_esEs14(x0, x1, ty_Bool) 29.11/13.93 new_ltEs19(x0, x1, ty_Bool) 29.11/13.93 new_esEs14(x0, x1, ty_@0) 29.11/13.93 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_lt23(x0, x1, ty_Bool) 29.11/13.93 new_esEs23(Right(x0), Right(x1), x2, ty_Char) 29.11/13.93 new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 29.11/13.93 new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_ltEs13(Right(x0), Right(x1), x2, ty_Integer) 29.11/13.93 new_ltEs23(x0, x1, ty_Int) 29.11/13.93 new_ltEs22(x0, x1, ty_Int) 29.11/13.93 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_esEs15(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_ltEs13(Right(x0), Right(x1), x2, ty_Float) 29.11/13.93 new_esEs33(x0, x1, app(ty_[], x2)) 29.11/13.93 new_ltEs24(x0, x1, ty_Int) 29.11/13.93 new_compare16(Just(x0), Just(x1), x2) 29.11/13.93 new_esEs23(Right(x0), Right(x1), x2, ty_Double) 29.11/13.93 new_compare8(LT, LT) 29.11/13.93 new_primPlusNat0(Zero, Zero) 29.11/13.93 new_lt19(x0, x1, app(ty_[], x2)) 29.11/13.93 new_esEs7(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_not(True) 29.11/13.93 new_gt(x0, x1, app(ty_[], x2)) 29.11/13.93 new_gt(x0, x1, ty_Double) 29.11/13.93 new_lt19(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_compare30(x0, x1, app(ty_[], x2)) 29.11/13.93 new_ltEs13(Right(x0), Right(x1), x2, ty_Bool) 29.11/13.93 new_ltEs4(Nothing, Just(x0), x1) 29.11/13.93 new_ltEs22(x0, x1, ty_Bool) 29.11/13.93 new_lt23(x0, x1, ty_Int) 29.11/13.93 new_esEs11(x0, x1, app(ty_[], x2)) 29.11/13.93 new_lt23(x0, x1, ty_Char) 29.11/13.93 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_lt20(x0, x1, ty_Float) 29.11/13.93 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_ltEs13(Right(x0), Right(x1), x2, ty_@0) 29.11/13.93 new_esEs11(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_esEs10(x0, x1, ty_Double) 29.11/13.93 new_ltEs22(x0, x1, ty_Double) 29.11/13.93 new_ltEs24(x0, x1, ty_Double) 29.11/13.93 new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 29.11/13.93 new_esEs28(EQ, GT) 29.11/13.93 new_esEs28(GT, EQ) 29.11/13.93 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_esEs15(x0, x1, ty_Ordering) 29.11/13.93 new_esEs4(x0, x1, ty_@0) 29.11/13.93 new_esEs6(x0, x1, app(ty_[], x2)) 29.11/13.93 new_ltEs13(Left(x0), Left(x1), ty_Ordering, x2) 29.11/13.93 new_esEs9(x0, x1, ty_Double) 29.11/13.93 new_esEs31(x0, x1, ty_Float) 29.11/13.93 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_ltEs4(Just(x0), Just(x1), ty_Double) 29.11/13.93 new_esEs9(x0, x1, ty_Char) 29.11/13.93 new_ltEs19(x0, x1, ty_Float) 29.11/13.93 new_esEs9(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_esEs32(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_compare26(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 29.11/13.93 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 29.11/13.93 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 29.11/13.93 new_esEs11(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_ltEs7(EQ, GT) 29.11/13.93 new_ltEs7(GT, EQ) 29.11/13.93 new_lt23(x0, x1, ty_@0) 29.11/13.93 new_ltEs24(x0, x1, ty_Bool) 29.11/13.93 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_ltEs6(x0, x1, x2) 29.11/13.93 new_esEs38(x0, x1, ty_Double) 29.11/13.93 new_lt19(x0, x1, ty_Ordering) 29.11/13.93 new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 29.11/13.93 new_esEs9(x0, x1, ty_Int) 29.11/13.93 new_ltEs13(Right(x0), Left(x1), x2, x3) 29.11/13.93 new_esEs23(Left(x0), Left(x1), ty_Integer, x2) 29.11/13.93 new_ltEs13(Left(x0), Right(x1), x2, x3) 29.11/13.93 new_esEs31(x0, x1, ty_Integer) 29.11/13.93 new_ltEs7(GT, GT) 29.11/13.93 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_ltEs7(LT, EQ) 29.11/13.93 new_ltEs7(EQ, LT) 29.11/13.93 new_gt(x0, x1, ty_Char) 29.11/13.93 new_ltEs11(x0, x1) 29.11/13.93 new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 29.11/13.93 new_esEs8(x0, x1, ty_Ordering) 29.11/13.93 new_compare14(@2(x0, x1), @2(x2, x3), x4, x5) 29.11/13.93 new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_lt24(x0, x1, ty_Integer) 29.11/13.93 new_gt(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_esEs8(x0, x1, ty_Double) 29.11/13.93 new_lt9(x0, x1) 29.11/13.93 new_esEs9(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_lt4(x0, x1) 29.11/13.93 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_primCompAux00(x0, LT) 29.11/13.93 new_lt16(x0, x1) 29.11/13.93 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 29.11/13.93 new_ltEs21(x0, x1, ty_@0) 29.11/13.93 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_lt22(x0, x1, ty_Double) 29.11/13.93 new_primPlusNat1(Zero, x0) 29.11/13.93 new_esEs10(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_esEs32(x0, x1, ty_Ordering) 29.11/13.93 new_esEs23(Left(x0), Left(x1), app(ty_[], x2), x3) 29.11/13.93 new_esEs31(x0, x1, ty_Bool) 29.11/13.93 new_ltEs24(x0, x1, ty_Float) 29.11/13.93 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 29.11/13.93 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_esEs23(Left(x0), Left(x1), ty_Bool, x2) 29.11/13.93 new_gt(x0, x1, ty_Int) 29.11/13.93 new_esEs35(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_ltEs19(x0, x1, app(ty_[], x2)) 29.11/13.93 new_esEs10(x0, x1, ty_Ordering) 29.11/13.93 new_esEs36(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_esEs6(x0, x1, ty_Ordering) 29.11/13.93 new_lt22(x0, x1, app(ty_[], x2)) 29.11/13.93 new_ltEs22(x0, x1, ty_Float) 29.11/13.93 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_primEqNat0(Zero, Zero) 29.11/13.93 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_ltEs23(x0, x1, ty_Double) 29.11/13.93 new_lt23(x0, x1, ty_Integer) 29.11/13.93 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_gt(x0, x1, ty_Float) 29.11/13.93 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_not(False) 29.11/13.93 new_ltEs4(Just(x0), Just(x1), ty_Ordering) 29.11/13.93 new_lt24(x0, x1, ty_Float) 29.11/13.93 new_ltEs22(x0, x1, app(ty_[], x2)) 29.11/13.93 new_compare29(Left(x0), Left(x1), x2, x3) 29.11/13.93 new_esEs23(Left(x0), Left(x1), ty_Char, x2) 29.11/13.93 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_esEs12(LT) 29.11/13.93 new_lt20(x0, x1, ty_Double) 29.11/13.93 new_lt24(x0, x1, ty_Bool) 29.11/13.93 new_esEs40(x0, x1, ty_@0) 29.11/13.93 new_esEs34(x0, x1, app(ty_[], x2)) 29.11/13.93 new_lt11(x0, x1, x2) 29.11/13.93 new_primPlusNat1(Succ(x0), x1) 29.11/13.93 new_lt19(x0, x1, ty_Double) 29.11/13.93 new_esEs11(x0, x1, ty_Char) 29.11/13.93 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_esEs23(Left(x0), Left(x1), ty_Int, x2) 29.11/13.93 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_esEs38(x0, x1, ty_Ordering) 29.11/13.93 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_gt(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_ltEs20(x0, x1, ty_Ordering) 29.11/13.93 new_ltEs18(x0, x1, ty_@0) 29.11/13.93 new_ltEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 29.11/13.93 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_esEs41(LT) 29.11/13.93 new_lt24(x0, x1, ty_Int) 29.11/13.93 new_esEs11(x0, x1, ty_Int) 29.11/13.93 new_esEs36(x0, x1, app(ty_[], x2)) 29.11/13.93 new_esEs11(x0, x1, ty_Float) 29.11/13.93 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 29.11/13.93 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 29.11/13.93 new_esEs5(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_esEs32(x0, x1, app(ty_[], x2)) 29.11/13.93 new_pePe(False, x0) 29.11/13.93 new_esEs5(x0, x1, ty_@0) 29.11/13.93 new_lt10(x0, x1, ty_Ordering) 29.11/13.93 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_esEs23(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 29.11/13.93 new_esEs23(Left(x0), Left(x1), ty_Float, x2) 29.11/13.93 new_esEs22(Just(x0), Just(x1), ty_Double) 29.11/13.93 new_compare12(x0, x1, False, x2) 29.11/13.93 new_esEs34(x0, x1, ty_Int) 29.11/13.93 new_esEs39(x0, x1, ty_Double) 29.11/13.93 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_esEs8(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_compare8(LT, GT) 29.11/13.93 new_compare8(GT, LT) 29.11/13.93 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_lt19(x0, x1, ty_Integer) 29.11/13.93 new_esEs34(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_gt(x0, x1, ty_Integer) 29.11/13.93 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_esEs23(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 29.11/13.93 new_esEs7(x0, x1, ty_@0) 29.11/13.93 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 29.11/13.93 new_esEs39(x0, x1, ty_Ordering) 29.11/13.93 new_esEs31(x0, x1, ty_Char) 29.11/13.93 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 29.11/13.93 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 29.11/13.93 new_esEs34(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_esEs23(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 29.11/13.93 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_ltEs13(Left(x0), Left(x1), ty_Integer, x2) 29.11/13.93 new_esEs7(x0, x1, ty_Bool) 29.11/13.93 new_compare29(Right(x0), Right(x1), x2, x3) 29.11/13.93 new_esEs8(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 29.11/13.93 new_lt22(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_esEs33(x0, x1, ty_@0) 29.11/13.93 new_lt24(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_lt18(x0, x1, x2, x3, x4) 29.11/13.93 new_ltEs18(x0, x1, app(ty_[], x2)) 29.11/13.93 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 29.11/13.93 new_ltEs13(Left(x0), Left(x1), ty_Bool, x2) 29.11/13.93 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_esEs7(x0, x1, ty_Integer) 29.11/13.93 new_esEs10(x0, x1, ty_Integer) 29.11/13.93 new_esEs36(x0, x1, ty_Int) 29.11/13.93 new_esEs28(EQ, EQ) 29.11/13.93 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_esEs23(Left(x0), Left(x1), ty_Double, x2) 29.11/13.93 new_lt19(x0, x1, ty_Bool) 29.11/13.93 new_esEs32(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_esEs11(x0, x1, ty_Bool) 29.11/13.93 new_ltEs21(x0, x1, ty_Float) 29.11/13.93 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_esEs18(x0, x1) 29.11/13.93 new_lt19(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_esEs35(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_esEs10(x0, x1, ty_Bool) 29.11/13.93 new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_ltEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 29.11/13.93 new_esEs40(x0, x1, ty_Ordering) 29.11/13.93 new_esEs39(x0, x1, ty_Char) 29.11/13.93 new_esEs23(Left(x0), Right(x1), x2, x3) 29.11/13.93 new_esEs23(Right(x0), Left(x1), x2, x3) 29.11/13.93 new_lt21(x0, x1, app(ty_[], x2)) 29.11/13.93 new_primCmpNat0(Zero, Succ(x0)) 29.11/13.93 new_pePe(True, x0) 29.11/13.93 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_gt(x0, x1, ty_Bool) 29.11/13.93 new_esEs9(x0, x1, ty_Bool) 29.11/13.93 new_ltEs4(Just(x0), Just(x1), ty_Bool) 29.11/13.93 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_ltEs4(Just(x0), Just(x1), ty_Float) 29.11/13.93 new_ltEs20(x0, x1, ty_Double) 29.11/13.93 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_ltEs23(x0, x1, ty_Float) 29.11/13.93 new_esEs9(x0, x1, ty_Float) 29.11/13.93 new_primMulNat0(Succ(x0), Succ(x1)) 29.11/13.93 new_esEs31(x0, x1, ty_Double) 29.11/13.93 new_esEs36(x0, x1, ty_@0) 29.11/13.93 new_esEs34(x0, x1, ty_@0) 29.11/13.93 new_ltEs24(x0, x1, app(ty_[], x2)) 29.11/13.93 new_esEs9(x0, x1, ty_@0) 29.11/13.93 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_esEs4(x0, x1, ty_Double) 29.11/13.93 new_lt22(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_esEs37(x0, x1, ty_Int) 29.11/13.93 new_ltEs20(x0, x1, app(ty_[], x2)) 29.11/13.93 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_ltEs21(x0, x1, app(ty_[], x2)) 29.11/13.93 new_ltEs13(Right(x0), Right(x1), x2, ty_Char) 29.11/13.93 new_ltEs7(EQ, EQ) 29.11/13.93 new_esEs7(x0, x1, ty_Int) 29.11/13.93 new_esEs23(Right(x0), Right(x1), x2, ty_Float) 29.11/13.93 new_esEs11(x0, x1, ty_Integer) 29.11/13.93 new_esEs23(Left(x0), Left(x1), ty_Ordering, x2) 29.11/13.93 new_ltEs4(Just(x0), Just(x1), ty_@0) 29.11/13.93 new_compare110(x0, x1, True, x2, x3) 29.11/13.93 new_primMulNat0(Zero, Succ(x0)) 29.11/13.93 new_esEs27(:%(x0, x1), :%(x2, x3), x4) 29.11/13.93 new_esEs35(x0, x1, ty_Int) 29.11/13.93 new_lt20(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_ltEs13(Right(x0), Right(x1), x2, ty_Double) 29.11/13.93 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_compare28(x0, x1, True, x2, x3) 29.11/13.93 new_lt15(x0, x1) 29.11/13.93 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_compare30(x0, x1, ty_Ordering) 29.11/13.93 new_compare8(EQ, GT) 29.11/13.93 new_compare8(GT, EQ) 29.11/13.93 new_esEs24(True, True) 29.11/13.93 new_esEs35(x0, x1, ty_@0) 29.11/13.93 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_esEs24(False, False) 29.11/13.93 new_ltEs19(x0, x1, ty_Int) 29.11/13.93 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_esEs41(GT) 29.11/13.93 new_lt22(x0, x1, ty_Int) 29.11/13.93 new_esEs14(x0, x1, ty_Int) 29.11/13.93 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_lt20(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 29.11/13.93 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 29.11/13.93 new_esEs36(x0, x1, ty_Integer) 29.11/13.93 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_ltEs23(x0, x1, ty_Integer) 29.11/13.93 new_lt14(x0, x1) 29.11/13.93 new_primMulInt(Neg(x0), Neg(x1)) 29.11/13.93 new_esEs23(Right(x0), Right(x1), x2, ty_Bool) 29.11/13.93 new_esEs23(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 29.11/13.93 new_esEs35(x0, x1, ty_Bool) 29.11/13.93 new_lt8(x0, x1, x2) 29.11/13.93 new_esEs25(:(x0, x1), [], x2) 29.11/13.93 new_lt20(x0, x1, ty_Char) 29.11/13.93 new_esEs7(x0, x1, ty_Float) 29.11/13.93 new_primPlusNat0(Succ(x0), Succ(x1)) 29.11/13.93 new_compare25(x0, x1, x2, x3, True, x4, x5) 29.11/13.93 new_lt10(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_lt10(x0, x1, app(ty_[], x2)) 29.11/13.93 new_esEs22(Just(x0), Just(x1), ty_Ordering) 29.11/13.93 new_lt24(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_ltEs18(x0, x1, ty_Char) 29.11/13.93 new_esEs23(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 29.11/13.93 new_esEs22(Just(x0), Just(x1), ty_Float) 29.11/13.93 new_compare30(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_lt20(x0, x1, ty_Ordering) 29.11/13.93 new_esEs19(Float(x0, x1), Float(x2, x3)) 29.11/13.93 new_esEs10(x0, x1, ty_Int) 29.11/13.93 new_ltEs24(x0, x1, ty_Integer) 29.11/13.93 new_ltEs22(x0, x1, ty_Integer) 29.11/13.93 new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) 29.11/13.93 new_esEs33(x0, x1, ty_Integer) 29.11/13.93 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 29.11/13.93 new_lt21(x0, x1, ty_Int) 29.11/13.93 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 29.11/13.93 new_ltEs21(x0, x1, ty_Integer) 29.11/13.93 new_primMulInt(Pos(x0), Pos(x1)) 29.11/13.93 new_esEs33(x0, x1, ty_Float) 29.11/13.93 new_ltEs24(x0, x1, ty_Ordering) 29.11/13.93 new_compare112(x0, x1, x2, x3, False, x4, x5) 29.11/13.93 new_esEs22(Just(x0), Just(x1), app(ty_Maybe, x2)) 29.11/13.93 new_lt24(x0, x1, ty_@0) 29.11/13.93 new_primCmpInt(Neg(Zero), Neg(Zero)) 29.11/13.93 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_esEs10(x0, x1, ty_Float) 29.11/13.93 new_gt(x0, x1, ty_@0) 29.11/13.93 new_esEs8(x0, x1, ty_Char) 29.11/13.93 new_esEs10(x0, x1, app(ty_[], x2)) 29.11/13.93 new_primCmpInt(Pos(Zero), Neg(Zero)) 29.11/13.93 new_primCmpInt(Neg(Zero), Pos(Zero)) 29.11/13.93 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_esEs5(x0, x1, ty_Bool) 29.11/13.93 new_lt19(x0, x1, ty_Float) 29.11/13.93 new_lt23(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_esEs5(x0, x1, app(ty_[], x2)) 29.11/13.93 new_ltEs23(x0, x1, ty_Ordering) 29.11/13.93 new_compare5(:(x0, x1), :(x2, x3), x4) 29.11/13.93 new_esEs22(Nothing, Nothing, x0) 29.11/13.93 new_esEs36(x0, x1, ty_Bool) 29.11/13.93 new_esEs35(x0, x1, ty_Integer) 29.11/13.93 new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 29.11/13.93 new_ltEs23(x0, x1, ty_Bool) 29.11/13.93 new_esEs9(x0, x1, ty_Integer) 29.11/13.93 new_compare27(x0, x1, True, x2, x3) 29.11/13.93 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_compare5(:(x0, x1), [], x2) 29.11/13.93 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 29.11/13.93 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_compare30(x0, x1, ty_Double) 29.11/13.93 new_esEs33(x0, x1, ty_Int) 29.11/13.93 new_primPlusNat0(Succ(x0), Zero) 29.11/13.93 new_compare17(Char(x0), Char(x1)) 29.11/13.93 new_compare7(False, False) 29.11/13.93 new_esEs5(x0, x1, ty_Int) 29.11/13.93 new_esEs39(x0, x1, app(ty_[], x2)) 29.11/13.93 new_compare6(Integer(x0), Integer(x1)) 29.11/13.93 new_asAs(True, x0) 29.11/13.93 new_esEs11(x0, x1, ty_@0) 29.11/13.93 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_lt22(x0, x1, ty_Bool) 29.11/13.93 new_esEs33(x0, x1, ty_Bool) 29.11/13.93 new_esEs37(x0, x1, app(ty_[], x2)) 29.11/13.93 new_primMulInt(Pos(x0), Neg(x1)) 29.11/13.93 new_primMulInt(Neg(x0), Pos(x1)) 29.11/13.93 new_esEs23(Right(x0), Right(x1), x2, ty_Integer) 29.11/13.93 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_ltEs13(Left(x0), Left(x1), ty_@0, x2) 29.11/13.93 new_esEs31(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_esEs25(:(x0, x1), :(x2, x3), x4) 29.11/13.93 new_ltEs21(x0, x1, ty_Bool) 29.11/13.93 new_esEs4(x0, x1, ty_Ordering) 29.11/13.93 new_lt19(x0, x1, ty_Int) 29.11/13.93 new_esEs40(x0, x1, ty_Char) 29.11/13.93 new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 29.11/13.93 new_esEs22(Just(x0), Just(x1), ty_Char) 29.11/13.93 new_lt24(x0, x1, ty_Double) 29.11/13.93 new_esEs8(x0, x1, ty_Float) 29.11/13.93 new_compare15(x0, x1, False, x2, x3) 29.11/13.93 new_sr0(Integer(x0), Integer(x1)) 29.11/13.93 new_esEs32(x0, x1, ty_Integer) 29.11/13.93 new_lt20(x0, x1, ty_Integer) 29.11/13.93 new_esEs8(x0, x1, ty_Bool) 29.11/13.93 new_ltEs20(x0, x1, ty_Integer) 29.11/13.93 new_esEs37(x0, x1, ty_Float) 29.11/13.93 new_compare30(x0, x1, ty_Integer) 29.11/13.93 new_esEs4(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_esEs8(x0, x1, ty_@0) 29.11/13.93 new_esEs22(Just(x0), Just(x1), ty_Integer) 29.11/13.93 new_lt22(x0, x1, ty_Integer) 29.11/13.93 new_esEs4(x0, x1, ty_Integer) 29.11/13.93 new_primMulNat0(Zero, Zero) 29.11/13.93 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_esEs39(x0, x1, ty_Float) 29.11/13.93 new_esEs4(x0, x1, ty_Bool) 29.11/13.93 new_ltEs21(x0, x1, ty_Int) 29.11/13.93 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_compare111(x0, x1, x2, x3, False, x4, x5, x6) 29.11/13.93 new_ltEs21(x0, x1, ty_Ordering) 29.11/13.93 new_lt10(x0, x1, ty_Bool) 29.11/13.93 new_ltEs7(LT, LT) 29.11/13.93 new_compare30(x0, x1, ty_Bool) 29.11/13.93 new_ltEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 29.11/13.93 new_esEs22(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 29.11/13.93 new_esEs7(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_esEs15(x0, x1, ty_Bool) 29.11/13.93 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_esEs6(x0, x1, ty_Integer) 29.11/13.93 new_ltEs20(x0, x1, ty_Bool) 29.11/13.93 new_compare26(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 29.11/13.93 new_compare26(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 29.11/13.93 new_lt21(x0, x1, ty_Integer) 29.11/13.93 new_compare7(False, True) 29.11/13.93 new_compare7(True, False) 29.11/13.93 new_compare16(Nothing, Just(x0), x1) 29.11/13.93 new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_esEs32(x0, x1, ty_@0) 29.11/13.93 new_primCmpNat0(Succ(x0), Succ(x1)) 29.11/13.93 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_compare13(x0, x1) 29.11/13.93 new_esEs6(x0, x1, ty_@0) 29.11/13.93 new_ltEs22(x0, x1, ty_Ordering) 29.11/13.93 new_ltEs22(x0, x1, ty_@0) 29.11/13.93 new_esEs33(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_esEs25([], :(x0, x1), x2) 29.11/13.93 new_lt20(x0, x1, ty_@0) 29.11/13.93 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_ltEs24(x0, x1, ty_@0) 29.11/13.93 new_lt22(x0, x1, ty_@0) 29.11/13.93 new_ltEs14(True, True) 29.11/13.93 new_lt10(x0, x1, ty_Int) 29.11/13.93 new_esEs6(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_lt24(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_esEs38(x0, x1, ty_Int) 29.11/13.93 new_ltEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 29.11/13.93 new_esEs36(x0, x1, ty_Float) 29.11/13.93 new_compare8(GT, GT) 29.11/13.93 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 29.11/13.93 new_esEs25([], [], x0) 29.11/13.93 new_ltEs23(x0, x1, ty_@0) 29.11/13.93 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_compare8(LT, EQ) 29.11/13.93 new_compare8(EQ, LT) 29.11/13.93 new_lt24(x0, x1, ty_Ordering) 29.11/13.93 new_esEs13(@2(x0, x1), @2(x2, x3), x4, x5) 29.11/13.93 new_primCompAux0(x0, x1, x2, x3) 29.11/13.93 new_esEs31(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_esEs15(x0, x1, ty_Integer) 29.11/13.93 new_lt10(x0, x1, ty_Char) 29.11/13.93 new_esEs14(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_esEs38(x0, x1, app(ty_[], x2)) 29.11/13.93 new_esEs23(Right(x0), Right(x1), x2, ty_@0) 29.11/13.93 new_ltEs4(Just(x0), Just(x1), ty_Char) 29.11/13.93 new_ltEs20(x0, x1, ty_Float) 29.11/13.93 new_esEs14(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_esEs34(x0, x1, ty_Float) 29.11/13.93 new_compare31(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.11/13.93 new_esEs4(x0, x1, ty_Char) 29.11/13.93 new_ltEs4(Just(x0), Just(x1), ty_Int) 29.11/13.93 new_ltEs20(x0, x1, ty_@0) 29.11/13.93 new_esEs28(LT, EQ) 29.11/13.93 new_esEs28(EQ, LT) 29.11/13.93 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_ltEs18(x0, x1, ty_Ordering) 29.11/13.93 new_esEs7(x0, x1, ty_Double) 29.11/13.93 new_lt21(x0, x1, ty_Bool) 29.11/13.93 new_esEs38(x0, x1, ty_Char) 29.11/13.93 new_esEs11(x0, x1, ty_Ordering) 29.11/13.93 new_esEs8(x0, x1, ty_Integer) 29.11/13.93 new_esEs28(GT, GT) 29.11/13.93 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_primCmpInt(Pos(Zero), Pos(Zero)) 29.11/13.93 new_lt10(x0, x1, ty_@0) 29.11/13.93 new_ltEs19(x0, x1, ty_@0) 29.11/13.93 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_esEs6(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_esEs4(x0, x1, ty_Int) 29.11/13.93 new_ltEs13(Left(x0), Left(x1), ty_Int, x2) 29.11/13.93 new_esEs39(x0, x1, ty_@0) 29.11/13.93 new_esEs9(x0, x1, app(ty_[], x2)) 29.11/13.93 new_compare30(x0, x1, ty_Int) 29.11/13.93 new_esEs7(x0, x1, ty_Ordering) 29.11/13.93 new_lt12(x0, x1) 29.11/13.93 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_ltEs20(x0, x1, ty_Int) 29.11/13.93 new_compare12(x0, x1, True, x2) 29.11/13.93 new_lt20(x0, x1, app(ty_[], x2)) 29.11/13.93 new_ltEs10(x0, x1) 29.11/13.93 new_esEs32(x0, x1, ty_Int) 29.11/13.93 new_lt10(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_esEs34(x0, x1, ty_Integer) 29.11/13.93 new_esEs6(x0, x1, ty_Float) 29.11/13.93 new_esEs33(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_ltEs20(x0, x1, ty_Char) 29.11/13.93 new_esEs37(x0, x1, ty_@0) 29.11/13.93 new_ltEs17(x0, x1, x2) 29.11/13.93 new_esEs14(x0, x1, ty_Ordering) 29.11/13.93 new_esEs32(x0, x1, ty_Char) 29.11/13.93 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_compare111(x0, x1, x2, x3, True, x4, x5, x6) 29.11/13.93 new_primCmpNat0(Succ(x0), Zero) 29.11/13.93 new_esEs17(Char(x0), Char(x1)) 29.11/13.93 new_esEs40(x0, x1, app(ty_[], x2)) 29.11/13.93 new_esEs15(x0, x1, ty_Float) 29.11/13.93 new_compare30(x0, x1, ty_Char) 29.11/13.93 new_esEs4(x0, x1, ty_Float) 29.11/13.93 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.93 new_esEs38(x0, x1, ty_@0) 29.11/13.93 new_esEs37(x0, x1, ty_Bool) 29.11/13.93 new_esEs39(x0, x1, ty_Bool) 29.11/13.93 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_esEs22(Nothing, Just(x0), x1) 29.11/13.93 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_esEs34(x0, x1, ty_Bool) 29.11/13.93 new_esEs37(x0, x1, ty_Integer) 29.11/13.93 new_esEs14(x0, x1, ty_Double) 29.11/13.93 new_esEs32(x0, x1, ty_Float) 29.11/13.93 new_ltEs15(x0, x1) 29.11/13.93 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 29.11/13.93 new_esEs6(x0, x1, ty_Int) 29.11/13.93 new_esEs40(x0, x1, app(ty_Ratio, x2)) 29.11/13.93 new_lt5(x0, x1) 29.11/13.93 new_compare5([], [], x0) 29.11/13.93 new_compare24(x0, x1, True, x2) 29.11/13.93 new_esEs23(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 29.11/13.93 new_esEs12(EQ) 29.11/13.93 new_esEs22(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_primPlusNat0(Zero, Succ(x0)) 29.11/13.93 new_ltEs8(x0, x1) 29.11/13.93 new_esEs41(EQ) 29.11/13.93 new_esEs10(x0, x1, ty_@0) 29.11/13.93 new_lt21(x0, x1, ty_@0) 29.11/13.93 new_ltEs14(False, True) 29.11/13.93 new_ltEs14(True, False) 29.11/13.93 new_lt19(x0, x1, ty_@0) 29.11/13.93 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_esEs5(x0, x1, ty_Double) 29.11/13.93 new_compare27(x0, x1, False, x2, x3) 29.11/13.93 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 29.11/13.93 new_esEs38(x0, x1, ty_Integer) 29.11/13.93 new_compare110(x0, x1, False, x2, x3) 29.11/13.93 new_lt10(x0, x1, ty_Integer) 29.11/13.93 new_primMulNat0(Succ(x0), Zero) 29.11/13.93 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 29.11/13.93 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 29.11/13.93 new_ltEs4(Just(x0), Nothing, x1) 29.11/13.93 new_esEs39(x0, x1, ty_Integer) 29.11/13.93 new_esEs22(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 29.11/13.93 new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 29.11/13.93 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 29.11/13.93 new_compare26(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 29.11/13.93 new_ltEs13(Right(x0), Right(x1), x2, ty_Ordering) 29.11/13.93 new_ltEs4(Just(x0), Just(x1), ty_Integer) 29.11/13.93 new_ltEs18(x0, x1, ty_Double) 29.11/13.93 new_ltEs13(Left(x0), Left(x1), ty_Float, x2) 29.11/13.93 new_esEs6(x0, x1, ty_Char) 29.11/13.93 new_esEs22(Just(x0), Just(x1), ty_@0) 29.11/13.93 new_esEs4(x0, x1, app(ty_[], x2)) 29.11/13.93 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_lt23(x0, x1, ty_Ordering) 29.11/13.93 new_compare30(x0, x1, ty_Float) 29.11/13.93 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_compare29(Left(x0), Right(x1), x2, x3) 29.11/13.93 new_compare29(Right(x0), Left(x1), x2, x3) 29.11/13.93 new_esEs33(x0, x1, ty_Double) 29.11/13.93 new_ltEs4(Nothing, Nothing, x0) 29.11/13.93 new_compare16(Nothing, Nothing, x0) 29.11/13.93 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.93 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.93 new_ltEs13(Left(x0), Left(x1), ty_Char, x2) 29.11/13.93 new_esEs15(x0, x1, ty_Char) 29.11/13.93 new_primCompAux00(x0, EQ) 29.11/13.93 new_esEs22(Just(x0), Just(x1), app(ty_Ratio, x2)) 29.11/13.93 new_esEs23(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 29.11/13.93 new_esEs40(x0, x1, ty_Double) 29.11/13.93 new_esEs6(x0, x1, ty_Bool) 29.11/13.93 new_esEs21(Double(x0, x1), Double(x2, x3)) 29.11/13.93 new_ltEs21(x0, x1, ty_Double) 29.11/13.93 new_esEs32(x0, x1, ty_Bool) 29.11/13.93 new_primCmpNat0(Zero, Zero) 29.11/13.93 new_esEs15(x0, x1, ty_Int) 29.11/13.93 new_esEs22(Just(x0), Just(x1), app(ty_[], x2)) 29.11/13.93 new_esEs31(x0, x1, ty_Ordering) 29.11/13.93 29.11/13.93 We have to consider all minimal (P,Q,R)-chains. 29.11/13.93 ---------------------------------------- 29.11/13.93 29.11/13.93 (24) QDPSizeChangeProof (EQUIVALENT) 29.11/13.93 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 29.11/13.93 29.11/13.93 From the DPs we obtained the following set of size-change graphs: 29.11/13.93 *new_lookupWithDefaultFM01(vyw4, Branch(vyw30, vyw31, vyw32, vyw33, vyw34), vyw5, bd, be) -> new_lookupWithDefaultFM0(vyw4, vyw30, vyw31, vyw32, vyw33, vyw34, vyw5, new_lt24(vyw5, vyw30, be), bd, be) 29.11/13.93 The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10 29.11/13.93 29.11/13.93 29.11/13.93 *new_lookupWithDefaultFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, True, h, ba) -> new_lookupWithDefaultFM01(vyw15, vyw19, vyw21, h, ba) 29.11/13.93 The graph contains the following edges 1 >= 1, 5 >= 2, 7 >= 3, 9 >= 4, 10 >= 5 29.11/13.93 29.11/13.93 29.11/13.93 *new_lookupWithDefaultFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, False, h, ba) -> new_lookupWithDefaultFM00(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, new_gt(vyw21, vyw16, ba), h, ba) 29.11/13.93 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10 29.11/13.93 29.11/13.93 29.11/13.93 *new_lookupWithDefaultFM00(vyw32, vyw33, vyw34, vyw35, vyw36, vyw37, vyw38, True, bb, bc) -> new_lookupWithDefaultFM01(vyw32, vyw37, vyw38, bb, bc) 29.11/13.93 The graph contains the following edges 1 >= 1, 6 >= 2, 7 >= 3, 9 >= 4, 10 >= 5 29.11/13.93 29.11/13.93 29.11/13.93 ---------------------------------------- 29.11/13.93 29.11/13.93 (25) 29.11/13.93 YES 29.11/13.93 29.11/13.93 ---------------------------------------- 29.11/13.93 29.11/13.93 (26) 29.11/13.93 Obligation: 29.11/13.93 Q DP problem: 29.11/13.93 The TRS P consists of the following rules: 29.11/13.93 29.11/13.93 new_primMulNat(Succ(vyw5000), Succ(vyw30100)) -> new_primMulNat(vyw5000, Succ(vyw30100)) 29.11/13.93 29.11/13.93 R is empty. 29.11/13.93 Q is empty. 29.11/13.93 We have to consider all minimal (P,Q,R)-chains. 29.11/13.93 ---------------------------------------- 29.11/13.93 29.11/13.93 (27) QDPSizeChangeProof (EQUIVALENT) 29.11/13.93 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 29.11/13.93 29.11/13.93 From the DPs we obtained the following set of size-change graphs: 29.11/13.93 *new_primMulNat(Succ(vyw5000), Succ(vyw30100)) -> new_primMulNat(vyw5000, Succ(vyw30100)) 29.11/13.93 The graph contains the following edges 1 > 1, 2 >= 2 29.11/13.93 29.11/13.93 29.11/13.93 ---------------------------------------- 29.11/13.93 29.11/13.93 (28) 29.11/13.93 YES 29.11/13.93 29.11/13.93 ---------------------------------------- 29.11/13.93 29.11/13.93 (29) 29.11/13.93 Obligation: 29.11/13.93 Q DP problem: 29.11/13.93 The TRS P consists of the following rules: 29.11/13.93 29.11/13.93 new_ltEs0(@2(vyw490, vyw491), @2(vyw500, vyw501), app(ty_[], dc), cb) -> new_lt3(vyw490, vyw500, dc) 29.11/13.93 new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, bhh, app(app(ty_Either, cae), caf), cab) -> new_lt1(vyw86, vyw89, cae, caf) 29.11/13.93 new_compare21(vyw67, vyw68, False, app(ty_[], bhd), bgd) -> new_ltEs3(vyw67, vyw68, bhd) 29.11/13.93 new_compare22(vyw74, vyw75, False, ceh, app(ty_[], cga)) -> new_ltEs3(vyw74, vyw75, cga) 29.11/13.93 new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, baf), hd), app(ty_[], bch))) -> new_ltEs3(vyw492, vyw502, bch) 29.11/13.93 new_compare0(Just(vyw50), Just(vyw300), bdb) -> new_compare2(vyw50, vyw300, new_esEs4(vyw50, vyw300, bdb), bdb) 29.11/13.93 new_compare3(Left(vyw50), Left(vyw300), bga, bgb) -> new_compare21(vyw50, vyw300, new_esEs7(vyw50, vyw300, bga), bga, bgb) 29.11/13.93 new_compare2(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(app(app(ty_@3, fd), ff), fg)), eg)) -> new_ltEs2(vyw490, vyw500, fd, ff, fg) 29.11/13.93 new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, bhh, app(ty_Maybe, caa), cab) -> new_lt(vyw86, vyw89, caa) 29.11/13.93 new_compare2(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, dd), app(ty_[], ee))) -> new_ltEs3(vyw491, vyw501, ee) 29.11/13.93 new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, app(app(ty_@2, ccf), ccg), cbc, cab) -> new_lt0(vyw85, vyw88, ccf, ccg) 29.11/13.93 new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(ty_[], bae)), hd), he)) -> new_lt3(vyw490, vyw500, bae) 29.11/13.93 new_compare20(vyw103, vyw104, vyw105, vyw106, False, beg, app(app(ty_Either, bfc), bfd)) -> new_ltEs1(vyw104, vyw106, bfc, bfd) 29.11/13.93 new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(app(app(ty_@3, bab), bac), bad)), hd), he)) -> new_lt2(vyw490, vyw500, bab, bac, bad) 29.11/13.93 new_compare2(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(ty_Maybe, ef)), eg)) -> new_ltEs(vyw490, vyw500, ef) 29.11/13.93 new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), baf, hd, app(app(ty_@2, bca), bcb)) -> new_ltEs0(vyw492, vyw502, bca, bcb) 29.11/13.93 new_ltEs0(@2(vyw490, vyw491), @2(vyw500, vyw501), dd, app(app(ty_@2, df), dg)) -> new_ltEs0(vyw491, vyw501, df, dg) 29.11/13.93 new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(app(ty_@2, hf), hg), hd, he) -> new_lt0(vyw490, vyw500, hf, hg) 29.11/13.93 new_ltEs1(Right(vyw490), Right(vyw500), ga, app(ty_Maybe, gb)) -> new_ltEs(vyw490, vyw500, gb) 29.11/13.93 new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), baf, app(app(ty_@2, bah), bba), he) -> new_lt0(vyw491, vyw501, bah, bba) 29.11/13.93 new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), baf, app(ty_Maybe, bag), he) -> new_lt(vyw491, vyw501, bag) 29.11/13.93 new_ltEs(Just(vyw490), Just(vyw500), app(app(app(ty_@3, be), bf), bg)) -> new_ltEs2(vyw490, vyw500, be, bf, bg) 29.11/13.93 new_ltEs0(@2(vyw490, vyw491), @2(vyw500, vyw501), dd, app(ty_[], ee)) -> new_ltEs3(vyw491, vyw501, ee) 29.11/13.93 new_lt1(Left(vyw50), Left(vyw300), bga, bgb) -> new_compare21(vyw50, vyw300, new_esEs7(vyw50, vyw300, bga), bga, bgb) 29.11/13.93 new_ltEs1(Right(vyw490), Right(vyw500), ga, app(app(ty_Either, ge), gf)) -> new_ltEs1(vyw490, vyw500, ge, gf) 29.11/13.93 new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(app(ty_@2, hf), hg)), hd), he)) -> new_lt0(vyw490, vyw500, hf, hg) 29.11/13.93 new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, bhh, cbc, app(app(ty_Either, cbg), cbh)) -> new_ltEs1(vyw87, vyw90, cbg, cbh) 29.11/13.93 new_compare2(Right(vyw490), Right(vyw500), False, app(app(ty_Either, ga), app(ty_[], hb))) -> new_ltEs3(vyw490, vyw500, hb) 29.11/13.93 new_ltEs1(Right(vyw490), Right(vyw500), ga, app(ty_[], hb)) -> new_ltEs3(vyw490, vyw500, hb) 29.11/13.93 new_compare21(vyw67, vyw68, False, app(app(app(ty_@3, bha), bhb), bhc), bgd) -> new_ltEs2(vyw67, vyw68, bha, bhb, bhc) 29.11/13.93 new_compare2(vyw49, vyw50, False, app(ty_[], bda)) -> new_compare(vyw49, vyw50, bda) 29.11/13.93 new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, baf), app(app(ty_Either, bbb), bbc)), he)) -> new_lt1(vyw491, vyw501, bbb, bbc) 29.11/13.93 new_primCompAux(vyw50, vyw300, vyw44, app(ty_Maybe, cdg)) -> new_compare0(vyw50, vyw300, cdg) 29.11/13.93 new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, baf), app(ty_Maybe, bag)), he)) -> new_lt(vyw491, vyw501, bag) 29.11/13.93 new_ltEs0(@2(vyw490, vyw491), @2(vyw500, vyw501), dd, app(ty_Maybe, de)) -> new_ltEs(vyw491, vyw501, de) 29.11/13.93 new_lt0(@2(vyw50, vyw51), @2(vyw300, vyw301), bdc, bdd) -> new_compare20(vyw50, vyw51, vyw300, vyw301, new_asAs(new_esEs6(vyw50, vyw300, bdc), new_esEs5(vyw51, vyw301, bdd)), bdc, bdd) 29.11/13.93 new_compare2(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(ty_[], dc)), cb)) -> new_lt3(vyw490, vyw500, dc) 29.11/13.93 new_compare1(@2(vyw50, vyw51), @2(vyw300, vyw301), bdc, bdd) -> new_compare20(vyw50, vyw51, vyw300, vyw301, new_asAs(new_esEs6(vyw50, vyw300, bdc), new_esEs5(vyw51, vyw301, bdd)), bdc, bdd) 29.11/13.93 new_compare(:(vyw50, vyw51), :(vyw300, vyw301), cdf) -> new_primCompAux(vyw50, vyw300, new_compare5(vyw51, vyw301, cdf), cdf) 29.11/13.93 new_compare22(vyw74, vyw75, False, ceh, app(app(ty_Either, cfd), cfe)) -> new_ltEs1(vyw74, vyw75, cfd, cfe) 29.11/13.93 new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, bhh, cbc, app(ty_[], ccd)) -> new_ltEs3(vyw87, vyw90, ccd) 29.11/13.93 new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, baf), app(app(app(ty_@3, bbd), bbe), bbf)), he)) -> new_lt2(vyw491, vyw501, bbd, bbe, bbf) 29.11/13.93 new_compare2(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(app(ty_Either, bc), bd))) -> new_ltEs1(vyw490, vyw500, bc, bd) 29.11/13.93 new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, baf), hd), app(app(app(ty_@3, bce), bcf), bcg))) -> new_ltEs2(vyw492, vyw502, bce, bcf, bcg) 29.11/13.93 new_compare2(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(ty_[], fh)), eg)) -> new_ltEs3(vyw490, vyw500, fh) 29.11/13.93 new_ltEs(Just(vyw490), Just(vyw500), app(app(ty_Either, bc), bd)) -> new_ltEs1(vyw490, vyw500, bc, bd) 29.11/13.93 new_ltEs0(@2(vyw490, vyw491), @2(vyw500, vyw501), dd, app(app(ty_Either, dh), ea)) -> new_ltEs1(vyw491, vyw501, dh, ea) 29.11/13.93 new_ltEs1(Left(vyw490), Left(vyw500), app(ty_Maybe, ef), eg) -> new_ltEs(vyw490, vyw500, ef) 29.11/13.93 new_ltEs(Just(vyw490), Just(vyw500), app(ty_[], bh)) -> new_ltEs3(vyw490, vyw500, bh) 29.11/13.93 new_compare2(Right(vyw490), Right(vyw500), False, app(app(ty_Either, ga), app(ty_Maybe, gb))) -> new_ltEs(vyw490, vyw500, gb) 29.11/13.93 new_ltEs0(@2(vyw490, vyw491), @2(vyw500, vyw501), app(app(ty_@2, cc), cd), cb) -> new_lt0(vyw490, vyw500, cc, cd) 29.11/13.93 new_compare21(vyw67, vyw68, False, app(app(ty_@2, bge), bgf), bgd) -> new_ltEs0(vyw67, vyw68, bge, bgf) 29.11/13.93 new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), baf, app(app(ty_Either, bbb), bbc), he) -> new_lt1(vyw491, vyw501, bbb, bbc) 29.11/13.93 new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, bhh, cbc, app(app(ty_@2, cbe), cbf)) -> new_ltEs0(vyw87, vyw90, cbe, cbf) 29.11/13.93 new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, baf), app(ty_[], bbg)), he)) -> new_lt3(vyw491, vyw501, bbg) 29.11/13.93 new_compare2(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(app(ty_@2, cc), cd)), cb)) -> new_lt0(vyw490, vyw500, cc, cd) 29.11/13.93 new_compare2(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(ty_[], bh))) -> new_ltEs3(vyw490, vyw500, bh) 29.11/13.93 new_compare20(vyw103, vyw104, vyw105, vyw106, False, app(app(ty_Either, bea), beb), bdf) -> new_lt1(vyw103, vyw105, bea, beb) 29.11/13.93 new_compare2(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(app(app(ty_@3, cg), da), db)), cb)) -> new_lt2(vyw490, vyw500, cg, da, db) 29.11/13.93 new_lt3(:(vyw50, vyw51), :(vyw300, vyw301), cdf) -> new_compare(vyw51, vyw301, cdf) 29.11/13.93 new_compare4(@3(vyw50, vyw51, vyw52), @3(vyw300, vyw301, vyw302), bhe, bhf, bhg) -> new_compare23(vyw50, vyw51, vyw52, vyw300, vyw301, vyw302, new_asAs(new_esEs11(vyw50, vyw300, bhe), new_asAs(new_esEs10(vyw51, vyw301, bhf), new_esEs9(vyw52, vyw302, bhg))), bhe, bhf, bhg) 29.11/13.93 new_compare3(Right(vyw50), Right(vyw300), bga, bgb) -> new_compare22(vyw50, vyw300, new_esEs8(vyw50, vyw300, bgb), bga, bgb) 29.11/13.93 new_lt2(@3(vyw50, vyw51, vyw52), @3(vyw300, vyw301, vyw302), bhe, bhf, bhg) -> new_compare23(vyw50, vyw51, vyw52, vyw300, vyw301, vyw302, new_asAs(new_esEs11(vyw50, vyw300, bhe), new_asAs(new_esEs10(vyw51, vyw301, bhf), new_esEs9(vyw52, vyw302, bhg))), bhe, bhf, bhg) 29.11/13.93 new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, bhh, app(app(app(ty_@3, cag), cah), cba), cab) -> new_lt2(vyw86, vyw89, cag, cah, cba) 29.11/13.93 new_compare20(vyw103, vyw104, vyw105, vyw106, False, beg, app(app(app(ty_@3, bfe), bff), bfg)) -> new_ltEs2(vyw104, vyw106, bfe, bff, bfg) 29.11/13.93 new_ltEs3(vyw49, vyw50, bda) -> new_compare(vyw49, vyw50, bda) 29.11/13.93 new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, app(ty_[], cde), cbc, cab) -> new_lt3(vyw85, vyw88, cde) 29.11/13.93 new_compare22(vyw74, vyw75, False, ceh, app(ty_Maybe, cfa)) -> new_ltEs(vyw74, vyw75, cfa) 29.11/13.93 new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, baf), hd), app(app(ty_Either, bcc), bcd))) -> new_ltEs1(vyw492, vyw502, bcc, bcd) 29.11/13.93 new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(app(app(ty_@3, bab), bac), bad), hd, he) -> new_lt2(vyw490, vyw500, bab, bac, bad) 29.11/13.93 new_compare21(vyw67, vyw68, False, app(ty_Maybe, bgc), bgd) -> new_ltEs(vyw67, vyw68, bgc) 29.11/13.93 new_compare22(vyw74, vyw75, False, ceh, app(app(app(ty_@3, cff), cfg), cfh)) -> new_ltEs2(vyw74, vyw75, cff, cfg, cfh) 29.11/13.93 new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(app(ty_Either, hh), baa)), hd), he)) -> new_lt1(vyw490, vyw500, hh, baa) 29.11/13.93 new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, bhh, cbc, app(app(app(ty_@3, cca), ccb), ccc)) -> new_ltEs2(vyw87, vyw90, cca, ccb, ccc) 29.11/13.93 new_compare20(vyw103, vyw104, vyw105, vyw106, False, app(app(ty_@2, bdg), bdh), bdf) -> new_lt0(vyw103, vyw105, bdg, bdh) 29.11/13.93 new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(app(ty_Either, hh), baa), hd, he) -> new_lt1(vyw490, vyw500, hh, baa) 29.11/13.93 new_compare21(vyw67, vyw68, False, app(app(ty_Either, bgg), bgh), bgd) -> new_ltEs1(vyw67, vyw68, bgg, bgh) 29.11/13.93 new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), baf, hd, app(ty_[], bch)) -> new_ltEs3(vyw492, vyw502, bch) 29.11/13.93 new_compare20(vyw103, vyw104, vyw105, vyw106, False, beg, app(ty_Maybe, beh)) -> new_ltEs(vyw104, vyw106, beh) 29.11/13.93 new_lt1(Right(vyw50), Right(vyw300), bga, bgb) -> new_compare22(vyw50, vyw300, new_esEs8(vyw50, vyw300, bgb), bga, bgb) 29.11/13.93 new_ltEs1(Left(vyw490), Left(vyw500), app(app(ty_@2, eh), fa), eg) -> new_ltEs0(vyw490, vyw500, eh, fa) 29.11/13.93 new_ltEs1(Right(vyw490), Right(vyw500), ga, app(app(ty_@2, gc), gd)) -> new_ltEs0(vyw490, vyw500, gc, gd) 29.11/13.93 new_primCompAux(vyw50, vyw300, vyw44, app(app(app(ty_@3, ced), cee), cef)) -> new_compare4(vyw50, vyw300, ced, cee, cef) 29.11/13.93 new_compare22(vyw74, vyw75, False, ceh, app(app(ty_@2, cfb), cfc)) -> new_ltEs0(vyw74, vyw75, cfb, cfc) 29.11/13.93 new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, app(ty_Maybe, cce), cbc, cab) -> new_lt(vyw85, vyw88, cce) 29.11/13.93 new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), baf, hd, app(app(ty_Either, bcc), bcd)) -> new_ltEs1(vyw492, vyw502, bcc, bcd) 29.11/13.93 new_compare2(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(app(ty_@2, ba), bb))) -> new_ltEs0(vyw490, vyw500, ba, bb) 29.11/13.93 new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), baf, hd, app(ty_Maybe, bbh)) -> new_ltEs(vyw492, vyw502, bbh) 29.11/13.93 new_compare2(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(app(app(ty_@3, be), bf), bg))) -> new_ltEs2(vyw490, vyw500, be, bf, bg) 29.11/13.93 new_ltEs0(@2(vyw490, vyw491), @2(vyw500, vyw501), app(ty_Maybe, ca), cb) -> new_lt(vyw490, vyw500, ca) 29.11/13.93 new_ltEs0(@2(vyw490, vyw491), @2(vyw500, vyw501), dd, app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs2(vyw491, vyw501, eb, ec, ed) 29.11/13.93 new_compare2(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(app(ty_@2, eh), fa)), eg)) -> new_ltEs0(vyw490, vyw500, eh, fa) 29.11/13.93 new_compare2(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, dd), app(app(ty_@2, df), dg))) -> new_ltEs0(vyw491, vyw501, df, dg) 29.11/13.93 new_compare20(vyw103, vyw104, vyw105, vyw106, False, app(app(app(ty_@3, bec), bed), bee), bdf) -> new_lt2(vyw103, vyw105, bec, bed, bee) 29.11/13.93 new_ltEs1(Left(vyw490), Left(vyw500), app(app(app(ty_@3, fd), ff), fg), eg) -> new_ltEs2(vyw490, vyw500, fd, ff, fg) 29.11/13.93 new_ltEs1(Right(vyw490), Right(vyw500), ga, app(app(app(ty_@3, gg), gh), ha)) -> new_ltEs2(vyw490, vyw500, gg, gh, ha) 29.11/13.93 new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, bhh, app(ty_[], cbb), cab) -> new_lt3(vyw86, vyw89, cbb) 29.11/13.93 new_compare2(Right(vyw490), Right(vyw500), False, app(app(ty_Either, ga), app(app(ty_@2, gc), gd))) -> new_ltEs0(vyw490, vyw500, gc, gd) 29.11/13.93 new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), baf, app(ty_[], bbg), he) -> new_lt3(vyw491, vyw501, bbg) 29.11/13.93 new_ltEs1(Left(vyw490), Left(vyw500), app(app(ty_Either, fb), fc), eg) -> new_ltEs1(vyw490, vyw500, fb, fc) 29.11/13.93 new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, app(app(ty_Either, cch), cda), cbc, cab) -> new_lt1(vyw85, vyw88, cch, cda) 29.11/13.93 new_primCompAux(vyw50, vyw300, vyw44, app(ty_[], ceg)) -> new_compare(vyw50, vyw300, ceg) 29.11/13.93 new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), baf, hd, app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs2(vyw492, vyw502, bce, bcf, bcg) 29.11/13.93 new_compare2(Right(vyw490), Right(vyw500), False, app(app(ty_Either, ga), app(app(ty_Either, ge), gf))) -> new_ltEs1(vyw490, vyw500, ge, gf) 29.11/13.93 new_compare20(vyw103, vyw104, vyw105, vyw106, False, app(ty_Maybe, bde), bdf) -> new_lt(vyw103, vyw105, bde) 29.11/13.93 new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, bhh, app(app(ty_@2, cac), cad), cab) -> new_lt0(vyw86, vyw89, cac, cad) 29.11/13.93 new_compare20(vyw103, vyw104, vyw105, vyw106, False, beg, app(app(ty_@2, bfa), bfb)) -> new_ltEs0(vyw104, vyw106, bfa, bfb) 29.11/13.93 new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, baf), hd), app(app(ty_@2, bca), bcb))) -> new_ltEs0(vyw492, vyw502, bca, bcb) 29.11/13.93 new_compare20(vyw103, vyw104, vyw105, vyw106, False, app(ty_[], bef), bdf) -> new_lt3(vyw103, vyw105, bef) 29.11/13.93 new_compare2(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(ty_Maybe, ca)), cb)) -> new_lt(vyw490, vyw500, ca) 29.11/13.93 new_compare2(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(app(ty_Either, ce), cf)), cb)) -> new_lt1(vyw490, vyw500, ce, cf) 29.11/13.93 new_compare2(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, dd), app(ty_Maybe, de))) -> new_ltEs(vyw491, vyw501, de) 29.11/13.93 new_ltEs1(Left(vyw490), Left(vyw500), app(ty_[], fh), eg) -> new_ltEs3(vyw490, vyw500, fh) 29.11/13.93 new_ltEs0(@2(vyw490, vyw491), @2(vyw500, vyw501), app(app(ty_Either, ce), cf), cb) -> new_lt1(vyw490, vyw500, ce, cf) 29.11/13.93 new_lt(Just(vyw50), Just(vyw300), bdb) -> new_compare2(vyw50, vyw300, new_esEs4(vyw50, vyw300, bdb), bdb) 29.11/13.93 new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, baf), hd), app(ty_Maybe, bbh))) -> new_ltEs(vyw492, vyw502, bbh) 29.11/13.93 new_ltEs(Just(vyw490), Just(vyw500), app(app(ty_@2, ba), bb)) -> new_ltEs0(vyw490, vyw500, ba, bb) 29.11/13.93 new_ltEs(Just(vyw490), Just(vyw500), app(ty_Maybe, h)) -> new_ltEs(vyw490, vyw500, h) 29.11/13.93 new_compare(:(vyw50, vyw51), :(vyw300, vyw301), cdf) -> new_compare(vyw51, vyw301, cdf) 29.11/13.93 new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, bhh, cbc, app(ty_Maybe, cbd)) -> new_ltEs(vyw87, vyw90, cbd) 29.11/13.93 new_compare2(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, dd), app(app(app(ty_@3, eb), ec), ed))) -> new_ltEs2(vyw491, vyw501, eb, ec, ed) 29.11/13.93 new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(ty_Maybe, hc), hd, he) -> new_lt(vyw490, vyw500, hc) 29.11/13.93 new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(ty_Maybe, hc)), hd), he)) -> new_lt(vyw490, vyw500, hc) 29.11/13.93 new_primCompAux(vyw50, vyw300, vyw44, app(app(ty_Either, ceb), cec)) -> new_compare3(vyw50, vyw300, ceb, cec) 29.11/13.93 new_compare20(vyw103, vyw104, vyw105, vyw106, False, beg, app(ty_[], bfh)) -> new_ltEs3(vyw104, vyw106, bfh) 29.11/13.93 new_compare2(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(ty_Maybe, h))) -> new_ltEs(vyw490, vyw500, h) 29.11/13.93 new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, baf), app(app(ty_@2, bah), bba)), he)) -> new_lt0(vyw491, vyw501, bah, bba) 29.11/13.93 new_ltEs0(@2(vyw490, vyw491), @2(vyw500, vyw501), app(app(app(ty_@3, cg), da), db), cb) -> new_lt2(vyw490, vyw500, cg, da, db) 29.11/13.93 new_compare2(Right(vyw490), Right(vyw500), False, app(app(ty_Either, ga), app(app(app(ty_@3, gg), gh), ha))) -> new_ltEs2(vyw490, vyw500, gg, gh, ha) 29.11/13.93 new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), baf, app(app(app(ty_@3, bbd), bbe), bbf), he) -> new_lt2(vyw491, vyw501, bbd, bbe, bbf) 29.11/13.93 new_compare2(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(app(ty_Either, fb), fc)), eg)) -> new_ltEs1(vyw490, vyw500, fb, fc) 29.11/13.93 new_primCompAux(vyw50, vyw300, vyw44, app(app(ty_@2, cdh), cea)) -> new_compare1(vyw50, vyw300, cdh, cea) 29.11/13.93 new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(ty_[], bae), hd, he) -> new_lt3(vyw490, vyw500, bae) 29.11/13.93 new_lt3(:(vyw50, vyw51), :(vyw300, vyw301), cdf) -> new_primCompAux(vyw50, vyw300, new_compare5(vyw51, vyw301, cdf), cdf) 29.11/13.93 new_compare2(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, dd), app(app(ty_Either, dh), ea))) -> new_ltEs1(vyw491, vyw501, dh, ea) 29.11/13.93 new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, app(app(app(ty_@3, cdb), cdc), cdd), cbc, cab) -> new_lt2(vyw85, vyw88, cdb, cdc, cdd) 29.11/13.93 29.11/13.93 The TRS R consists of the following rules: 29.11/13.93 29.11/13.93 new_esEs10(vyw51, vyw301, ty_Double) -> new_esEs21(vyw51, vyw301) 29.11/13.93 new_esEs37(vyw490, vyw500, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs26(vyw490, vyw500, bab, bac, bad) 29.11/13.93 new_ltEs24(vyw87, vyw90, ty_Char) -> new_ltEs10(vyw87, vyw90) 29.11/13.93 new_lt10(vyw490, vyw500, ty_Bool) -> new_lt5(vyw490, vyw500) 29.11/13.93 new_esEs38(vyw500, vyw3000, app(app(ty_Either, feh), ffa)) -> new_esEs23(vyw500, vyw3000, feh, ffa) 29.11/13.93 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 29.11/13.93 new_lt19(vyw103, vyw105, ty_Bool) -> new_lt5(vyw103, vyw105) 29.11/13.93 new_primCmpInt(Neg(Succ(vyw500)), Pos(vyw300)) -> LT 29.11/13.93 new_lt17(vyw5, vyw30, bga, bgb) -> new_esEs12(new_compare29(vyw5, vyw30, bga, bgb)) 29.11/13.93 new_ltEs21(vyw74, vyw75, ty_Integer) -> new_ltEs12(vyw74, vyw75) 29.11/13.93 new_primPlusNat0(Zero, Zero) -> Zero 29.11/13.93 new_compare210(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, bhh, cbc, cab) -> new_compare10(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, new_lt23(vyw85, vyw88, bhh), new_asAs(new_esEs40(vyw85, vyw88, bhh), new_pePe(new_lt22(vyw86, vyw89, cbc), new_asAs(new_esEs39(vyw86, vyw89, cbc), new_ltEs24(vyw87, vyw90, cab)))), bhh, cbc, cab) 29.11/13.93 new_lt23(vyw85, vyw88, app(ty_[], cde)) -> new_lt8(vyw85, vyw88, cde) 29.11/13.93 new_pePe(True, vyw182) -> True 29.11/13.93 new_esEs7(vyw50, vyw300, ty_@0) -> new_esEs20(vyw50, vyw300) 29.11/13.93 new_compare25(vyw103, vyw104, vyw105, vyw106, False, beg, bdf) -> new_compare111(vyw103, vyw104, vyw105, vyw106, new_lt19(vyw103, vyw105, beg), new_asAs(new_esEs32(vyw103, vyw105, beg), new_ltEs20(vyw104, vyw106, bdf)), beg, bdf) 29.11/13.93 new_esEs10(vyw51, vyw301, ty_Bool) -> new_esEs24(vyw51, vyw301) 29.11/13.93 new_esEs23(Right(vyw500), Right(vyw3000), fbe, ty_Char) -> new_esEs17(vyw500, vyw3000) 29.11/13.93 new_esEs22(Just(vyw500), Just(vyw3000), app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs26(vyw500, vyw3000, dgg, dgh, dha) 29.11/13.93 new_ltEs20(vyw104, vyw106, ty_Int) -> new_ltEs11(vyw104, vyw106) 29.11/13.93 new_esEs34(vyw501, vyw3001, ty_@0) -> new_esEs20(vyw501, vyw3001) 29.11/13.93 new_esEs38(vyw500, vyw3000, ty_Float) -> new_esEs19(vyw500, vyw3000) 29.11/13.93 new_esEs11(vyw50, vyw300, ty_Ordering) -> new_esEs28(vyw50, vyw300) 29.11/13.93 new_ltEs21(vyw74, vyw75, ty_Float) -> new_ltEs8(vyw74, vyw75) 29.11/13.93 new_esEs40(vyw85, vyw88, ty_@0) -> new_esEs20(vyw85, vyw88) 29.11/13.93 new_esEs24(True, True) -> True 29.11/13.93 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 29.11/13.93 new_esEs22(Just(vyw500), Just(vyw3000), app(ty_[], dgf)) -> new_esEs25(vyw500, vyw3000, dgf) 29.11/13.93 new_esEs8(vyw50, vyw300, ty_Double) -> new_esEs21(vyw50, vyw300) 29.11/13.93 new_esEs10(vyw51, vyw301, app(ty_Ratio, eah)) -> new_esEs27(vyw51, vyw301, eah) 29.11/13.93 new_primCmpInt(Pos(Zero), Neg(Succ(vyw3000))) -> GT 29.11/13.93 new_lt20(vyw490, vyw500, app(app(ty_Either, hh), baa)) -> new_lt17(vyw490, vyw500, hh, baa) 29.11/13.93 new_esEs33(vyw502, vyw3002, ty_Integer) -> new_esEs16(vyw502, vyw3002) 29.11/13.93 new_esEs35(vyw500, vyw3000, ty_Double) -> new_esEs21(vyw500, vyw3000) 29.11/13.93 new_compare111(vyw153, vyw154, vyw155, vyw156, False, vyw158, ege, egf) -> new_compare112(vyw153, vyw154, vyw155, vyw156, vyw158, ege, egf) 29.11/13.93 new_ltEs19(vyw491, vyw501, app(app(ty_@2, df), dg)) -> new_ltEs5(vyw491, vyw501, df, dg) 29.11/13.93 new_lt22(vyw86, vyw89, app(app(ty_@2, cac), cad)) -> new_lt6(vyw86, vyw89, cac, cad) 29.11/13.93 new_esEs37(vyw490, vyw500, app(ty_Maybe, hc)) -> new_esEs22(vyw490, vyw500, hc) 29.11/13.93 new_compare26(Float(vyw50, Neg(vyw510)), Float(vyw300, Neg(vyw3010))) -> new_compare13(new_sr(vyw50, Neg(vyw3010)), new_sr(Neg(vyw510), vyw300)) 29.11/13.93 new_primCmpInt(Neg(Succ(vyw500)), Neg(vyw300)) -> new_primCmpNat0(vyw300, Succ(vyw500)) 29.11/13.93 new_esEs6(vyw50, vyw300, ty_Integer) -> new_esEs16(vyw50, vyw300) 29.11/13.93 new_ltEs23(vyw492, vyw502, ty_Double) -> new_ltEs15(vyw492, vyw502) 29.11/13.93 new_ltEs4(Nothing, Nothing, cge) -> True 29.11/13.93 new_lt4(vyw5, vyw30) -> new_esEs12(new_compare6(vyw5, vyw30)) 29.11/13.93 new_ltEs4(Just(vyw490), Nothing, cge) -> False 29.11/13.93 new_esEs4(vyw50, vyw300, app(app(ty_@2, cgg), cgh)) -> new_esEs13(vyw50, vyw300, cgg, cgh) 29.11/13.93 new_primMulNat0(Succ(vyw5000), Succ(vyw30100)) -> new_primPlusNat1(new_primMulNat0(vyw5000, Succ(vyw30100)), vyw30100) 29.11/13.93 new_ltEs18(vyw49, vyw50, ty_Char) -> new_ltEs10(vyw49, vyw50) 29.11/13.93 new_lt20(vyw490, vyw500, ty_Double) -> new_lt9(vyw490, vyw500) 29.11/13.93 new_lt19(vyw103, vyw105, ty_@0) -> new_lt14(vyw103, vyw105) 29.11/13.93 new_lt19(vyw103, vyw105, app(ty_Ratio, ebc)) -> new_lt11(vyw103, vyw105, ebc) 29.11/13.93 new_esEs31(vyw490, vyw500, app(app(ty_@2, cc), cd)) -> new_esEs13(vyw490, vyw500, cc, cd) 29.11/13.94 new_esEs5(vyw51, vyw301, ty_Ordering) -> new_esEs28(vyw51, vyw301) 29.11/13.94 new_ltEs13(Right(vyw490), Right(vyw500), ga, ty_Double) -> new_ltEs15(vyw490, vyw500) 29.11/13.94 new_lt19(vyw103, vyw105, app(app(ty_Either, bea), beb)) -> new_lt17(vyw103, vyw105, bea, beb) 29.11/13.94 new_esEs5(vyw51, vyw301, app(ty_[], dea)) -> new_esEs25(vyw51, vyw301, dea) 29.11/13.94 new_esEs10(vyw51, vyw301, app(app(ty_@2, dhg), dhh)) -> new_esEs13(vyw51, vyw301, dhg, dhh) 29.11/13.94 new_esEs35(vyw500, vyw3000, ty_Bool) -> new_esEs24(vyw500, vyw3000) 29.11/13.94 new_esEs32(vyw103, vyw105, app(ty_[], bef)) -> new_esEs25(vyw103, vyw105, bef) 29.11/13.94 new_esEs8(vyw50, vyw300, app(ty_Ratio, fbb)) -> new_esEs27(vyw50, vyw300, fbb) 29.11/13.94 new_esEs27(:%(vyw500, vyw501), :%(vyw3000, vyw3001), dda) -> new_asAs(new_esEs30(vyw500, vyw3000, dda), new_esEs29(vyw501, vyw3001, dda)) 29.11/13.94 new_compare19(@0, @0) -> EQ 29.11/13.94 new_esEs32(vyw103, vyw105, ty_Ordering) -> new_esEs28(vyw103, vyw105) 29.11/13.94 new_compare30(vyw50, vyw300, ty_Char) -> new_compare17(vyw50, vyw300) 29.11/13.94 new_lt19(vyw103, vyw105, app(ty_Maybe, bde)) -> new_lt7(vyw103, vyw105, bde) 29.11/13.94 new_esEs15(vyw500, vyw3000, app(app(ty_@2, dac), dad)) -> new_esEs13(vyw500, vyw3000, dac, dad) 29.11/13.94 new_lt10(vyw490, vyw500, app(ty_Ratio, dhe)) -> new_lt11(vyw490, vyw500, dhe) 29.11/13.94 new_primCompAux0(vyw50, vyw300, vyw44, cdf) -> new_primCompAux00(vyw44, new_compare30(vyw50, vyw300, cdf)) 29.11/13.94 new_ltEs22(vyw67, vyw68, app(ty_Maybe, bgc)) -> new_ltEs4(vyw67, vyw68, bgc) 29.11/13.94 new_ltEs4(Just(vyw490), Just(vyw500), app(ty_Maybe, h)) -> new_ltEs4(vyw490, vyw500, h) 29.11/13.94 new_esEs7(vyw50, vyw300, ty_Int) -> new_esEs18(vyw50, vyw300) 29.11/13.94 new_ltEs18(vyw49, vyw50, app(ty_[], bda)) -> new_ltEs17(vyw49, vyw50, bda) 29.11/13.94 new_primEqInt(Pos(Succ(vyw5000)), Pos(Zero)) -> False 29.11/13.94 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 29.11/13.94 new_esEs34(vyw501, vyw3001, ty_Int) -> new_esEs18(vyw501, vyw3001) 29.11/13.94 new_esEs40(vyw85, vyw88, ty_Int) -> new_esEs18(vyw85, vyw88) 29.11/13.94 new_lt10(vyw490, vyw500, app(app(ty_Either, ce), cf)) -> new_lt17(vyw490, vyw500, ce, cf) 29.11/13.94 new_esEs8(vyw50, vyw300, ty_Bool) -> new_esEs24(vyw50, vyw300) 29.11/13.94 new_compare11(vyw168, vyw169, vyw170, vyw171, vyw172, vyw173, False, cgb, cgc, cgd) -> GT 29.11/13.94 new_ltEs24(vyw87, vyw90, ty_Int) -> new_ltEs11(vyw87, vyw90) 29.11/13.94 new_lt20(vyw490, vyw500, app(ty_Maybe, hc)) -> new_lt7(vyw490, vyw500, hc) 29.11/13.94 new_ltEs19(vyw491, vyw501, ty_Bool) -> new_ltEs14(vyw491, vyw501) 29.11/13.94 new_lt22(vyw86, vyw89, app(app(app(ty_@3, cag), cah), cba)) -> new_lt18(vyw86, vyw89, cag, cah, cba) 29.11/13.94 new_esEs23(Left(vyw500), Left(vyw3000), ty_Ordering, fbf) -> new_esEs28(vyw500, vyw3000) 29.11/13.94 new_lt22(vyw86, vyw89, ty_Int) -> new_lt16(vyw86, vyw89) 29.11/13.94 new_esEs15(vyw500, vyw3000, app(ty_Ratio, dbd)) -> new_esEs27(vyw500, vyw3000, dbd) 29.11/13.94 new_lt21(vyw491, vyw501, ty_Integer) -> new_lt4(vyw491, vyw501) 29.11/13.94 new_compare8(GT, GT) -> EQ 29.11/13.94 new_primEqNat0(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat0(vyw5000, vyw30000) 29.11/13.94 new_ltEs13(Right(vyw490), Right(vyw500), ga, ty_Ordering) -> new_ltEs7(vyw490, vyw500) 29.11/13.94 new_ltEs23(vyw492, vyw502, app(ty_Ratio, egd)) -> new_ltEs6(vyw492, vyw502, egd) 29.11/13.94 new_esEs28(LT, LT) -> True 29.11/13.94 new_lt7(vyw5, vyw30, bdb) -> new_esEs12(new_compare16(vyw5, vyw30, bdb)) 29.11/13.94 new_not(True) -> False 29.11/13.94 new_esEs35(vyw500, vyw3000, app(ty_Ratio, ega)) -> new_esEs27(vyw500, vyw3000, ega) 29.11/13.94 new_esEs39(vyw86, vyw89, ty_@0) -> new_esEs20(vyw86, vyw89) 29.11/13.94 new_ltEs22(vyw67, vyw68, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs16(vyw67, vyw68, bha, bhb, bhc) 29.11/13.94 new_esEs38(vyw500, vyw3000, ty_@0) -> new_esEs20(vyw500, vyw3000) 29.11/13.94 new_ltEs19(vyw491, vyw501, ty_Integer) -> new_ltEs12(vyw491, vyw501) 29.11/13.94 new_lt22(vyw86, vyw89, ty_Ordering) -> new_lt12(vyw86, vyw89) 29.11/13.94 new_primCompAux00(vyw95, LT) -> LT 29.11/13.94 new_esEs36(vyw491, vyw501, app(app(ty_@2, bah), bba)) -> new_esEs13(vyw491, vyw501, bah, bba) 29.11/13.94 new_primCmpNat0(Zero, Zero) -> EQ 29.11/13.94 new_esEs40(vyw85, vyw88, app(app(ty_Either, cch), cda)) -> new_esEs23(vyw85, vyw88, cch, cda) 29.11/13.94 new_esEs22(Nothing, Just(vyw3000), dfh) -> False 29.11/13.94 new_esEs22(Just(vyw500), Nothing, dfh) -> False 29.11/13.94 new_esEs6(vyw50, vyw300, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs26(vyw50, vyw300, dfd, dfe, dff) 29.11/13.94 new_esEs22(Nothing, Nothing, dfh) -> True 29.11/13.94 new_esEs20(@0, @0) -> True 29.11/13.94 new_esEs37(vyw490, vyw500, ty_Integer) -> new_esEs16(vyw490, vyw500) 29.11/13.94 new_ltEs13(Left(vyw490), Left(vyw500), ty_Bool, eg) -> new_ltEs14(vyw490, vyw500) 29.11/13.94 new_esEs5(vyw51, vyw301, app(app(app(ty_@3, deb), dec), ded)) -> new_esEs26(vyw51, vyw301, deb, dec, ded) 29.11/13.94 new_ltEs24(vyw87, vyw90, app(ty_[], ccd)) -> new_ltEs17(vyw87, vyw90, ccd) 29.11/13.94 new_lt21(vyw491, vyw501, ty_Bool) -> new_lt5(vyw491, vyw501) 29.11/13.94 new_esEs30(vyw500, vyw3000, ty_Int) -> new_esEs18(vyw500, vyw3000) 29.11/13.94 new_esEs39(vyw86, vyw89, ty_Double) -> new_esEs21(vyw86, vyw89) 29.11/13.94 new_compare18(Double(vyw50, Pos(vyw510)), Double(vyw300, Neg(vyw3010))) -> new_compare13(new_sr(vyw50, Pos(vyw3010)), new_sr(Neg(vyw510), vyw300)) 29.11/13.94 new_compare18(Double(vyw50, Neg(vyw510)), Double(vyw300, Pos(vyw3010))) -> new_compare13(new_sr(vyw50, Neg(vyw3010)), new_sr(Pos(vyw510), vyw300)) 29.11/13.94 new_lt23(vyw85, vyw88, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt18(vyw85, vyw88, cdb, cdc, cdd) 29.11/13.94 new_esEs34(vyw501, vyw3001, app(app(ty_Either, eea), eeb)) -> new_esEs23(vyw501, vyw3001, eea, eeb) 29.11/13.94 new_ltEs19(vyw491, vyw501, ty_Float) -> new_ltEs8(vyw491, vyw501) 29.11/13.94 new_ltEs24(vyw87, vyw90, ty_Ordering) -> new_ltEs7(vyw87, vyw90) 29.11/13.94 new_esEs34(vyw501, vyw3001, ty_Float) -> new_esEs19(vyw501, vyw3001) 29.11/13.94 new_esEs36(vyw491, vyw501, app(ty_Ratio, egc)) -> new_esEs27(vyw491, vyw501, egc) 29.11/13.94 new_esEs32(vyw103, vyw105, app(ty_Maybe, bde)) -> new_esEs22(vyw103, vyw105, bde) 29.11/13.94 new_compare28(vyw67, vyw68, False, ebg, bgd) -> new_compare15(vyw67, vyw68, new_ltEs22(vyw67, vyw68, ebg), ebg, bgd) 29.11/13.94 new_esEs33(vyw502, vyw3002, app(ty_[], eda)) -> new_esEs25(vyw502, vyw3002, eda) 29.11/13.94 new_compare27(vyw74, vyw75, False, ceh, ebe) -> new_compare110(vyw74, vyw75, new_ltEs21(vyw74, vyw75, ebe), ceh, ebe) 29.11/13.94 new_esEs40(vyw85, vyw88, ty_Float) -> new_esEs19(vyw85, vyw88) 29.11/13.94 new_ltEs19(vyw491, vyw501, ty_Int) -> new_ltEs11(vyw491, vyw501) 29.11/13.94 new_primEqNat0(Succ(vyw5000), Zero) -> False 29.11/13.94 new_primEqNat0(Zero, Succ(vyw30000)) -> False 29.11/13.94 new_esEs22(Just(vyw500), Just(vyw3000), ty_Integer) -> new_esEs16(vyw500, vyw3000) 29.11/13.94 new_ltEs10(vyw49, vyw50) -> new_fsEs(new_compare17(vyw49, vyw50)) 29.11/13.94 new_esEs15(vyw500, vyw3000, ty_Bool) -> new_esEs24(vyw500, vyw3000) 29.11/13.94 new_ltEs13(Left(vyw490), Left(vyw500), ty_Integer, eg) -> new_ltEs12(vyw490, vyw500) 29.11/13.94 new_lt10(vyw490, vyw500, ty_Char) -> new_lt15(vyw490, vyw500) 29.11/13.94 new_esEs14(vyw501, vyw3001, app(ty_Ratio, dab)) -> new_esEs27(vyw501, vyw3001, dab) 29.11/13.94 new_esEs24(False, True) -> False 29.11/13.94 new_esEs24(True, False) -> False 29.11/13.94 new_ltEs21(vyw74, vyw75, app(app(ty_@2, cfb), cfc)) -> new_ltEs5(vyw74, vyw75, cfb, cfc) 29.11/13.94 new_lt21(vyw491, vyw501, ty_@0) -> new_lt14(vyw491, vyw501) 29.11/13.94 new_lt10(vyw490, vyw500, ty_Double) -> new_lt9(vyw490, vyw500) 29.11/13.94 new_esEs4(vyw50, vyw300, ty_Double) -> new_esEs21(vyw50, vyw300) 29.11/13.94 new_esEs14(vyw501, vyw3001, ty_@0) -> new_esEs20(vyw501, vyw3001) 29.11/13.94 new_fsEs(vyw177) -> new_not(new_esEs28(vyw177, GT)) 29.11/13.94 new_esEs9(vyw52, vyw302, app(ty_[], fgg)) -> new_esEs25(vyw52, vyw302, fgg) 29.11/13.94 new_lt10(vyw490, vyw500, ty_Integer) -> new_lt4(vyw490, vyw500) 29.11/13.94 new_esEs15(vyw500, vyw3000, ty_Double) -> new_esEs21(vyw500, vyw3000) 29.11/13.94 new_esEs33(vyw502, vyw3002, app(app(ty_Either, ecg), ech)) -> new_esEs23(vyw502, vyw3002, ecg, ech) 29.11/13.94 new_ltEs20(vyw104, vyw106, ty_Bool) -> new_ltEs14(vyw104, vyw106) 29.11/13.94 new_esEs8(vyw50, vyw300, app(app(ty_@2, faa), fab)) -> new_esEs13(vyw50, vyw300, faa, fab) 29.11/13.94 new_primCompAux00(vyw95, GT) -> GT 29.11/13.94 new_esEs37(vyw490, vyw500, ty_Ordering) -> new_esEs28(vyw490, vyw500) 29.11/13.94 new_esEs23(Right(vyw500), Right(vyw3000), fbe, ty_Int) -> new_esEs18(vyw500, vyw3000) 29.11/13.94 new_compare7(True, True) -> EQ 29.11/13.94 new_lt23(vyw85, vyw88, ty_Float) -> new_lt13(vyw85, vyw88) 29.11/13.94 new_esEs22(Just(vyw500), Just(vyw3000), app(ty_Maybe, dgc)) -> new_esEs22(vyw500, vyw3000, dgc) 29.11/13.94 new_esEs33(vyw502, vyw3002, app(ty_Maybe, ecf)) -> new_esEs22(vyw502, vyw3002, ecf) 29.11/13.94 new_esEs28(GT, GT) -> True 29.11/13.94 new_lt10(vyw490, vyw500, ty_@0) -> new_lt14(vyw490, vyw500) 29.11/13.94 new_esEs38(vyw500, vyw3000, app(ty_Maybe, feg)) -> new_esEs22(vyw500, vyw3000, feg) 29.11/13.94 new_compare15(vyw133, vyw134, True, ddb, ddc) -> LT 29.11/13.94 new_compare210(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, True, bhh, cbc, cab) -> EQ 29.11/13.94 new_esEs9(vyw52, vyw302, ty_Double) -> new_esEs21(vyw52, vyw302) 29.11/13.94 new_compare6(Integer(vyw50), Integer(vyw300)) -> new_primCmpInt(vyw50, vyw300) 29.11/13.94 new_esEs14(vyw501, vyw3001, app(app(ty_@2, cha), chb)) -> new_esEs13(vyw501, vyw3001, cha, chb) 29.11/13.94 new_esEs28(EQ, EQ) -> True 29.11/13.94 new_primCmpInt(Pos(Succ(vyw500)), Neg(vyw300)) -> GT 29.11/13.94 new_esEs36(vyw491, vyw501, ty_Ordering) -> new_esEs28(vyw491, vyw501) 29.11/13.94 new_lt22(vyw86, vyw89, ty_Integer) -> new_lt4(vyw86, vyw89) 29.11/13.94 new_compare14(@2(vyw50, vyw51), @2(vyw300, vyw301), bdc, bdd) -> new_compare25(vyw50, vyw51, vyw300, vyw301, new_asAs(new_esEs6(vyw50, vyw300, bdc), new_esEs5(vyw51, vyw301, bdd)), bdc, bdd) 29.11/13.94 new_ltEs20(vyw104, vyw106, app(app(ty_@2, bfa), bfb)) -> new_ltEs5(vyw104, vyw106, bfa, bfb) 29.11/13.94 new_ltEs24(vyw87, vyw90, ty_Double) -> new_ltEs15(vyw87, vyw90) 29.11/13.94 new_compare112(vyw153, vyw154, vyw155, vyw156, True, ege, egf) -> LT 29.11/13.94 new_ltEs18(vyw49, vyw50, ty_Double) -> new_ltEs15(vyw49, vyw50) 29.11/13.94 new_esEs4(vyw50, vyw300, ty_Bool) -> new_esEs24(vyw50, vyw300) 29.11/13.94 new_ltEs21(vyw74, vyw75, ty_Bool) -> new_ltEs14(vyw74, vyw75) 29.11/13.94 new_esEs33(vyw502, vyw3002, ty_Char) -> new_esEs17(vyw502, vyw3002) 29.11/13.94 new_ltEs13(Left(vyw490), Left(vyw500), ty_Float, eg) -> new_ltEs8(vyw490, vyw500) 29.11/13.94 new_compare110(vyw141, vyw142, True, eba, ebb) -> LT 29.11/13.94 new_ltEs18(vyw49, vyw50, ty_Ordering) -> new_ltEs7(vyw49, vyw50) 29.11/13.94 new_esEs33(vyw502, vyw3002, ty_Float) -> new_esEs19(vyw502, vyw3002) 29.11/13.94 new_esEs38(vyw500, vyw3000, ty_Integer) -> new_esEs16(vyw500, vyw3000) 29.11/13.94 new_lt11(vyw5, vyw30, fbh) -> new_esEs12(new_compare9(vyw5, vyw30, fbh)) 29.11/13.94 new_esEs31(vyw490, vyw500, app(ty_Ratio, dhe)) -> new_esEs27(vyw490, vyw500, dhe) 29.11/13.94 new_esEs39(vyw86, vyw89, app(app(ty_Either, cae), caf)) -> new_esEs23(vyw86, vyw89, cae, caf) 29.11/13.94 new_ltEs7(GT, GT) -> True 29.11/13.94 new_esEs38(vyw500, vyw3000, ty_Char) -> new_esEs17(vyw500, vyw3000) 29.11/13.94 new_esEs8(vyw50, vyw300, ty_@0) -> new_esEs20(vyw50, vyw300) 29.11/13.94 new_esEs39(vyw86, vyw89, ty_Bool) -> new_esEs24(vyw86, vyw89) 29.11/13.94 new_ltEs20(vyw104, vyw106, ty_Integer) -> new_ltEs12(vyw104, vyw106) 29.11/13.94 new_lt21(vyw491, vyw501, ty_Char) -> new_lt15(vyw491, vyw501) 29.11/13.94 new_compare5(:(vyw50, vyw51), [], cdf) -> GT 29.11/13.94 new_primCmpNat0(Zero, Succ(vyw3000)) -> LT 29.11/13.94 new_ltEs23(vyw492, vyw502, app(ty_[], bch)) -> new_ltEs17(vyw492, vyw502, bch) 29.11/13.94 new_esEs11(vyw50, vyw300, app(ty_[], dcb)) -> new_esEs25(vyw50, vyw300, dcb) 29.11/13.94 new_ltEs23(vyw492, vyw502, ty_@0) -> new_ltEs9(vyw492, vyw502) 29.11/13.94 new_esEs31(vyw490, vyw500, ty_Ordering) -> new_esEs28(vyw490, vyw500) 29.11/13.94 new_esEs29(vyw501, vyw3001, ty_Int) -> new_esEs18(vyw501, vyw3001) 29.11/13.94 new_ltEs23(vyw492, vyw502, app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs16(vyw492, vyw502, bce, bcf, bcg) 29.11/13.94 new_esEs13(@2(vyw500, vyw501), @2(vyw3000, vyw3001), cgg, cgh) -> new_asAs(new_esEs15(vyw500, vyw3000, cgg), new_esEs14(vyw501, vyw3001, cgh)) 29.11/13.94 new_ltEs13(Right(vyw490), Right(vyw500), ga, ty_Int) -> new_ltEs11(vyw490, vyw500) 29.11/13.94 new_esEs9(vyw52, vyw302, ty_Bool) -> new_esEs24(vyw52, vyw302) 29.11/13.94 new_esEs39(vyw86, vyw89, ty_Char) -> new_esEs17(vyw86, vyw89) 29.11/13.94 new_esEs32(vyw103, vyw105, ty_Integer) -> new_esEs16(vyw103, vyw105) 29.11/13.94 new_primCmpNat0(Succ(vyw500), Zero) -> GT 29.11/13.94 new_esEs40(vyw85, vyw88, ty_Bool) -> new_esEs24(vyw85, vyw88) 29.11/13.94 new_compare16(Just(vyw50), Nothing, bdb) -> GT 29.11/13.94 new_pePe(False, vyw182) -> vyw182 29.11/13.94 new_lt19(vyw103, vyw105, ty_Int) -> new_lt16(vyw103, vyw105) 29.11/13.94 new_esEs7(vyw50, vyw300, ty_Double) -> new_esEs21(vyw50, vyw300) 29.11/13.94 new_lt10(vyw490, vyw500, ty_Ordering) -> new_lt12(vyw490, vyw500) 29.11/13.94 new_compare25(vyw103, vyw104, vyw105, vyw106, True, beg, bdf) -> EQ 29.11/13.94 new_compare26(Float(vyw50, Pos(vyw510)), Float(vyw300, Pos(vyw3010))) -> new_compare13(new_sr(vyw50, Pos(vyw3010)), new_sr(Pos(vyw510), vyw300)) 29.11/13.94 new_lt10(vyw490, vyw500, ty_Int) -> new_lt16(vyw490, vyw500) 29.11/13.94 new_esEs5(vyw51, vyw301, app(app(ty_@2, ddd), dde)) -> new_esEs13(vyw51, vyw301, ddd, dde) 29.11/13.94 new_ltEs13(Left(vyw490), Right(vyw500), ga, eg) -> True 29.11/13.94 new_esEs40(vyw85, vyw88, app(ty_Ratio, fga)) -> new_esEs27(vyw85, vyw88, fga) 29.11/13.94 new_esEs5(vyw51, vyw301, app(ty_Ratio, dee)) -> new_esEs27(vyw51, vyw301, dee) 29.11/13.94 new_ltEs22(vyw67, vyw68, ty_Double) -> new_ltEs15(vyw67, vyw68) 29.11/13.94 new_ltEs4(Just(vyw490), Just(vyw500), app(ty_Ratio, cgf)) -> new_ltEs6(vyw490, vyw500, cgf) 29.11/13.94 new_esEs5(vyw51, vyw301, ty_Integer) -> new_esEs16(vyw51, vyw301) 29.11/13.94 new_ltEs18(vyw49, vyw50, ty_@0) -> new_ltEs9(vyw49, vyw50) 29.11/13.94 new_ltEs4(Just(vyw490), Just(vyw500), ty_@0) -> new_ltEs9(vyw490, vyw500) 29.11/13.94 new_lt21(vyw491, vyw501, ty_Double) -> new_lt9(vyw491, vyw501) 29.11/13.94 new_esEs33(vyw502, vyw3002, ty_Ordering) -> new_esEs28(vyw502, vyw3002) 29.11/13.94 new_compare18(Double(vyw50, Neg(vyw510)), Double(vyw300, Neg(vyw3010))) -> new_compare13(new_sr(vyw50, Neg(vyw3010)), new_sr(Neg(vyw510), vyw300)) 29.11/13.94 new_ltEs4(Just(vyw490), Just(vyw500), app(app(app(ty_@3, be), bf), bg)) -> new_ltEs16(vyw490, vyw500, be, bf, bg) 29.11/13.94 new_esEs9(vyw52, vyw302, app(app(app(ty_@3, fgh), fha), fhb)) -> new_esEs26(vyw52, vyw302, fgh, fha, fhb) 29.11/13.94 new_esEs39(vyw86, vyw89, app(app(ty_@2, cac), cad)) -> new_esEs13(vyw86, vyw89, cac, cad) 29.11/13.94 new_compare16(Nothing, Nothing, bdb) -> EQ 29.11/13.94 new_esEs19(Float(vyw500, vyw501), Float(vyw3000, vyw3001)) -> new_esEs18(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 29.11/13.94 new_ltEs13(Left(vyw490), Left(vyw500), app(app(ty_Either, fb), fc), eg) -> new_ltEs13(vyw490, vyw500, fb, fc) 29.11/13.94 new_esEs10(vyw51, vyw301, ty_Ordering) -> new_esEs28(vyw51, vyw301) 29.11/13.94 new_ltEs20(vyw104, vyw106, ty_Float) -> new_ltEs8(vyw104, vyw106) 29.11/13.94 new_esEs6(vyw50, vyw300, ty_@0) -> new_esEs20(vyw50, vyw300) 29.11/13.94 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 29.11/13.94 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 29.11/13.94 new_lt19(vyw103, vyw105, ty_Ordering) -> new_lt12(vyw103, vyw105) 29.11/13.94 new_esEs40(vyw85, vyw88, ty_Double) -> new_esEs21(vyw85, vyw88) 29.11/13.94 new_compare16(Just(vyw50), Just(vyw300), bdb) -> new_compare24(vyw50, vyw300, new_esEs4(vyw50, vyw300, bdb), bdb) 29.11/13.94 new_esEs23(Right(vyw500), Right(vyw3000), fbe, app(ty_Ratio, fed)) -> new_esEs27(vyw500, vyw3000, fed) 29.11/13.94 new_compare24(vyw49, vyw50, True, dcg) -> EQ 29.11/13.94 new_ltEs21(vyw74, vyw75, ty_Int) -> new_ltEs11(vyw74, vyw75) 29.11/13.94 new_ltEs14(True, True) -> True 29.11/13.94 new_ltEs13(Right(vyw490), Left(vyw500), ga, eg) -> False 29.11/13.94 new_esEs7(vyw50, vyw300, ty_Bool) -> new_esEs24(vyw50, vyw300) 29.11/13.94 new_compare30(vyw50, vyw300, app(app(ty_Either, ceb), cec)) -> new_compare29(vyw50, vyw300, ceb, cec) 29.11/13.94 new_compare111(vyw153, vyw154, vyw155, vyw156, True, vyw158, ege, egf) -> new_compare112(vyw153, vyw154, vyw155, vyw156, True, ege, egf) 29.11/13.94 new_esEs37(vyw490, vyw500, ty_Int) -> new_esEs18(vyw490, vyw500) 29.11/13.94 new_compare10(vyw168, vyw169, vyw170, vyw171, vyw172, vyw173, True, vyw175, cgb, cgc, cgd) -> new_compare11(vyw168, vyw169, vyw170, vyw171, vyw172, vyw173, True, cgb, cgc, cgd) 29.11/13.94 new_esEs31(vyw490, vyw500, ty_@0) -> new_esEs20(vyw490, vyw500) 29.11/13.94 new_ltEs18(vyw49, vyw50, app(app(ty_@2, dd), cb)) -> new_ltEs5(vyw49, vyw50, dd, cb) 29.11/13.94 new_compare5([], :(vyw300, vyw301), cdf) -> LT 29.11/13.94 new_esEs39(vyw86, vyw89, ty_Integer) -> new_esEs16(vyw86, vyw89) 29.11/13.94 new_esEs23(Right(vyw500), Right(vyw3000), fbe, app(ty_Maybe, fde)) -> new_esEs22(vyw500, vyw3000, fde) 29.11/13.94 new_ltEs24(vyw87, vyw90, ty_Float) -> new_ltEs8(vyw87, vyw90) 29.11/13.94 new_esEs14(vyw501, vyw3001, ty_Int) -> new_esEs18(vyw501, vyw3001) 29.11/13.94 new_primEqInt(Neg(Succ(vyw5000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 29.11/13.94 new_lt22(vyw86, vyw89, ty_Char) -> new_lt15(vyw86, vyw89) 29.11/13.94 new_esEs4(vyw50, vyw300, ty_@0) -> new_esEs20(vyw50, vyw300) 29.11/13.94 new_esEs40(vyw85, vyw88, app(ty_Maybe, cce)) -> new_esEs22(vyw85, vyw88, cce) 29.11/13.94 new_primCmpInt(Neg(Zero), Pos(Succ(vyw3000))) -> LT 29.11/13.94 new_esEs7(vyw50, vyw300, app(ty_Maybe, eha)) -> new_esEs22(vyw50, vyw300, eha) 29.11/13.94 new_ltEs20(vyw104, vyw106, app(app(ty_Either, bfc), bfd)) -> new_ltEs13(vyw104, vyw106, bfc, bfd) 29.11/13.94 new_esEs23(Left(vyw500), Left(vyw3000), app(app(ty_Either, fcd), fce), fbf) -> new_esEs23(vyw500, vyw3000, fcd, fce) 29.11/13.94 new_ltEs22(vyw67, vyw68, ty_@0) -> new_ltEs9(vyw67, vyw68) 29.11/13.94 new_ltEs18(vyw49, vyw50, app(app(app(ty_@3, baf), hd), he)) -> new_ltEs16(vyw49, vyw50, baf, hd, he) 29.11/13.94 new_esEs34(vyw501, vyw3001, app(app(app(ty_@3, eed), eee), eef)) -> new_esEs26(vyw501, vyw3001, eed, eee, eef) 29.11/13.94 new_esEs5(vyw51, vyw301, ty_Double) -> new_esEs21(vyw51, vyw301) 29.11/13.94 new_esEs7(vyw50, vyw300, ty_Integer) -> new_esEs16(vyw50, vyw300) 29.11/13.94 new_primMulInt(Pos(vyw500), Pos(vyw3010)) -> Pos(new_primMulNat0(vyw500, vyw3010)) 29.11/13.94 new_esEs5(vyw51, vyw301, app(app(ty_Either, ddg), ddh)) -> new_esEs23(vyw51, vyw301, ddg, ddh) 29.11/13.94 new_esEs11(vyw50, vyw300, app(app(app(ty_@3, dcc), dcd), dce)) -> new_esEs26(vyw50, vyw300, dcc, dcd, dce) 29.11/13.94 new_ltEs20(vyw104, vyw106, ty_Double) -> new_ltEs15(vyw104, vyw106) 29.11/13.94 new_esEs23(Right(vyw500), Right(vyw3000), fbe, app(app(ty_@2, fdc), fdd)) -> new_esEs13(vyw500, vyw3000, fdc, fdd) 29.11/13.94 new_ltEs4(Just(vyw490), Just(vyw500), ty_Double) -> new_ltEs15(vyw490, vyw500) 29.11/13.94 new_esEs22(Just(vyw500), Just(vyw3000), ty_Float) -> new_esEs19(vyw500, vyw3000) 29.11/13.94 new_esEs5(vyw51, vyw301, ty_Bool) -> new_esEs24(vyw51, vyw301) 29.11/13.94 new_esEs40(vyw85, vyw88, ty_Char) -> new_esEs17(vyw85, vyw88) 29.11/13.94 new_compare12(vyw126, vyw127, False, fbd) -> GT 29.11/13.94 new_compare29(Left(vyw50), Left(vyw300), bga, bgb) -> new_compare28(vyw50, vyw300, new_esEs7(vyw50, vyw300, bga), bga, bgb) 29.11/13.94 new_ltEs18(vyw49, vyw50, ty_Integer) -> new_ltEs12(vyw49, vyw50) 29.11/13.94 new_esEs7(vyw50, vyw300, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_esEs26(vyw50, vyw300, ehe, ehf, ehg) 29.11/13.94 new_esEs32(vyw103, vyw105, ty_Double) -> new_esEs21(vyw103, vyw105) 29.11/13.94 new_primMulNat0(Succ(vyw5000), Zero) -> Zero 29.11/13.94 new_primMulNat0(Zero, Succ(vyw30100)) -> Zero 29.11/13.94 new_esEs40(vyw85, vyw88, ty_Integer) -> new_esEs16(vyw85, vyw88) 29.11/13.94 new_esEs14(vyw501, vyw3001, ty_Float) -> new_esEs19(vyw501, vyw3001) 29.11/13.94 new_esEs8(vyw50, vyw300, ty_Ordering) -> new_esEs28(vyw50, vyw300) 29.11/13.94 new_esEs7(vyw50, vyw300, ty_Char) -> new_esEs17(vyw50, vyw300) 29.11/13.94 new_ltEs13(Right(vyw490), Right(vyw500), ga, app(ty_[], hb)) -> new_ltEs17(vyw490, vyw500, hb) 29.11/13.94 new_compare5(:(vyw50, vyw51), :(vyw300, vyw301), cdf) -> new_primCompAux0(vyw50, vyw300, new_compare5(vyw51, vyw301, cdf), cdf) 29.11/13.94 new_esEs23(Left(vyw500), Left(vyw3000), app(app(app(ty_@3, fcg), fch), fda), fbf) -> new_esEs26(vyw500, vyw3000, fcg, fch, fda) 29.11/13.94 new_esEs37(vyw490, vyw500, ty_Float) -> new_esEs19(vyw490, vyw500) 29.11/13.94 new_ltEs19(vyw491, vyw501, app(app(ty_Either, dh), ea)) -> new_ltEs13(vyw491, vyw501, dh, ea) 29.11/13.94 new_esEs35(vyw500, vyw3000, ty_Ordering) -> new_esEs28(vyw500, vyw3000) 29.11/13.94 new_primPlusNat1(Succ(vyw1830), vyw30100) -> Succ(Succ(new_primPlusNat0(vyw1830, vyw30100))) 29.11/13.94 new_esEs8(vyw50, vyw300, app(app(ty_Either, fad), fae)) -> new_esEs23(vyw50, vyw300, fad, fae) 29.11/13.94 new_esEs32(vyw103, vyw105, ty_Bool) -> new_esEs24(vyw103, vyw105) 29.11/13.94 new_esEs39(vyw86, vyw89, ty_Int) -> new_esEs18(vyw86, vyw89) 29.11/13.94 new_ltEs21(vyw74, vyw75, app(ty_Ratio, ebf)) -> new_ltEs6(vyw74, vyw75, ebf) 29.11/13.94 new_lt21(vyw491, vyw501, ty_Int) -> new_lt16(vyw491, vyw501) 29.11/13.94 new_primPlusNat0(Succ(vyw18300), Zero) -> Succ(vyw18300) 29.11/13.94 new_primPlusNat0(Zero, Succ(vyw301000)) -> Succ(vyw301000) 29.11/13.94 new_esEs31(vyw490, vyw500, app(ty_Maybe, ca)) -> new_esEs22(vyw490, vyw500, ca) 29.11/13.94 new_esEs23(Left(vyw500), Left(vyw3000), app(app(ty_@2, fca), fcb), fbf) -> new_esEs13(vyw500, vyw3000, fca, fcb) 29.11/13.94 new_ltEs4(Just(vyw490), Just(vyw500), ty_Int) -> new_ltEs11(vyw490, vyw500) 29.11/13.94 new_esEs23(Left(vyw500), Left(vyw3000), ty_@0, fbf) -> new_esEs20(vyw500, vyw3000) 29.11/13.94 new_primPlusNat1(Zero, vyw30100) -> Succ(vyw30100) 29.11/13.94 new_esEs32(vyw103, vyw105, app(app(app(ty_@3, bec), bed), bee)) -> new_esEs26(vyw103, vyw105, bec, bed, bee) 29.11/13.94 new_ltEs13(Right(vyw490), Right(vyw500), ga, ty_Char) -> new_ltEs10(vyw490, vyw500) 29.11/13.94 new_esEs8(vyw50, vyw300, app(ty_[], faf)) -> new_esEs25(vyw50, vyw300, faf) 29.11/13.94 new_ltEs20(vyw104, vyw106, ty_@0) -> new_ltEs9(vyw104, vyw106) 29.11/13.94 new_ltEs22(vyw67, vyw68, app(ty_Ratio, ebh)) -> new_ltEs6(vyw67, vyw68, ebh) 29.11/13.94 new_esEs23(Left(vyw500), Left(vyw3000), ty_Bool, fbf) -> new_esEs24(vyw500, vyw3000) 29.11/13.94 new_esEs5(vyw51, vyw301, app(ty_Maybe, ddf)) -> new_esEs22(vyw51, vyw301, ddf) 29.11/13.94 new_lt19(vyw103, vyw105, ty_Double) -> new_lt9(vyw103, vyw105) 29.11/13.94 new_esEs7(vyw50, vyw300, app(app(ty_Either, ehb), ehc)) -> new_esEs23(vyw50, vyw300, ehb, ehc) 29.11/13.94 new_esEs32(vyw103, vyw105, app(app(ty_Either, bea), beb)) -> new_esEs23(vyw103, vyw105, bea, beb) 29.11/13.94 new_ltEs21(vyw74, vyw75, app(app(app(ty_@3, cff), cfg), cfh)) -> new_ltEs16(vyw74, vyw75, cff, cfg, cfh) 29.11/13.94 new_esEs6(vyw50, vyw300, app(ty_[], dfc)) -> new_esEs25(vyw50, vyw300, dfc) 29.11/13.94 new_lt20(vyw490, vyw500, ty_Int) -> new_lt16(vyw490, vyw500) 29.11/13.94 new_compare8(LT, GT) -> LT 29.11/13.94 new_esEs12(LT) -> True 29.11/13.94 new_lt23(vyw85, vyw88, ty_Char) -> new_lt15(vyw85, vyw88) 29.11/13.94 new_esEs23(Left(vyw500), Left(vyw3000), ty_Double, fbf) -> new_esEs21(vyw500, vyw3000) 29.11/13.94 new_ltEs18(vyw49, vyw50, ty_Bool) -> new_ltEs14(vyw49, vyw50) 29.11/13.94 new_lt21(vyw491, vyw501, ty_Ordering) -> new_lt12(vyw491, vyw501) 29.11/13.94 new_esEs6(vyw50, vyw300, app(ty_Maybe, deh)) -> new_esEs22(vyw50, vyw300, deh) 29.11/13.94 new_lt9(vyw5, vyw30) -> new_esEs12(new_compare18(vyw5, vyw30)) 29.11/13.94 new_esEs35(vyw500, vyw3000, ty_Float) -> new_esEs19(vyw500, vyw3000) 29.11/13.94 new_ltEs21(vyw74, vyw75, ty_@0) -> new_ltEs9(vyw74, vyw75) 29.11/13.94 new_esEs6(vyw50, vyw300, app(app(ty_Either, dfa), dfb)) -> new_esEs23(vyw50, vyw300, dfa, dfb) 29.11/13.94 new_ltEs13(Left(vyw490), Left(vyw500), ty_@0, eg) -> new_ltEs9(vyw490, vyw500) 29.11/13.94 new_esEs22(Just(vyw500), Just(vyw3000), ty_Int) -> new_esEs18(vyw500, vyw3000) 29.11/13.94 new_compare7(False, False) -> EQ 29.11/13.94 new_ltEs18(vyw49, vyw50, app(app(ty_Either, ga), eg)) -> new_ltEs13(vyw49, vyw50, ga, eg) 29.11/13.94 new_esEs5(vyw51, vyw301, ty_Char) -> new_esEs17(vyw51, vyw301) 29.11/13.94 new_ltEs15(vyw49, vyw50) -> new_fsEs(new_compare18(vyw49, vyw50)) 29.11/13.94 new_ltEs23(vyw492, vyw502, ty_Int) -> new_ltEs11(vyw492, vyw502) 29.11/13.94 new_esEs8(vyw50, vyw300, app(app(app(ty_@3, fag), fah), fba)) -> new_esEs26(vyw50, vyw300, fag, fah, fba) 29.11/13.94 new_esEs30(vyw500, vyw3000, ty_Integer) -> new_esEs16(vyw500, vyw3000) 29.11/13.94 new_ltEs19(vyw491, vyw501, app(ty_[], ee)) -> new_ltEs17(vyw491, vyw501, ee) 29.11/13.94 new_ltEs20(vyw104, vyw106, app(app(app(ty_@3, bfe), bff), bfg)) -> new_ltEs16(vyw104, vyw106, bfe, bff, bfg) 29.11/13.94 new_esEs31(vyw490, vyw500, ty_Double) -> new_esEs21(vyw490, vyw500) 29.11/13.94 new_compare29(Left(vyw50), Right(vyw300), bga, bgb) -> LT 29.11/13.94 new_primMulInt(Neg(vyw500), Neg(vyw3010)) -> Pos(new_primMulNat0(vyw500, vyw3010)) 29.11/13.94 new_primCmpInt(Pos(Zero), Pos(Succ(vyw3000))) -> new_primCmpNat0(Zero, Succ(vyw3000)) 29.11/13.94 new_esEs36(vyw491, vyw501, ty_Float) -> new_esEs19(vyw491, vyw501) 29.11/13.94 new_compare30(vyw50, vyw300, ty_Float) -> new_compare26(vyw50, vyw300) 29.11/13.94 new_esEs15(vyw500, vyw3000, ty_Int) -> new_esEs18(vyw500, vyw3000) 29.11/13.94 new_esEs31(vyw490, vyw500, app(ty_[], dc)) -> new_esEs25(vyw490, vyw500, dc) 29.11/13.94 new_compare8(EQ, GT) -> LT 29.11/13.94 new_lt20(vyw490, vyw500, ty_Ordering) -> new_lt12(vyw490, vyw500) 29.11/13.94 new_esEs40(vyw85, vyw88, app(app(ty_@2, ccf), ccg)) -> new_esEs13(vyw85, vyw88, ccf, ccg) 29.11/13.94 new_esEs9(vyw52, vyw302, ty_Ordering) -> new_esEs28(vyw52, vyw302) 29.11/13.94 new_esEs6(vyw50, vyw300, ty_Char) -> new_esEs17(vyw50, vyw300) 29.11/13.94 new_esEs31(vyw490, vyw500, ty_Bool) -> new_esEs24(vyw490, vyw500) 29.11/13.94 new_esEs38(vyw500, vyw3000, ty_Int) -> new_esEs18(vyw500, vyw3000) 29.11/13.94 new_esEs10(vyw51, vyw301, app(app(app(ty_@3, eae), eaf), eag)) -> new_esEs26(vyw51, vyw301, eae, eaf, eag) 29.11/13.94 new_ltEs20(vyw104, vyw106, app(ty_[], bfh)) -> new_ltEs17(vyw104, vyw106, bfh) 29.11/13.94 new_esEs23(Left(vyw500), Left(vyw3000), ty_Char, fbf) -> new_esEs17(vyw500, vyw3000) 29.11/13.94 new_esEs23(Left(vyw500), Left(vyw3000), ty_Integer, fbf) -> new_esEs16(vyw500, vyw3000) 29.11/13.94 new_lt14(vyw5, vyw30) -> new_esEs12(new_compare19(vyw5, vyw30)) 29.11/13.94 new_esEs4(vyw50, vyw300, app(ty_Ratio, dda)) -> new_esEs27(vyw50, vyw300, dda) 29.11/13.94 new_esEs5(vyw51, vyw301, ty_@0) -> new_esEs20(vyw51, vyw301) 29.11/13.94 new_esEs29(vyw501, vyw3001, ty_Integer) -> new_esEs16(vyw501, vyw3001) 29.11/13.94 new_compare7(True, False) -> GT 29.11/13.94 new_esEs6(vyw50, vyw300, ty_Double) -> new_esEs21(vyw50, vyw300) 29.11/13.94 new_esEs33(vyw502, vyw3002, app(app(app(ty_@3, edb), edc), edd)) -> new_esEs26(vyw502, vyw3002, edb, edc, edd) 29.11/13.94 new_esEs7(vyw50, vyw300, app(ty_[], ehd)) -> new_esEs25(vyw50, vyw300, ehd) 29.11/13.94 new_esEs23(Right(vyw500), Right(vyw3000), fbe, ty_Float) -> new_esEs19(vyw500, vyw3000) 29.11/13.94 new_ltEs21(vyw74, vyw75, ty_Double) -> new_ltEs15(vyw74, vyw75) 29.11/13.94 new_esEs39(vyw86, vyw89, app(ty_Ratio, ffg)) -> new_esEs27(vyw86, vyw89, ffg) 29.11/13.94 new_compare30(vyw50, vyw300, app(ty_Ratio, fbc)) -> new_compare9(vyw50, vyw300, fbc) 29.11/13.94 new_ltEs22(vyw67, vyw68, ty_Float) -> new_ltEs8(vyw67, vyw68) 29.11/13.94 new_esEs31(vyw490, vyw500, app(app(ty_Either, ce), cf)) -> new_esEs23(vyw490, vyw500, ce, cf) 29.11/13.94 new_ltEs4(Just(vyw490), Just(vyw500), ty_Float) -> new_ltEs8(vyw490, vyw500) 29.11/13.94 new_esEs6(vyw50, vyw300, ty_Bool) -> new_esEs24(vyw50, vyw300) 29.11/13.94 new_esEs34(vyw501, vyw3001, ty_Ordering) -> new_esEs28(vyw501, vyw3001) 29.11/13.94 new_lt13(vyw5, vyw30) -> new_esEs12(new_compare26(vyw5, vyw30)) 29.11/13.94 new_ltEs7(LT, LT) -> True 29.11/13.94 new_esEs15(vyw500, vyw3000, ty_Float) -> new_esEs19(vyw500, vyw3000) 29.11/13.94 new_esEs7(vyw50, vyw300, ty_Ordering) -> new_esEs28(vyw50, vyw300) 29.11/13.94 new_esEs15(vyw500, vyw3000, ty_Char) -> new_esEs17(vyw500, vyw3000) 29.11/13.94 new_primMulInt(Pos(vyw500), Neg(vyw3010)) -> Neg(new_primMulNat0(vyw500, vyw3010)) 29.11/13.94 new_primMulInt(Neg(vyw500), Pos(vyw3010)) -> Neg(new_primMulNat0(vyw500, vyw3010)) 29.11/13.94 new_esEs12(GT) -> False 29.11/13.94 new_esEs33(vyw502, vyw3002, ty_Double) -> new_esEs21(vyw502, vyw3002) 29.11/13.94 new_esEs36(vyw491, vyw501, ty_Int) -> new_esEs18(vyw491, vyw501) 29.11/13.94 new_esEs12(EQ) -> False 29.11/13.94 new_ltEs23(vyw492, vyw502, ty_Bool) -> new_ltEs14(vyw492, vyw502) 29.11/13.94 new_compare18(Double(vyw50, Pos(vyw510)), Double(vyw300, Pos(vyw3010))) -> new_compare13(new_sr(vyw50, Pos(vyw3010)), new_sr(Pos(vyw510), vyw300)) 29.11/13.94 new_esEs9(vyw52, vyw302, ty_Int) -> new_esEs18(vyw52, vyw302) 29.11/13.94 new_ltEs24(vyw87, vyw90, app(ty_Maybe, cbd)) -> new_ltEs4(vyw87, vyw90, cbd) 29.11/13.94 new_esEs11(vyw50, vyw300, ty_Int) -> new_esEs18(vyw50, vyw300) 29.11/13.94 new_lt21(vyw491, vyw501, ty_Float) -> new_lt13(vyw491, vyw501) 29.11/13.94 new_esEs39(vyw86, vyw89, app(ty_[], cbb)) -> new_esEs25(vyw86, vyw89, cbb) 29.11/13.94 new_esEs23(Left(vyw500), Right(vyw3000), fbe, fbf) -> False 29.11/13.94 new_esEs23(Right(vyw500), Left(vyw3000), fbe, fbf) -> False 29.11/13.94 new_esEs33(vyw502, vyw3002, ty_Bool) -> new_esEs24(vyw502, vyw3002) 29.11/13.94 new_esEs28(LT, GT) -> False 29.11/13.94 new_esEs28(GT, LT) -> False 29.11/13.94 new_ltEs23(vyw492, vyw502, ty_Float) -> new_ltEs8(vyw492, vyw502) 29.11/13.94 new_compare31(@3(vyw50, vyw51, vyw52), @3(vyw300, vyw301, vyw302), bhe, bhf, bhg) -> new_compare210(vyw50, vyw51, vyw52, vyw300, vyw301, vyw302, new_asAs(new_esEs11(vyw50, vyw300, bhe), new_asAs(new_esEs10(vyw51, vyw301, bhf), new_esEs9(vyw52, vyw302, bhg))), bhe, bhf, bhg) 29.11/13.94 new_ltEs19(vyw491, vyw501, ty_@0) -> new_ltEs9(vyw491, vyw501) 29.11/13.94 new_esEs4(vyw50, vyw300, ty_Float) -> new_esEs19(vyw50, vyw300) 29.11/13.94 new_compare5([], [], cdf) -> EQ 29.11/13.94 new_esEs10(vyw51, vyw301, ty_Integer) -> new_esEs16(vyw51, vyw301) 29.11/13.94 new_sr0(Integer(vyw500), Integer(vyw3010)) -> Integer(new_primMulInt(vyw500, vyw3010)) 29.11/13.94 new_compare24(vyw49, vyw50, False, dcg) -> new_compare12(vyw49, vyw50, new_ltEs18(vyw49, vyw50, dcg), dcg) 29.11/13.94 new_ltEs13(Left(vyw490), Left(vyw500), app(ty_Maybe, ef), eg) -> new_ltEs4(vyw490, vyw500, ef) 29.11/13.94 new_ltEs19(vyw491, vyw501, app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs16(vyw491, vyw501, eb, ec, ed) 29.11/13.94 new_lt16(vyw5, vyw30) -> new_esEs12(new_compare13(vyw5, vyw30)) 29.11/13.94 new_esEs6(vyw50, vyw300, app(ty_Ratio, dfg)) -> new_esEs27(vyw50, vyw300, dfg) 29.11/13.94 new_lt10(vyw490, vyw500, app(app(app(ty_@3, cg), da), db)) -> new_lt18(vyw490, vyw500, cg, da, db) 29.11/13.94 new_esEs35(vyw500, vyw3000, app(app(app(ty_@3, eff), efg), efh)) -> new_esEs26(vyw500, vyw3000, eff, efg, efh) 29.11/13.94 new_ltEs19(vyw491, vyw501, app(ty_Ratio, dhf)) -> new_ltEs6(vyw491, vyw501, dhf) 29.11/13.94 new_lt20(vyw490, vyw500, app(app(app(ty_@3, bab), bac), bad)) -> new_lt18(vyw490, vyw500, bab, bac, bad) 29.11/13.94 new_esEs33(vyw502, vyw3002, app(ty_Ratio, ede)) -> new_esEs27(vyw502, vyw3002, ede) 29.11/13.94 new_ltEs16(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), baf, hd, he) -> new_pePe(new_lt20(vyw490, vyw500, baf), new_asAs(new_esEs37(vyw490, vyw500, baf), new_pePe(new_lt21(vyw491, vyw501, hd), new_asAs(new_esEs36(vyw491, vyw501, hd), new_ltEs23(vyw492, vyw502, he))))) 29.11/13.94 new_esEs23(Left(vyw500), Left(vyw3000), ty_Float, fbf) -> new_esEs19(vyw500, vyw3000) 29.11/13.94 new_ltEs13(Left(vyw490), Left(vyw500), ty_Ordering, eg) -> new_ltEs7(vyw490, vyw500) 29.11/13.94 new_esEs31(vyw490, vyw500, ty_Float) -> new_esEs19(vyw490, vyw500) 29.11/13.94 new_esEs39(vyw86, vyw89, app(app(app(ty_@3, cag), cah), cba)) -> new_esEs26(vyw86, vyw89, cag, cah, cba) 29.11/13.94 new_esEs38(vyw500, vyw3000, app(app(ty_@2, fee), fef)) -> new_esEs13(vyw500, vyw3000, fee, fef) 29.11/13.94 new_ltEs21(vyw74, vyw75, app(ty_[], cga)) -> new_ltEs17(vyw74, vyw75, cga) 29.11/13.94 new_esEs9(vyw52, vyw302, ty_@0) -> new_esEs20(vyw52, vyw302) 29.11/13.94 new_esEs18(vyw50, vyw300) -> new_primEqInt(vyw50, vyw300) 29.11/13.94 new_ltEs4(Just(vyw490), Just(vyw500), app(ty_[], bh)) -> new_ltEs17(vyw490, vyw500, bh) 29.11/13.94 new_asAs(True, vyw121) -> vyw121 29.11/13.94 new_esEs21(Double(vyw500, vyw501), Double(vyw3000, vyw3001)) -> new_esEs18(new_sr(vyw500, vyw3001), new_sr(vyw501, vyw3000)) 29.11/13.94 new_esEs23(Left(vyw500), Left(vyw3000), app(ty_[], fcf), fbf) -> new_esEs25(vyw500, vyw3000, fcf) 29.11/13.94 new_compare29(Right(vyw50), Right(vyw300), bga, bgb) -> new_compare27(vyw50, vyw300, new_esEs8(vyw50, vyw300, bgb), bga, bgb) 29.11/13.94 new_lt22(vyw86, vyw89, app(app(ty_Either, cae), caf)) -> new_lt17(vyw86, vyw89, cae, caf) 29.11/13.94 new_ltEs13(Right(vyw490), Right(vyw500), ga, ty_Float) -> new_ltEs8(vyw490, vyw500) 29.11/13.94 new_lt19(vyw103, vyw105, app(app(app(ty_@3, bec), bed), bee)) -> new_lt18(vyw103, vyw105, bec, bed, bee) 29.11/13.94 new_ltEs22(vyw67, vyw68, ty_Int) -> new_ltEs11(vyw67, vyw68) 29.11/13.94 new_esEs14(vyw501, vyw3001, app(ty_Maybe, chc)) -> new_esEs22(vyw501, vyw3001, chc) 29.11/13.94 new_esEs36(vyw491, vyw501, ty_@0) -> new_esEs20(vyw491, vyw501) 29.11/13.94 new_esEs23(Right(vyw500), Right(vyw3000), fbe, app(app(ty_Either, fdf), fdg)) -> new_esEs23(vyw500, vyw3000, fdf, fdg) 29.11/13.94 new_ltEs13(Right(vyw490), Right(vyw500), ga, app(app(ty_Either, ge), gf)) -> new_ltEs13(vyw490, vyw500, ge, gf) 29.11/13.94 new_esEs31(vyw490, vyw500, ty_Char) -> new_esEs17(vyw490, vyw500) 29.11/13.94 new_ltEs4(Nothing, Just(vyw500), cge) -> True 29.11/13.94 new_ltEs4(Just(vyw490), Just(vyw500), app(app(ty_Either, bc), bd)) -> new_ltEs13(vyw490, vyw500, bc, bd) 29.11/13.94 new_esEs4(vyw50, vyw300, ty_Char) -> new_esEs17(vyw50, vyw300) 29.11/13.94 new_esEs11(vyw50, vyw300, ty_@0) -> new_esEs20(vyw50, vyw300) 29.11/13.94 new_esEs31(vyw490, vyw500, ty_Integer) -> new_esEs16(vyw490, vyw500) 29.11/13.94 new_esEs26(@3(vyw500, vyw501, vyw502), @3(vyw3000, vyw3001, vyw3002), eca, ecb, ecc) -> new_asAs(new_esEs35(vyw500, vyw3000, eca), new_asAs(new_esEs34(vyw501, vyw3001, ecb), new_esEs33(vyw502, vyw3002, ecc))) 29.11/13.94 new_esEs39(vyw86, vyw89, app(ty_Maybe, caa)) -> new_esEs22(vyw86, vyw89, caa) 29.11/13.94 new_esEs37(vyw490, vyw500, ty_Double) -> new_esEs21(vyw490, vyw500) 29.11/13.94 new_esEs38(vyw500, vyw3000, app(ty_Ratio, fff)) -> new_esEs27(vyw500, vyw3000, fff) 29.11/13.94 new_ltEs18(vyw49, vyw50, app(ty_Maybe, cge)) -> new_ltEs4(vyw49, vyw50, cge) 29.11/13.94 new_ltEs19(vyw491, vyw501, ty_Double) -> new_ltEs15(vyw491, vyw501) 29.11/13.94 new_lt23(vyw85, vyw88, ty_Bool) -> new_lt5(vyw85, vyw88) 29.11/13.94 new_ltEs13(Left(vyw490), Left(vyw500), app(app(ty_@2, eh), fa), eg) -> new_ltEs5(vyw490, vyw500, eh, fa) 29.11/13.94 new_compare30(vyw50, vyw300, app(app(ty_@2, cdh), cea)) -> new_compare14(vyw50, vyw300, cdh, cea) 29.11/13.94 new_ltEs22(vyw67, vyw68, app(app(ty_@2, bge), bgf)) -> new_ltEs5(vyw67, vyw68, bge, bgf) 29.11/13.94 new_esEs28(LT, EQ) -> False 29.11/13.94 new_esEs28(EQ, LT) -> False 29.11/13.94 new_ltEs13(Left(vyw490), Left(vyw500), ty_Double, eg) -> new_ltEs15(vyw490, vyw500) 29.11/13.94 new_esEs6(vyw50, vyw300, app(app(ty_@2, def), deg)) -> new_esEs13(vyw50, vyw300, def, deg) 29.11/13.94 new_esEs15(vyw500, vyw3000, app(app(ty_Either, daf), dag)) -> new_esEs23(vyw500, vyw3000, daf, dag) 29.11/13.94 new_primCmpInt(Pos(Succ(vyw500)), Pos(vyw300)) -> new_primCmpNat0(Succ(vyw500), vyw300) 29.11/13.94 new_esEs14(vyw501, vyw3001, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs26(vyw501, vyw3001, chg, chh, daa) 29.11/13.94 new_ltEs13(Right(vyw490), Right(vyw500), ga, app(ty_Maybe, gb)) -> new_ltEs4(vyw490, vyw500, gb) 29.11/13.94 new_lt23(vyw85, vyw88, ty_@0) -> new_lt14(vyw85, vyw88) 29.11/13.94 new_ltEs4(Just(vyw490), Just(vyw500), ty_Char) -> new_ltEs10(vyw490, vyw500) 29.11/13.94 new_esEs4(vyw50, vyw300, ty_Integer) -> new_esEs16(vyw50, vyw300) 29.11/13.94 new_esEs33(vyw502, vyw3002, app(app(ty_@2, ecd), ece)) -> new_esEs13(vyw502, vyw3002, ecd, ece) 29.11/13.94 new_compare30(vyw50, vyw300, app(ty_[], ceg)) -> new_compare5(vyw50, vyw300, ceg) 29.11/13.94 new_primCompAux00(vyw95, EQ) -> vyw95 29.11/13.94 new_ltEs22(vyw67, vyw68, ty_Char) -> new_ltEs10(vyw67, vyw68) 29.11/13.94 new_sr(vyw50, vyw301) -> new_primMulInt(vyw50, vyw301) 29.11/13.94 new_compare7(False, True) -> LT 29.11/13.94 new_esEs4(vyw50, vyw300, app(ty_Maybe, dfh)) -> new_esEs22(vyw50, vyw300, dfh) 29.11/13.94 new_esEs37(vyw490, vyw500, app(ty_Ratio, egb)) -> new_esEs27(vyw490, vyw500, egb) 29.11/13.94 new_compare8(GT, EQ) -> GT 29.11/13.94 new_esEs17(Char(vyw500), Char(vyw3000)) -> new_primEqNat0(vyw500, vyw3000) 29.11/13.94 new_esEs24(False, False) -> True 29.11/13.94 new_compare13(vyw5, vyw30) -> new_primCmpInt(vyw5, vyw30) 29.11/13.94 new_primMulNat0(Zero, Zero) -> Zero 29.11/13.94 new_esEs38(vyw500, vyw3000, ty_Double) -> new_esEs21(vyw500, vyw3000) 29.11/13.94 new_esEs10(vyw51, vyw301, app(app(ty_Either, eab), eac)) -> new_esEs23(vyw51, vyw301, eab, eac) 29.11/13.94 new_esEs11(vyw50, vyw300, ty_Char) -> new_esEs17(vyw50, vyw300) 29.11/13.94 new_esEs11(vyw50, vyw300, ty_Float) -> new_esEs19(vyw50, vyw300) 29.11/13.94 new_esEs22(Just(vyw500), Just(vyw3000), ty_Double) -> new_esEs21(vyw500, vyw3000) 29.11/13.94 new_esEs4(vyw50, vyw300, ty_Int) -> new_esEs18(vyw50, vyw300) 29.11/13.94 new_compare8(LT, LT) -> EQ 29.11/13.94 new_esEs10(vyw51, vyw301, app(ty_[], ead)) -> new_esEs25(vyw51, vyw301, ead) 29.11/13.94 new_esEs14(vyw501, vyw3001, ty_Integer) -> new_esEs16(vyw501, vyw3001) 29.11/13.94 new_esEs10(vyw51, vyw301, ty_Char) -> new_esEs17(vyw51, vyw301) 29.11/13.94 new_esEs15(vyw500, vyw3000, ty_@0) -> new_esEs20(vyw500, vyw3000) 29.11/13.94 new_compare8(LT, EQ) -> LT 29.11/13.94 new_esEs22(Just(vyw500), Just(vyw3000), ty_@0) -> new_esEs20(vyw500, vyw3000) 29.11/13.94 new_ltEs22(vyw67, vyw68, app(app(ty_Either, bgg), bgh)) -> new_ltEs13(vyw67, vyw68, bgg, bgh) 29.11/13.94 new_esEs35(vyw500, vyw3000, app(ty_[], efe)) -> new_esEs25(vyw500, vyw3000, efe) 29.11/13.94 new_ltEs7(LT, EQ) -> True 29.11/13.94 new_esEs8(vyw50, vyw300, ty_Char) -> new_esEs17(vyw50, vyw300) 29.11/13.94 new_compare30(vyw50, vyw300, ty_Int) -> new_compare13(vyw50, vyw300) 29.11/13.94 new_esEs22(Just(vyw500), Just(vyw3000), app(ty_Ratio, dhb)) -> new_esEs27(vyw500, vyw3000, dhb) 29.11/13.94 new_compare26(Float(vyw50, Pos(vyw510)), Float(vyw300, Neg(vyw3010))) -> new_compare13(new_sr(vyw50, Pos(vyw3010)), new_sr(Neg(vyw510), vyw300)) 29.11/13.94 new_compare26(Float(vyw50, Neg(vyw510)), Float(vyw300, Pos(vyw3010))) -> new_compare13(new_sr(vyw50, Neg(vyw3010)), new_sr(Pos(vyw510), vyw300)) 29.11/13.94 new_ltEs11(vyw49, vyw50) -> new_fsEs(new_compare13(vyw49, vyw50)) 29.11/13.94 new_lt19(vyw103, vyw105, app(ty_[], bef)) -> new_lt8(vyw103, vyw105, bef) 29.11/13.94 new_esEs23(Right(vyw500), Right(vyw3000), fbe, app(ty_[], fdh)) -> new_esEs25(vyw500, vyw3000, fdh) 29.11/13.94 new_ltEs20(vyw104, vyw106, app(ty_Ratio, ebd)) -> new_ltEs6(vyw104, vyw106, ebd) 29.11/13.94 new_esEs9(vyw52, vyw302, ty_Integer) -> new_esEs16(vyw52, vyw302) 29.11/13.94 new_esEs31(vyw490, vyw500, app(app(app(ty_@3, cg), da), db)) -> new_esEs26(vyw490, vyw500, cg, da, db) 29.11/13.94 new_compare30(vyw50, vyw300, ty_Integer) -> new_compare6(vyw50, vyw300) 29.11/13.94 new_ltEs13(Left(vyw490), Left(vyw500), app(ty_Ratio, dhc), eg) -> new_ltEs6(vyw490, vyw500, dhc) 29.11/13.94 new_esEs14(vyw501, vyw3001, ty_Ordering) -> new_esEs28(vyw501, vyw3001) 29.11/13.94 new_ltEs22(vyw67, vyw68, app(ty_[], bhd)) -> new_ltEs17(vyw67, vyw68, bhd) 29.11/13.94 new_lt19(vyw103, vyw105, app(app(ty_@2, bdg), bdh)) -> new_lt6(vyw103, vyw105, bdg, bdh) 29.11/13.94 new_lt18(vyw5, vyw30, bhe, bhf, bhg) -> new_esEs12(new_compare31(vyw5, vyw30, bhe, bhf, bhg)) 29.11/13.94 new_esEs28(EQ, GT) -> False 29.11/13.94 new_esEs28(GT, EQ) -> False 29.11/13.94 new_esEs8(vyw50, vyw300, ty_Float) -> new_esEs19(vyw50, vyw300) 29.11/13.94 new_compare9(:%(vyw50, vyw51), :%(vyw300, vyw301), ty_Int) -> new_compare13(new_sr(vyw50, vyw301), new_sr(vyw300, vyw51)) 29.11/13.94 new_lt23(vyw85, vyw88, ty_Integer) -> new_lt4(vyw85, vyw88) 29.11/13.94 new_esEs38(vyw500, vyw3000, ty_Bool) -> new_esEs24(vyw500, vyw3000) 29.11/13.94 new_ltEs14(False, True) -> True 29.11/13.94 new_esEs9(vyw52, vyw302, ty_Char) -> new_esEs17(vyw52, vyw302) 29.11/13.94 new_ltEs18(vyw49, vyw50, ty_Float) -> new_ltEs8(vyw49, vyw50) 29.11/13.94 new_esEs37(vyw490, vyw500, ty_@0) -> new_esEs20(vyw490, vyw500) 29.11/13.94 new_esEs32(vyw103, vyw105, ty_Char) -> new_esEs17(vyw103, vyw105) 29.11/13.94 new_esEs23(Right(vyw500), Right(vyw3000), fbe, ty_Ordering) -> new_esEs28(vyw500, vyw3000) 29.11/13.94 new_compare30(vyw50, vyw300, ty_Bool) -> new_compare7(vyw50, vyw300) 29.11/13.94 new_ltEs6(vyw49, vyw50, dch) -> new_fsEs(new_compare9(vyw49, vyw50, dch)) 29.11/13.94 new_esEs23(Left(vyw500), Left(vyw3000), ty_Int, fbf) -> new_esEs18(vyw500, vyw3000) 29.11/13.94 new_ltEs13(Right(vyw490), Right(vyw500), ga, ty_Bool) -> new_ltEs14(vyw490, vyw500) 29.11/13.94 new_esEs4(vyw50, vyw300, app(app(ty_Either, fbe), fbf)) -> new_esEs23(vyw50, vyw300, fbe, fbf) 29.11/13.94 new_esEs25(:(vyw500, vyw501), [], fbg) -> False 29.11/13.94 new_esEs25([], :(vyw3000, vyw3001), fbg) -> False 29.11/13.94 new_ltEs13(Left(vyw490), Left(vyw500), ty_Int, eg) -> new_ltEs11(vyw490, vyw500) 29.11/13.94 new_esEs8(vyw50, vyw300, ty_Integer) -> new_esEs16(vyw50, vyw300) 29.11/13.94 new_esEs10(vyw51, vyw301, app(ty_Maybe, eaa)) -> new_esEs22(vyw51, vyw301, eaa) 29.11/13.94 new_ltEs13(Right(vyw490), Right(vyw500), ga, app(app(app(ty_@3, gg), gh), ha)) -> new_ltEs16(vyw490, vyw500, gg, gh, ha) 29.11/13.94 new_primEqInt(Neg(Succ(vyw5000)), Neg(Zero)) -> False 29.11/13.94 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 29.11/13.94 new_ltEs13(Right(vyw490), Right(vyw500), ga, app(app(ty_@2, gc), gd)) -> new_ltEs5(vyw490, vyw500, gc, gd) 29.11/13.94 new_esEs7(vyw50, vyw300, app(ty_Ratio, ehh)) -> new_esEs27(vyw50, vyw300, ehh) 29.11/13.94 new_ltEs24(vyw87, vyw90, app(ty_Ratio, ffh)) -> new_ltEs6(vyw87, vyw90, ffh) 29.11/13.94 new_primEqInt(Pos(Succ(vyw5000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw5000, vyw30000) 29.11/13.94 new_esEs7(vyw50, vyw300, app(app(ty_@2, egg), egh)) -> new_esEs13(vyw50, vyw300, egg, egh) 29.11/13.94 new_esEs9(vyw52, vyw302, app(app(ty_Either, fge), fgf)) -> new_esEs23(vyw52, vyw302, fge, fgf) 29.11/13.94 new_esEs22(Just(vyw500), Just(vyw3000), app(app(ty_@2, dga), dgb)) -> new_esEs13(vyw500, vyw3000, dga, dgb) 29.11/13.94 new_lt22(vyw86, vyw89, ty_@0) -> new_lt14(vyw86, vyw89) 29.11/13.94 new_esEs9(vyw52, vyw302, ty_Float) -> new_esEs19(vyw52, vyw302) 29.11/13.94 new_ltEs13(Right(vyw490), Right(vyw500), ga, ty_Integer) -> new_ltEs12(vyw490, vyw500) 29.11/13.94 new_lt23(vyw85, vyw88, ty_Ordering) -> new_lt12(vyw85, vyw88) 29.11/13.94 new_esEs32(vyw103, vyw105, ty_@0) -> new_esEs20(vyw103, vyw105) 29.11/13.94 new_esEs37(vyw490, vyw500, app(app(ty_@2, hf), hg)) -> new_esEs13(vyw490, vyw500, hf, hg) 29.11/13.94 new_esEs4(vyw50, vyw300, app(ty_[], fbg)) -> new_esEs25(vyw50, vyw300, fbg) 29.11/13.94 new_esEs5(vyw51, vyw301, ty_Int) -> new_esEs18(vyw51, vyw301) 29.11/13.94 new_esEs11(vyw50, vyw300, app(app(ty_Either, dbh), dca)) -> new_esEs23(vyw50, vyw300, dbh, dca) 29.11/13.94 new_primEqInt(Pos(Succ(vyw5000)), Neg(vyw3000)) -> False 29.11/13.94 new_primEqInt(Neg(Succ(vyw5000)), Pos(vyw3000)) -> False 29.11/13.94 new_esEs10(vyw51, vyw301, ty_Float) -> new_esEs19(vyw51, vyw301) 29.11/13.94 new_lt20(vyw490, vyw500, app(app(ty_@2, hf), hg)) -> new_lt6(vyw490, vyw500, hf, hg) 29.11/13.94 new_esEs15(vyw500, vyw3000, ty_Integer) -> new_esEs16(vyw500, vyw3000) 29.11/13.94 new_ltEs21(vyw74, vyw75, app(app(ty_Either, cfd), cfe)) -> new_ltEs13(vyw74, vyw75, cfd, cfe) 29.11/13.94 new_primCmpInt(Neg(Zero), Neg(Succ(vyw3000))) -> new_primCmpNat0(Succ(vyw3000), Zero) 29.11/13.94 new_lt23(vyw85, vyw88, ty_Int) -> new_lt16(vyw85, vyw88) 29.11/13.94 new_esEs8(vyw50, vyw300, app(ty_Maybe, fac)) -> new_esEs22(vyw50, vyw300, fac) 29.11/13.94 new_lt23(vyw85, vyw88, app(app(ty_Either, cch), cda)) -> new_lt17(vyw85, vyw88, cch, cda) 29.11/13.94 new_esEs15(vyw500, vyw3000, app(ty_Maybe, dae)) -> new_esEs22(vyw500, vyw3000, dae) 29.11/13.94 new_lt22(vyw86, vyw89, ty_Bool) -> new_lt5(vyw86, vyw89) 29.11/13.94 new_compare9(:%(vyw50, vyw51), :%(vyw300, vyw301), ty_Integer) -> new_compare6(new_sr0(vyw50, vyw301), new_sr0(vyw300, vyw51)) 29.11/13.94 new_esEs35(vyw500, vyw3000, ty_Int) -> new_esEs18(vyw500, vyw3000) 29.11/13.94 new_ltEs23(vyw492, vyw502, app(ty_Maybe, bbh)) -> new_ltEs4(vyw492, vyw502, bbh) 29.11/13.94 new_esEs34(vyw501, vyw3001, app(ty_[], eec)) -> new_esEs25(vyw501, vyw3001, eec) 29.11/13.94 new_ltEs13(Right(vyw490), Right(vyw500), ga, app(ty_Ratio, dhd)) -> new_ltEs6(vyw490, vyw500, dhd) 29.11/13.94 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 29.11/13.94 new_lt22(vyw86, vyw89, ty_Double) -> new_lt9(vyw86, vyw89) 29.11/13.94 new_esEs40(vyw85, vyw88, app(ty_[], cde)) -> new_esEs25(vyw85, vyw88, cde) 29.11/13.94 new_lt23(vyw85, vyw88, app(ty_Ratio, fga)) -> new_lt11(vyw85, vyw88, fga) 29.11/13.94 new_lt5(vyw5, vyw30) -> new_esEs12(new_compare7(vyw5, vyw30)) 29.11/13.94 new_lt23(vyw85, vyw88, app(app(ty_@2, ccf), ccg)) -> new_lt6(vyw85, vyw88, ccf, ccg) 29.11/13.94 new_esEs22(Just(vyw500), Just(vyw3000), app(app(ty_Either, dgd), dge)) -> new_esEs23(vyw500, vyw3000, dgd, dge) 29.11/13.94 new_esEs39(vyw86, vyw89, ty_Float) -> new_esEs19(vyw86, vyw89) 29.11/13.94 new_esEs14(vyw501, vyw3001, app(app(ty_Either, chd), che)) -> new_esEs23(vyw501, vyw3001, chd, che) 29.11/13.94 new_esEs15(vyw500, vyw3000, app(ty_[], dah)) -> new_esEs25(vyw500, vyw3000, dah) 29.11/13.94 new_esEs9(vyw52, vyw302, app(ty_Maybe, fgd)) -> new_esEs22(vyw52, vyw302, fgd) 29.11/13.94 new_lt20(vyw490, vyw500, ty_Integer) -> new_lt4(vyw490, vyw500) 29.11/13.94 new_esEs34(vyw501, vyw3001, ty_Double) -> new_esEs21(vyw501, vyw3001) 29.11/13.94 new_esEs36(vyw491, vyw501, app(ty_Maybe, bag)) -> new_esEs22(vyw491, vyw501, bag) 29.11/13.94 new_lt20(vyw490, vyw500, ty_Char) -> new_lt15(vyw490, vyw500) 29.11/13.94 new_compare12(vyw126, vyw127, True, fbd) -> LT 29.11/13.94 new_esEs23(Left(vyw500), Left(vyw3000), app(ty_Ratio, fdb), fbf) -> new_esEs27(vyw500, vyw3000, fdb) 29.11/13.94 new_compare8(GT, LT) -> GT 29.11/13.94 new_ltEs18(vyw49, vyw50, app(ty_Ratio, dch)) -> new_ltEs6(vyw49, vyw50, dch) 29.11/13.94 new_ltEs22(vyw67, vyw68, ty_Integer) -> new_ltEs12(vyw67, vyw68) 29.11/13.94 new_compare10(vyw168, vyw169, vyw170, vyw171, vyw172, vyw173, False, vyw175, cgb, cgc, cgd) -> new_compare11(vyw168, vyw169, vyw170, vyw171, vyw172, vyw173, vyw175, cgb, cgc, cgd) 29.11/13.94 new_esEs32(vyw103, vyw105, app(app(ty_@2, bdg), bdh)) -> new_esEs13(vyw103, vyw105, bdg, bdh) 29.11/13.94 new_lt15(vyw5, vyw30) -> new_esEs12(new_compare17(vyw5, vyw30)) 29.11/13.94 new_esEs32(vyw103, vyw105, app(ty_Ratio, ebc)) -> new_esEs27(vyw103, vyw105, ebc) 29.11/13.94 new_esEs36(vyw491, vyw501, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs26(vyw491, vyw501, bbd, bbe, bbf) 29.11/13.94 new_compare30(vyw50, vyw300, ty_Ordering) -> new_compare8(vyw50, vyw300) 29.11/13.94 new_ltEs23(vyw492, vyw502, ty_Char) -> new_ltEs10(vyw492, vyw502) 29.11/13.94 new_esEs25([], [], fbg) -> True 29.11/13.94 new_esEs38(vyw500, vyw3000, app(app(app(ty_@3, ffc), ffd), ffe)) -> new_esEs26(vyw500, vyw3000, ffc, ffd, ffe) 29.11/13.94 new_compare112(vyw153, vyw154, vyw155, vyw156, False, ege, egf) -> GT 29.11/13.94 new_esEs34(vyw501, vyw3001, ty_Bool) -> new_esEs24(vyw501, vyw3001) 29.11/13.94 new_ltEs7(EQ, GT) -> True 29.11/13.94 new_compare29(Right(vyw50), Left(vyw300), bga, bgb) -> GT 29.11/13.94 new_compare30(vyw50, vyw300, ty_@0) -> new_compare19(vyw50, vyw300) 29.11/13.94 new_esEs11(vyw50, vyw300, ty_Double) -> new_esEs21(vyw50, vyw300) 29.11/13.94 new_not(False) -> True 29.11/13.94 new_ltEs24(vyw87, vyw90, ty_@0) -> new_ltEs9(vyw87, vyw90) 29.11/13.94 new_esEs37(vyw490, vyw500, app(app(ty_Either, hh), baa)) -> new_esEs23(vyw490, vyw500, hh, baa) 29.11/13.94 new_compare8(EQ, LT) -> GT 29.11/13.94 new_esEs6(vyw50, vyw300, ty_Ordering) -> new_esEs28(vyw50, vyw300) 29.11/13.94 new_lt22(vyw86, vyw89, app(ty_[], cbb)) -> new_lt8(vyw86, vyw89, cbb) 29.11/13.94 new_esEs10(vyw51, vyw301, ty_Int) -> new_esEs18(vyw51, vyw301) 29.11/13.94 new_lt20(vyw490, vyw500, ty_Float) -> new_lt13(vyw490, vyw500) 29.11/13.94 new_esEs11(vyw50, vyw300, ty_Bool) -> new_esEs24(vyw50, vyw300) 29.11/13.94 new_compare30(vyw50, vyw300, app(ty_Maybe, cdg)) -> new_compare16(vyw50, vyw300, cdg) 29.11/13.94 new_lt21(vyw491, vyw501, app(app(ty_Either, bbb), bbc)) -> new_lt17(vyw491, vyw501, bbb, bbc) 29.11/13.94 new_esEs33(vyw502, vyw3002, ty_@0) -> new_esEs20(vyw502, vyw3002) 29.11/13.94 new_primPlusNat0(Succ(vyw18300), Succ(vyw301000)) -> Succ(Succ(new_primPlusNat0(vyw18300, vyw301000))) 29.11/13.94 new_ltEs24(vyw87, vyw90, ty_Bool) -> new_ltEs14(vyw87, vyw90) 29.11/13.94 new_esEs16(Integer(vyw500), Integer(vyw3000)) -> new_primEqInt(vyw500, vyw3000) 29.11/13.94 new_ltEs12(vyw49, vyw50) -> new_fsEs(new_compare6(vyw49, vyw50)) 29.11/13.94 new_ltEs7(EQ, EQ) -> True 29.11/13.94 new_esEs22(Just(vyw500), Just(vyw3000), ty_Char) -> new_esEs17(vyw500, vyw3000) 29.11/13.94 new_ltEs19(vyw491, vyw501, ty_Ordering) -> new_ltEs7(vyw491, vyw501) 29.11/13.94 new_esEs10(vyw51, vyw301, ty_@0) -> new_esEs20(vyw51, vyw301) 29.11/13.94 new_ltEs7(GT, EQ) -> False 29.11/13.94 new_esEs5(vyw51, vyw301, ty_Float) -> new_esEs19(vyw51, vyw301) 29.11/13.94 new_esEs11(vyw50, vyw300, ty_Integer) -> new_esEs16(vyw50, vyw300) 29.11/13.94 new_compare27(vyw74, vyw75, True, ceh, ebe) -> EQ 29.11/13.94 new_esEs33(vyw502, vyw3002, ty_Int) -> new_esEs18(vyw502, vyw3002) 29.11/13.94 new_lt20(vyw490, vyw500, app(ty_[], bae)) -> new_lt8(vyw490, vyw500, bae) 29.11/13.94 new_ltEs24(vyw87, vyw90, ty_Integer) -> new_ltEs12(vyw87, vyw90) 29.11/13.94 new_lt21(vyw491, vyw501, app(app(ty_@2, bah), bba)) -> new_lt6(vyw491, vyw501, bah, bba) 29.11/13.94 new_esEs6(vyw50, vyw300, ty_Int) -> new_esEs18(vyw50, vyw300) 29.11/13.94 new_esEs34(vyw501, vyw3001, ty_Integer) -> new_esEs16(vyw501, vyw3001) 29.11/13.94 new_ltEs4(Just(vyw490), Just(vyw500), app(app(ty_@2, ba), bb)) -> new_ltEs5(vyw490, vyw500, ba, bb) 29.11/13.94 new_esEs37(vyw490, vyw500, ty_Char) -> new_esEs17(vyw490, vyw500) 29.11/13.94 new_ltEs24(vyw87, vyw90, app(app(app(ty_@3, cca), ccb), ccc)) -> new_ltEs16(vyw87, vyw90, cca, ccb, ccc) 29.11/13.94 new_lt23(vyw85, vyw88, ty_Double) -> new_lt9(vyw85, vyw88) 29.11/13.94 new_ltEs20(vyw104, vyw106, ty_Ordering) -> new_ltEs7(vyw104, vyw106) 29.11/13.94 new_lt22(vyw86, vyw89, app(ty_Ratio, ffg)) -> new_lt11(vyw86, vyw89, ffg) 29.11/13.94 new_ltEs19(vyw491, vyw501, ty_Char) -> new_ltEs10(vyw491, vyw501) 29.11/13.94 new_esEs32(vyw103, vyw105, ty_Float) -> new_esEs19(vyw103, vyw105) 29.11/13.94 new_esEs22(Just(vyw500), Just(vyw3000), ty_Ordering) -> new_esEs28(vyw500, vyw3000) 29.11/13.94 new_ltEs17(vyw49, vyw50, bda) -> new_fsEs(new_compare5(vyw49, vyw50, bda)) 29.11/13.94 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 29.11/13.94 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 29.11/13.94 new_esEs11(vyw50, vyw300, app(ty_Maybe, dbg)) -> new_esEs22(vyw50, vyw300, dbg) 29.11/13.94 new_esEs34(vyw501, vyw3001, app(ty_Maybe, edh)) -> new_esEs22(vyw501, vyw3001, edh) 29.11/13.94 new_lt19(vyw103, vyw105, ty_Char) -> new_lt15(vyw103, vyw105) 29.11/13.94 new_esEs14(vyw501, vyw3001, ty_Char) -> new_esEs17(vyw501, vyw3001) 29.11/13.94 new_ltEs4(Just(vyw490), Just(vyw500), ty_Bool) -> new_ltEs14(vyw490, vyw500) 29.11/13.94 new_lt23(vyw85, vyw88, app(ty_Maybe, cce)) -> new_lt7(vyw85, vyw88, cce) 29.11/13.94 new_ltEs22(vyw67, vyw68, ty_Bool) -> new_ltEs14(vyw67, vyw68) 29.11/13.94 new_ltEs13(Left(vyw490), Left(vyw500), app(app(app(ty_@3, fd), ff), fg), eg) -> new_ltEs16(vyw490, vyw500, fd, ff, fg) 29.11/13.94 new_esEs35(vyw500, vyw3000, app(app(ty_Either, efc), efd)) -> new_esEs23(vyw500, vyw3000, efc, efd) 29.11/13.94 new_compare30(vyw50, vyw300, ty_Double) -> new_compare18(vyw50, vyw300) 29.11/13.94 new_esEs34(vyw501, vyw3001, ty_Char) -> new_esEs17(vyw501, vyw3001) 29.11/13.94 new_esEs38(vyw500, vyw3000, app(ty_[], ffb)) -> new_esEs25(vyw500, vyw3000, ffb) 29.11/13.94 new_esEs22(Just(vyw500), Just(vyw3000), ty_Bool) -> new_esEs24(vyw500, vyw3000) 29.11/13.94 new_lt22(vyw86, vyw89, ty_Float) -> new_lt13(vyw86, vyw89) 29.11/13.94 new_ltEs7(EQ, LT) -> False 29.11/13.94 new_lt10(vyw490, vyw500, app(app(ty_@2, cc), cd)) -> new_lt6(vyw490, vyw500, cc, cd) 29.11/13.94 new_ltEs23(vyw492, vyw502, ty_Ordering) -> new_ltEs7(vyw492, vyw502) 29.11/13.94 new_esEs9(vyw52, vyw302, app(app(ty_@2, fgb), fgc)) -> new_esEs13(vyw52, vyw302, fgb, fgc) 29.11/13.94 new_lt20(vyw490, vyw500, app(ty_Ratio, egb)) -> new_lt11(vyw490, vyw500, egb) 29.11/13.94 new_ltEs23(vyw492, vyw502, app(app(ty_Either, bcc), bcd)) -> new_ltEs13(vyw492, vyw502, bcc, bcd) 29.11/13.94 new_ltEs5(@2(vyw490, vyw491), @2(vyw500, vyw501), dd, cb) -> new_pePe(new_lt10(vyw490, vyw500, dd), new_asAs(new_esEs31(vyw490, vyw500, dd), new_ltEs19(vyw491, vyw501, cb))) 29.11/13.94 new_ltEs18(vyw49, vyw50, ty_Int) -> new_ltEs11(vyw49, vyw50) 29.11/13.94 new_compare30(vyw50, vyw300, app(app(app(ty_@3, ced), cee), cef)) -> new_compare31(vyw50, vyw300, ced, cee, cef) 29.11/13.94 new_esEs15(vyw500, vyw3000, ty_Ordering) -> new_esEs28(vyw500, vyw3000) 29.11/13.94 new_esEs31(vyw490, vyw500, ty_Int) -> new_esEs18(vyw490, vyw500) 29.11/13.94 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 29.11/13.94 new_ltEs13(Right(vyw490), Right(vyw500), ga, ty_@0) -> new_ltEs9(vyw490, vyw500) 29.11/13.94 new_ltEs23(vyw492, vyw502, app(app(ty_@2, bca), bcb)) -> new_ltEs5(vyw492, vyw502, bca, bcb) 29.11/13.94 new_ltEs4(Just(vyw490), Just(vyw500), ty_Integer) -> new_ltEs12(vyw490, vyw500) 29.11/13.94 new_esEs14(vyw501, vyw3001, ty_Bool) -> new_esEs24(vyw501, vyw3001) 29.11/13.94 new_esEs40(vyw85, vyw88, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs26(vyw85, vyw88, cdb, cdc, cdd) 29.11/13.94 new_esEs35(vyw500, vyw3000, ty_Char) -> new_esEs17(vyw500, vyw3000) 29.11/13.94 new_esEs25(:(vyw500, vyw501), :(vyw3000, vyw3001), fbg) -> new_asAs(new_esEs38(vyw500, vyw3000, fbg), new_esEs25(vyw501, vyw3001, fbg)) 29.11/13.94 new_ltEs14(False, False) -> True 29.11/13.94 new_ltEs7(GT, LT) -> False 29.11/13.94 new_esEs37(vyw490, vyw500, ty_Bool) -> new_esEs24(vyw490, vyw500) 29.11/13.94 new_lt20(vyw490, vyw500, ty_@0) -> new_lt14(vyw490, vyw500) 29.11/13.94 new_esEs7(vyw50, vyw300, ty_Float) -> new_esEs19(vyw50, vyw300) 29.11/13.94 new_primCmpNat0(Succ(vyw500), Succ(vyw3000)) -> new_primCmpNat0(vyw500, vyw3000) 29.11/13.94 new_lt19(vyw103, vyw105, ty_Float) -> new_lt13(vyw103, vyw105) 29.11/13.94 new_esEs14(vyw501, vyw3001, ty_Double) -> new_esEs21(vyw501, vyw3001) 29.11/13.94 new_ltEs13(Left(vyw490), Left(vyw500), ty_Char, eg) -> new_ltEs10(vyw490, vyw500) 29.11/13.94 new_ltEs22(vyw67, vyw68, ty_Ordering) -> new_ltEs7(vyw67, vyw68) 29.11/13.94 new_esEs38(vyw500, vyw3000, ty_Ordering) -> new_esEs28(vyw500, vyw3000) 29.11/13.94 new_esEs11(vyw50, vyw300, app(app(ty_@2, dbe), dbf)) -> new_esEs13(vyw50, vyw300, dbe, dbf) 29.11/13.94 new_ltEs13(Left(vyw490), Left(vyw500), app(ty_[], fh), eg) -> new_ltEs17(vyw490, vyw500, fh) 29.11/13.94 new_compare8(EQ, EQ) -> EQ 29.11/13.94 new_lt8(vyw5, vyw30, cdf) -> new_esEs12(new_compare5(vyw5, vyw30, cdf)) 29.11/13.94 new_ltEs8(vyw49, vyw50) -> new_fsEs(new_compare26(vyw49, vyw50)) 29.11/13.94 new_lt22(vyw86, vyw89, app(ty_Maybe, caa)) -> new_lt7(vyw86, vyw89, caa) 29.11/13.94 new_lt10(vyw490, vyw500, ty_Float) -> new_lt13(vyw490, vyw500) 29.11/13.94 new_esEs36(vyw491, vyw501, ty_Integer) -> new_esEs16(vyw491, vyw501) 29.11/13.94 new_esEs4(vyw50, vyw300, app(app(app(ty_@3, eca), ecb), ecc)) -> new_esEs26(vyw50, vyw300, eca, ecb, ecc) 29.11/13.94 new_ltEs24(vyw87, vyw90, app(app(ty_@2, cbe), cbf)) -> new_ltEs5(vyw87, vyw90, cbe, cbf) 29.11/13.94 new_compare15(vyw133, vyw134, False, ddb, ddc) -> GT 29.11/13.94 new_ltEs20(vyw104, vyw106, ty_Char) -> new_ltEs10(vyw104, vyw106) 29.11/13.94 new_esEs36(vyw491, vyw501, ty_Char) -> new_esEs17(vyw491, vyw501) 29.11/13.94 new_lt20(vyw490, vyw500, ty_Bool) -> new_lt5(vyw490, vyw500) 29.11/13.94 new_ltEs21(vyw74, vyw75, app(ty_Maybe, cfa)) -> new_ltEs4(vyw74, vyw75, cfa) 29.11/13.94 new_ltEs7(LT, GT) -> True 29.11/13.94 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 29.11/13.94 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 29.11/13.94 new_esEs23(Right(vyw500), Right(vyw3000), fbe, ty_@0) -> new_esEs20(vyw500, vyw3000) 29.11/13.94 new_esEs35(vyw500, vyw3000, app(app(ty_@2, eeh), efa)) -> new_esEs13(vyw500, vyw3000, eeh, efa) 29.11/13.94 new_lt21(vyw491, vyw501, app(ty_Ratio, egc)) -> new_lt11(vyw491, vyw501, egc) 29.11/13.94 new_ltEs21(vyw74, vyw75, ty_Ordering) -> new_ltEs7(vyw74, vyw75) 29.11/13.94 new_esEs36(vyw491, vyw501, app(ty_[], bbg)) -> new_esEs25(vyw491, vyw501, bbg) 29.11/13.94 new_ltEs19(vyw491, vyw501, app(ty_Maybe, de)) -> new_ltEs4(vyw491, vyw501, de) 29.11/13.94 new_compare110(vyw141, vyw142, False, eba, ebb) -> GT 29.11/13.94 new_lt6(vyw5, vyw30, bdc, bdd) -> new_esEs12(new_compare14(vyw5, vyw30, bdc, bdd)) 29.11/13.94 new_lt21(vyw491, vyw501, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_lt18(vyw491, vyw501, bbd, bbe, bbf) 29.11/13.94 new_lt12(vyw5, vyw30) -> new_esEs12(new_compare8(vyw5, vyw30)) 29.11/13.94 new_esEs36(vyw491, vyw501, ty_Double) -> new_esEs21(vyw491, vyw501) 29.11/13.94 new_ltEs9(vyw49, vyw50) -> new_fsEs(new_compare19(vyw49, vyw50)) 29.11/13.94 new_primEqNat0(Zero, Zero) -> True 29.11/13.94 new_compare17(Char(vyw50), Char(vyw300)) -> new_primCmpNat0(vyw50, vyw300) 29.11/13.94 new_esEs11(vyw50, vyw300, app(ty_Ratio, dcf)) -> new_esEs27(vyw50, vyw300, dcf) 29.11/13.94 new_esEs23(Right(vyw500), Right(vyw3000), fbe, ty_Integer) -> new_esEs16(vyw500, vyw3000) 29.11/13.94 new_lt21(vyw491, vyw501, app(ty_Maybe, bag)) -> new_lt7(vyw491, vyw501, bag) 29.11/13.94 new_esEs35(vyw500, vyw3000, ty_Integer) -> new_esEs16(vyw500, vyw3000) 29.11/13.94 new_compare16(Nothing, Just(vyw300), bdb) -> LT 29.11/13.94 new_esEs34(vyw501, vyw3001, app(ty_Ratio, eeg)) -> new_esEs27(vyw501, vyw3001, eeg) 29.11/13.94 new_esEs34(vyw501, vyw3001, app(app(ty_@2, edf), edg)) -> new_esEs13(vyw501, vyw3001, edf, edg) 29.11/13.94 new_lt21(vyw491, vyw501, app(ty_[], bbg)) -> new_lt8(vyw491, vyw501, bbg) 29.11/13.94 new_ltEs14(True, False) -> False 29.11/13.94 new_esEs15(vyw500, vyw3000, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs26(vyw500, vyw3000, dba, dbb, dbc) 29.11/13.94 new_esEs36(vyw491, vyw501, app(app(ty_Either, bbb), bbc)) -> new_esEs23(vyw491, vyw501, bbb, bbc) 29.11/13.94 new_esEs23(Right(vyw500), Right(vyw3000), fbe, ty_Bool) -> new_esEs24(vyw500, vyw3000) 29.11/13.94 new_compare11(vyw168, vyw169, vyw170, vyw171, vyw172, vyw173, True, cgb, cgc, cgd) -> LT 29.11/13.94 new_esEs23(Right(vyw500), Right(vyw3000), fbe, app(app(app(ty_@3, fea), feb), fec)) -> new_esEs26(vyw500, vyw3000, fea, feb, fec) 29.11/13.94 new_esEs23(Left(vyw500), Left(vyw3000), app(ty_Maybe, fcc), fbf) -> new_esEs22(vyw500, vyw3000, fcc) 29.11/13.94 new_asAs(False, vyw121) -> False 29.11/13.94 new_ltEs4(Just(vyw490), Just(vyw500), ty_Ordering) -> new_ltEs7(vyw490, vyw500) 29.11/13.94 new_ltEs21(vyw74, vyw75, ty_Char) -> new_ltEs10(vyw74, vyw75) 29.11/13.94 new_esEs37(vyw490, vyw500, app(ty_[], bae)) -> new_esEs25(vyw490, vyw500, bae) 29.11/13.94 new_esEs40(vyw85, vyw88, ty_Ordering) -> new_esEs28(vyw85, vyw88) 29.11/13.94 new_esEs23(Right(vyw500), Right(vyw3000), fbe, ty_Double) -> new_esEs21(vyw500, vyw3000) 29.11/13.94 new_lt19(vyw103, vyw105, ty_Integer) -> new_lt4(vyw103, vyw105) 29.11/13.94 new_esEs9(vyw52, vyw302, app(ty_Ratio, fhc)) -> new_esEs27(vyw52, vyw302, fhc) 29.11/13.94 new_esEs14(vyw501, vyw3001, app(ty_[], chf)) -> new_esEs25(vyw501, vyw3001, chf) 29.11/13.94 new_compare28(vyw67, vyw68, True, ebg, bgd) -> EQ 29.11/13.94 new_ltEs20(vyw104, vyw106, app(ty_Maybe, beh)) -> new_ltEs4(vyw104, vyw106, beh) 29.11/13.94 new_esEs32(vyw103, vyw105, ty_Int) -> new_esEs18(vyw103, vyw105) 29.11/13.94 new_ltEs24(vyw87, vyw90, app(app(ty_Either, cbg), cbh)) -> new_ltEs13(vyw87, vyw90, cbg, cbh) 29.11/13.94 new_esEs4(vyw50, vyw300, ty_Ordering) -> new_esEs28(vyw50, vyw300) 29.11/13.94 new_esEs8(vyw50, vyw300, ty_Int) -> new_esEs18(vyw50, vyw300) 29.11/13.94 new_esEs35(vyw500, vyw3000, app(ty_Maybe, efb)) -> new_esEs22(vyw500, vyw3000, efb) 29.11/13.94 new_ltEs23(vyw492, vyw502, ty_Integer) -> new_ltEs12(vyw492, vyw502) 29.11/13.94 new_esEs35(vyw500, vyw3000, ty_@0) -> new_esEs20(vyw500, vyw3000) 29.11/13.94 new_lt10(vyw490, vyw500, app(ty_Maybe, ca)) -> new_lt7(vyw490, vyw500, ca) 29.11/13.94 new_esEs36(vyw491, vyw501, ty_Bool) -> new_esEs24(vyw491, vyw501) 29.11/13.94 new_esEs6(vyw50, vyw300, ty_Float) -> new_esEs19(vyw50, vyw300) 29.11/13.94 new_esEs39(vyw86, vyw89, ty_Ordering) -> new_esEs28(vyw86, vyw89) 29.11/13.94 new_lt10(vyw490, vyw500, app(ty_[], dc)) -> new_lt8(vyw490, vyw500, dc) 29.11/13.94 29.11/13.94 The set Q consists of the following terms: 29.11/13.94 29.11/13.94 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 29.11/13.94 new_esEs36(x0, x1, ty_Char) 29.11/13.94 new_esEs27(:%(x0, x1), :%(x2, x3), x4) 29.11/13.94 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_esEs24(False, True) 29.11/13.94 new_esEs24(True, False) 29.11/13.94 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_esEs34(x0, x1, ty_Int) 29.11/13.94 new_esEs37(x0, x1, ty_Ordering) 29.11/13.94 new_esEs39(x0, x1, ty_Double) 29.11/13.94 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_esEs35(x0, x1, ty_Double) 29.11/13.94 new_lt20(x0, x1, app(ty_[], x2)) 29.11/13.94 new_ltEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 29.11/13.94 new_compare8(LT, GT) 29.11/13.94 new_compare8(GT, LT) 29.11/13.94 new_esEs31(x0, x1, ty_Int) 29.11/13.94 new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 29.11/13.94 new_lt19(x0, x1, ty_Integer) 29.11/13.94 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_esEs8(x0, x1, app(ty_[], x2)) 29.11/13.94 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_lt22(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_esEs23(Right(x0), Right(x1), x2, ty_Int) 29.11/13.94 new_esEs7(x0, x1, ty_@0) 29.11/13.94 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 29.11/13.94 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_esEs39(x0, x1, ty_Ordering) 29.11/13.94 new_esEs31(x0, x1, ty_Char) 29.11/13.94 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 29.11/13.94 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 29.11/13.94 new_esEs35(x0, x1, ty_Ordering) 29.11/13.94 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 29.11/13.94 new_compare12(x0, x1, True, x2) 29.11/13.94 new_ltEs21(x0, x1, app(ty_[], x2)) 29.11/13.94 new_esEs23(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 29.11/13.94 new_lt19(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_esEs7(x0, x1, ty_Bool) 29.11/13.94 new_lt18(x0, x1, x2, x3, x4) 29.11/13.94 new_esEs34(x0, x1, ty_Ordering) 29.11/13.94 new_esEs23(Right(x0), Right(x1), x2, ty_Ordering) 29.11/13.94 new_esEs35(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_esEs20(@0, @0) 29.11/13.94 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_ltEs18(x0, x1, app(ty_[], x2)) 29.11/13.94 new_compare29(Left(x0), Left(x1), x2, x3) 29.11/13.94 new_esEs38(x0, x1, ty_Float) 29.11/13.94 new_primEqInt(Pos(Zero), Pos(Zero)) 29.11/13.94 new_esEs33(x0, x1, ty_@0) 29.11/13.94 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 29.11/13.94 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_esEs7(x0, x1, ty_Integer) 29.11/13.94 new_esEs10(x0, x1, ty_Integer) 29.11/13.94 new_esEs4(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_esEs36(x0, x1, ty_Int) 29.11/13.94 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_esEs23(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 29.11/13.94 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_esEs28(EQ, EQ) 29.11/13.94 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_esEs5(x0, x1, app(ty_[], x2)) 29.11/13.94 new_asAs(False, x0) 29.11/13.94 new_lt19(x0, x1, ty_Bool) 29.11/13.94 new_ltEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) 29.11/13.94 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_esEs34(x0, x1, ty_Char) 29.11/13.94 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_esEs11(x0, x1, ty_Bool) 29.11/13.94 new_ltEs21(x0, x1, ty_Float) 29.11/13.94 new_lt21(x0, x1, app(ty_[], x2)) 29.11/13.94 new_esEs10(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_esEs40(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_primEqInt(Neg(Zero), Neg(Zero)) 29.11/13.94 new_esEs18(x0, x1) 29.11/13.94 new_lt21(x0, x1, ty_Ordering) 29.11/13.94 new_esEs23(Right(x0), Right(x1), x2, ty_Char) 29.11/13.94 new_esEs36(x0, x1, ty_Double) 29.11/13.94 new_esEs34(x0, x1, ty_Double) 29.11/13.94 new_esEs23(Right(x0), Right(x1), x2, ty_Double) 29.11/13.94 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_esEs10(x0, x1, ty_Bool) 29.11/13.94 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_esEs35(x0, x1, ty_Char) 29.11/13.94 new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_esEs40(x0, x1, ty_Ordering) 29.11/13.94 new_esEs39(x0, x1, ty_Char) 29.11/13.94 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_esEs22(Nothing, Just(x0), x1) 29.11/13.94 new_ltEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 29.11/13.94 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_esEs40(x0, x1, app(ty_[], x2)) 29.11/13.94 new_primCmpNat0(Zero, Succ(x0)) 29.11/13.94 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_pePe(True, x0) 29.11/13.94 new_ltEs13(Right(x0), Right(x1), x2, ty_Double) 29.11/13.94 new_lt19(x0, x1, app(ty_[], x2)) 29.11/13.94 new_esEs9(x0, x1, ty_Bool) 29.11/13.94 new_ltEs4(Nothing, Nothing, x0) 29.11/13.94 new_esEs33(x0, x1, ty_Ordering) 29.11/13.94 new_compare28(x0, x1, True, x2, x3) 29.11/13.94 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_ltEs4(Just(x0), Just(x1), ty_Bool) 29.11/13.94 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_ltEs13(Left(x0), Left(x1), ty_Double, x2) 29.11/13.94 new_ltEs4(Just(x0), Just(x1), ty_Float) 29.11/13.94 new_esEs10(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_ltEs20(x0, x1, ty_Double) 29.11/13.94 new_esEs36(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_compare25(x0, x1, x2, x3, True, x4, x5) 29.11/13.94 new_lt10(x0, x1, app(ty_[], x2)) 29.11/13.94 new_ltEs19(x0, x1, ty_Double) 29.11/13.94 new_ltEs23(x0, x1, ty_Float) 29.11/13.94 new_compare30(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_esEs7(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_esEs28(LT, GT) 29.11/13.94 new_esEs28(GT, LT) 29.11/13.94 new_esEs9(x0, x1, ty_Float) 29.11/13.94 new_primMulNat0(Succ(x0), Succ(x1)) 29.11/13.94 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_esEs25([], :(x0, x1), x2) 29.11/13.94 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_esEs31(x0, x1, ty_Double) 29.11/13.94 new_esEs36(x0, x1, ty_@0) 29.11/13.94 new_esEs34(x0, x1, ty_@0) 29.11/13.94 new_lt21(x0, x1, ty_Double) 29.11/13.94 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_esEs38(x0, x1, ty_Bool) 29.11/13.94 new_compare8(EQ, EQ) 29.11/13.94 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_esEs9(x0, x1, ty_@0) 29.11/13.94 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_primEqInt(Pos(Zero), Neg(Zero)) 29.11/13.94 new_primEqInt(Neg(Zero), Pos(Zero)) 29.11/13.94 new_esEs4(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_esEs4(x0, x1, ty_Double) 29.11/13.94 new_esEs37(x0, x1, ty_Int) 29.11/13.94 new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 29.11/13.94 new_compare110(x0, x1, True, x2, x3) 29.11/13.94 new_esEs9(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_esEs30(x0, x1, ty_Integer) 29.11/13.94 new_ltEs7(EQ, EQ) 29.11/13.94 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_esEs7(x0, x1, ty_Int) 29.11/13.94 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_lt23(x0, x1, ty_Float) 29.11/13.94 new_esEs11(x0, x1, ty_Integer) 29.11/13.94 new_ltEs18(x0, x1, ty_Integer) 29.11/13.94 new_ltEs4(Just(x0), Just(x1), ty_@0) 29.11/13.94 new_ltEs19(x0, x1, app(ty_[], x2)) 29.11/13.94 new_esEs36(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_lt10(x0, x1, ty_Float) 29.11/13.94 new_esEs7(x0, x1, ty_Char) 29.11/13.94 new_primMulNat0(Zero, Succ(x0)) 29.11/13.94 new_esEs39(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_esEs37(x0, x1, ty_Char) 29.11/13.94 new_esEs35(x0, x1, ty_Int) 29.11/13.94 new_esEs25(:(x0, x1), :(x2, x3), x4) 29.11/13.94 new_esEs39(x0, x1, ty_Int) 29.11/13.94 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_esEs33(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_esEs37(x0, x1, ty_Double) 29.11/13.94 new_lt15(x0, x1) 29.11/13.94 new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) 29.11/13.94 new_compare30(x0, x1, ty_Ordering) 29.11/13.94 new_compare7(True, True) 29.11/13.94 new_esEs5(x0, x1, ty_Ordering) 29.11/13.94 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_compare8(EQ, GT) 29.11/13.94 new_compare8(GT, EQ) 29.11/13.94 new_esEs31(x0, x1, ty_@0) 29.11/13.94 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_esEs24(True, True) 29.11/13.94 new_compare112(x0, x1, x2, x3, False, x4, x5) 29.11/13.94 new_esEs35(x0, x1, ty_@0) 29.11/13.94 new_esEs24(False, False) 29.11/13.94 new_ltEs19(x0, x1, ty_Int) 29.11/13.94 new_ltEs13(Right(x0), Right(x1), x2, ty_Char) 29.11/13.94 new_ltEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.11/13.94 new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 29.11/13.94 new_esEs22(Just(x0), Just(x1), ty_Int) 29.11/13.94 new_compare29(Left(x0), Right(x1), x2, x3) 29.11/13.94 new_compare29(Right(x0), Left(x1), x2, x3) 29.11/13.94 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_lt17(x0, x1, x2, x3) 29.11/13.94 new_ltEs22(x0, x1, app(ty_[], x2)) 29.11/13.94 new_lt22(x0, x1, ty_Int) 29.11/13.94 new_compare111(x0, x1, x2, x3, True, x4, x5, x6) 29.11/13.94 new_esEs5(x0, x1, ty_Char) 29.11/13.94 new_lt13(x0, x1) 29.11/13.94 new_esEs14(x0, x1, ty_Int) 29.11/13.94 new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) 29.11/13.94 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 29.11/13.94 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 29.11/13.94 new_esEs36(x0, x1, ty_Integer) 29.11/13.94 new_esEs6(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_esEs33(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_ltEs23(x0, x1, ty_Integer) 29.11/13.94 new_primMulInt(Neg(x0), Neg(x1)) 29.11/13.94 new_lt14(x0, x1) 29.11/13.94 new_lt11(x0, x1, x2) 29.11/13.94 new_esEs6(x0, x1, ty_Double) 29.11/13.94 new_esEs35(x0, x1, ty_Bool) 29.11/13.94 new_ltEs9(x0, x1) 29.11/13.94 new_esEs39(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_esEs23(Right(x0), Right(x1), x2, ty_Bool) 29.11/13.94 new_ltEs19(x0, x1, ty_Char) 29.11/13.94 new_esEs11(x0, x1, ty_Double) 29.11/13.94 new_lt23(x0, x1, ty_Double) 29.11/13.94 new_ltEs13(Left(x0), Left(x1), ty_Char, x2) 29.11/13.94 new_esEs10(x0, x1, ty_Char) 29.11/13.94 new_esEs6(x0, x1, app(ty_[], x2)) 29.11/13.94 new_lt20(x0, x1, ty_Char) 29.11/13.94 new_esEs7(x0, x1, ty_Float) 29.11/13.94 new_esEs14(x0, x1, ty_Float) 29.11/13.94 new_primPlusNat0(Succ(x0), Succ(x1)) 29.11/13.94 new_esEs23(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 29.11/13.94 new_lt21(x0, x1, ty_Char) 29.11/13.94 new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 29.11/13.94 new_esEs8(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_ltEs13(Right(x0), Right(x1), x2, ty_Int) 29.11/13.94 new_lt19(x0, x1, ty_Char) 29.11/13.94 new_esEs22(Just(x0), Just(x1), ty_Ordering) 29.11/13.94 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_ltEs18(x0, x1, ty_Char) 29.11/13.94 new_lt10(x0, x1, ty_Double) 29.11/13.94 new_compare30(x0, x1, app(ty_[], x2)) 29.11/13.94 new_esEs29(x0, x1, ty_Int) 29.11/13.94 new_esEs22(Just(x0), Just(x1), ty_Float) 29.11/13.94 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_esEs12(GT) 29.11/13.94 new_lt20(x0, x1, ty_Ordering) 29.11/13.94 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_compare16(Nothing, Just(x0), x1) 29.11/13.94 new_compare110(x0, x1, False, x2, x3) 29.11/13.94 new_ltEs24(x0, x1, app(ty_[], x2)) 29.11/13.94 new_lt22(x0, x1, ty_Char) 29.11/13.94 new_esEs40(x0, x1, ty_Integer) 29.11/13.94 new_esEs19(Float(x0, x1), Float(x2, x3)) 29.11/13.94 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_esEs22(Just(x0), Just(x1), app(ty_Ratio, x2)) 29.11/13.94 new_esEs14(x0, x1, ty_Char) 29.11/13.94 new_ltEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 29.11/13.94 new_esEs10(x0, x1, ty_Int) 29.11/13.94 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_ltEs24(x0, x1, ty_Integer) 29.11/13.94 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_ltEs22(x0, x1, ty_Integer) 29.11/13.94 new_lt22(x0, x1, ty_Float) 29.11/13.94 new_ltEs17(x0, x1, x2) 29.11/13.94 new_esEs33(x0, x1, app(ty_[], x2)) 29.11/13.94 new_esEs23(Left(x0), Left(x1), ty_Float, x2) 29.11/13.94 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_ltEs7(GT, LT) 29.11/13.94 new_ltEs7(LT, GT) 29.11/13.94 new_fsEs(x0) 29.11/13.94 new_esEs16(Integer(x0), Integer(x1)) 29.11/13.94 new_lt22(x0, x1, ty_Ordering) 29.11/13.94 new_lt8(x0, x1, x2) 29.11/13.94 new_esEs33(x0, x1, ty_Integer) 29.11/13.94 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 29.11/13.94 new_lt21(x0, x1, ty_Int) 29.11/13.94 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 29.11/13.94 new_primCompAux0(x0, x1, x2, x3) 29.11/13.94 new_ltEs21(x0, x1, ty_Integer) 29.11/13.94 new_primEqNat0(Zero, Succ(x0)) 29.11/13.94 new_ltEs23(x0, x1, app(ty_[], x2)) 29.11/13.94 new_ltEs13(Left(x0), Left(x1), ty_Int, x2) 29.11/13.94 new_ltEs18(x0, x1, ty_Bool) 29.11/13.94 new_esEs37(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_lt20(x0, x1, ty_Int) 29.11/13.94 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_primMulInt(Pos(x0), Pos(x1)) 29.11/13.94 new_esEs33(x0, x1, ty_Float) 29.11/13.94 new_esEs5(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_esEs15(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_ltEs24(x0, x1, ty_Ordering) 29.11/13.94 new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_ltEs13(Right(x0), Right(x1), x2, ty_Float) 29.11/13.94 new_ltEs12(x0, x1) 29.11/13.94 new_esEs23(Left(x0), Left(x1), ty_Ordering, x2) 29.11/13.94 new_compare5(:(x0, x1), :(x2, x3), x4) 29.11/13.94 new_esEs23(Left(x0), Left(x1), ty_Integer, x2) 29.11/13.94 new_primCmpInt(Neg(Zero), Neg(Zero)) 29.11/13.94 new_esEs10(x0, x1, ty_Float) 29.11/13.94 new_esEs40(x0, x1, ty_Bool) 29.11/13.94 new_ltEs14(False, False) 29.11/13.94 new_esEs9(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_esEs5(x0, x1, ty_Float) 29.11/13.94 new_lt19(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_esEs40(x0, x1, ty_Float) 29.11/13.94 new_esEs23(Left(x0), Left(x1), ty_Int, x2) 29.11/13.94 new_esEs10(x0, x1, app(ty_[], x2)) 29.11/13.94 new_esEs8(x0, x1, ty_Char) 29.11/13.94 new_esEs9(x0, x1, ty_Ordering) 29.11/13.94 new_primEqNat0(Succ(x0), Succ(x1)) 29.11/13.94 new_primCmpInt(Pos(Zero), Neg(Zero)) 29.11/13.94 new_primCmpInt(Neg(Zero), Pos(Zero)) 29.11/13.94 new_esEs13(@2(x0, x1), @2(x2, x3), x4, x5) 29.11/13.94 new_compare31(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.11/13.94 new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_esEs5(x0, x1, ty_Bool) 29.11/13.94 new_lt19(x0, x1, ty_Float) 29.11/13.94 new_compare16(Nothing, Nothing, x0) 29.11/13.94 new_ltEs18(x0, x1, ty_Int) 29.11/13.94 new_lt21(x0, x1, ty_Float) 29.11/13.94 new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) 29.11/13.94 new_esEs36(x0, x1, ty_Ordering) 29.11/13.94 new_ltEs23(x0, x1, ty_Ordering) 29.11/13.94 new_esEs32(x0, x1, ty_Double) 29.11/13.94 new_compare15(x0, x1, True, x2, x3) 29.11/13.94 new_esEs23(Left(x0), Left(x1), ty_Char, x2) 29.11/13.94 new_esEs34(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_compare28(x0, x1, False, x2, x3) 29.11/13.94 new_esEs36(x0, x1, ty_Bool) 29.11/13.94 new_ltEs13(Left(x0), Left(x1), ty_Float, x2) 29.11/13.94 new_ltEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 29.11/13.94 new_esEs35(x0, x1, ty_Integer) 29.11/13.94 new_esEs11(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_ltEs23(x0, x1, ty_Bool) 29.11/13.94 new_esEs9(x0, x1, ty_Integer) 29.11/13.94 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 29.11/13.94 new_compare30(x0, x1, ty_Double) 29.11/13.94 new_esEs33(x0, x1, ty_Int) 29.11/13.94 new_compare19(@0, @0) 29.11/13.94 new_primPlusNat0(Succ(x0), Zero) 29.11/13.94 new_compare7(False, False) 29.11/13.94 new_compare17(Char(x0), Char(x1)) 29.11/13.94 new_esEs33(x0, x1, ty_Char) 29.11/13.94 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_esEs5(x0, x1, ty_Int) 29.11/13.94 new_ltEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 29.11/13.94 new_compare6(Integer(x0), Integer(x1)) 29.11/13.94 new_asAs(True, x0) 29.11/13.94 new_esEs8(x0, x1, ty_Int) 29.11/13.94 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_esEs22(Just(x0), Just(x1), ty_Bool) 29.11/13.94 new_esEs11(x0, x1, ty_@0) 29.11/13.94 new_esEs22(Just(x0), Just(x1), app(ty_[], x2)) 29.11/13.94 new_esEs23(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 29.11/13.94 new_ltEs21(x0, x1, ty_Char) 29.11/13.94 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_compare27(x0, x1, False, x2, x3) 29.11/13.94 new_ltEs18(x0, x1, ty_Float) 29.11/13.94 new_lt22(x0, x1, ty_Bool) 29.11/13.94 new_esEs29(x0, x1, ty_Integer) 29.11/13.94 new_esEs15(x0, x1, ty_Double) 29.11/13.94 new_esEs33(x0, x1, ty_Bool) 29.11/13.94 new_lt23(x0, x1, app(ty_[], x2)) 29.11/13.94 new_primMulInt(Pos(x0), Neg(x1)) 29.11/13.94 new_primMulInt(Neg(x0), Pos(x1)) 29.11/13.94 new_esEs23(Left(x0), Left(x1), ty_Bool, x2) 29.11/13.94 new_esEs40(x0, x1, ty_Int) 29.11/13.94 new_ltEs21(x0, x1, ty_Bool) 29.11/13.94 new_lt20(x0, x1, ty_Bool) 29.11/13.94 new_lt21(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_esEs22(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 29.11/13.94 new_esEs4(x0, x1, ty_Ordering) 29.11/13.94 new_lt19(x0, x1, ty_Int) 29.11/13.94 new_esEs23(Right(x0), Right(x1), x2, ty_Float) 29.11/13.94 new_esEs15(x0, x1, ty_@0) 29.11/13.94 new_esEs40(x0, x1, ty_Char) 29.11/13.94 new_primCompAux00(x0, GT) 29.11/13.94 new_esEs22(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_esEs22(Just(x0), Just(x1), ty_Char) 29.11/13.94 new_esEs37(x0, x1, app(ty_[], x2)) 29.11/13.94 new_esEs22(Nothing, Nothing, x0) 29.11/13.94 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_compare30(x0, x1, ty_@0) 29.11/13.94 new_ltEs6(x0, x1, x2) 29.11/13.94 new_sr0(Integer(x0), Integer(x1)) 29.11/13.94 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_esEs8(x0, x1, ty_Float) 29.11/13.94 new_ltEs19(x0, x1, ty_Ordering) 29.11/13.94 new_esEs32(x0, x1, ty_Integer) 29.11/13.94 new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_ltEs13(Left(x0), Left(x1), ty_Integer, x2) 29.11/13.94 new_lt20(x0, x1, ty_Integer) 29.11/13.94 new_compare111(x0, x1, x2, x3, False, x4, x5, x6) 29.11/13.94 new_esEs8(x0, x1, ty_Bool) 29.11/13.94 new_esEs23(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 29.11/13.94 new_ltEs13(Left(x0), Left(x1), app(ty_[], x2), x3) 29.11/13.94 new_compare5(:(x0, x1), [], x2) 29.11/13.94 new_ltEs23(x0, x1, ty_Char) 29.11/13.94 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_ltEs20(x0, x1, ty_Integer) 29.11/13.94 new_esEs37(x0, x1, ty_Float) 29.11/13.94 new_compare30(x0, x1, ty_Integer) 29.11/13.94 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_ltEs19(x0, x1, ty_Integer) 29.11/13.94 new_esEs8(x0, x1, ty_@0) 29.11/13.94 new_esEs28(LT, LT) 29.11/13.94 new_esEs22(Just(x0), Just(x1), ty_Integer) 29.11/13.94 new_esEs30(x0, x1, ty_Int) 29.11/13.94 new_esEs37(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_lt22(x0, x1, ty_Integer) 29.11/13.94 new_esEs4(x0, x1, ty_Integer) 29.11/13.94 new_esEs31(x0, x1, app(ty_[], x2)) 29.11/13.94 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_primEqNat0(Succ(x0), Zero) 29.11/13.94 new_primMulNat0(Zero, Zero) 29.11/13.94 new_sr(x0, x1) 29.11/13.94 new_lt20(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_esEs35(x0, x1, ty_Float) 29.11/13.94 new_esEs4(x0, x1, ty_Bool) 29.11/13.94 new_esEs39(x0, x1, ty_Float) 29.11/13.94 new_ltEs21(x0, x1, ty_Int) 29.11/13.94 new_esEs14(x0, x1, ty_Integer) 29.11/13.94 new_esEs5(x0, x1, ty_Integer) 29.11/13.94 new_compare24(x0, x1, False, x2) 29.11/13.94 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_compare5([], [], x0) 29.11/13.94 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_ltEs22(x0, x1, ty_Char) 29.11/13.94 new_ltEs20(x0, x1, app(ty_[], x2)) 29.11/13.94 new_esEs22(Just(x0), Nothing, x1) 29.11/13.94 new_ltEs21(x0, x1, ty_Ordering) 29.11/13.94 new_esEs32(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_ltEs24(x0, x1, ty_Char) 29.11/13.94 new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 29.11/13.94 new_esEs14(x0, x1, ty_Bool) 29.11/13.94 new_lt10(x0, x1, ty_Bool) 29.11/13.94 new_ltEs19(x0, x1, ty_Bool) 29.11/13.94 new_ltEs7(LT, LT) 29.11/13.94 new_compare30(x0, x1, ty_Bool) 29.11/13.94 new_esEs14(x0, x1, ty_@0) 29.11/13.94 new_esEs14(x0, x1, app(ty_[], x2)) 29.11/13.94 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_lt23(x0, x1, ty_Bool) 29.11/13.94 new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 29.11/13.94 new_esEs15(x0, x1, ty_Bool) 29.11/13.94 new_ltEs23(x0, x1, ty_Int) 29.11/13.94 new_ltEs22(x0, x1, ty_Int) 29.11/13.94 new_lt22(x0, x1, app(ty_[], x2)) 29.11/13.94 new_esEs6(x0, x1, ty_Integer) 29.11/13.94 new_ltEs20(x0, x1, ty_Bool) 29.11/13.94 new_lt23(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_compare26(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 29.11/13.94 new_compare26(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 29.11/13.94 new_lt21(x0, x1, ty_Integer) 29.11/13.94 new_compare7(True, False) 29.11/13.94 new_compare7(False, True) 29.11/13.94 new_lt10(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_esEs23(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 29.11/13.94 new_lt6(x0, x1, x2, x3) 29.11/13.94 new_ltEs24(x0, x1, ty_Int) 29.11/13.94 new_compare112(x0, x1, x2, x3, True, x4, x5) 29.11/13.94 new_esEs32(x0, x1, ty_@0) 29.11/13.94 new_primCmpNat0(Succ(x0), Succ(x1)) 29.11/13.94 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_compare13(x0, x1) 29.11/13.94 new_esEs6(x0, x1, ty_@0) 29.11/13.94 new_compare8(LT, LT) 29.11/13.94 new_ltEs22(x0, x1, ty_Ordering) 29.11/13.94 new_ltEs22(x0, x1, ty_@0) 29.11/13.94 new_ltEs13(Left(x0), Left(x1), ty_@0, x2) 29.11/13.94 new_esEs26(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 29.11/13.94 new_lt20(x0, x1, ty_@0) 29.11/13.94 new_ltEs24(x0, x1, ty_@0) 29.11/13.94 new_lt22(x0, x1, ty_@0) 29.11/13.94 new_ltEs13(Right(x0), Right(x1), x2, ty_Integer) 29.11/13.94 new_primPlusNat0(Zero, Zero) 29.11/13.94 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_esEs23(Left(x0), Left(x1), ty_@0, x2) 29.11/13.94 new_esEs22(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 29.11/13.94 new_ltEs13(Right(x0), Right(x1), x2, ty_@0) 29.11/13.94 new_ltEs14(True, True) 29.11/13.94 new_lt10(x0, x1, ty_Int) 29.11/13.94 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_not(True) 29.11/13.94 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_esEs32(x0, x1, app(ty_[], x2)) 29.11/13.94 new_lt23(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_esEs38(x0, x1, ty_Int) 29.11/13.94 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_esEs36(x0, x1, ty_Float) 29.11/13.94 new_compare8(GT, GT) 29.11/13.94 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 29.11/13.94 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_esEs7(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_ltEs23(x0, x1, ty_@0) 29.11/13.94 new_compare30(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_ltEs22(x0, x1, ty_Bool) 29.11/13.94 new_compare8(LT, EQ) 29.11/13.94 new_compare8(EQ, LT) 29.11/13.94 new_lt23(x0, x1, ty_Int) 29.11/13.94 new_lt23(x0, x1, ty_Char) 29.11/13.94 new_esEs7(x0, x1, app(ty_[], x2)) 29.11/13.94 new_esEs31(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_lt20(x0, x1, ty_Float) 29.11/13.94 new_esEs10(x0, x1, ty_Double) 29.11/13.94 new_ltEs22(x0, x1, ty_Double) 29.11/13.94 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_lt10(x0, x1, ty_Char) 29.11/13.94 new_ltEs24(x0, x1, ty_Double) 29.11/13.94 new_esEs15(x0, x1, ty_Integer) 29.11/13.94 new_esEs6(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_esEs9(x0, x1, app(ty_[], x2)) 29.11/13.94 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_esEs28(EQ, GT) 29.11/13.94 new_esEs28(GT, EQ) 29.11/13.94 new_esEs15(x0, x1, ty_Ordering) 29.11/13.94 new_esEs4(x0, x1, ty_@0) 29.11/13.94 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_ltEs4(Just(x0), Nothing, x1) 29.11/13.94 new_ltEs4(Just(x0), Just(x1), ty_Char) 29.11/13.94 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_ltEs20(x0, x1, ty_Float) 29.11/13.94 new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 29.11/13.94 new_esEs35(x0, x1, app(ty_[], x2)) 29.11/13.94 new_esEs14(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_ltEs13(Left(x0), Left(x1), ty_Bool, x2) 29.11/13.94 new_esEs9(x0, x1, ty_Double) 29.11/13.94 new_esEs23(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 29.11/13.94 new_esEs23(Right(x0), Right(x1), x2, ty_Integer) 29.11/13.94 new_esEs34(x0, x1, ty_Float) 29.11/13.94 new_esEs31(x0, x1, ty_Float) 29.11/13.94 new_esEs38(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_ltEs4(Just(x0), Just(x1), ty_Double) 29.11/13.94 new_compare29(Right(x0), Right(x1), x2, x3) 29.11/13.94 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_esEs9(x0, x1, ty_Char) 29.11/13.94 new_ltEs19(x0, x1, ty_Float) 29.11/13.94 new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_esEs4(x0, x1, ty_Char) 29.11/13.94 new_ltEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 29.11/13.94 new_ltEs4(Just(x0), Just(x1), ty_Int) 29.11/13.94 new_compare26(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 29.11/13.94 new_ltEs20(x0, x1, ty_@0) 29.11/13.94 new_esEs28(LT, EQ) 29.11/13.94 new_esEs28(EQ, LT) 29.11/13.94 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 29.11/13.94 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 29.11/13.94 new_ltEs18(x0, x1, ty_Ordering) 29.11/13.94 new_compare24(x0, x1, True, x2) 29.11/13.94 new_ltEs7(EQ, GT) 29.11/13.94 new_ltEs7(GT, EQ) 29.11/13.94 new_esEs7(x0, x1, ty_Double) 29.11/13.94 new_lt21(x0, x1, ty_Bool) 29.11/13.94 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_esEs38(x0, x1, ty_Char) 29.11/13.94 new_lt23(x0, x1, ty_@0) 29.11/13.94 new_ltEs13(Right(x0), Right(x1), x2, ty_Bool) 29.11/13.94 new_ltEs24(x0, x1, ty_Bool) 29.11/13.94 new_esEs11(x0, x1, ty_Ordering) 29.11/13.94 new_esEs8(x0, x1, ty_Integer) 29.11/13.94 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_esEs28(GT, GT) 29.11/13.94 new_esEs38(x0, x1, ty_Double) 29.11/13.94 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_lt19(x0, x1, ty_Ordering) 29.11/13.94 new_primCmpInt(Pos(Zero), Pos(Zero)) 29.11/13.94 new_lt10(x0, x1, ty_@0) 29.11/13.94 new_esEs9(x0, x1, ty_Int) 29.11/13.94 new_ltEs19(x0, x1, ty_@0) 29.11/13.94 new_esEs4(x0, x1, ty_Int) 29.11/13.94 new_esEs31(x0, x1, ty_Integer) 29.11/13.94 new_esEs39(x0, x1, ty_@0) 29.11/13.94 new_ltEs7(GT, GT) 29.11/13.94 new_compare30(x0, x1, ty_Int) 29.11/13.94 new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 29.11/13.94 new_esEs7(x0, x1, ty_Ordering) 29.11/13.94 new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_lt12(x0, x1) 29.11/13.94 new_ltEs20(x0, x1, ty_Int) 29.11/13.94 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_ltEs7(LT, EQ) 29.11/13.94 new_ltEs7(EQ, LT) 29.11/13.94 new_compare14(@2(x0, x1), @2(x2, x3), x4, x5) 29.11/13.94 new_esEs38(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_ltEs11(x0, x1) 29.11/13.94 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_ltEs10(x0, x1) 29.11/13.94 new_esEs22(Just(x0), Just(x1), app(ty_Maybe, x2)) 29.11/13.94 new_esEs8(x0, x1, ty_Ordering) 29.11/13.94 new_esEs32(x0, x1, ty_Int) 29.11/13.94 new_esEs23(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 29.11/13.94 new_esEs34(x0, x1, ty_Integer) 29.11/13.94 new_compare12(x0, x1, False, x2) 29.11/13.94 new_compare16(Just(x0), Nothing, x1) 29.11/13.94 new_esEs6(x0, x1, ty_Float) 29.11/13.94 new_esEs8(x0, x1, ty_Double) 29.11/13.94 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_ltEs20(x0, x1, ty_Char) 29.11/13.94 new_esEs23(Left(x0), Left(x1), ty_Double, x2) 29.11/13.94 new_esEs37(x0, x1, ty_@0) 29.11/13.94 new_esEs14(x0, x1, ty_Ordering) 29.11/13.94 new_esEs32(x0, x1, ty_Char) 29.11/13.94 new_lt10(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_primCmpNat0(Succ(x0), Zero) 29.11/13.94 new_esEs17(Char(x0), Char(x1)) 29.11/13.94 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_lt9(x0, x1) 29.11/13.94 new_esEs15(x0, x1, ty_Float) 29.11/13.94 new_lt4(x0, x1) 29.11/13.94 new_compare30(x0, x1, ty_Char) 29.11/13.94 new_esEs4(x0, x1, ty_Float) 29.11/13.94 new_esEs23(Right(x0), Right(x1), x2, ty_@0) 29.11/13.94 new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 29.11/13.94 new_esEs38(x0, x1, ty_@0) 29.11/13.94 new_esEs37(x0, x1, ty_Bool) 29.11/13.94 new_esEs31(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_esEs39(x0, x1, ty_Bool) 29.11/13.94 new_primCompAux00(x0, LT) 29.11/13.94 new_lt16(x0, x1) 29.11/13.94 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 29.11/13.94 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_ltEs13(Left(x0), Left(x1), ty_Ordering, x2) 29.11/13.94 new_esEs25(:(x0, x1), [], x2) 29.11/13.94 new_ltEs21(x0, x1, ty_@0) 29.11/13.94 new_esEs38(x0, x1, app(ty_[], x2)) 29.11/13.94 new_lt22(x0, x1, ty_Double) 29.11/13.94 new_esEs34(x0, x1, ty_Bool) 29.11/13.94 new_esEs37(x0, x1, ty_Integer) 29.11/13.94 new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 29.11/13.94 new_primPlusNat1(Zero, x0) 29.11/13.94 new_esEs14(x0, x1, ty_Double) 29.11/13.94 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_esEs32(x0, x1, ty_Ordering) 29.11/13.94 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 29.11/13.94 new_esEs32(x0, x1, ty_Float) 29.11/13.94 new_lt7(x0, x1, x2) 29.11/13.94 new_ltEs15(x0, x1) 29.11/13.94 new_esEs31(x0, x1, ty_Bool) 29.11/13.94 new_esEs8(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_ltEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 29.11/13.94 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 29.11/13.94 new_ltEs13(Right(x0), Right(x1), x2, ty_Ordering) 29.11/13.94 new_esEs6(x0, x1, ty_Int) 29.11/13.94 new_ltEs24(x0, x1, ty_Float) 29.11/13.94 new_lt5(x0, x1) 29.11/13.94 new_lt20(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 29.11/13.94 new_esEs12(EQ) 29.11/13.94 new_compare27(x0, x1, True, x2, x3) 29.11/13.94 new_esEs23(Left(x0), Right(x1), x2, x3) 29.11/13.94 new_esEs23(Right(x0), Left(x1), x2, x3) 29.11/13.94 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_primPlusNat0(Zero, Succ(x0)) 29.11/13.94 new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 29.11/13.94 new_lt10(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_esEs10(x0, x1, ty_Ordering) 29.11/13.94 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_compare16(Just(x0), Just(x1), x2) 29.11/13.94 new_ltEs8(x0, x1) 29.11/13.94 new_esEs6(x0, x1, ty_Ordering) 29.11/13.94 new_esEs23(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 29.11/13.94 new_esEs10(x0, x1, ty_@0) 29.11/13.94 new_ltEs13(Left(x0), Right(x1), x2, x3) 29.11/13.94 new_ltEs13(Right(x0), Left(x1), x2, x3) 29.11/13.94 new_lt21(x0, x1, ty_@0) 29.11/13.94 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_ltEs22(x0, x1, ty_Float) 29.11/13.94 new_ltEs14(False, True) 29.11/13.94 new_ltEs14(True, False) 29.11/13.94 new_lt19(x0, x1, ty_@0) 29.11/13.94 new_primEqNat0(Zero, Zero) 29.11/13.94 new_lt21(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_esEs32(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_ltEs23(x0, x1, ty_Double) 29.11/13.94 new_ltEs4(Nothing, Just(x0), x1) 29.11/13.94 new_lt23(x0, x1, ty_Integer) 29.11/13.94 new_esEs35(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_esEs5(x0, x1, ty_Double) 29.11/13.94 new_not(False) 29.11/13.94 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 29.11/13.94 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_ltEs4(Just(x0), Just(x1), ty_Ordering) 29.11/13.94 new_esEs15(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_esEs38(x0, x1, ty_Integer) 29.11/13.94 new_esEs34(x0, x1, app(ty_[], x2)) 29.11/13.94 new_compare25(x0, x1, x2, x3, False, x4, x5) 29.11/13.94 new_esEs11(x0, x1, app(ty_[], x2)) 29.11/13.94 new_lt10(x0, x1, ty_Integer) 29.11/13.94 new_primMulNat0(Succ(x0), Zero) 29.11/13.94 new_esEs40(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_lt10(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_esEs12(LT) 29.11/13.94 new_esEs23(Left(x0), Left(x1), app(ty_[], x2), x3) 29.11/13.94 new_ltEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 29.11/13.94 new_lt20(x0, x1, ty_Double) 29.11/13.94 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 29.11/13.94 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 29.11/13.94 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_esEs39(x0, x1, ty_Integer) 29.11/13.94 new_esEs40(x0, x1, ty_@0) 29.11/13.94 new_lt22(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_esEs36(x0, x1, app(ty_[], x2)) 29.11/13.94 new_primPlusNat1(Succ(x0), x1) 29.11/13.94 new_lt19(x0, x1, ty_Double) 29.11/13.94 new_esEs11(x0, x1, ty_Char) 29.11/13.94 new_compare26(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 29.11/13.94 new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) 29.11/13.94 new_ltEs4(Just(x0), Just(x1), ty_Integer) 29.11/13.94 new_compare5([], :(x0, x1), x2) 29.11/13.94 new_ltEs18(x0, x1, ty_Double) 29.11/13.94 new_esEs14(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_esEs6(x0, x1, ty_Char) 29.11/13.94 new_esEs38(x0, x1, ty_Ordering) 29.11/13.94 new_esEs22(Just(x0), Just(x1), ty_@0) 29.11/13.94 new_compare15(x0, x1, False, x2, x3) 29.11/13.94 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_lt23(x0, x1, ty_Ordering) 29.11/13.94 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 29.11/13.94 new_esEs23(Right(x0), Right(x1), x2, app(ty_[], x3)) 29.11/13.94 new_compare30(x0, x1, ty_Float) 29.11/13.94 new_ltEs20(x0, x1, ty_Ordering) 29.11/13.94 new_ltEs18(x0, x1, ty_@0) 29.11/13.94 new_esEs25([], [], x0) 29.11/13.94 new_esEs33(x0, x1, ty_Double) 29.11/13.94 new_esEs5(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_esEs4(x0, x1, app(ty_[], x2)) 29.11/13.94 new_esEs11(x0, x1, ty_Int) 29.11/13.94 new_esEs15(x0, x1, ty_Char) 29.11/13.94 new_primCompAux00(x0, EQ) 29.11/13.94 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 29.11/13.94 new_esEs15(x0, x1, app(ty_[], x2)) 29.11/13.94 new_esEs11(x0, x1, ty_Float) 29.11/13.94 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 29.11/13.94 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 29.11/13.94 new_esEs40(x0, x1, ty_Double) 29.11/13.94 new_esEs6(x0, x1, ty_Bool) 29.11/13.94 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_esEs23(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 29.11/13.94 new_esEs21(Double(x0, x1), Double(x2, x3)) 29.11/13.94 new_pePe(False, x0) 29.11/13.94 new_ltEs21(x0, x1, ty_Double) 29.11/13.94 new_esEs5(x0, x1, ty_@0) 29.11/13.94 new_lt10(x0, x1, ty_Ordering) 29.11/13.94 new_esEs11(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_esEs32(x0, x1, ty_Bool) 29.11/13.94 new_primCmpNat0(Zero, Zero) 29.11/13.94 new_esEs34(x0, x1, app(ty_Ratio, x2)) 29.11/13.94 new_esEs15(x0, x1, ty_Int) 29.11/13.94 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 29.11/13.94 new_esEs39(x0, x1, app(ty_[], x2)) 29.11/13.94 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 29.11/13.94 new_esEs22(Just(x0), Just(x1), ty_Double) 29.11/13.94 new_esEs31(x0, x1, ty_Ordering) 29.11/13.94 29.11/13.94 We have to consider all minimal (P,Q,R)-chains. 29.11/13.94 ---------------------------------------- 29.11/13.94 29.11/13.94 (30) QDPSizeChangeProof (EQUIVALENT) 29.11/13.94 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 29.11/13.94 29.11/13.94 From the DPs we obtained the following set of size-change graphs: 29.11/13.94 *new_lt1(Left(vyw50), Left(vyw300), bga, bgb) -> new_compare21(vyw50, vyw300, new_esEs7(vyw50, vyw300, bga), bga, bgb) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 29.11/13.94 29.11/13.94 29.11/13.94 *new_lt1(Right(vyw50), Right(vyw300), bga, bgb) -> new_compare22(vyw50, vyw300, new_esEs8(vyw50, vyw300, bgb), bga, bgb) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs3(vyw49, vyw50, bda) -> new_compare(vyw49, vyw50, bda) 29.11/13.94 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare3(Left(vyw50), Left(vyw300), bga, bgb) -> new_compare21(vyw50, vyw300, new_esEs7(vyw50, vyw300, bga), bga, bgb) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare3(Right(vyw50), Right(vyw300), bga, bgb) -> new_compare22(vyw50, vyw300, new_esEs8(vyw50, vyw300, bgb), bga, bgb) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 29.11/13.94 29.11/13.94 29.11/13.94 *new_primCompAux(vyw50, vyw300, vyw44, app(ty_Maybe, cdg)) -> new_compare0(vyw50, vyw300, cdg) 29.11/13.94 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare21(vyw67, vyw68, False, app(app(ty_@2, bge), bgf), bgd) -> new_ltEs0(vyw67, vyw68, bge, bgf) 29.11/13.94 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_primCompAux(vyw50, vyw300, vyw44, app(app(ty_Either, ceb), cec)) -> new_compare3(vyw50, vyw300, ceb, cec) 29.11/13.94 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), baf, hd, app(app(ty_@2, bca), bcb)) -> new_ltEs0(vyw492, vyw502, bca, bcb) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_lt(Just(vyw50), Just(vyw300), bdb) -> new_compare2(vyw50, vyw300, new_esEs4(vyw50, vyw300, bdb), bdb) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare0(Just(vyw50), Just(vyw300), bdb) -> new_compare2(vyw50, vyw300, new_esEs4(vyw50, vyw300, bdb), bdb) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_lt0(@2(vyw50, vyw51), @2(vyw300, vyw301), bdc, bdd) -> new_compare20(vyw50, vyw51, vyw300, vyw301, new_asAs(new_esEs6(vyw50, vyw300, bdc), new_esEs5(vyw51, vyw301, bdd)), bdc, bdd) 29.11/13.94 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare1(@2(vyw50, vyw51), @2(vyw300, vyw301), bdc, bdd) -> new_compare20(vyw50, vyw51, vyw300, vyw301, new_asAs(new_esEs6(vyw50, vyw300, bdc), new_esEs5(vyw51, vyw301, bdd)), bdc, bdd) 29.11/13.94 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 29.11/13.94 29.11/13.94 29.11/13.94 *new_lt2(@3(vyw50, vyw51, vyw52), @3(vyw300, vyw301, vyw302), bhe, bhf, bhg) -> new_compare23(vyw50, vyw51, vyw52, vyw300, vyw301, vyw302, new_asAs(new_esEs11(vyw50, vyw300, bhe), new_asAs(new_esEs10(vyw51, vyw301, bhf), new_esEs9(vyw52, vyw302, bhg))), bhe, bhf, bhg) 29.11/13.94 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare4(@3(vyw50, vyw51, vyw52), @3(vyw300, vyw301, vyw302), bhe, bhf, bhg) -> new_compare23(vyw50, vyw51, vyw52, vyw300, vyw301, vyw302, new_asAs(new_esEs11(vyw50, vyw300, bhe), new_asAs(new_esEs10(vyw51, vyw301, bhf), new_esEs9(vyw52, vyw302, bhg))), bhe, bhf, bhg) 29.11/13.94 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs(Just(vyw490), Just(vyw500), app(app(ty_@2, ba), bb)) -> new_ltEs0(vyw490, vyw500, ba, bb) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs0(@2(vyw490, vyw491), @2(vyw500, vyw501), dd, app(app(ty_@2, df), dg)) -> new_ltEs0(vyw491, vyw501, df, dg) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare21(vyw67, vyw68, False, app(app(app(ty_@3, bha), bhb), bhc), bgd) -> new_ltEs2(vyw67, vyw68, bha, bhb, bhc) 29.11/13.94 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), baf, hd, app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs2(vyw492, vyw502, bce, bcf, bcg) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs(Just(vyw490), Just(vyw500), app(app(app(ty_@3, be), bf), bg)) -> new_ltEs2(vyw490, vyw500, be, bf, bg) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs0(@2(vyw490, vyw491), @2(vyw500, vyw501), dd, app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs2(vyw491, vyw501, eb, ec, ed) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare21(vyw67, vyw68, False, app(app(ty_Either, bgg), bgh), bgd) -> new_ltEs1(vyw67, vyw68, bgg, bgh) 29.11/13.94 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), baf, hd, app(app(ty_Either, bcc), bcd)) -> new_ltEs1(vyw492, vyw502, bcc, bcd) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs(Just(vyw490), Just(vyw500), app(app(ty_Either, bc), bd)) -> new_ltEs1(vyw490, vyw500, bc, bd) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs0(@2(vyw490, vyw491), @2(vyw500, vyw501), dd, app(app(ty_Either, dh), ea)) -> new_ltEs1(vyw491, vyw501, dh, ea) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare21(vyw67, vyw68, False, app(ty_Maybe, bgc), bgd) -> new_ltEs(vyw67, vyw68, bgc) 29.11/13.94 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare21(vyw67, vyw68, False, app(ty_[], bhd), bgd) -> new_ltEs3(vyw67, vyw68, bhd) 29.11/13.94 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), baf, hd, app(ty_Maybe, bbh)) -> new_ltEs(vyw492, vyw502, bbh) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs(Just(vyw490), Just(vyw500), app(ty_Maybe, h)) -> new_ltEs(vyw490, vyw500, h) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs(Just(vyw490), Just(vyw500), app(ty_[], bh)) -> new_ltEs3(vyw490, vyw500, bh) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs0(@2(vyw490, vyw491), @2(vyw500, vyw501), dd, app(ty_Maybe, de)) -> new_ltEs(vyw491, vyw501, de) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs0(@2(vyw490, vyw491), @2(vyw500, vyw501), app(app(ty_Either, ce), cf), cb) -> new_lt1(vyw490, vyw500, ce, cf) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_lt3(:(vyw50, vyw51), :(vyw300, vyw301), cdf) -> new_primCompAux(vyw50, vyw300, new_compare5(vyw51, vyw301, cdf), cdf) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_lt3(:(vyw50, vyw51), :(vyw300, vyw301), cdf) -> new_compare(vyw51, vyw301, cdf) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare(:(vyw50, vyw51), :(vyw300, vyw301), cdf) -> new_primCompAux(vyw50, vyw300, new_compare5(vyw51, vyw301, cdf), cdf) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare(:(vyw50, vyw51), :(vyw300, vyw301), cdf) -> new_compare(vyw51, vyw301, cdf) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare20(vyw103, vyw104, vyw105, vyw106, False, beg, app(app(ty_@2, bfa), bfb)) -> new_ltEs0(vyw104, vyw106, bfa, bfb) 29.11/13.94 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs0(@2(vyw490, vyw491), @2(vyw500, vyw501), app(app(ty_@2, cc), cd), cb) -> new_lt0(vyw490, vyw500, cc, cd) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare20(vyw103, vyw104, vyw105, vyw106, False, beg, app(app(app(ty_@3, bfe), bff), bfg)) -> new_ltEs2(vyw104, vyw106, bfe, bff, bfg) 29.11/13.94 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare20(vyw103, vyw104, vyw105, vyw106, False, beg, app(app(ty_Either, bfc), bfd)) -> new_ltEs1(vyw104, vyw106, bfc, bfd) 29.11/13.94 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare20(vyw103, vyw104, vyw105, vyw106, False, beg, app(ty_Maybe, beh)) -> new_ltEs(vyw104, vyw106, beh) 29.11/13.94 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare20(vyw103, vyw104, vyw105, vyw106, False, app(app(ty_Either, bea), beb), bdf) -> new_lt1(vyw103, vyw105, bea, beb) 29.11/13.94 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare20(vyw103, vyw104, vyw105, vyw106, False, app(app(ty_@2, bdg), bdh), bdf) -> new_lt0(vyw103, vyw105, bdg, bdh) 29.11/13.94 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_primCompAux(vyw50, vyw300, vyw44, app(app(ty_@2, cdh), cea)) -> new_compare1(vyw50, vyw300, cdh, cea) 29.11/13.94 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(vyw49, vyw50, False, app(ty_[], bda)) -> new_compare(vyw49, vyw50, bda) 29.11/13.94 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_primCompAux(vyw50, vyw300, vyw44, app(ty_[], ceg)) -> new_compare(vyw50, vyw300, ceg) 29.11/13.94 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_primCompAux(vyw50, vyw300, vyw44, app(app(app(ty_@3, ced), cee), cef)) -> new_compare4(vyw50, vyw300, ced, cee, cef) 29.11/13.94 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs0(@2(vyw490, vyw491), @2(vyw500, vyw501), app(ty_[], dc), cb) -> new_lt3(vyw490, vyw500, dc) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare20(vyw103, vyw104, vyw105, vyw106, False, app(ty_[], bef), bdf) -> new_lt3(vyw103, vyw105, bef) 29.11/13.94 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, bhh, cbc, app(app(ty_@2, cbe), cbf)) -> new_ltEs0(vyw87, vyw90, cbe, cbf) 29.11/13.94 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare22(vyw74, vyw75, False, ceh, app(app(ty_@2, cfb), cfc)) -> new_ltEs0(vyw74, vyw75, cfb, cfc) 29.11/13.94 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, bhh, cbc, app(app(app(ty_@3, cca), ccb), ccc)) -> new_ltEs2(vyw87, vyw90, cca, ccb, ccc) 29.11/13.94 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare22(vyw74, vyw75, False, ceh, app(app(app(ty_@3, cff), cfg), cfh)) -> new_ltEs2(vyw74, vyw75, cff, cfg, cfh) 29.11/13.94 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, bhh, cbc, app(app(ty_Either, cbg), cbh)) -> new_ltEs1(vyw87, vyw90, cbg, cbh) 29.11/13.94 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare22(vyw74, vyw75, False, ceh, app(app(ty_Either, cfd), cfe)) -> new_ltEs1(vyw74, vyw75, cfd, cfe) 29.11/13.94 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, bhh, cbc, app(ty_Maybe, cbd)) -> new_ltEs(vyw87, vyw90, cbd) 29.11/13.94 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare22(vyw74, vyw75, False, ceh, app(ty_Maybe, cfa)) -> new_ltEs(vyw74, vyw75, cfa) 29.11/13.94 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare22(vyw74, vyw75, False, ceh, app(ty_[], cga)) -> new_ltEs3(vyw74, vyw75, cga) 29.11/13.94 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs0(@2(vyw490, vyw491), @2(vyw500, vyw501), app(app(app(ty_@3, cg), da), db), cb) -> new_lt2(vyw490, vyw500, cg, da, db) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare20(vyw103, vyw104, vyw105, vyw106, False, app(app(app(ty_@3, bec), bed), bee), bdf) -> new_lt2(vyw103, vyw105, bec, bed, bee) 29.11/13.94 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), baf, hd, app(ty_[], bch)) -> new_ltEs3(vyw492, vyw502, bch) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs0(@2(vyw490, vyw491), @2(vyw500, vyw501), dd, app(ty_[], ee)) -> new_ltEs3(vyw491, vyw501, ee) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs0(@2(vyw490, vyw491), @2(vyw500, vyw501), app(ty_Maybe, ca), cb) -> new_lt(vyw490, vyw500, ca) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare20(vyw103, vyw104, vyw105, vyw106, False, beg, app(ty_[], bfh)) -> new_ltEs3(vyw104, vyw106, bfh) 29.11/13.94 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare20(vyw103, vyw104, vyw105, vyw106, False, app(ty_Maybe, bde), bdf) -> new_lt(vyw103, vyw105, bde) 29.11/13.94 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, bhh, cbc, app(ty_[], ccd)) -> new_ltEs3(vyw87, vyw90, ccd) 29.11/13.94 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(app(ty_@2, ba), bb))) -> new_ltEs0(vyw490, vyw500, ba, bb) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(app(ty_@2, eh), fa)), eg)) -> new_ltEs0(vyw490, vyw500, eh, fa) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, dd), app(app(ty_@2, df), dg))) -> new_ltEs0(vyw491, vyw501, df, dg) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(Right(vyw490), Right(vyw500), False, app(app(ty_Either, ga), app(app(ty_@2, gc), gd))) -> new_ltEs0(vyw490, vyw500, gc, gd) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, baf), hd), app(app(ty_@2, bca), bcb))) -> new_ltEs0(vyw492, vyw502, bca, bcb) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs1(Left(vyw490), Left(vyw500), app(app(ty_@2, eh), fa), eg) -> new_ltEs0(vyw490, vyw500, eh, fa) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs1(Right(vyw490), Right(vyw500), ga, app(app(ty_@2, gc), gd)) -> new_ltEs0(vyw490, vyw500, gc, gd) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(app(app(ty_@3, fd), ff), fg)), eg)) -> new_ltEs2(vyw490, vyw500, fd, ff, fg) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, baf), hd), app(app(app(ty_@3, bce), bcf), bcg))) -> new_ltEs2(vyw492, vyw502, bce, bcf, bcg) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(app(app(ty_@3, be), bf), bg))) -> new_ltEs2(vyw490, vyw500, be, bf, bg) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, dd), app(app(app(ty_@3, eb), ec), ed))) -> new_ltEs2(vyw491, vyw501, eb, ec, ed) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(Right(vyw490), Right(vyw500), False, app(app(ty_Either, ga), app(app(app(ty_@3, gg), gh), ha))) -> new_ltEs2(vyw490, vyw500, gg, gh, ha) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(app(ty_Either, bc), bd))) -> new_ltEs1(vyw490, vyw500, bc, bd) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, baf), hd), app(app(ty_Either, bcc), bcd))) -> new_ltEs1(vyw492, vyw502, bcc, bcd) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(Right(vyw490), Right(vyw500), False, app(app(ty_Either, ga), app(app(ty_Either, ge), gf))) -> new_ltEs1(vyw490, vyw500, ge, gf) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(app(ty_Either, fb), fc)), eg)) -> new_ltEs1(vyw490, vyw500, fb, fc) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, dd), app(app(ty_Either, dh), ea))) -> new_ltEs1(vyw491, vyw501, dh, ea) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(ty_Maybe, ef)), eg)) -> new_ltEs(vyw490, vyw500, ef) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(Right(vyw490), Right(vyw500), False, app(app(ty_Either, ga), app(ty_Maybe, gb))) -> new_ltEs(vyw490, vyw500, gb) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, dd), app(ty_Maybe, de))) -> new_ltEs(vyw491, vyw501, de) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, baf), hd), app(ty_Maybe, bbh))) -> new_ltEs(vyw492, vyw502, bbh) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(ty_Maybe, h))) -> new_ltEs(vyw490, vyw500, h) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, baf), app(app(ty_Either, bbb), bbc)), he)) -> new_lt1(vyw491, vyw501, bbb, bbc) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(app(ty_Either, hh), baa)), hd), he)) -> new_lt1(vyw490, vyw500, hh, baa) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(app(ty_Either, ce), cf)), cb)) -> new_lt1(vyw490, vyw500, ce, cf) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(app(ty_@2, hf), hg)), hd), he)) -> new_lt0(vyw490, vyw500, hf, hg) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(app(ty_@2, cc), cd)), cb)) -> new_lt0(vyw490, vyw500, cc, cd) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, baf), app(app(ty_@2, bah), bba)), he)) -> new_lt0(vyw491, vyw501, bah, bba) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(ty_[], bae)), hd), he)) -> new_lt3(vyw490, vyw500, bae) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(ty_[], dc)), cb)) -> new_lt3(vyw490, vyw500, dc) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, baf), app(ty_[], bbg)), he)) -> new_lt3(vyw491, vyw501, bbg) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(app(app(ty_@3, bab), bac), bad)), hd), he)) -> new_lt2(vyw490, vyw500, bab, bac, bad) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, baf), app(app(app(ty_@3, bbd), bbe), bbf)), he)) -> new_lt2(vyw491, vyw501, bbd, bbe, bbf) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(app(app(ty_@3, cg), da), db)), cb)) -> new_lt2(vyw490, vyw500, cg, da, db) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, baf), hd), app(ty_[], bch))) -> new_ltEs3(vyw492, vyw502, bch) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, dd), app(ty_[], ee))) -> new_ltEs3(vyw491, vyw501, ee) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(Right(vyw490), Right(vyw500), False, app(app(ty_Either, ga), app(ty_[], hb))) -> new_ltEs3(vyw490, vyw500, hb) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(ty_[], fh)), eg)) -> new_ltEs3(vyw490, vyw500, fh) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(ty_[], bh))) -> new_ltEs3(vyw490, vyw500, bh) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, baf), app(ty_Maybe, bag)), he)) -> new_lt(vyw491, vyw501, bag) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(ty_Maybe, ca)), cb)) -> new_lt(vyw490, vyw500, ca) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_compare2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(ty_Maybe, hc)), hd), he)) -> new_lt(vyw490, vyw500, hc) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), baf, app(app(ty_Either, bbb), bbc), he) -> new_lt1(vyw491, vyw501, bbb, bbc) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(app(ty_Either, hh), baa), hd, he) -> new_lt1(vyw490, vyw500, hh, baa) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(app(ty_@2, hf), hg), hd, he) -> new_lt0(vyw490, vyw500, hf, hg) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), baf, app(app(ty_@2, bah), bba), he) -> new_lt0(vyw491, vyw501, bah, bba) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), baf, app(ty_[], bbg), he) -> new_lt3(vyw491, vyw501, bbg) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(ty_[], bae), hd, he) -> new_lt3(vyw490, vyw500, bae) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(app(app(ty_@3, bab), bac), bad), hd, he) -> new_lt2(vyw490, vyw500, bab, bac, bad) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.11/13.94 29.11/13.94 29.11/13.94 *new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), baf, app(app(app(ty_@3, bbd), bbe), bbf), he) -> new_lt2(vyw491, vyw501, bbd, bbe, bbf) 29.11/13.94 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.11/13.95 29.11/13.95 29.11/13.95 *new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), baf, app(ty_Maybe, bag), he) -> new_lt(vyw491, vyw501, bag) 29.11/13.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.95 29.11/13.95 29.11/13.95 *new_ltEs2(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(ty_Maybe, hc), hd, he) -> new_lt(vyw490, vyw500, hc) 29.11/13.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.11/13.95 29.11/13.95 29.11/13.95 *new_ltEs1(Left(vyw490), Left(vyw500), app(app(app(ty_@3, fd), ff), fg), eg) -> new_ltEs2(vyw490, vyw500, fd, ff, fg) 29.11/13.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 29.11/13.95 29.11/13.95 29.11/13.95 *new_ltEs1(Right(vyw490), Right(vyw500), ga, app(app(app(ty_@3, gg), gh), ha)) -> new_ltEs2(vyw490, vyw500, gg, gh, ha) 29.11/13.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 29.11/13.95 29.11/13.95 29.11/13.95 *new_ltEs1(Right(vyw490), Right(vyw500), ga, app(app(ty_Either, ge), gf)) -> new_ltEs1(vyw490, vyw500, ge, gf) 29.11/13.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 29.11/13.95 29.11/13.95 29.11/13.95 *new_ltEs1(Left(vyw490), Left(vyw500), app(app(ty_Either, fb), fc), eg) -> new_ltEs1(vyw490, vyw500, fb, fc) 29.11/13.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 29.11/13.95 29.11/13.95 29.11/13.95 *new_ltEs1(Right(vyw490), Right(vyw500), ga, app(ty_Maybe, gb)) -> new_ltEs(vyw490, vyw500, gb) 29.11/13.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.95 29.11/13.95 29.11/13.95 *new_ltEs1(Left(vyw490), Left(vyw500), app(ty_Maybe, ef), eg) -> new_ltEs(vyw490, vyw500, ef) 29.11/13.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.11/13.95 29.11/13.95 29.11/13.95 *new_ltEs1(Right(vyw490), Right(vyw500), ga, app(ty_[], hb)) -> new_ltEs3(vyw490, vyw500, hb) 29.11/13.95 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 29.11/13.95 29.11/13.95 29.11/13.95 *new_ltEs1(Left(vyw490), Left(vyw500), app(ty_[], fh), eg) -> new_ltEs3(vyw490, vyw500, fh) 29.11/13.95 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 29.11/13.95 29.11/13.95 29.11/13.95 *new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, bhh, app(app(ty_Either, cae), caf), cab) -> new_lt1(vyw86, vyw89, cae, caf) 29.11/13.95 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 29.11/13.95 29.11/13.95 29.11/13.95 *new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, app(app(ty_Either, cch), cda), cbc, cab) -> new_lt1(vyw85, vyw88, cch, cda) 29.11/13.95 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 29.11/13.95 29.11/13.95 29.11/13.95 *new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, app(app(ty_@2, ccf), ccg), cbc, cab) -> new_lt0(vyw85, vyw88, ccf, ccg) 29.11/13.95 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 29.11/13.95 29.11/13.95 29.11/13.95 *new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, bhh, app(app(ty_@2, cac), cad), cab) -> new_lt0(vyw86, vyw89, cac, cad) 29.11/13.95 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 29.11/13.95 29.11/13.95 29.11/13.95 *new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, app(ty_[], cde), cbc, cab) -> new_lt3(vyw85, vyw88, cde) 29.11/13.95 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 29.11/13.95 29.11/13.95 29.11/13.95 *new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, bhh, app(ty_[], cbb), cab) -> new_lt3(vyw86, vyw89, cbb) 29.11/13.95 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 29.11/13.95 29.11/13.95 29.11/13.95 *new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, bhh, app(app(app(ty_@3, cag), cah), cba), cab) -> new_lt2(vyw86, vyw89, cag, cah, cba) 29.11/13.95 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 29.11/13.95 29.11/13.95 29.11/13.95 *new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, app(app(app(ty_@3, cdb), cdc), cdd), cbc, cab) -> new_lt2(vyw85, vyw88, cdb, cdc, cdd) 29.11/13.95 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 29.11/13.95 29.11/13.95 29.11/13.95 *new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, bhh, app(ty_Maybe, caa), cab) -> new_lt(vyw86, vyw89, caa) 29.11/13.95 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 29.11/13.95 29.11/13.95 29.11/13.95 *new_compare23(vyw85, vyw86, vyw87, vyw88, vyw89, vyw90, False, app(ty_Maybe, cce), cbc, cab) -> new_lt(vyw85, vyw88, cce) 29.11/13.95 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 29.11/13.95 29.11/13.95 29.11/13.95 ---------------------------------------- 29.11/13.95 29.11/13.95 (31) 29.11/13.95 YES 29.11/13.95 29.11/13.95 ---------------------------------------- 29.11/13.95 29.11/13.95 (32) 29.11/13.95 Obligation: 29.11/13.95 Q DP problem: 29.11/13.95 The TRS P consists of the following rules: 29.11/13.95 29.11/13.95 new_primEqNat(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat(vyw5000, vyw30000) 29.11/13.95 29.11/13.95 R is empty. 29.11/13.95 Q is empty. 29.11/13.95 We have to consider all minimal (P,Q,R)-chains. 29.11/13.95 ---------------------------------------- 29.11/13.95 29.11/13.95 (33) QDPSizeChangeProof (EQUIVALENT) 29.11/13.95 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 29.11/13.95 29.11/13.95 From the DPs we obtained the following set of size-change graphs: 29.11/13.95 *new_primEqNat(Succ(vyw5000), Succ(vyw30000)) -> new_primEqNat(vyw5000, vyw30000) 29.11/13.95 The graph contains the following edges 1 > 1, 2 > 2 29.11/13.95 29.11/13.95 29.11/13.95 ---------------------------------------- 29.11/13.95 29.11/13.95 (34) 29.11/13.95 YES 29.11/13.95 29.11/13.95 ---------------------------------------- 29.11/13.95 29.11/13.95 (35) 29.11/13.95 Obligation: 29.11/13.95 Q DP problem: 29.11/13.95 The TRS P consists of the following rules: 29.11/13.95 29.11/13.95 new_primPlusNat(Succ(vyw18300), Succ(vyw301000)) -> new_primPlusNat(vyw18300, vyw301000) 29.11/13.95 29.11/13.95 R is empty. 29.11/13.95 Q is empty. 29.11/13.95 We have to consider all minimal (P,Q,R)-chains. 29.11/13.95 ---------------------------------------- 29.11/13.95 29.11/13.95 (36) QDPSizeChangeProof (EQUIVALENT) 29.11/13.95 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 29.11/13.95 29.11/13.95 From the DPs we obtained the following set of size-change graphs: 29.11/13.95 *new_primPlusNat(Succ(vyw18300), Succ(vyw301000)) -> new_primPlusNat(vyw18300, vyw301000) 29.11/13.95 The graph contains the following edges 1 > 1, 2 > 2 29.11/13.95 29.11/13.95 29.11/13.95 ---------------------------------------- 29.11/13.95 29.11/13.95 (37) 29.11/13.95 YES 29.11/13.98 EOF