27.64/13.52 YES 30.47/14.33 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 30.47/14.33 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 30.47/14.33 30.47/14.33 30.47/14.33 H-Termination with start terms of the given HASKELL could be proven: 30.47/14.33 30.47/14.33 (0) HASKELL 30.47/14.33 (1) LR [EQUIVALENT, 0 ms] 30.47/14.33 (2) HASKELL 30.47/14.33 (3) CR [EQUIVALENT, 0 ms] 30.47/14.33 (4) HASKELL 30.47/14.33 (5) IFR [EQUIVALENT, 0 ms] 30.47/14.33 (6) HASKELL 30.47/14.33 (7) BR [EQUIVALENT, 13 ms] 30.47/14.33 (8) HASKELL 30.47/14.33 (9) COR [EQUIVALENT, 0 ms] 30.47/14.33 (10) HASKELL 30.47/14.33 (11) LetRed [EQUIVALENT, 0 ms] 30.47/14.33 (12) HASKELL 30.47/14.33 (13) NumRed [SOUND, 7 ms] 30.47/14.33 (14) HASKELL 30.47/14.33 (15) Narrow [SOUND, 0 ms] 30.47/14.33 (16) AND 30.47/14.33 (17) QDP 30.47/14.33 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 30.47/14.33 (19) YES 30.47/14.33 (20) QDP 30.47/14.33 (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] 30.47/14.33 (22) YES 30.47/14.33 (23) QDP 30.47/14.33 (24) QDPSizeChangeProof [EQUIVALENT, 177 ms] 30.47/14.33 (25) YES 30.47/14.33 (26) QDP 30.47/14.33 (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] 30.47/14.33 (28) YES 30.47/14.33 (29) QDP 30.47/14.33 (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] 30.47/14.33 (31) YES 30.47/14.33 (32) QDP 30.47/14.33 (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] 30.47/14.33 (34) YES 30.47/14.33 (35) QDP 30.47/14.33 (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] 30.47/14.33 (37) YES 30.47/14.33 30.47/14.33 30.47/14.33 ---------------------------------------- 30.47/14.33 30.47/14.33 (0) 30.47/14.33 Obligation: 30.47/14.33 mainModule Main 30.47/14.33 module FiniteMap where { 30.47/14.33 import qualified Main; 30.47/14.33 import qualified Maybe; 30.47/14.33 import qualified Prelude; 30.47/14.33 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 30.47/14.33 30.47/14.33 instance (Eq a, Eq b) => Eq FiniteMap a b where { 30.47/14.33 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 30.47/14.33 } 30.47/14.33 fmToList :: FiniteMap a b -> [(a,b)]; 30.47/14.33 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 30.47/14.33 30.47/14.33 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 30.47/14.33 foldFM k z EmptyFM = z; 30.47/14.33 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 30.47/14.33 30.47/14.33 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 30.47/14.33 lookupFM EmptyFM key = Nothing; 30.47/14.33 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 30.47/14.33 | key_to_find > key = lookupFM fm_r key_to_find 30.47/14.33 | otherwise = Just elt; 30.47/14.33 30.47/14.33 sizeFM :: FiniteMap b a -> Int; 30.47/14.33 sizeFM EmptyFM = 0; 30.47/14.33 sizeFM (Branch _ _ size _ _) = size; 30.47/14.33 30.47/14.33 } 30.47/14.33 module Maybe where { 30.47/14.33 import qualified FiniteMap; 30.47/14.33 import qualified Main; 30.47/14.33 import qualified Prelude; 30.47/14.33 } 30.47/14.33 module Main where { 30.47/14.33 import qualified FiniteMap; 30.47/14.33 import qualified Maybe; 30.47/14.33 import qualified Prelude; 30.47/14.33 } 30.47/14.33 30.47/14.33 ---------------------------------------- 30.47/14.33 30.47/14.33 (1) LR (EQUIVALENT) 30.47/14.33 Lambda Reductions: 30.47/14.33 The following Lambda expression 30.47/14.33 "\keyeltrest->(key,elt) : rest" 30.47/14.33 is transformed to 30.47/14.33 "fmToList0 key elt rest = (key,elt) : rest; 30.47/14.33 " 30.47/14.33 30.47/14.33 ---------------------------------------- 30.47/14.33 30.47/14.33 (2) 30.47/14.33 Obligation: 30.47/14.33 mainModule Main 30.47/14.33 module FiniteMap where { 30.47/14.33 import qualified Main; 30.47/14.33 import qualified Maybe; 30.47/14.33 import qualified Prelude; 30.47/14.33 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 30.47/14.33 30.47/14.33 instance (Eq a, Eq b) => Eq FiniteMap b a where { 30.47/14.33 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 30.47/14.33 } 30.47/14.33 fmToList :: FiniteMap b a -> [(b,a)]; 30.47/14.33 fmToList fm = foldFM fmToList0 [] fm; 30.47/14.33 30.47/14.33 fmToList0 key elt rest = (key,elt) : rest; 30.47/14.33 30.47/14.33 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 30.47/14.33 foldFM k z EmptyFM = z; 30.47/14.33 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 30.47/14.33 30.47/14.33 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 30.47/14.33 lookupFM EmptyFM key = Nothing; 30.47/14.33 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 30.47/14.33 | key_to_find > key = lookupFM fm_r key_to_find 30.47/14.33 | otherwise = Just elt; 30.47/14.33 30.47/14.33 sizeFM :: FiniteMap b a -> Int; 30.47/14.33 sizeFM EmptyFM = 0; 30.47/14.33 sizeFM (Branch _ _ size _ _) = size; 30.47/14.33 30.47/14.33 } 30.47/14.33 module Maybe where { 30.47/14.33 import qualified FiniteMap; 30.47/14.33 import qualified Main; 30.47/14.33 import qualified Prelude; 30.47/14.33 } 30.47/14.33 module Main where { 30.47/14.33 import qualified FiniteMap; 30.47/14.33 import qualified Maybe; 30.47/14.33 import qualified Prelude; 30.47/14.33 } 30.47/14.33 30.47/14.33 ---------------------------------------- 30.47/14.33 30.47/14.33 (3) CR (EQUIVALENT) 30.47/14.33 Case Reductions: 30.47/14.33 The following Case expression 30.47/14.33 "case compare x y of { 30.47/14.33 EQ -> o; 30.47/14.33 LT -> LT; 30.47/14.33 GT -> GT} 30.47/14.33 " 30.47/14.33 is transformed to 30.47/14.33 "primCompAux0 o EQ = o; 30.47/14.33 primCompAux0 o LT = LT; 30.47/14.33 primCompAux0 o GT = GT; 30.47/14.33 " 30.47/14.33 30.47/14.33 ---------------------------------------- 30.47/14.33 30.47/14.33 (4) 30.47/14.33 Obligation: 30.47/14.33 mainModule Main 30.47/14.33 module FiniteMap where { 30.47/14.33 import qualified Main; 30.47/14.33 import qualified Maybe; 30.47/14.33 import qualified Prelude; 30.47/14.33 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 30.47/14.33 30.47/14.33 instance (Eq a, Eq b) => Eq FiniteMap b a where { 30.47/14.33 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 30.47/14.33 } 30.47/14.33 fmToList :: FiniteMap b a -> [(b,a)]; 30.47/14.33 fmToList fm = foldFM fmToList0 [] fm; 30.47/14.33 30.47/14.33 fmToList0 key elt rest = (key,elt) : rest; 30.47/14.33 30.47/14.33 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 30.47/14.33 foldFM k z EmptyFM = z; 30.47/14.33 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 30.47/14.33 30.47/14.33 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 30.47/14.33 lookupFM EmptyFM key = Nothing; 30.47/14.33 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 30.47/14.33 | key_to_find > key = lookupFM fm_r key_to_find 30.47/14.33 | otherwise = Just elt; 30.47/14.33 30.47/14.33 sizeFM :: FiniteMap a b -> Int; 30.47/14.33 sizeFM EmptyFM = 0; 30.47/14.33 sizeFM (Branch _ _ size _ _) = size; 30.47/14.33 30.47/14.33 } 30.47/14.33 module Maybe where { 30.47/14.33 import qualified FiniteMap; 30.47/14.33 import qualified Main; 30.47/14.33 import qualified Prelude; 30.47/14.33 } 30.47/14.33 module Main where { 30.47/14.33 import qualified FiniteMap; 30.47/14.33 import qualified Maybe; 30.47/14.33 import qualified Prelude; 30.47/14.33 } 30.47/14.33 30.47/14.33 ---------------------------------------- 30.47/14.33 30.47/14.33 (5) IFR (EQUIVALENT) 30.47/14.33 If Reductions: 30.47/14.33 The following If expression 30.47/14.33 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 30.47/14.33 is transformed to 30.47/14.33 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 30.47/14.33 primDivNatS0 x y False = Zero; 30.47/14.33 " 30.47/14.33 The following If expression 30.47/14.33 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 30.47/14.33 is transformed to 30.47/14.33 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 30.47/14.33 primModNatS0 x y False = Succ x; 30.47/14.33 " 30.47/14.33 30.47/14.33 ---------------------------------------- 30.47/14.33 30.47/14.33 (6) 30.47/14.33 Obligation: 30.47/14.33 mainModule Main 30.47/14.33 module FiniteMap where { 30.47/14.33 import qualified Main; 30.47/14.33 import qualified Maybe; 30.47/14.33 import qualified Prelude; 30.47/14.33 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 30.47/14.33 30.47/14.33 instance (Eq a, Eq b) => Eq FiniteMap b a where { 30.47/14.33 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 30.47/14.33 } 30.47/14.33 fmToList :: FiniteMap a b -> [(a,b)]; 30.47/14.33 fmToList fm = foldFM fmToList0 [] fm; 30.47/14.33 30.47/14.33 fmToList0 key elt rest = (key,elt) : rest; 30.47/14.33 30.47/14.33 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 30.47/14.33 foldFM k z EmptyFM = z; 30.47/14.33 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 30.47/14.33 30.47/14.33 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 30.47/14.33 lookupFM EmptyFM key = Nothing; 30.47/14.33 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 30.47/14.33 | key_to_find > key = lookupFM fm_r key_to_find 30.47/14.33 | otherwise = Just elt; 30.47/14.33 30.47/14.33 sizeFM :: FiniteMap b a -> Int; 30.47/14.33 sizeFM EmptyFM = 0; 30.47/14.33 sizeFM (Branch _ _ size _ _) = size; 30.47/14.33 30.47/14.33 } 30.47/14.33 module Maybe where { 30.47/14.33 import qualified FiniteMap; 30.47/14.33 import qualified Main; 30.47/14.33 import qualified Prelude; 30.47/14.33 } 30.47/14.33 module Main where { 30.47/14.33 import qualified FiniteMap; 30.47/14.33 import qualified Maybe; 30.47/14.33 import qualified Prelude; 30.47/14.33 } 30.47/14.33 30.47/14.33 ---------------------------------------- 30.47/14.33 30.47/14.33 (7) BR (EQUIVALENT) 30.47/14.33 Replaced joker patterns by fresh variables and removed binding patterns. 30.47/14.33 ---------------------------------------- 30.47/14.33 30.47/14.33 (8) 30.47/14.33 Obligation: 30.47/14.33 mainModule Main 30.47/14.33 module FiniteMap where { 30.47/14.33 import qualified Main; 30.47/14.33 import qualified Maybe; 30.47/14.33 import qualified Prelude; 30.47/14.33 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 30.47/14.33 30.47/14.33 instance (Eq a, Eq b) => Eq FiniteMap a b where { 30.47/14.33 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 30.47/14.33 } 30.47/14.33 fmToList :: FiniteMap b a -> [(b,a)]; 30.47/14.33 fmToList fm = foldFM fmToList0 [] fm; 30.47/14.33 30.47/14.33 fmToList0 key elt rest = (key,elt) : rest; 30.47/14.33 30.47/14.33 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 30.47/14.33 foldFM k z EmptyFM = z; 30.47/14.33 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 30.47/14.33 30.47/14.33 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 30.47/14.33 lookupFM EmptyFM key = Nothing; 30.47/14.33 lookupFM (Branch key elt vux fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 30.47/14.33 | key_to_find > key = lookupFM fm_r key_to_find 30.47/14.33 | otherwise = Just elt; 30.47/14.33 30.47/14.33 sizeFM :: FiniteMap b a -> Int; 30.47/14.33 sizeFM EmptyFM = 0; 30.47/14.33 sizeFM (Branch zz vuu size vuv vuw) = size; 30.47/14.33 30.47/14.33 } 30.47/14.33 module Maybe where { 30.47/14.33 import qualified FiniteMap; 30.47/14.33 import qualified Main; 30.47/14.33 import qualified Prelude; 30.47/14.33 } 30.47/14.33 module Main where { 30.47/14.33 import qualified FiniteMap; 30.47/14.33 import qualified Maybe; 30.47/14.33 import qualified Prelude; 30.47/14.33 } 30.47/14.33 30.47/14.33 ---------------------------------------- 30.47/14.33 30.47/14.33 (9) COR (EQUIVALENT) 30.47/14.33 Cond Reductions: 30.47/14.33 The following Function with conditions 30.47/14.33 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 30.47/14.33 " 30.47/14.33 is transformed to 30.47/14.33 "compare x y = compare3 x y; 30.47/14.33 " 30.47/14.33 "compare1 x y True = LT; 30.47/14.33 compare1 x y False = compare0 x y otherwise; 30.47/14.33 " 30.47/14.33 "compare0 x y True = GT; 30.47/14.33 " 30.47/14.33 "compare2 x y True = EQ; 30.47/14.33 compare2 x y False = compare1 x y (x <= y); 30.47/14.33 " 30.47/14.33 "compare3 x y = compare2 x y (x == y); 30.47/14.33 " 30.47/14.33 The following Function with conditions 30.47/14.33 "absReal x|x >= 0x|otherwise`negate` x; 30.47/14.33 " 30.47/14.33 is transformed to 30.47/14.33 "absReal x = absReal2 x; 30.47/14.33 " 30.47/14.33 "absReal0 x True = `negate` x; 30.47/14.33 " 30.47/14.33 "absReal1 x True = x; 30.47/14.33 absReal1 x False = absReal0 x otherwise; 30.47/14.33 " 30.47/14.33 "absReal2 x = absReal1 x (x >= 0); 30.47/14.33 " 30.47/14.33 The following Function with conditions 30.47/14.33 "gcd' x 0 = x; 30.47/14.33 gcd' x y = gcd' y (x `rem` y); 30.47/14.33 " 30.47/14.33 is transformed to 30.47/14.33 "gcd' x vuy = gcd'2 x vuy; 30.47/14.33 gcd' x y = gcd'0 x y; 30.47/14.33 " 30.47/14.33 "gcd'0 x y = gcd' y (x `rem` y); 30.47/14.33 " 30.47/14.33 "gcd'1 True x vuy = x; 30.47/14.33 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 30.47/14.33 " 30.47/14.33 "gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 30.47/14.33 gcd'2 vvw vvx = gcd'0 vvw vvx; 30.47/14.33 " 30.47/14.33 The following Function with conditions 30.47/14.33 "gcd 0 0 = error []; 30.47/14.33 gcd x y = gcd' (abs x) (abs y) where { 30.47/14.33 gcd' x 0 = x; 30.47/14.33 gcd' x y = gcd' y (x `rem` y); 30.47/14.33 } 30.47/14.33 ; 30.47/14.33 " 30.47/14.33 is transformed to 30.47/14.33 "gcd vvy vvz = gcd3 vvy vvz; 30.47/14.33 gcd x y = gcd0 x y; 30.47/14.33 " 30.47/14.33 "gcd0 x y = gcd' (abs x) (abs y) where { 30.47/14.33 gcd' x vuy = gcd'2 x vuy; 30.47/14.33 gcd' x y = gcd'0 x y; 30.47/14.33 ; 30.47/14.33 gcd'0 x y = gcd' y (x `rem` y); 30.47/14.33 ; 30.47/14.33 gcd'1 True x vuy = x; 30.47/14.33 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 30.47/14.33 ; 30.47/14.33 gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 30.47/14.33 gcd'2 vvw vvx = gcd'0 vvw vvx; 30.47/14.33 } 30.47/14.33 ; 30.47/14.33 " 30.47/14.33 "gcd1 True vvy vvz = error []; 30.47/14.33 gcd1 vwu vwv vww = gcd0 vwv vww; 30.47/14.33 " 30.47/14.33 "gcd2 True vvy vvz = gcd1 (vvz == 0) vvy vvz; 30.47/14.33 gcd2 vwx vwy vwz = gcd0 vwy vwz; 30.47/14.33 " 30.47/14.33 "gcd3 vvy vvz = gcd2 (vvy == 0) vvy vvz; 30.47/14.33 gcd3 vxu vxv = gcd0 vxu vxv; 30.47/14.33 " 30.47/14.33 The following Function with conditions 30.47/14.33 "undefined |Falseundefined; 30.47/14.33 " 30.47/14.33 is transformed to 30.47/14.33 "undefined = undefined1; 30.47/14.33 " 30.47/14.33 "undefined0 True = undefined; 30.47/14.33 " 30.47/14.33 "undefined1 = undefined0 False; 30.47/14.33 " 30.47/14.33 The following Function with conditions 30.47/14.33 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 30.47/14.33 d = gcd x y; 30.47/14.33 } 30.47/14.33 ; 30.47/14.33 " 30.47/14.33 is transformed to 30.47/14.33 "reduce x y = reduce2 x y; 30.47/14.33 " 30.47/14.33 "reduce2 x y = reduce1 x y (y == 0) where { 30.47/14.33 d = gcd x y; 30.47/14.33 ; 30.47/14.33 reduce0 x y True = x `quot` d :% (y `quot` d); 30.47/14.33 ; 30.47/14.33 reduce1 x y True = error []; 30.47/14.33 reduce1 x y False = reduce0 x y otherwise; 30.47/14.33 } 30.47/14.33 ; 30.47/14.33 " 30.47/14.33 The following Function with conditions 30.47/14.33 "lookupFM EmptyFM key = Nothing; 30.47/14.33 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; 30.47/14.33 " 30.47/14.33 is transformed to 30.47/14.33 "lookupFM EmptyFM key = lookupFM4 EmptyFM key; 30.47/14.33 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 30.47/14.33 " 30.47/14.33 "lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 30.47/14.33 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 30.47/14.33 " 30.47/14.33 "lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 30.47/14.33 " 30.47/14.33 "lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 30.47/14.33 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); 30.47/14.33 " 30.47/14.33 "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); 30.47/14.33 " 30.47/14.33 "lookupFM4 EmptyFM key = Nothing; 30.47/14.33 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 30.47/14.33 " 30.47/14.33 30.47/14.33 ---------------------------------------- 30.47/14.33 30.47/14.33 (10) 30.47/14.33 Obligation: 30.47/14.33 mainModule Main 30.47/14.33 module FiniteMap where { 30.47/14.33 import qualified Main; 30.47/14.33 import qualified Maybe; 30.47/14.33 import qualified Prelude; 30.47/14.33 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 30.47/14.33 30.47/14.33 instance (Eq a, Eq b) => Eq FiniteMap b a where { 30.47/14.33 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 30.47/14.33 } 30.47/14.33 fmToList :: FiniteMap a b -> [(a,b)]; 30.47/14.33 fmToList fm = foldFM fmToList0 [] fm; 30.47/14.33 30.47/14.33 fmToList0 key elt rest = (key,elt) : rest; 30.83/14.33 30.83/14.33 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 30.83/14.33 foldFM k z EmptyFM = z; 30.83/14.33 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 30.83/14.33 30.83/14.33 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 30.83/14.33 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 30.83/14.33 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 30.83/14.33 30.83/14.33 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 30.83/14.33 30.83/14.33 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 30.83/14.33 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 30.83/14.33 30.83/14.33 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 30.83/14.33 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); 30.83/14.33 30.83/14.33 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); 30.83/14.33 30.83/14.33 lookupFM4 EmptyFM key = Nothing; 30.83/14.33 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 30.83/14.33 30.83/14.33 sizeFM :: FiniteMap b a -> Int; 30.83/14.33 sizeFM EmptyFM = 0; 30.83/14.33 sizeFM (Branch zz vuu size vuv vuw) = size; 30.83/14.33 30.83/14.33 } 30.83/14.33 module Maybe where { 30.83/14.33 import qualified FiniteMap; 30.83/14.33 import qualified Main; 30.83/14.33 import qualified Prelude; 30.83/14.33 } 30.83/14.33 module Main where { 30.83/14.33 import qualified FiniteMap; 30.83/14.33 import qualified Maybe; 30.83/14.33 import qualified Prelude; 30.83/14.33 } 30.83/14.33 30.83/14.33 ---------------------------------------- 30.83/14.33 30.83/14.33 (11) LetRed (EQUIVALENT) 30.83/14.33 Let/Where Reductions: 30.83/14.33 The bindings of the following Let/Where expression 30.83/14.33 "gcd' (abs x) (abs y) where { 30.83/14.33 gcd' x vuy = gcd'2 x vuy; 30.83/14.33 gcd' x y = gcd'0 x y; 30.83/14.33 ; 30.83/14.33 gcd'0 x y = gcd' y (x `rem` y); 30.83/14.33 ; 30.83/14.33 gcd'1 True x vuy = x; 30.83/14.33 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 30.83/14.33 ; 30.83/14.33 gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 30.83/14.33 gcd'2 vvw vvx = gcd'0 vvw vvx; 30.83/14.33 } 30.83/14.33 " 30.83/14.33 are unpacked to the following functions on top level 30.83/14.33 "gcd0Gcd'1 True x vuy = x; 30.83/14.33 gcd0Gcd'1 vuz vvu vvv = gcd0Gcd'0 vvu vvv; 30.83/14.33 " 30.83/14.33 "gcd0Gcd' x vuy = gcd0Gcd'2 x vuy; 30.83/14.33 gcd0Gcd' x y = gcd0Gcd'0 x y; 30.83/14.33 " 30.83/14.33 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 30.83/14.33 " 30.83/14.33 "gcd0Gcd'2 x vuy = gcd0Gcd'1 (vuy == 0) x vuy; 30.83/14.33 gcd0Gcd'2 vvw vvx = gcd0Gcd'0 vvw vvx; 30.83/14.33 " 30.83/14.33 The bindings of the following Let/Where expression 30.83/14.33 "reduce1 x y (y == 0) where { 30.83/14.33 d = gcd x y; 30.83/14.33 ; 30.83/14.33 reduce0 x y True = x `quot` d :% (y `quot` d); 30.83/14.33 ; 30.83/14.33 reduce1 x y True = error []; 30.83/14.33 reduce1 x y False = reduce0 x y otherwise; 30.83/14.33 } 30.83/14.33 " 30.83/14.33 are unpacked to the following functions on top level 30.83/14.33 "reduce2Reduce1 vyu vyv x y True = error []; 30.83/14.33 reduce2Reduce1 vyu vyv x y False = reduce2Reduce0 vyu vyv x y otherwise; 30.83/14.33 " 30.83/14.33 "reduce2D vyu vyv = gcd vyu vyv; 30.83/14.33 " 30.83/14.33 "reduce2Reduce0 vyu vyv x y True = x `quot` reduce2D vyu vyv :% (y `quot` reduce2D vyu vyv); 30.83/14.33 " 30.83/14.33 30.83/14.33 ---------------------------------------- 30.83/14.33 30.83/14.33 (12) 30.83/14.33 Obligation: 30.83/14.33 mainModule Main 30.83/14.33 module FiniteMap where { 30.83/14.33 import qualified Main; 30.83/14.33 import qualified Maybe; 30.83/14.33 import qualified Prelude; 30.83/14.33 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 30.83/14.33 30.83/14.33 instance (Eq a, Eq b) => Eq FiniteMap b a where { 30.83/14.33 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 30.83/14.33 } 30.83/14.33 fmToList :: FiniteMap b a -> [(b,a)]; 30.83/14.33 fmToList fm = foldFM fmToList0 [] fm; 30.83/14.33 30.83/14.33 fmToList0 key elt rest = (key,elt) : rest; 30.83/14.33 30.83/14.33 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 30.83/14.33 foldFM k z EmptyFM = z; 30.83/14.33 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 30.83/14.33 30.83/14.33 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 30.83/14.33 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 30.83/14.33 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 30.83/14.33 30.83/14.33 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 30.83/14.33 30.83/14.33 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 30.83/14.33 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 30.83/14.33 30.83/14.33 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 30.83/14.33 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); 30.83/14.33 30.83/14.33 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); 30.83/14.33 30.83/14.33 lookupFM4 EmptyFM key = Nothing; 30.83/14.33 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 30.83/14.33 30.83/14.33 sizeFM :: FiniteMap b a -> Int; 30.83/14.33 sizeFM EmptyFM = 0; 30.83/14.33 sizeFM (Branch zz vuu size vuv vuw) = size; 30.83/14.33 30.83/14.33 } 30.83/14.33 module Maybe where { 30.83/14.33 import qualified FiniteMap; 30.83/14.33 import qualified Main; 30.83/14.33 import qualified Prelude; 30.83/14.33 } 30.83/14.33 module Main where { 30.83/14.33 import qualified FiniteMap; 30.83/14.33 import qualified Maybe; 30.83/14.33 import qualified Prelude; 30.83/14.33 } 30.83/14.33 30.83/14.33 ---------------------------------------- 30.83/14.33 30.83/14.33 (13) NumRed (SOUND) 30.83/14.33 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 30.83/14.33 ---------------------------------------- 30.83/14.33 30.83/14.33 (14) 30.83/14.33 Obligation: 30.83/14.33 mainModule Main 30.83/14.33 module FiniteMap where { 30.83/14.33 import qualified Main; 30.83/14.33 import qualified Maybe; 30.83/14.33 import qualified Prelude; 30.83/14.33 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 30.83/14.33 30.83/14.33 instance (Eq a, Eq b) => Eq FiniteMap b a where { 30.83/14.33 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 30.83/14.33 } 30.83/14.33 fmToList :: FiniteMap a b -> [(a,b)]; 30.83/14.33 fmToList fm = foldFM fmToList0 [] fm; 30.83/14.33 30.83/14.33 fmToList0 key elt rest = (key,elt) : rest; 30.83/14.34 30.83/14.34 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 30.83/14.34 foldFM k z EmptyFM = z; 30.83/14.34 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 30.83/14.34 30.83/14.34 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 30.83/14.34 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 30.83/14.34 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 30.83/14.34 30.83/14.34 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 30.83/14.34 30.83/14.34 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 30.83/14.34 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 30.83/14.34 30.83/14.34 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 30.83/14.34 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); 30.83/14.34 30.83/14.34 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); 30.83/14.34 30.83/14.34 lookupFM4 EmptyFM key = Nothing; 30.83/14.34 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 30.83/14.34 30.83/14.34 sizeFM :: FiniteMap b a -> Int; 30.83/14.34 sizeFM EmptyFM = Pos Zero; 30.83/14.34 sizeFM (Branch zz vuu size vuv vuw) = size; 30.83/14.34 30.83/14.34 } 30.83/14.34 module Maybe where { 30.83/14.34 import qualified FiniteMap; 30.83/14.34 import qualified Main; 30.83/14.34 import qualified Prelude; 30.83/14.34 } 30.83/14.34 module Main where { 30.83/14.34 import qualified FiniteMap; 30.83/14.34 import qualified Maybe; 30.83/14.34 import qualified Prelude; 30.83/14.34 } 30.83/14.34 30.83/14.34 ---------------------------------------- 30.83/14.34 30.83/14.34 (15) Narrow (SOUND) 30.83/14.34 Haskell To QDPs 30.83/14.34 30.83/14.34 digraph dp_graph { 30.83/14.34 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.lookupFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 30.83/14.34 3[label="FiniteMap.lookupFM vyw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 30.83/14.34 4[label="FiniteMap.lookupFM vyw3 vyw4",fontsize=16,color="burlywood",shape="triangle"];2972[label="vyw3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4 -> 2972[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 2972 -> 5[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 2973[label="vyw3/FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34",fontsize=10,color="white",style="solid",shape="box"];4 -> 2973[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 2973 -> 6[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 5[label="FiniteMap.lookupFM FiniteMap.EmptyFM vyw4",fontsize=16,color="black",shape="box"];5 -> 7[label="",style="solid", color="black", weight=3]; 30.83/14.34 6[label="FiniteMap.lookupFM (FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34) vyw4",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 30.83/14.34 7[label="FiniteMap.lookupFM4 FiniteMap.EmptyFM vyw4",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 30.83/14.34 8[label="FiniteMap.lookupFM3 (FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34) vyw4",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 30.83/14.34 9[label="Nothing",fontsize=16,color="green",shape="box"];10 -> 11[label="",style="dashed", color="red", weight=0]; 30.83/14.34 10[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw4 (vyw4 < vyw30)",fontsize=16,color="magenta"];10 -> 12[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 10 -> 13[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 10 -> 14[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 10 -> 15[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 10 -> 16[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 10 -> 17[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 10 -> 18[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 12[label="vyw31",fontsize=16,color="green",shape="box"];13[label="vyw4 < vyw30",fontsize=16,color="blue",shape="box"];2974[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];13 -> 2974[label="",style="solid", color="blue", weight=9]; 30.83/14.34 2974 -> 19[label="",style="solid", color="blue", weight=3]; 30.83/14.34 2975[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];13 -> 2975[label="",style="solid", color="blue", weight=9]; 30.83/14.34 2975 -> 20[label="",style="solid", color="blue", weight=3]; 30.83/14.34 2976[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];13 -> 2976[label="",style="solid", color="blue", weight=9]; 30.83/14.34 2976 -> 21[label="",style="solid", color="blue", weight=3]; 30.83/14.34 2977[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];13 -> 2977[label="",style="solid", color="blue", weight=9]; 30.83/14.34 2977 -> 22[label="",style="solid", color="blue", weight=3]; 30.83/14.34 2978[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];13 -> 2978[label="",style="solid", color="blue", weight=9]; 30.83/14.34 2978 -> 23[label="",style="solid", color="blue", weight=3]; 30.83/14.34 2979[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];13 -> 2979[label="",style="solid", color="blue", weight=9]; 30.83/14.34 2979 -> 24[label="",style="solid", color="blue", weight=3]; 30.83/14.34 2980[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];13 -> 2980[label="",style="solid", color="blue", weight=9]; 30.83/14.34 2980 -> 25[label="",style="solid", color="blue", weight=3]; 30.83/14.34 2981[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];13 -> 2981[label="",style="solid", color="blue", weight=9]; 30.83/14.34 2981 -> 26[label="",style="solid", color="blue", weight=3]; 30.83/14.34 2982[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];13 -> 2982[label="",style="solid", color="blue", weight=9]; 30.83/14.34 2982 -> 27[label="",style="solid", color="blue", weight=3]; 30.83/14.34 2983[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];13 -> 2983[label="",style="solid", color="blue", weight=9]; 30.83/14.34 2983 -> 28[label="",style="solid", color="blue", weight=3]; 30.83/14.34 2984[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];13 -> 2984[label="",style="solid", color="blue", weight=9]; 30.83/14.34 2984 -> 29[label="",style="solid", color="blue", weight=3]; 30.83/14.34 2985[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];13 -> 2985[label="",style="solid", color="blue", weight=9]; 30.83/14.34 2985 -> 30[label="",style="solid", color="blue", weight=3]; 30.83/14.34 2986[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];13 -> 2986[label="",style="solid", color="blue", weight=9]; 30.83/14.34 2986 -> 31[label="",style="solid", color="blue", weight=3]; 30.83/14.34 2987[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];13 -> 2987[label="",style="solid", color="blue", weight=9]; 30.83/14.34 2987 -> 32[label="",style="solid", color="blue", weight=3]; 30.83/14.34 14[label="vyw32",fontsize=16,color="green",shape="box"];15[label="vyw30",fontsize=16,color="green",shape="box"];16[label="vyw33",fontsize=16,color="green",shape="box"];17[label="vyw4",fontsize=16,color="green",shape="box"];18[label="vyw34",fontsize=16,color="green",shape="box"];11[label="FiniteMap.lookupFM2 vyw13 vyw14 vyw15 vyw16 vyw17 vyw18 vyw19",fontsize=16,color="burlywood",shape="triangle"];2988[label="vyw19/False",fontsize=10,color="white",style="solid",shape="box"];11 -> 2988[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 2988 -> 33[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 2989[label="vyw19/True",fontsize=10,color="white",style="solid",shape="box"];11 -> 2989[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 2989 -> 34[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 19[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];19 -> 35[label="",style="solid", color="black", weight=3]; 30.83/14.34 20[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];20 -> 36[label="",style="solid", color="black", weight=3]; 30.83/14.34 21[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];21 -> 37[label="",style="solid", color="black", weight=3]; 30.83/14.34 22[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];22 -> 38[label="",style="solid", color="black", weight=3]; 30.83/14.34 23[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];23 -> 39[label="",style="solid", color="black", weight=3]; 30.83/14.34 24[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];24 -> 40[label="",style="solid", color="black", weight=3]; 30.83/14.34 25[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];25 -> 41[label="",style="solid", color="black", weight=3]; 30.83/14.34 26[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];26 -> 42[label="",style="solid", color="black", weight=3]; 30.83/14.34 27[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];27 -> 43[label="",style="solid", color="black", weight=3]; 30.83/14.34 28[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];28 -> 44[label="",style="solid", color="black", weight=3]; 30.83/14.34 29[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];29 -> 45[label="",style="solid", color="black", weight=3]; 30.83/14.34 30[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];30 -> 46[label="",style="solid", color="black", weight=3]; 30.83/14.34 31[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];31 -> 47[label="",style="solid", color="black", weight=3]; 30.83/14.34 32[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];32 -> 48[label="",style="solid", color="black", weight=3]; 30.83/14.34 33[label="FiniteMap.lookupFM2 vyw13 vyw14 vyw15 vyw16 vyw17 vyw18 False",fontsize=16,color="black",shape="box"];33 -> 49[label="",style="solid", color="black", weight=3]; 30.83/14.34 34[label="FiniteMap.lookupFM2 vyw13 vyw14 vyw15 vyw16 vyw17 vyw18 True",fontsize=16,color="black",shape="box"];34 -> 50[label="",style="solid", color="black", weight=3]; 30.83/14.34 35 -> 168[label="",style="dashed", color="red", weight=0]; 30.83/14.34 35[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];35 -> 169[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 36 -> 168[label="",style="dashed", color="red", weight=0]; 30.83/14.34 36[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];36 -> 170[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 37 -> 168[label="",style="dashed", color="red", weight=0]; 30.83/14.34 37[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];37 -> 171[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 38 -> 168[label="",style="dashed", color="red", weight=0]; 30.83/14.34 38[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];38 -> 172[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 39 -> 168[label="",style="dashed", color="red", weight=0]; 30.83/14.34 39[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];39 -> 173[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 40 -> 168[label="",style="dashed", color="red", weight=0]; 30.83/14.34 40[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];40 -> 174[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 41 -> 168[label="",style="dashed", color="red", weight=0]; 30.83/14.34 41[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];41 -> 175[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 42 -> 168[label="",style="dashed", color="red", weight=0]; 30.83/14.34 42[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];42 -> 176[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 43 -> 168[label="",style="dashed", color="red", weight=0]; 30.83/14.34 43[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];43 -> 177[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 44 -> 168[label="",style="dashed", color="red", weight=0]; 30.83/14.34 44[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];44 -> 178[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 45 -> 168[label="",style="dashed", color="red", weight=0]; 30.83/14.34 45[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];45 -> 179[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 46 -> 168[label="",style="dashed", color="red", weight=0]; 30.83/14.34 46[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];46 -> 180[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 47 -> 168[label="",style="dashed", color="red", weight=0]; 30.83/14.34 47[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];47 -> 181[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 48 -> 168[label="",style="dashed", color="red", weight=0]; 30.83/14.34 48[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];48 -> 182[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 49 -> 66[label="",style="dashed", color="red", weight=0]; 30.83/14.34 49[label="FiniteMap.lookupFM1 vyw13 vyw14 vyw15 vyw16 vyw17 vyw18 (vyw18 > vyw13)",fontsize=16,color="magenta"];49 -> 67[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 49 -> 68[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 49 -> 69[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 49 -> 70[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 49 -> 71[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 49 -> 72[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 49 -> 73[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 50 -> 4[label="",style="dashed", color="red", weight=0]; 30.83/14.34 50[label="FiniteMap.lookupFM vyw16 vyw18",fontsize=16,color="magenta"];50 -> 74[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 50 -> 75[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 169[label="compare vyw4 vyw30",fontsize=16,color="burlywood",shape="triangle"];2990[label="vyw4/vyw40 : vyw41",fontsize=10,color="white",style="solid",shape="box"];169 -> 2990[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 2990 -> 208[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 2991[label="vyw4/[]",fontsize=10,color="white",style="solid",shape="box"];169 -> 2991[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 2991 -> 209[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 168[label="vyw37 == LT",fontsize=16,color="burlywood",shape="triangle"];2992[label="vyw37/LT",fontsize=10,color="white",style="solid",shape="box"];168 -> 2992[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 2992 -> 210[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 2993[label="vyw37/EQ",fontsize=10,color="white",style="solid",shape="box"];168 -> 2993[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 2993 -> 211[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 2994[label="vyw37/GT",fontsize=10,color="white",style="solid",shape="box"];168 -> 2994[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 2994 -> 212[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 170[label="compare vyw4 vyw30",fontsize=16,color="black",shape="triangle"];170 -> 213[label="",style="solid", color="black", weight=3]; 30.83/14.34 171[label="compare vyw4 vyw30",fontsize=16,color="black",shape="triangle"];171 -> 214[label="",style="solid", color="black", weight=3]; 30.83/14.34 172[label="compare vyw4 vyw30",fontsize=16,color="burlywood",shape="triangle"];2995[label="vyw4/Integer vyw40",fontsize=10,color="white",style="solid",shape="box"];172 -> 2995[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 2995 -> 215[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 173[label="compare vyw4 vyw30",fontsize=16,color="burlywood",shape="triangle"];2996[label="vyw4/vyw40 :% vyw41",fontsize=10,color="white",style="solid",shape="box"];173 -> 2996[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 2996 -> 216[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 174[label="compare vyw4 vyw30",fontsize=16,color="black",shape="triangle"];174 -> 217[label="",style="solid", color="black", weight=3]; 30.83/14.34 175[label="compare vyw4 vyw30",fontsize=16,color="black",shape="triangle"];175 -> 218[label="",style="solid", color="black", weight=3]; 30.83/14.34 176[label="compare vyw4 vyw30",fontsize=16,color="black",shape="triangle"];176 -> 219[label="",style="solid", color="black", weight=3]; 30.83/14.34 177[label="compare vyw4 vyw30",fontsize=16,color="burlywood",shape="triangle"];2997[label="vyw4/()",fontsize=10,color="white",style="solid",shape="box"];177 -> 2997[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 2997 -> 220[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 178[label="compare vyw4 vyw30",fontsize=16,color="black",shape="triangle"];178 -> 221[label="",style="solid", color="black", weight=3]; 30.83/14.34 179[label="compare vyw4 vyw30",fontsize=16,color="black",shape="triangle"];179 -> 222[label="",style="solid", color="black", weight=3]; 30.83/14.34 180[label="compare vyw4 vyw30",fontsize=16,color="black",shape="triangle"];180 -> 223[label="",style="solid", color="black", weight=3]; 30.83/14.34 181[label="compare vyw4 vyw30",fontsize=16,color="black",shape="triangle"];181 -> 224[label="",style="solid", color="black", weight=3]; 30.83/14.34 182[label="compare vyw4 vyw30",fontsize=16,color="black",shape="triangle"];182 -> 225[label="",style="solid", color="black", weight=3]; 30.83/14.34 67[label="vyw18",fontsize=16,color="green",shape="box"];68[label="vyw13",fontsize=16,color="green",shape="box"];69[label="vyw15",fontsize=16,color="green",shape="box"];70[label="vyw14",fontsize=16,color="green",shape="box"];71[label="vyw16",fontsize=16,color="green",shape="box"];72[label="vyw17",fontsize=16,color="green",shape="box"];73[label="vyw18 > vyw13",fontsize=16,color="blue",shape="box"];2998[label="> :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];73 -> 2998[label="",style="solid", color="blue", weight=9]; 30.83/14.34 2998 -> 94[label="",style="solid", color="blue", weight=3]; 30.83/14.34 2999[label="> :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];73 -> 2999[label="",style="solid", color="blue", weight=9]; 30.83/14.34 2999 -> 95[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3000[label="> :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];73 -> 3000[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3000 -> 96[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3001[label="> :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];73 -> 3001[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3001 -> 97[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3002[label="> :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];73 -> 3002[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3002 -> 98[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3003[label="> :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];73 -> 3003[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3003 -> 99[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3004[label="> :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];73 -> 3004[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3004 -> 100[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3005[label="> :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];73 -> 3005[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3005 -> 101[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3006[label="> :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];73 -> 3006[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3006 -> 102[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3007[label="> :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];73 -> 3007[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3007 -> 103[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3008[label="> :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];73 -> 3008[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3008 -> 104[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3009[label="> :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];73 -> 3009[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3009 -> 105[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3010[label="> :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];73 -> 3010[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3010 -> 106[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3011[label="> :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];73 -> 3011[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3011 -> 107[label="",style="solid", color="blue", weight=3]; 30.83/14.34 66[label="FiniteMap.lookupFM1 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 vyw34",fontsize=16,color="burlywood",shape="triangle"];3012[label="vyw34/False",fontsize=10,color="white",style="solid",shape="box"];66 -> 3012[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3012 -> 108[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3013[label="vyw34/True",fontsize=10,color="white",style="solid",shape="box"];66 -> 3013[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3013 -> 109[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 74[label="vyw16",fontsize=16,color="green",shape="box"];75[label="vyw18",fontsize=16,color="green",shape="box"];208[label="compare (vyw40 : vyw41) vyw30",fontsize=16,color="burlywood",shape="box"];3014[label="vyw30/vyw300 : vyw301",fontsize=10,color="white",style="solid",shape="box"];208 -> 3014[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3014 -> 241[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3015[label="vyw30/[]",fontsize=10,color="white",style="solid",shape="box"];208 -> 3015[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3015 -> 242[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 209[label="compare [] vyw30",fontsize=16,color="burlywood",shape="box"];3016[label="vyw30/vyw300 : vyw301",fontsize=10,color="white",style="solid",shape="box"];209 -> 3016[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3016 -> 243[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3017[label="vyw30/[]",fontsize=10,color="white",style="solid",shape="box"];209 -> 3017[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3017 -> 244[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 210[label="LT == LT",fontsize=16,color="black",shape="box"];210 -> 245[label="",style="solid", color="black", weight=3]; 30.83/14.34 211[label="EQ == LT",fontsize=16,color="black",shape="box"];211 -> 246[label="",style="solid", color="black", weight=3]; 30.83/14.34 212[label="GT == LT",fontsize=16,color="black",shape="box"];212 -> 247[label="",style="solid", color="black", weight=3]; 30.83/14.34 213[label="primCmpInt vyw4 vyw30",fontsize=16,color="burlywood",shape="triangle"];3018[label="vyw4/Pos vyw40",fontsize=10,color="white",style="solid",shape="box"];213 -> 3018[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3018 -> 248[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3019[label="vyw4/Neg vyw40",fontsize=10,color="white",style="solid",shape="box"];213 -> 3019[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3019 -> 249[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 214[label="primCmpChar vyw4 vyw30",fontsize=16,color="burlywood",shape="box"];3020[label="vyw4/Char vyw40",fontsize=10,color="white",style="solid",shape="box"];214 -> 3020[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3020 -> 250[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 215[label="compare (Integer vyw40) vyw30",fontsize=16,color="burlywood",shape="box"];3021[label="vyw30/Integer vyw300",fontsize=10,color="white",style="solid",shape="box"];215 -> 3021[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3021 -> 251[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 216[label="compare (vyw40 :% vyw41) vyw30",fontsize=16,color="burlywood",shape="box"];3022[label="vyw30/vyw300 :% vyw301",fontsize=10,color="white",style="solid",shape="box"];216 -> 3022[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3022 -> 252[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 217[label="primCmpDouble vyw4 vyw30",fontsize=16,color="burlywood",shape="box"];3023[label="vyw4/Double vyw40 vyw41",fontsize=10,color="white",style="solid",shape="box"];217 -> 3023[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3023 -> 253[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 218[label="compare3 vyw4 vyw30",fontsize=16,color="black",shape="box"];218 -> 254[label="",style="solid", color="black", weight=3]; 30.83/14.34 219[label="compare3 vyw4 vyw30",fontsize=16,color="black",shape="box"];219 -> 255[label="",style="solid", color="black", weight=3]; 30.83/14.34 220[label="compare () vyw30",fontsize=16,color="burlywood",shape="box"];3024[label="vyw30/()",fontsize=10,color="white",style="solid",shape="box"];220 -> 3024[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3024 -> 256[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 221[label="primCmpFloat vyw4 vyw30",fontsize=16,color="burlywood",shape="box"];3025[label="vyw4/Float vyw40 vyw41",fontsize=10,color="white",style="solid",shape="box"];221 -> 3025[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3025 -> 257[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 222[label="compare3 vyw4 vyw30",fontsize=16,color="black",shape="box"];222 -> 258[label="",style="solid", color="black", weight=3]; 30.83/14.34 223[label="compare3 vyw4 vyw30",fontsize=16,color="black",shape="box"];223 -> 259[label="",style="solid", color="black", weight=3]; 30.83/14.34 224[label="compare3 vyw4 vyw30",fontsize=16,color="black",shape="box"];224 -> 260[label="",style="solid", color="black", weight=3]; 30.83/14.34 225[label="compare3 vyw4 vyw30",fontsize=16,color="black",shape="box"];225 -> 261[label="",style="solid", color="black", weight=3]; 30.83/14.34 94[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];94 -> 137[label="",style="solid", color="black", weight=3]; 30.83/14.34 95[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];95 -> 138[label="",style="solid", color="black", weight=3]; 30.83/14.34 96[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];96 -> 139[label="",style="solid", color="black", weight=3]; 30.83/14.34 97[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];97 -> 140[label="",style="solid", color="black", weight=3]; 30.83/14.34 98[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];98 -> 141[label="",style="solid", color="black", weight=3]; 30.83/14.34 99[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];99 -> 142[label="",style="solid", color="black", weight=3]; 30.83/14.34 100[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];100 -> 143[label="",style="solid", color="black", weight=3]; 30.83/14.34 101[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];101 -> 144[label="",style="solid", color="black", weight=3]; 30.83/14.34 102[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];102 -> 145[label="",style="solid", color="black", weight=3]; 30.83/14.34 103[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];103 -> 146[label="",style="solid", color="black", weight=3]; 30.83/14.34 104[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];104 -> 147[label="",style="solid", color="black", weight=3]; 30.83/14.34 105[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];105 -> 148[label="",style="solid", color="black", weight=3]; 30.83/14.34 106[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];106 -> 149[label="",style="solid", color="black", weight=3]; 30.83/14.34 107[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];107 -> 150[label="",style="solid", color="black", weight=3]; 30.83/14.34 108[label="FiniteMap.lookupFM1 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 False",fontsize=16,color="black",shape="box"];108 -> 151[label="",style="solid", color="black", weight=3]; 30.83/14.34 109[label="FiniteMap.lookupFM1 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 True",fontsize=16,color="black",shape="box"];109 -> 152[label="",style="solid", color="black", weight=3]; 30.83/14.34 241[label="compare (vyw40 : vyw41) (vyw300 : vyw301)",fontsize=16,color="black",shape="box"];241 -> 296[label="",style="solid", color="black", weight=3]; 30.83/14.34 242[label="compare (vyw40 : vyw41) []",fontsize=16,color="black",shape="box"];242 -> 297[label="",style="solid", color="black", weight=3]; 30.83/14.34 243[label="compare [] (vyw300 : vyw301)",fontsize=16,color="black",shape="box"];243 -> 298[label="",style="solid", color="black", weight=3]; 30.83/14.34 244[label="compare [] []",fontsize=16,color="black",shape="box"];244 -> 299[label="",style="solid", color="black", weight=3]; 30.83/14.34 245[label="True",fontsize=16,color="green",shape="box"];246[label="False",fontsize=16,color="green",shape="box"];247[label="False",fontsize=16,color="green",shape="box"];248[label="primCmpInt (Pos vyw40) vyw30",fontsize=16,color="burlywood",shape="box"];3026[label="vyw40/Succ vyw400",fontsize=10,color="white",style="solid",shape="box"];248 -> 3026[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3026 -> 300[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3027[label="vyw40/Zero",fontsize=10,color="white",style="solid",shape="box"];248 -> 3027[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3027 -> 301[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 249[label="primCmpInt (Neg vyw40) vyw30",fontsize=16,color="burlywood",shape="box"];3028[label="vyw40/Succ vyw400",fontsize=10,color="white",style="solid",shape="box"];249 -> 3028[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3028 -> 302[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3029[label="vyw40/Zero",fontsize=10,color="white",style="solid",shape="box"];249 -> 3029[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3029 -> 303[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 250[label="primCmpChar (Char vyw40) vyw30",fontsize=16,color="burlywood",shape="box"];3030[label="vyw30/Char vyw300",fontsize=10,color="white",style="solid",shape="box"];250 -> 3030[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3030 -> 304[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 251[label="compare (Integer vyw40) (Integer vyw300)",fontsize=16,color="black",shape="box"];251 -> 305[label="",style="solid", color="black", weight=3]; 30.83/14.34 252[label="compare (vyw40 :% vyw41) (vyw300 :% vyw301)",fontsize=16,color="black",shape="box"];252 -> 306[label="",style="solid", color="black", weight=3]; 30.83/14.34 253[label="primCmpDouble (Double vyw40 vyw41) vyw30",fontsize=16,color="burlywood",shape="box"];3031[label="vyw41/Pos vyw410",fontsize=10,color="white",style="solid",shape="box"];253 -> 3031[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3031 -> 307[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3032[label="vyw41/Neg vyw410",fontsize=10,color="white",style="solid",shape="box"];253 -> 3032[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3032 -> 308[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 254[label="compare2 vyw4 vyw30 (vyw4 == vyw30)",fontsize=16,color="burlywood",shape="box"];3033[label="vyw4/Nothing",fontsize=10,color="white",style="solid",shape="box"];254 -> 3033[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3033 -> 309[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3034[label="vyw4/Just vyw40",fontsize=10,color="white",style="solid",shape="box"];254 -> 3034[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3034 -> 310[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 255[label="compare2 vyw4 vyw30 (vyw4 == vyw30)",fontsize=16,color="burlywood",shape="box"];3035[label="vyw4/(vyw40,vyw41,vyw42)",fontsize=10,color="white",style="solid",shape="box"];255 -> 3035[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3035 -> 311[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 256[label="compare () ()",fontsize=16,color="black",shape="box"];256 -> 312[label="",style="solid", color="black", weight=3]; 30.83/14.34 257[label="primCmpFloat (Float vyw40 vyw41) vyw30",fontsize=16,color="burlywood",shape="box"];3036[label="vyw41/Pos vyw410",fontsize=10,color="white",style="solid",shape="box"];257 -> 3036[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3036 -> 313[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3037[label="vyw41/Neg vyw410",fontsize=10,color="white",style="solid",shape="box"];257 -> 3037[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3037 -> 314[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 258[label="compare2 vyw4 vyw30 (vyw4 == vyw30)",fontsize=16,color="burlywood",shape="box"];3038[label="vyw4/Left vyw40",fontsize=10,color="white",style="solid",shape="box"];258 -> 3038[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3038 -> 315[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3039[label="vyw4/Right vyw40",fontsize=10,color="white",style="solid",shape="box"];258 -> 3039[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3039 -> 316[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 259[label="compare2 vyw4 vyw30 (vyw4 == vyw30)",fontsize=16,color="burlywood",shape="box"];3040[label="vyw4/(vyw40,vyw41)",fontsize=10,color="white",style="solid",shape="box"];259 -> 3040[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3040 -> 317[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 260[label="compare2 vyw4 vyw30 (vyw4 == vyw30)",fontsize=16,color="burlywood",shape="box"];3041[label="vyw4/False",fontsize=10,color="white",style="solid",shape="box"];260 -> 3041[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3041 -> 318[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3042[label="vyw4/True",fontsize=10,color="white",style="solid",shape="box"];260 -> 3042[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3042 -> 319[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 261[label="compare2 vyw4 vyw30 (vyw4 == vyw30)",fontsize=16,color="burlywood",shape="box"];3043[label="vyw4/LT",fontsize=10,color="white",style="solid",shape="box"];261 -> 3043[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3043 -> 320[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3044[label="vyw4/EQ",fontsize=10,color="white",style="solid",shape="box"];261 -> 3044[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3044 -> 321[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3045[label="vyw4/GT",fontsize=10,color="white",style="solid",shape="box"];261 -> 3045[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3045 -> 322[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 137 -> 226[label="",style="dashed", color="red", weight=0]; 30.83/14.34 137[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];137 -> 227[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 138 -> 226[label="",style="dashed", color="red", weight=0]; 30.83/14.34 138[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];138 -> 228[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 139 -> 226[label="",style="dashed", color="red", weight=0]; 30.83/14.34 139[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];139 -> 229[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 140 -> 226[label="",style="dashed", color="red", weight=0]; 30.83/14.34 140[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];140 -> 230[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 141 -> 226[label="",style="dashed", color="red", weight=0]; 30.83/14.34 141[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];141 -> 231[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 142 -> 226[label="",style="dashed", color="red", weight=0]; 30.83/14.34 142[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];142 -> 232[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 143 -> 226[label="",style="dashed", color="red", weight=0]; 30.83/14.34 143[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];143 -> 233[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 144 -> 226[label="",style="dashed", color="red", weight=0]; 30.83/14.34 144[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];144 -> 234[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 145 -> 226[label="",style="dashed", color="red", weight=0]; 30.83/14.34 145[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];145 -> 235[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 146 -> 226[label="",style="dashed", color="red", weight=0]; 30.83/14.34 146[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];146 -> 236[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 147 -> 226[label="",style="dashed", color="red", weight=0]; 30.83/14.34 147[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];147 -> 237[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 148 -> 226[label="",style="dashed", color="red", weight=0]; 30.83/14.34 148[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];148 -> 238[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 149 -> 226[label="",style="dashed", color="red", weight=0]; 30.83/14.34 149[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];149 -> 239[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 150 -> 226[label="",style="dashed", color="red", weight=0]; 30.83/14.34 150[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];150 -> 240[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 151[label="FiniteMap.lookupFM0 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 otherwise",fontsize=16,color="black",shape="box"];151 -> 262[label="",style="solid", color="black", weight=3]; 30.83/14.34 152 -> 4[label="",style="dashed", color="red", weight=0]; 30.83/14.34 152[label="FiniteMap.lookupFM vyw32 vyw33",fontsize=16,color="magenta"];152 -> 263[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 152 -> 264[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 296 -> 327[label="",style="dashed", color="red", weight=0]; 30.83/14.34 296[label="primCompAux vyw40 vyw300 (compare vyw41 vyw301)",fontsize=16,color="magenta"];296 -> 328[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 297[label="GT",fontsize=16,color="green",shape="box"];298[label="LT",fontsize=16,color="green",shape="box"];299[label="EQ",fontsize=16,color="green",shape="box"];300[label="primCmpInt (Pos (Succ vyw400)) vyw30",fontsize=16,color="burlywood",shape="box"];3046[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];300 -> 3046[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3046 -> 329[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3047[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];300 -> 3047[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3047 -> 330[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 301[label="primCmpInt (Pos Zero) vyw30",fontsize=16,color="burlywood",shape="box"];3048[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];301 -> 3048[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3048 -> 331[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3049[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];301 -> 3049[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3049 -> 332[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 302[label="primCmpInt (Neg (Succ vyw400)) vyw30",fontsize=16,color="burlywood",shape="box"];3050[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];302 -> 3050[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3050 -> 333[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3051[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];302 -> 3051[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3051 -> 334[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 303[label="primCmpInt (Neg Zero) vyw30",fontsize=16,color="burlywood",shape="box"];3052[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];303 -> 3052[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3052 -> 335[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3053[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];303 -> 3053[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3053 -> 336[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 304[label="primCmpChar (Char vyw40) (Char vyw300)",fontsize=16,color="black",shape="box"];304 -> 337[label="",style="solid", color="black", weight=3]; 30.83/14.34 305 -> 213[label="",style="dashed", color="red", weight=0]; 30.83/14.34 305[label="primCmpInt vyw40 vyw300",fontsize=16,color="magenta"];305 -> 338[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 305 -> 339[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 306[label="compare (vyw40 * vyw301) (vyw300 * vyw41)",fontsize=16,color="blue",shape="box"];3054[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];306 -> 3054[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3054 -> 340[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3055[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];306 -> 3055[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3055 -> 341[label="",style="solid", color="blue", weight=3]; 30.83/14.34 307[label="primCmpDouble (Double vyw40 (Pos vyw410)) vyw30",fontsize=16,color="burlywood",shape="box"];3056[label="vyw30/Double vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];307 -> 3056[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3056 -> 342[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 308[label="primCmpDouble (Double vyw40 (Neg vyw410)) vyw30",fontsize=16,color="burlywood",shape="box"];3057[label="vyw30/Double vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];308 -> 3057[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3057 -> 343[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 309[label="compare2 Nothing vyw30 (Nothing == vyw30)",fontsize=16,color="burlywood",shape="box"];3058[label="vyw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];309 -> 3058[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3058 -> 344[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3059[label="vyw30/Just vyw300",fontsize=10,color="white",style="solid",shape="box"];309 -> 3059[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3059 -> 345[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 310[label="compare2 (Just vyw40) vyw30 (Just vyw40 == vyw30)",fontsize=16,color="burlywood",shape="box"];3060[label="vyw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];310 -> 3060[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3060 -> 346[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3061[label="vyw30/Just vyw300",fontsize=10,color="white",style="solid",shape="box"];310 -> 3061[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3061 -> 347[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 311[label="compare2 (vyw40,vyw41,vyw42) vyw30 ((vyw40,vyw41,vyw42) == vyw30)",fontsize=16,color="burlywood",shape="box"];3062[label="vyw30/(vyw300,vyw301,vyw302)",fontsize=10,color="white",style="solid",shape="box"];311 -> 3062[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3062 -> 348[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 312[label="EQ",fontsize=16,color="green",shape="box"];313[label="primCmpFloat (Float vyw40 (Pos vyw410)) vyw30",fontsize=16,color="burlywood",shape="box"];3063[label="vyw30/Float vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];313 -> 3063[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3063 -> 349[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 314[label="primCmpFloat (Float vyw40 (Neg vyw410)) vyw30",fontsize=16,color="burlywood",shape="box"];3064[label="vyw30/Float vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];314 -> 3064[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3064 -> 350[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 315[label="compare2 (Left vyw40) vyw30 (Left vyw40 == vyw30)",fontsize=16,color="burlywood",shape="box"];3065[label="vyw30/Left vyw300",fontsize=10,color="white",style="solid",shape="box"];315 -> 3065[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3065 -> 351[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3066[label="vyw30/Right vyw300",fontsize=10,color="white",style="solid",shape="box"];315 -> 3066[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3066 -> 352[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 316[label="compare2 (Right vyw40) vyw30 (Right vyw40 == vyw30)",fontsize=16,color="burlywood",shape="box"];3067[label="vyw30/Left vyw300",fontsize=10,color="white",style="solid",shape="box"];316 -> 3067[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3067 -> 353[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3068[label="vyw30/Right vyw300",fontsize=10,color="white",style="solid",shape="box"];316 -> 3068[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3068 -> 354[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 317[label="compare2 (vyw40,vyw41) vyw30 ((vyw40,vyw41) == vyw30)",fontsize=16,color="burlywood",shape="box"];3069[label="vyw30/(vyw300,vyw301)",fontsize=10,color="white",style="solid",shape="box"];317 -> 3069[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3069 -> 355[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 318[label="compare2 False vyw30 (False == vyw30)",fontsize=16,color="burlywood",shape="box"];3070[label="vyw30/False",fontsize=10,color="white",style="solid",shape="box"];318 -> 3070[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3070 -> 356[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3071[label="vyw30/True",fontsize=10,color="white",style="solid",shape="box"];318 -> 3071[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3071 -> 357[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 319[label="compare2 True vyw30 (True == vyw30)",fontsize=16,color="burlywood",shape="box"];3072[label="vyw30/False",fontsize=10,color="white",style="solid",shape="box"];319 -> 3072[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3072 -> 358[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3073[label="vyw30/True",fontsize=10,color="white",style="solid",shape="box"];319 -> 3073[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3073 -> 359[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 320[label="compare2 LT vyw30 (LT == vyw30)",fontsize=16,color="burlywood",shape="box"];3074[label="vyw30/LT",fontsize=10,color="white",style="solid",shape="box"];320 -> 3074[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3074 -> 360[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3075[label="vyw30/EQ",fontsize=10,color="white",style="solid",shape="box"];320 -> 3075[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3075 -> 361[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3076[label="vyw30/GT",fontsize=10,color="white",style="solid",shape="box"];320 -> 3076[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3076 -> 362[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 321[label="compare2 EQ vyw30 (EQ == vyw30)",fontsize=16,color="burlywood",shape="box"];3077[label="vyw30/LT",fontsize=10,color="white",style="solid",shape="box"];321 -> 3077[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3077 -> 363[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3078[label="vyw30/EQ",fontsize=10,color="white",style="solid",shape="box"];321 -> 3078[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3078 -> 364[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3079[label="vyw30/GT",fontsize=10,color="white",style="solid",shape="box"];321 -> 3079[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3079 -> 365[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 322[label="compare2 GT vyw30 (GT == vyw30)",fontsize=16,color="burlywood",shape="box"];3080[label="vyw30/LT",fontsize=10,color="white",style="solid",shape="box"];322 -> 3080[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3080 -> 366[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3081[label="vyw30/EQ",fontsize=10,color="white",style="solid",shape="box"];322 -> 3081[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3081 -> 367[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3082[label="vyw30/GT",fontsize=10,color="white",style="solid",shape="box"];322 -> 3082[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3082 -> 368[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 227 -> 169[label="",style="dashed", color="red", weight=0]; 30.83/14.34 227[label="compare vyw18 vyw13",fontsize=16,color="magenta"];227 -> 265[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 227 -> 266[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 226[label="vyw38 == GT",fontsize=16,color="burlywood",shape="triangle"];3083[label="vyw38/LT",fontsize=10,color="white",style="solid",shape="box"];226 -> 3083[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3083 -> 267[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3084[label="vyw38/EQ",fontsize=10,color="white",style="solid",shape="box"];226 -> 3084[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3084 -> 268[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3085[label="vyw38/GT",fontsize=10,color="white",style="solid",shape="box"];226 -> 3085[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3085 -> 269[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 228 -> 170[label="",style="dashed", color="red", weight=0]; 30.83/14.34 228[label="compare vyw18 vyw13",fontsize=16,color="magenta"];228 -> 270[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 228 -> 271[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 229 -> 171[label="",style="dashed", color="red", weight=0]; 30.83/14.34 229[label="compare vyw18 vyw13",fontsize=16,color="magenta"];229 -> 272[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 229 -> 273[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 230 -> 172[label="",style="dashed", color="red", weight=0]; 30.83/14.34 230[label="compare vyw18 vyw13",fontsize=16,color="magenta"];230 -> 274[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 230 -> 275[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 231 -> 173[label="",style="dashed", color="red", weight=0]; 30.83/14.34 231[label="compare vyw18 vyw13",fontsize=16,color="magenta"];231 -> 276[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 231 -> 277[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 232 -> 174[label="",style="dashed", color="red", weight=0]; 30.83/14.34 232[label="compare vyw18 vyw13",fontsize=16,color="magenta"];232 -> 278[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 232 -> 279[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 233 -> 175[label="",style="dashed", color="red", weight=0]; 30.83/14.34 233[label="compare vyw18 vyw13",fontsize=16,color="magenta"];233 -> 280[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 233 -> 281[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 234 -> 176[label="",style="dashed", color="red", weight=0]; 30.83/14.34 234[label="compare vyw18 vyw13",fontsize=16,color="magenta"];234 -> 282[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 234 -> 283[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 235 -> 177[label="",style="dashed", color="red", weight=0]; 30.83/14.34 235[label="compare vyw18 vyw13",fontsize=16,color="magenta"];235 -> 284[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 235 -> 285[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 236 -> 178[label="",style="dashed", color="red", weight=0]; 30.83/14.34 236[label="compare vyw18 vyw13",fontsize=16,color="magenta"];236 -> 286[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 236 -> 287[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 237 -> 179[label="",style="dashed", color="red", weight=0]; 30.83/14.34 237[label="compare vyw18 vyw13",fontsize=16,color="magenta"];237 -> 288[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 237 -> 289[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 238 -> 180[label="",style="dashed", color="red", weight=0]; 30.83/14.34 238[label="compare vyw18 vyw13",fontsize=16,color="magenta"];238 -> 290[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 238 -> 291[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 239 -> 181[label="",style="dashed", color="red", weight=0]; 30.83/14.34 239[label="compare vyw18 vyw13",fontsize=16,color="magenta"];239 -> 292[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 239 -> 293[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 240 -> 182[label="",style="dashed", color="red", weight=0]; 30.83/14.34 240[label="compare vyw18 vyw13",fontsize=16,color="magenta"];240 -> 294[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 240 -> 295[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 262[label="FiniteMap.lookupFM0 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 True",fontsize=16,color="black",shape="box"];262 -> 323[label="",style="solid", color="black", weight=3]; 30.83/14.34 263[label="vyw32",fontsize=16,color="green",shape="box"];264[label="vyw33",fontsize=16,color="green",shape="box"];328 -> 169[label="",style="dashed", color="red", weight=0]; 30.83/14.34 328[label="compare vyw41 vyw301",fontsize=16,color="magenta"];328 -> 369[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 328 -> 370[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 327[label="primCompAux vyw40 vyw300 vyw39",fontsize=16,color="black",shape="triangle"];327 -> 371[label="",style="solid", color="black", weight=3]; 30.83/14.34 329[label="primCmpInt (Pos (Succ vyw400)) (Pos vyw300)",fontsize=16,color="black",shape="box"];329 -> 372[label="",style="solid", color="black", weight=3]; 30.83/14.34 330[label="primCmpInt (Pos (Succ vyw400)) (Neg vyw300)",fontsize=16,color="black",shape="box"];330 -> 373[label="",style="solid", color="black", weight=3]; 30.83/14.34 331[label="primCmpInt (Pos Zero) (Pos vyw300)",fontsize=16,color="burlywood",shape="box"];3086[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];331 -> 3086[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3086 -> 374[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3087[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];331 -> 3087[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3087 -> 375[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 332[label="primCmpInt (Pos Zero) (Neg vyw300)",fontsize=16,color="burlywood",shape="box"];3088[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];332 -> 3088[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3088 -> 376[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3089[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];332 -> 3089[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3089 -> 377[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 333[label="primCmpInt (Neg (Succ vyw400)) (Pos vyw300)",fontsize=16,color="black",shape="box"];333 -> 378[label="",style="solid", color="black", weight=3]; 30.83/14.34 334[label="primCmpInt (Neg (Succ vyw400)) (Neg vyw300)",fontsize=16,color="black",shape="box"];334 -> 379[label="",style="solid", color="black", weight=3]; 30.83/14.34 335[label="primCmpInt (Neg Zero) (Pos vyw300)",fontsize=16,color="burlywood",shape="box"];3090[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];335 -> 3090[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3090 -> 380[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3091[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];335 -> 3091[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3091 -> 381[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 336[label="primCmpInt (Neg Zero) (Neg vyw300)",fontsize=16,color="burlywood",shape="box"];3092[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];336 -> 3092[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3092 -> 382[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3093[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];336 -> 3093[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3093 -> 383[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 337[label="primCmpNat vyw40 vyw300",fontsize=16,color="burlywood",shape="triangle"];3094[label="vyw40/Succ vyw400",fontsize=10,color="white",style="solid",shape="box"];337 -> 3094[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3094 -> 384[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3095[label="vyw40/Zero",fontsize=10,color="white",style="solid",shape="box"];337 -> 3095[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3095 -> 385[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 338[label="vyw300",fontsize=16,color="green",shape="box"];339[label="vyw40",fontsize=16,color="green",shape="box"];340 -> 170[label="",style="dashed", color="red", weight=0]; 30.83/14.34 340[label="compare (vyw40 * vyw301) (vyw300 * vyw41)",fontsize=16,color="magenta"];340 -> 386[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 340 -> 387[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 341 -> 172[label="",style="dashed", color="red", weight=0]; 30.83/14.34 341[label="compare (vyw40 * vyw301) (vyw300 * vyw41)",fontsize=16,color="magenta"];341 -> 388[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 341 -> 389[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 342[label="primCmpDouble (Double vyw40 (Pos vyw410)) (Double vyw300 vyw301)",fontsize=16,color="burlywood",shape="box"];3096[label="vyw301/Pos vyw3010",fontsize=10,color="white",style="solid",shape="box"];342 -> 3096[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3096 -> 390[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3097[label="vyw301/Neg vyw3010",fontsize=10,color="white",style="solid",shape="box"];342 -> 3097[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3097 -> 391[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 343[label="primCmpDouble (Double vyw40 (Neg vyw410)) (Double vyw300 vyw301)",fontsize=16,color="burlywood",shape="box"];3098[label="vyw301/Pos vyw3010",fontsize=10,color="white",style="solid",shape="box"];343 -> 3098[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3098 -> 392[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3099[label="vyw301/Neg vyw3010",fontsize=10,color="white",style="solid",shape="box"];343 -> 3099[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3099 -> 393[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 344[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];344 -> 394[label="",style="solid", color="black", weight=3]; 30.83/14.34 345[label="compare2 Nothing (Just vyw300) (Nothing == Just vyw300)",fontsize=16,color="black",shape="box"];345 -> 395[label="",style="solid", color="black", weight=3]; 30.83/14.34 346[label="compare2 (Just vyw40) Nothing (Just vyw40 == Nothing)",fontsize=16,color="black",shape="box"];346 -> 396[label="",style="solid", color="black", weight=3]; 30.83/14.34 347[label="compare2 (Just vyw40) (Just vyw300) (Just vyw40 == Just vyw300)",fontsize=16,color="black",shape="box"];347 -> 397[label="",style="solid", color="black", weight=3]; 30.83/14.34 348[label="compare2 (vyw40,vyw41,vyw42) (vyw300,vyw301,vyw302) ((vyw40,vyw41,vyw42) == (vyw300,vyw301,vyw302))",fontsize=16,color="black",shape="box"];348 -> 398[label="",style="solid", color="black", weight=3]; 30.83/14.34 349[label="primCmpFloat (Float vyw40 (Pos vyw410)) (Float vyw300 vyw301)",fontsize=16,color="burlywood",shape="box"];3100[label="vyw301/Pos vyw3010",fontsize=10,color="white",style="solid",shape="box"];349 -> 3100[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3100 -> 399[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3101[label="vyw301/Neg vyw3010",fontsize=10,color="white",style="solid",shape="box"];349 -> 3101[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3101 -> 400[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 350[label="primCmpFloat (Float vyw40 (Neg vyw410)) (Float vyw300 vyw301)",fontsize=16,color="burlywood",shape="box"];3102[label="vyw301/Pos vyw3010",fontsize=10,color="white",style="solid",shape="box"];350 -> 3102[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3102 -> 401[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3103[label="vyw301/Neg vyw3010",fontsize=10,color="white",style="solid",shape="box"];350 -> 3103[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3103 -> 402[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 351[label="compare2 (Left vyw40) (Left vyw300) (Left vyw40 == Left vyw300)",fontsize=16,color="black",shape="box"];351 -> 403[label="",style="solid", color="black", weight=3]; 30.83/14.34 352[label="compare2 (Left vyw40) (Right vyw300) (Left vyw40 == Right vyw300)",fontsize=16,color="black",shape="box"];352 -> 404[label="",style="solid", color="black", weight=3]; 30.83/14.34 353[label="compare2 (Right vyw40) (Left vyw300) (Right vyw40 == Left vyw300)",fontsize=16,color="black",shape="box"];353 -> 405[label="",style="solid", color="black", weight=3]; 30.83/14.34 354[label="compare2 (Right vyw40) (Right vyw300) (Right vyw40 == Right vyw300)",fontsize=16,color="black",shape="box"];354 -> 406[label="",style="solid", color="black", weight=3]; 30.83/14.34 355[label="compare2 (vyw40,vyw41) (vyw300,vyw301) ((vyw40,vyw41) == (vyw300,vyw301))",fontsize=16,color="black",shape="box"];355 -> 407[label="",style="solid", color="black", weight=3]; 30.83/14.34 356[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];356 -> 408[label="",style="solid", color="black", weight=3]; 30.83/14.34 357[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];357 -> 409[label="",style="solid", color="black", weight=3]; 30.83/14.34 358[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];358 -> 410[label="",style="solid", color="black", weight=3]; 30.83/14.34 359[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];359 -> 411[label="",style="solid", color="black", weight=3]; 30.83/14.34 360[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];360 -> 412[label="",style="solid", color="black", weight=3]; 30.83/14.34 361[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];361 -> 413[label="",style="solid", color="black", weight=3]; 30.83/14.34 362[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];362 -> 414[label="",style="solid", color="black", weight=3]; 30.83/14.34 363[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];363 -> 415[label="",style="solid", color="black", weight=3]; 30.83/14.34 364[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];364 -> 416[label="",style="solid", color="black", weight=3]; 30.83/14.34 365[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];365 -> 417[label="",style="solid", color="black", weight=3]; 30.83/14.34 366[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];366 -> 418[label="",style="solid", color="black", weight=3]; 30.83/14.34 367[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];367 -> 419[label="",style="solid", color="black", weight=3]; 30.83/14.34 368[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];368 -> 420[label="",style="solid", color="black", weight=3]; 30.83/14.34 265[label="vyw13",fontsize=16,color="green",shape="box"];266[label="vyw18",fontsize=16,color="green",shape="box"];267[label="LT == GT",fontsize=16,color="black",shape="box"];267 -> 324[label="",style="solid", color="black", weight=3]; 30.83/14.34 268[label="EQ == GT",fontsize=16,color="black",shape="box"];268 -> 325[label="",style="solid", color="black", weight=3]; 30.83/14.34 269[label="GT == GT",fontsize=16,color="black",shape="box"];269 -> 326[label="",style="solid", color="black", weight=3]; 30.83/14.34 270[label="vyw13",fontsize=16,color="green",shape="box"];271[label="vyw18",fontsize=16,color="green",shape="box"];272[label="vyw13",fontsize=16,color="green",shape="box"];273[label="vyw18",fontsize=16,color="green",shape="box"];274[label="vyw13",fontsize=16,color="green",shape="box"];275[label="vyw18",fontsize=16,color="green",shape="box"];276[label="vyw13",fontsize=16,color="green",shape="box"];277[label="vyw18",fontsize=16,color="green",shape="box"];278[label="vyw13",fontsize=16,color="green",shape="box"];279[label="vyw18",fontsize=16,color="green",shape="box"];280[label="vyw13",fontsize=16,color="green",shape="box"];281[label="vyw18",fontsize=16,color="green",shape="box"];282[label="vyw13",fontsize=16,color="green",shape="box"];283[label="vyw18",fontsize=16,color="green",shape="box"];284[label="vyw13",fontsize=16,color="green",shape="box"];285[label="vyw18",fontsize=16,color="green",shape="box"];286[label="vyw13",fontsize=16,color="green",shape="box"];287[label="vyw18",fontsize=16,color="green",shape="box"];288[label="vyw13",fontsize=16,color="green",shape="box"];289[label="vyw18",fontsize=16,color="green",shape="box"];290[label="vyw13",fontsize=16,color="green",shape="box"];291[label="vyw18",fontsize=16,color="green",shape="box"];292[label="vyw13",fontsize=16,color="green",shape="box"];293[label="vyw18",fontsize=16,color="green",shape="box"];294[label="vyw13",fontsize=16,color="green",shape="box"];295[label="vyw18",fontsize=16,color="green",shape="box"];323[label="Just vyw29",fontsize=16,color="green",shape="box"];369[label="vyw301",fontsize=16,color="green",shape="box"];370[label="vyw41",fontsize=16,color="green",shape="box"];371 -> 421[label="",style="dashed", color="red", weight=0]; 30.83/14.34 371[label="primCompAux0 vyw39 (compare vyw40 vyw300)",fontsize=16,color="magenta"];371 -> 422[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 371 -> 423[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 372 -> 337[label="",style="dashed", color="red", weight=0]; 30.83/14.34 372[label="primCmpNat (Succ vyw400) vyw300",fontsize=16,color="magenta"];372 -> 424[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 372 -> 425[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 373[label="GT",fontsize=16,color="green",shape="box"];374[label="primCmpInt (Pos Zero) (Pos (Succ vyw3000))",fontsize=16,color="black",shape="box"];374 -> 426[label="",style="solid", color="black", weight=3]; 30.83/14.34 375[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];375 -> 427[label="",style="solid", color="black", weight=3]; 30.83/14.34 376[label="primCmpInt (Pos Zero) (Neg (Succ vyw3000))",fontsize=16,color="black",shape="box"];376 -> 428[label="",style="solid", color="black", weight=3]; 30.83/14.34 377[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];377 -> 429[label="",style="solid", color="black", weight=3]; 30.83/14.34 378[label="LT",fontsize=16,color="green",shape="box"];379 -> 337[label="",style="dashed", color="red", weight=0]; 30.83/14.34 379[label="primCmpNat vyw300 (Succ vyw400)",fontsize=16,color="magenta"];379 -> 430[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 379 -> 431[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 380[label="primCmpInt (Neg Zero) (Pos (Succ vyw3000))",fontsize=16,color="black",shape="box"];380 -> 432[label="",style="solid", color="black", weight=3]; 30.83/14.34 381[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];381 -> 433[label="",style="solid", color="black", weight=3]; 30.83/14.34 382[label="primCmpInt (Neg Zero) (Neg (Succ vyw3000))",fontsize=16,color="black",shape="box"];382 -> 434[label="",style="solid", color="black", weight=3]; 30.83/14.34 383[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];383 -> 435[label="",style="solid", color="black", weight=3]; 30.83/14.34 384[label="primCmpNat (Succ vyw400) vyw300",fontsize=16,color="burlywood",shape="box"];3104[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];384 -> 3104[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3104 -> 436[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3105[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];384 -> 3105[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3105 -> 437[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 385[label="primCmpNat Zero vyw300",fontsize=16,color="burlywood",shape="box"];3106[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];385 -> 3106[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3106 -> 438[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3107[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];385 -> 3107[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3107 -> 439[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 386[label="vyw300 * vyw41",fontsize=16,color="black",shape="triangle"];386 -> 440[label="",style="solid", color="black", weight=3]; 30.83/14.34 387 -> 386[label="",style="dashed", color="red", weight=0]; 30.83/14.34 387[label="vyw40 * vyw301",fontsize=16,color="magenta"];387 -> 441[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 387 -> 442[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 388[label="vyw300 * vyw41",fontsize=16,color="burlywood",shape="triangle"];3108[label="vyw300/Integer vyw3000",fontsize=10,color="white",style="solid",shape="box"];388 -> 3108[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3108 -> 443[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 389 -> 388[label="",style="dashed", color="red", weight=0]; 30.83/14.34 389[label="vyw40 * vyw301",fontsize=16,color="magenta"];389 -> 444[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 389 -> 445[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 390[label="primCmpDouble (Double vyw40 (Pos vyw410)) (Double vyw300 (Pos vyw3010))",fontsize=16,color="black",shape="box"];390 -> 446[label="",style="solid", color="black", weight=3]; 30.83/14.34 391[label="primCmpDouble (Double vyw40 (Pos vyw410)) (Double vyw300 (Neg vyw3010))",fontsize=16,color="black",shape="box"];391 -> 447[label="",style="solid", color="black", weight=3]; 30.83/14.34 392[label="primCmpDouble (Double vyw40 (Neg vyw410)) (Double vyw300 (Pos vyw3010))",fontsize=16,color="black",shape="box"];392 -> 448[label="",style="solid", color="black", weight=3]; 30.83/14.34 393[label="primCmpDouble (Double vyw40 (Neg vyw410)) (Double vyw300 (Neg vyw3010))",fontsize=16,color="black",shape="box"];393 -> 449[label="",style="solid", color="black", weight=3]; 30.83/14.34 394[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];394 -> 450[label="",style="solid", color="black", weight=3]; 30.83/14.34 395[label="compare2 Nothing (Just vyw300) False",fontsize=16,color="black",shape="box"];395 -> 451[label="",style="solid", color="black", weight=3]; 30.83/14.34 396[label="compare2 (Just vyw40) Nothing False",fontsize=16,color="black",shape="box"];396 -> 452[label="",style="solid", color="black", weight=3]; 30.83/14.34 397 -> 453[label="",style="dashed", color="red", weight=0]; 30.83/14.34 397[label="compare2 (Just vyw40) (Just vyw300) (vyw40 == vyw300)",fontsize=16,color="magenta"];397 -> 454[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 397 -> 455[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 397 -> 456[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 398 -> 1061[label="",style="dashed", color="red", weight=0]; 30.83/14.34 398[label="compare2 (vyw40,vyw41,vyw42) (vyw300,vyw301,vyw302) (vyw40 == vyw300 && vyw41 == vyw301 && vyw42 == vyw302)",fontsize=16,color="magenta"];398 -> 1062[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 398 -> 1063[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 398 -> 1064[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 398 -> 1065[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 398 -> 1066[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 398 -> 1067[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 398 -> 1068[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 399[label="primCmpFloat (Float vyw40 (Pos vyw410)) (Float vyw300 (Pos vyw3010))",fontsize=16,color="black",shape="box"];399 -> 465[label="",style="solid", color="black", weight=3]; 30.83/14.34 400[label="primCmpFloat (Float vyw40 (Pos vyw410)) (Float vyw300 (Neg vyw3010))",fontsize=16,color="black",shape="box"];400 -> 466[label="",style="solid", color="black", weight=3]; 30.83/14.34 401[label="primCmpFloat (Float vyw40 (Neg vyw410)) (Float vyw300 (Pos vyw3010))",fontsize=16,color="black",shape="box"];401 -> 467[label="",style="solid", color="black", weight=3]; 30.83/14.34 402[label="primCmpFloat (Float vyw40 (Neg vyw410)) (Float vyw300 (Neg vyw3010))",fontsize=16,color="black",shape="box"];402 -> 468[label="",style="solid", color="black", weight=3]; 30.83/14.34 403 -> 469[label="",style="dashed", color="red", weight=0]; 30.83/14.34 403[label="compare2 (Left vyw40) (Left vyw300) (vyw40 == vyw300)",fontsize=16,color="magenta"];403 -> 470[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 403 -> 471[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 403 -> 472[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 404[label="compare2 (Left vyw40) (Right vyw300) False",fontsize=16,color="black",shape="box"];404 -> 473[label="",style="solid", color="black", weight=3]; 30.83/14.34 405[label="compare2 (Right vyw40) (Left vyw300) False",fontsize=16,color="black",shape="box"];405 -> 474[label="",style="solid", color="black", weight=3]; 30.83/14.34 406 -> 475[label="",style="dashed", color="red", weight=0]; 30.83/14.34 406[label="compare2 (Right vyw40) (Right vyw300) (vyw40 == vyw300)",fontsize=16,color="magenta"];406 -> 476[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 406 -> 477[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 406 -> 478[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 407 -> 913[label="",style="dashed", color="red", weight=0]; 30.83/14.34 407[label="compare2 (vyw40,vyw41) (vyw300,vyw301) (vyw40 == vyw300 && vyw41 == vyw301)",fontsize=16,color="magenta"];407 -> 914[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 407 -> 915[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 407 -> 916[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 407 -> 917[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 407 -> 918[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 408[label="compare2 False False True",fontsize=16,color="black",shape="box"];408 -> 485[label="",style="solid", color="black", weight=3]; 30.83/14.34 409[label="compare2 False True False",fontsize=16,color="black",shape="box"];409 -> 486[label="",style="solid", color="black", weight=3]; 30.83/14.34 410[label="compare2 True False False",fontsize=16,color="black",shape="box"];410 -> 487[label="",style="solid", color="black", weight=3]; 30.83/14.34 411[label="compare2 True True True",fontsize=16,color="black",shape="box"];411 -> 488[label="",style="solid", color="black", weight=3]; 30.83/14.34 412[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];412 -> 489[label="",style="solid", color="black", weight=3]; 30.83/14.34 413[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];413 -> 490[label="",style="solid", color="black", weight=3]; 30.83/14.34 414[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];414 -> 491[label="",style="solid", color="black", weight=3]; 30.83/14.34 415[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];415 -> 492[label="",style="solid", color="black", weight=3]; 30.83/14.34 416[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];416 -> 493[label="",style="solid", color="black", weight=3]; 30.83/14.34 417[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];417 -> 494[label="",style="solid", color="black", weight=3]; 30.83/14.34 418[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];418 -> 495[label="",style="solid", color="black", weight=3]; 30.83/14.34 419[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];419 -> 496[label="",style="solid", color="black", weight=3]; 30.83/14.34 420[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];420 -> 497[label="",style="solid", color="black", weight=3]; 30.83/14.34 324[label="False",fontsize=16,color="green",shape="box"];325[label="False",fontsize=16,color="green",shape="box"];326[label="True",fontsize=16,color="green",shape="box"];422[label="vyw39",fontsize=16,color="green",shape="box"];423[label="compare vyw40 vyw300",fontsize=16,color="blue",shape="box"];3109[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];423 -> 3109[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3109 -> 498[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3110[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];423 -> 3110[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3110 -> 499[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3111[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];423 -> 3111[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3111 -> 500[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3112[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];423 -> 3112[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3112 -> 501[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3113[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];423 -> 3113[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3113 -> 502[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3114[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];423 -> 3114[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3114 -> 503[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3115[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];423 -> 3115[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3115 -> 504[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3116[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];423 -> 3116[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3116 -> 505[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3117[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];423 -> 3117[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3117 -> 506[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3118[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];423 -> 3118[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3118 -> 507[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3119[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];423 -> 3119[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3119 -> 508[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3120[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];423 -> 3120[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3120 -> 509[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3121[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];423 -> 3121[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3121 -> 510[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3122[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];423 -> 3122[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3122 -> 511[label="",style="solid", color="blue", weight=3]; 30.83/14.34 421[label="primCompAux0 vyw43 vyw44",fontsize=16,color="burlywood",shape="triangle"];3123[label="vyw44/LT",fontsize=10,color="white",style="solid",shape="box"];421 -> 3123[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3123 -> 512[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3124[label="vyw44/EQ",fontsize=10,color="white",style="solid",shape="box"];421 -> 3124[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3124 -> 513[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3125[label="vyw44/GT",fontsize=10,color="white",style="solid",shape="box"];421 -> 3125[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3125 -> 514[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 424[label="vyw300",fontsize=16,color="green",shape="box"];425[label="Succ vyw400",fontsize=16,color="green",shape="box"];426 -> 337[label="",style="dashed", color="red", weight=0]; 30.83/14.34 426[label="primCmpNat Zero (Succ vyw3000)",fontsize=16,color="magenta"];426 -> 515[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 426 -> 516[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 427[label="EQ",fontsize=16,color="green",shape="box"];428[label="GT",fontsize=16,color="green",shape="box"];429[label="EQ",fontsize=16,color="green",shape="box"];430[label="Succ vyw400",fontsize=16,color="green",shape="box"];431[label="vyw300",fontsize=16,color="green",shape="box"];432[label="LT",fontsize=16,color="green",shape="box"];433[label="EQ",fontsize=16,color="green",shape="box"];434 -> 337[label="",style="dashed", color="red", weight=0]; 30.83/14.34 434[label="primCmpNat (Succ vyw3000) Zero",fontsize=16,color="magenta"];434 -> 517[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 434 -> 518[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 435[label="EQ",fontsize=16,color="green",shape="box"];436[label="primCmpNat (Succ vyw400) (Succ vyw3000)",fontsize=16,color="black",shape="box"];436 -> 519[label="",style="solid", color="black", weight=3]; 30.83/14.34 437[label="primCmpNat (Succ vyw400) Zero",fontsize=16,color="black",shape="box"];437 -> 520[label="",style="solid", color="black", weight=3]; 30.83/14.34 438[label="primCmpNat Zero (Succ vyw3000)",fontsize=16,color="black",shape="box"];438 -> 521[label="",style="solid", color="black", weight=3]; 30.83/14.34 439[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];439 -> 522[label="",style="solid", color="black", weight=3]; 30.83/14.34 440[label="primMulInt vyw300 vyw41",fontsize=16,color="burlywood",shape="triangle"];3126[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];440 -> 3126[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3126 -> 523[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3127[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];440 -> 3127[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3127 -> 524[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 441[label="vyw40",fontsize=16,color="green",shape="box"];442[label="vyw301",fontsize=16,color="green",shape="box"];443[label="Integer vyw3000 * vyw41",fontsize=16,color="burlywood",shape="box"];3128[label="vyw41/Integer vyw410",fontsize=10,color="white",style="solid",shape="box"];443 -> 3128[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3128 -> 525[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 444[label="vyw40",fontsize=16,color="green",shape="box"];445[label="vyw301",fontsize=16,color="green",shape="box"];446 -> 170[label="",style="dashed", color="red", weight=0]; 30.83/14.34 446[label="compare (vyw40 * Pos vyw3010) (Pos vyw410 * vyw300)",fontsize=16,color="magenta"];446 -> 526[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 446 -> 527[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 447 -> 170[label="",style="dashed", color="red", weight=0]; 30.83/14.34 447[label="compare (vyw40 * Pos vyw3010) (Neg vyw410 * vyw300)",fontsize=16,color="magenta"];447 -> 528[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 447 -> 529[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 448 -> 170[label="",style="dashed", color="red", weight=0]; 30.83/14.34 448[label="compare (vyw40 * Neg vyw3010) (Pos vyw410 * vyw300)",fontsize=16,color="magenta"];448 -> 530[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 448 -> 531[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 449 -> 170[label="",style="dashed", color="red", weight=0]; 30.83/14.34 449[label="compare (vyw40 * Neg vyw3010) (Neg vyw410 * vyw300)",fontsize=16,color="magenta"];449 -> 532[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 449 -> 533[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 450[label="EQ",fontsize=16,color="green",shape="box"];451[label="compare1 Nothing (Just vyw300) (Nothing <= Just vyw300)",fontsize=16,color="black",shape="box"];451 -> 534[label="",style="solid", color="black", weight=3]; 30.83/14.34 452[label="compare1 (Just vyw40) Nothing (Just vyw40 <= Nothing)",fontsize=16,color="black",shape="box"];452 -> 535[label="",style="solid", color="black", weight=3]; 30.83/14.34 454[label="vyw300",fontsize=16,color="green",shape="box"];455[label="vyw40 == vyw300",fontsize=16,color="blue",shape="box"];3129[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];455 -> 3129[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3129 -> 536[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3130[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];455 -> 3130[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3130 -> 537[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3131[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];455 -> 3131[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3131 -> 538[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3132[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];455 -> 3132[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3132 -> 539[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3133[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];455 -> 3133[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3133 -> 540[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3134[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];455 -> 3134[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3134 -> 541[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3135[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];455 -> 3135[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3135 -> 542[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3136[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];455 -> 3136[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3136 -> 543[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3137[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];455 -> 3137[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3137 -> 544[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3138[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];455 -> 3138[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3138 -> 545[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3139[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];455 -> 3139[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3139 -> 546[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3140[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];455 -> 3140[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3140 -> 547[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3141[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];455 -> 3141[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3141 -> 548[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3142[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];455 -> 3142[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3142 -> 549[label="",style="solid", color="blue", weight=3]; 30.83/14.34 456[label="vyw40",fontsize=16,color="green",shape="box"];453[label="compare2 (Just vyw49) (Just vyw50) vyw51",fontsize=16,color="burlywood",shape="triangle"];3143[label="vyw51/False",fontsize=10,color="white",style="solid",shape="box"];453 -> 3143[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3143 -> 550[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3144[label="vyw51/True",fontsize=10,color="white",style="solid",shape="box"];453 -> 3144[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3144 -> 551[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 1062[label="vyw42",fontsize=16,color="green",shape="box"];1063[label="vyw302",fontsize=16,color="green",shape="box"];1064[label="vyw40",fontsize=16,color="green",shape="box"];1065[label="vyw301",fontsize=16,color="green",shape="box"];1066[label="vyw300",fontsize=16,color="green",shape="box"];1067 -> 1113[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1067[label="vyw40 == vyw300 && vyw41 == vyw301 && vyw42 == vyw302",fontsize=16,color="magenta"];1067 -> 1114[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1067 -> 1115[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1068[label="vyw41",fontsize=16,color="green",shape="box"];1061[label="compare2 (vyw100,vyw101,vyw102) (vyw103,vyw104,vyw105) vyw132",fontsize=16,color="burlywood",shape="triangle"];3145[label="vyw132/False",fontsize=10,color="white",style="solid",shape="box"];1061 -> 3145[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3145 -> 1108[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3146[label="vyw132/True",fontsize=10,color="white",style="solid",shape="box"];1061 -> 3146[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3146 -> 1109[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 465 -> 170[label="",style="dashed", color="red", weight=0]; 30.83/14.34 465[label="compare (vyw40 * Pos vyw3010) (Pos vyw410 * vyw300)",fontsize=16,color="magenta"];465 -> 568[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 465 -> 569[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 466 -> 170[label="",style="dashed", color="red", weight=0]; 30.83/14.34 466[label="compare (vyw40 * Pos vyw3010) (Neg vyw410 * vyw300)",fontsize=16,color="magenta"];466 -> 570[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 466 -> 571[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 467 -> 170[label="",style="dashed", color="red", weight=0]; 30.83/14.34 467[label="compare (vyw40 * Neg vyw3010) (Pos vyw410 * vyw300)",fontsize=16,color="magenta"];467 -> 572[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 467 -> 573[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 468 -> 170[label="",style="dashed", color="red", weight=0]; 30.83/14.34 468[label="compare (vyw40 * Neg vyw3010) (Neg vyw410 * vyw300)",fontsize=16,color="magenta"];468 -> 574[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 468 -> 575[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 470[label="vyw40 == vyw300",fontsize=16,color="blue",shape="box"];3147[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3147[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3147 -> 576[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3148[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3148[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3148 -> 577[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3149[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3149[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3149 -> 578[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3150[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3150[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3150 -> 579[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3151[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3151[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3151 -> 580[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3152[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3152[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3152 -> 581[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3153[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3153[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3153 -> 582[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3154[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3154[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3154 -> 583[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3155[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3155[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3155 -> 584[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3156[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3156[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3156 -> 585[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3157[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3157[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3157 -> 586[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3158[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3158[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3158 -> 587[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3159[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3159[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3159 -> 588[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3160[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3160[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3160 -> 589[label="",style="solid", color="blue", weight=3]; 30.83/14.34 471[label="vyw40",fontsize=16,color="green",shape="box"];472[label="vyw300",fontsize=16,color="green",shape="box"];469[label="compare2 (Left vyw71) (Left vyw72) vyw73",fontsize=16,color="burlywood",shape="triangle"];3161[label="vyw73/False",fontsize=10,color="white",style="solid",shape="box"];469 -> 3161[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3161 -> 590[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3162[label="vyw73/True",fontsize=10,color="white",style="solid",shape="box"];469 -> 3162[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3162 -> 591[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 473[label="compare1 (Left vyw40) (Right vyw300) (Left vyw40 <= Right vyw300)",fontsize=16,color="black",shape="box"];473 -> 592[label="",style="solid", color="black", weight=3]; 30.83/14.34 474[label="compare1 (Right vyw40) (Left vyw300) (Right vyw40 <= Left vyw300)",fontsize=16,color="black",shape="box"];474 -> 593[label="",style="solid", color="black", weight=3]; 30.83/14.34 476[label="vyw40 == vyw300",fontsize=16,color="blue",shape="box"];3163[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];476 -> 3163[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3163 -> 594[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3164[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];476 -> 3164[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3164 -> 595[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3165[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];476 -> 3165[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3165 -> 596[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3166[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];476 -> 3166[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3166 -> 597[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3167[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];476 -> 3167[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3167 -> 598[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3168[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];476 -> 3168[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3168 -> 599[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3169[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];476 -> 3169[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3169 -> 600[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3170[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];476 -> 3170[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3170 -> 601[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3171[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];476 -> 3171[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3171 -> 602[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3172[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];476 -> 3172[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3172 -> 603[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3173[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];476 -> 3173[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3173 -> 604[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3174[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];476 -> 3174[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3174 -> 605[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3175[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];476 -> 3175[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3175 -> 606[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3176[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];476 -> 3176[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3176 -> 607[label="",style="solid", color="blue", weight=3]; 30.83/14.34 477[label="vyw40",fontsize=16,color="green",shape="box"];478[label="vyw300",fontsize=16,color="green",shape="box"];475[label="compare2 (Right vyw78) (Right vyw79) vyw80",fontsize=16,color="burlywood",shape="triangle"];3177[label="vyw80/False",fontsize=10,color="white",style="solid",shape="box"];475 -> 3177[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3177 -> 608[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3178[label="vyw80/True",fontsize=10,color="white",style="solid",shape="box"];475 -> 3178[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3178 -> 609[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 914[label="vyw40",fontsize=16,color="green",shape="box"];915 -> 1113[label="",style="dashed", color="red", weight=0]; 30.83/14.34 915[label="vyw40 == vyw300 && vyw41 == vyw301",fontsize=16,color="magenta"];915 -> 1116[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 915 -> 1117[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 916[label="vyw41",fontsize=16,color="green",shape="box"];917[label="vyw301",fontsize=16,color="green",shape="box"];918[label="vyw300",fontsize=16,color="green",shape="box"];913[label="compare2 (vyw113,vyw114) (vyw115,vyw116) vyw117",fontsize=16,color="burlywood",shape="triangle"];3179[label="vyw117/False",fontsize=10,color="white",style="solid",shape="box"];913 -> 3179[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3179 -> 938[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3180[label="vyw117/True",fontsize=10,color="white",style="solid",shape="box"];913 -> 3180[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3180 -> 939[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 485[label="EQ",fontsize=16,color="green",shape="box"];486[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];486 -> 626[label="",style="solid", color="black", weight=3]; 30.83/14.34 487[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];487 -> 627[label="",style="solid", color="black", weight=3]; 30.83/14.34 488[label="EQ",fontsize=16,color="green",shape="box"];489[label="EQ",fontsize=16,color="green",shape="box"];490[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];490 -> 628[label="",style="solid", color="black", weight=3]; 30.83/14.34 491[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];491 -> 629[label="",style="solid", color="black", weight=3]; 30.83/14.34 492[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];492 -> 630[label="",style="solid", color="black", weight=3]; 30.83/14.34 493[label="EQ",fontsize=16,color="green",shape="box"];494[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];494 -> 631[label="",style="solid", color="black", weight=3]; 30.83/14.34 495[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];495 -> 632[label="",style="solid", color="black", weight=3]; 30.83/14.34 496[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];496 -> 633[label="",style="solid", color="black", weight=3]; 30.83/14.34 497[label="EQ",fontsize=16,color="green",shape="box"];498 -> 169[label="",style="dashed", color="red", weight=0]; 30.83/14.34 498[label="compare vyw40 vyw300",fontsize=16,color="magenta"];498 -> 634[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 498 -> 635[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 499 -> 170[label="",style="dashed", color="red", weight=0]; 30.83/14.34 499[label="compare vyw40 vyw300",fontsize=16,color="magenta"];499 -> 636[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 499 -> 637[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 500 -> 171[label="",style="dashed", color="red", weight=0]; 30.83/14.34 500[label="compare vyw40 vyw300",fontsize=16,color="magenta"];500 -> 638[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 500 -> 639[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 501 -> 172[label="",style="dashed", color="red", weight=0]; 30.83/14.34 501[label="compare vyw40 vyw300",fontsize=16,color="magenta"];501 -> 640[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 501 -> 641[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 502 -> 173[label="",style="dashed", color="red", weight=0]; 30.83/14.34 502[label="compare vyw40 vyw300",fontsize=16,color="magenta"];502 -> 642[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 502 -> 643[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 503 -> 174[label="",style="dashed", color="red", weight=0]; 30.83/14.34 503[label="compare vyw40 vyw300",fontsize=16,color="magenta"];503 -> 644[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 503 -> 645[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 504 -> 175[label="",style="dashed", color="red", weight=0]; 30.83/14.34 504[label="compare vyw40 vyw300",fontsize=16,color="magenta"];504 -> 646[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 504 -> 647[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 505 -> 176[label="",style="dashed", color="red", weight=0]; 30.83/14.34 505[label="compare vyw40 vyw300",fontsize=16,color="magenta"];505 -> 648[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 505 -> 649[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 506 -> 177[label="",style="dashed", color="red", weight=0]; 30.83/14.34 506[label="compare vyw40 vyw300",fontsize=16,color="magenta"];506 -> 650[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 506 -> 651[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 507 -> 178[label="",style="dashed", color="red", weight=0]; 30.83/14.34 507[label="compare vyw40 vyw300",fontsize=16,color="magenta"];507 -> 652[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 507 -> 653[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 508 -> 179[label="",style="dashed", color="red", weight=0]; 30.83/14.34 508[label="compare vyw40 vyw300",fontsize=16,color="magenta"];508 -> 654[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 508 -> 655[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 509 -> 180[label="",style="dashed", color="red", weight=0]; 30.83/14.34 509[label="compare vyw40 vyw300",fontsize=16,color="magenta"];509 -> 656[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 509 -> 657[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 510 -> 181[label="",style="dashed", color="red", weight=0]; 30.83/14.34 510[label="compare vyw40 vyw300",fontsize=16,color="magenta"];510 -> 658[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 510 -> 659[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 511 -> 182[label="",style="dashed", color="red", weight=0]; 30.83/14.34 511[label="compare vyw40 vyw300",fontsize=16,color="magenta"];511 -> 660[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 511 -> 661[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 512[label="primCompAux0 vyw43 LT",fontsize=16,color="black",shape="box"];512 -> 662[label="",style="solid", color="black", weight=3]; 30.83/14.34 513[label="primCompAux0 vyw43 EQ",fontsize=16,color="black",shape="box"];513 -> 663[label="",style="solid", color="black", weight=3]; 30.83/14.34 514[label="primCompAux0 vyw43 GT",fontsize=16,color="black",shape="box"];514 -> 664[label="",style="solid", color="black", weight=3]; 30.83/14.34 515[label="Succ vyw3000",fontsize=16,color="green",shape="box"];516[label="Zero",fontsize=16,color="green",shape="box"];517[label="Zero",fontsize=16,color="green",shape="box"];518[label="Succ vyw3000",fontsize=16,color="green",shape="box"];519 -> 337[label="",style="dashed", color="red", weight=0]; 30.83/14.34 519[label="primCmpNat vyw400 vyw3000",fontsize=16,color="magenta"];519 -> 665[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 519 -> 666[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 520[label="GT",fontsize=16,color="green",shape="box"];521[label="LT",fontsize=16,color="green",shape="box"];522[label="EQ",fontsize=16,color="green",shape="box"];523[label="primMulInt (Pos vyw3000) vyw41",fontsize=16,color="burlywood",shape="box"];3181[label="vyw41/Pos vyw410",fontsize=10,color="white",style="solid",shape="box"];523 -> 3181[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3181 -> 667[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3182[label="vyw41/Neg vyw410",fontsize=10,color="white",style="solid",shape="box"];523 -> 3182[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3182 -> 668[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 524[label="primMulInt (Neg vyw3000) vyw41",fontsize=16,color="burlywood",shape="box"];3183[label="vyw41/Pos vyw410",fontsize=10,color="white",style="solid",shape="box"];524 -> 3183[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3183 -> 669[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3184[label="vyw41/Neg vyw410",fontsize=10,color="white",style="solid",shape="box"];524 -> 3184[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3184 -> 670[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 525[label="Integer vyw3000 * Integer vyw410",fontsize=16,color="black",shape="box"];525 -> 671[label="",style="solid", color="black", weight=3]; 30.83/14.34 526 -> 386[label="",style="dashed", color="red", weight=0]; 30.83/14.34 526[label="Pos vyw410 * vyw300",fontsize=16,color="magenta"];526 -> 672[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 526 -> 673[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 527 -> 386[label="",style="dashed", color="red", weight=0]; 30.83/14.34 527[label="vyw40 * Pos vyw3010",fontsize=16,color="magenta"];527 -> 674[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 527 -> 675[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 528 -> 386[label="",style="dashed", color="red", weight=0]; 30.83/14.34 528[label="Neg vyw410 * vyw300",fontsize=16,color="magenta"];528 -> 676[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 528 -> 677[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 529 -> 386[label="",style="dashed", color="red", weight=0]; 30.83/14.34 529[label="vyw40 * Pos vyw3010",fontsize=16,color="magenta"];529 -> 678[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 529 -> 679[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 530 -> 386[label="",style="dashed", color="red", weight=0]; 30.83/14.34 530[label="Pos vyw410 * vyw300",fontsize=16,color="magenta"];530 -> 680[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 530 -> 681[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 531 -> 386[label="",style="dashed", color="red", weight=0]; 30.83/14.34 531[label="vyw40 * Neg vyw3010",fontsize=16,color="magenta"];531 -> 682[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 531 -> 683[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 532 -> 386[label="",style="dashed", color="red", weight=0]; 30.83/14.34 532[label="Neg vyw410 * vyw300",fontsize=16,color="magenta"];532 -> 684[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 532 -> 685[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 533 -> 386[label="",style="dashed", color="red", weight=0]; 30.83/14.34 533[label="vyw40 * Neg vyw3010",fontsize=16,color="magenta"];533 -> 686[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 533 -> 687[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 534[label="compare1 Nothing (Just vyw300) True",fontsize=16,color="black",shape="box"];534 -> 688[label="",style="solid", color="black", weight=3]; 30.83/14.34 535[label="compare1 (Just vyw40) Nothing False",fontsize=16,color="black",shape="box"];535 -> 689[label="",style="solid", color="black", weight=3]; 30.83/14.34 536[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3185[label="vyw40/(vyw400,vyw401,vyw402)",fontsize=10,color="white",style="solid",shape="box"];536 -> 3185[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3185 -> 690[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 537[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];537 -> 691[label="",style="solid", color="black", weight=3]; 30.83/14.34 538[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3186[label="vyw40/LT",fontsize=10,color="white",style="solid",shape="box"];538 -> 3186[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3186 -> 692[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3187[label="vyw40/EQ",fontsize=10,color="white",style="solid",shape="box"];538 -> 3187[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3187 -> 693[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3188[label="vyw40/GT",fontsize=10,color="white",style="solid",shape="box"];538 -> 3188[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3188 -> 694[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 539[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3189[label="vyw40/vyw400 : vyw401",fontsize=10,color="white",style="solid",shape="box"];539 -> 3189[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3189 -> 695[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3190[label="vyw40/[]",fontsize=10,color="white",style="solid",shape="box"];539 -> 3190[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3190 -> 696[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 540[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];540 -> 697[label="",style="solid", color="black", weight=3]; 30.83/14.34 541[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3191[label="vyw40/(vyw400,vyw401)",fontsize=10,color="white",style="solid",shape="box"];541 -> 3191[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3191 -> 698[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 542[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3192[label="vyw40/()",fontsize=10,color="white",style="solid",shape="box"];542 -> 3192[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3192 -> 699[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 543[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];543 -> 700[label="",style="solid", color="black", weight=3]; 30.83/14.34 544[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3193[label="vyw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];544 -> 3193[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3193 -> 701[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3194[label="vyw40/Just vyw400",fontsize=10,color="white",style="solid",shape="box"];544 -> 3194[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3194 -> 702[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 545[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];545 -> 703[label="",style="solid", color="black", weight=3]; 30.83/14.34 546[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3195[label="vyw40/Integer vyw400",fontsize=10,color="white",style="solid",shape="box"];546 -> 3195[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3195 -> 704[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 547[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3196[label="vyw40/False",fontsize=10,color="white",style="solid",shape="box"];547 -> 3196[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3196 -> 705[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3197[label="vyw40/True",fontsize=10,color="white",style="solid",shape="box"];547 -> 3197[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3197 -> 706[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 548[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3198[label="vyw40/vyw400 :% vyw401",fontsize=10,color="white",style="solid",shape="box"];548 -> 3198[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3198 -> 707[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 549[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3199[label="vyw40/Left vyw400",fontsize=10,color="white",style="solid",shape="box"];549 -> 3199[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3199 -> 708[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3200[label="vyw40/Right vyw400",fontsize=10,color="white",style="solid",shape="box"];549 -> 3200[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3200 -> 709[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 550[label="compare2 (Just vyw49) (Just vyw50) False",fontsize=16,color="black",shape="box"];550 -> 710[label="",style="solid", color="black", weight=3]; 30.83/14.34 551[label="compare2 (Just vyw49) (Just vyw50) True",fontsize=16,color="black",shape="box"];551 -> 711[label="",style="solid", color="black", weight=3]; 30.83/14.34 1114[label="vyw40 == vyw300",fontsize=16,color="blue",shape="box"];3201[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3201[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3201 -> 1132[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3202[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3202[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3202 -> 1133[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3203[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3203[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3203 -> 1134[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3204[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3204[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3204 -> 1135[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3205[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3205[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3205 -> 1136[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3206[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3206[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3206 -> 1137[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3207[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3207[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3207 -> 1138[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3208[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3208[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3208 -> 1139[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3209[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3209[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3209 -> 1140[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3210[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3210[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3210 -> 1141[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3211[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3211[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3211 -> 1142[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3212[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3212[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3212 -> 1143[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3213[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3213[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3213 -> 1144[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3214[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3214[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3214 -> 1145[label="",style="solid", color="blue", weight=3]; 30.83/14.34 1115 -> 1113[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1115[label="vyw41 == vyw301 && vyw42 == vyw302",fontsize=16,color="magenta"];1115 -> 1146[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1115 -> 1147[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1113[label="vyw137 && vyw138",fontsize=16,color="burlywood",shape="triangle"];3215[label="vyw137/False",fontsize=10,color="white",style="solid",shape="box"];1113 -> 3215[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3215 -> 1148[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3216[label="vyw137/True",fontsize=10,color="white",style="solid",shape="box"];1113 -> 3216[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3216 -> 1149[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 1108[label="compare2 (vyw100,vyw101,vyw102) (vyw103,vyw104,vyw105) False",fontsize=16,color="black",shape="box"];1108 -> 1150[label="",style="solid", color="black", weight=3]; 30.83/14.34 1109[label="compare2 (vyw100,vyw101,vyw102) (vyw103,vyw104,vyw105) True",fontsize=16,color="black",shape="box"];1109 -> 1151[label="",style="solid", color="black", weight=3]; 30.83/14.34 568 -> 386[label="",style="dashed", color="red", weight=0]; 30.83/14.34 568[label="Pos vyw410 * vyw300",fontsize=16,color="magenta"];568 -> 742[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 568 -> 743[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 569 -> 386[label="",style="dashed", color="red", weight=0]; 30.83/14.34 569[label="vyw40 * Pos vyw3010",fontsize=16,color="magenta"];569 -> 744[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 569 -> 745[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 570 -> 386[label="",style="dashed", color="red", weight=0]; 30.83/14.34 570[label="Neg vyw410 * vyw300",fontsize=16,color="magenta"];570 -> 746[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 570 -> 747[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 571 -> 386[label="",style="dashed", color="red", weight=0]; 30.83/14.34 571[label="vyw40 * Pos vyw3010",fontsize=16,color="magenta"];571 -> 748[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 571 -> 749[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 572 -> 386[label="",style="dashed", color="red", weight=0]; 30.83/14.34 572[label="Pos vyw410 * vyw300",fontsize=16,color="magenta"];572 -> 750[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 572 -> 751[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 573 -> 386[label="",style="dashed", color="red", weight=0]; 30.83/14.34 573[label="vyw40 * Neg vyw3010",fontsize=16,color="magenta"];573 -> 752[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 573 -> 753[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 574 -> 386[label="",style="dashed", color="red", weight=0]; 30.83/14.34 574[label="Neg vyw410 * vyw300",fontsize=16,color="magenta"];574 -> 754[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 574 -> 755[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 575 -> 386[label="",style="dashed", color="red", weight=0]; 30.83/14.34 575[label="vyw40 * Neg vyw3010",fontsize=16,color="magenta"];575 -> 756[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 575 -> 757[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 576 -> 536[label="",style="dashed", color="red", weight=0]; 30.83/14.34 576[label="vyw40 == vyw300",fontsize=16,color="magenta"];576 -> 758[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 576 -> 759[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 577 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.34 577[label="vyw40 == vyw300",fontsize=16,color="magenta"];577 -> 760[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 577 -> 761[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 578 -> 538[label="",style="dashed", color="red", weight=0]; 30.83/14.34 578[label="vyw40 == vyw300",fontsize=16,color="magenta"];578 -> 762[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 578 -> 763[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 579 -> 539[label="",style="dashed", color="red", weight=0]; 30.83/14.34 579[label="vyw40 == vyw300",fontsize=16,color="magenta"];579 -> 764[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 579 -> 765[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 580 -> 540[label="",style="dashed", color="red", weight=0]; 30.83/14.34 580[label="vyw40 == vyw300",fontsize=16,color="magenta"];580 -> 766[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 580 -> 767[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 581 -> 541[label="",style="dashed", color="red", weight=0]; 30.83/14.34 581[label="vyw40 == vyw300",fontsize=16,color="magenta"];581 -> 768[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 581 -> 769[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 582 -> 542[label="",style="dashed", color="red", weight=0]; 30.83/14.34 582[label="vyw40 == vyw300",fontsize=16,color="magenta"];582 -> 770[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 582 -> 771[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 583 -> 543[label="",style="dashed", color="red", weight=0]; 30.83/14.34 583[label="vyw40 == vyw300",fontsize=16,color="magenta"];583 -> 772[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 583 -> 773[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 584 -> 544[label="",style="dashed", color="red", weight=0]; 30.83/14.34 584[label="vyw40 == vyw300",fontsize=16,color="magenta"];584 -> 774[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 584 -> 775[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 585 -> 545[label="",style="dashed", color="red", weight=0]; 30.83/14.34 585[label="vyw40 == vyw300",fontsize=16,color="magenta"];585 -> 776[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 585 -> 777[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 586 -> 546[label="",style="dashed", color="red", weight=0]; 30.83/14.34 586[label="vyw40 == vyw300",fontsize=16,color="magenta"];586 -> 778[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 586 -> 779[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 587 -> 547[label="",style="dashed", color="red", weight=0]; 30.83/14.34 587[label="vyw40 == vyw300",fontsize=16,color="magenta"];587 -> 780[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 587 -> 781[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 588 -> 548[label="",style="dashed", color="red", weight=0]; 30.83/14.34 588[label="vyw40 == vyw300",fontsize=16,color="magenta"];588 -> 782[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 588 -> 783[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 589 -> 549[label="",style="dashed", color="red", weight=0]; 30.83/14.34 589[label="vyw40 == vyw300",fontsize=16,color="magenta"];589 -> 784[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 589 -> 785[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 590[label="compare2 (Left vyw71) (Left vyw72) False",fontsize=16,color="black",shape="box"];590 -> 786[label="",style="solid", color="black", weight=3]; 30.83/14.34 591[label="compare2 (Left vyw71) (Left vyw72) True",fontsize=16,color="black",shape="box"];591 -> 787[label="",style="solid", color="black", weight=3]; 30.83/14.34 592[label="compare1 (Left vyw40) (Right vyw300) True",fontsize=16,color="black",shape="box"];592 -> 788[label="",style="solid", color="black", weight=3]; 30.83/14.34 593[label="compare1 (Right vyw40) (Left vyw300) False",fontsize=16,color="black",shape="box"];593 -> 789[label="",style="solid", color="black", weight=3]; 30.83/14.34 594 -> 536[label="",style="dashed", color="red", weight=0]; 30.83/14.34 594[label="vyw40 == vyw300",fontsize=16,color="magenta"];594 -> 790[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 594 -> 791[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 595 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.34 595[label="vyw40 == vyw300",fontsize=16,color="magenta"];595 -> 792[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 595 -> 793[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 596 -> 538[label="",style="dashed", color="red", weight=0]; 30.83/14.34 596[label="vyw40 == vyw300",fontsize=16,color="magenta"];596 -> 794[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 596 -> 795[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 597 -> 539[label="",style="dashed", color="red", weight=0]; 30.83/14.34 597[label="vyw40 == vyw300",fontsize=16,color="magenta"];597 -> 796[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 597 -> 797[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 598 -> 540[label="",style="dashed", color="red", weight=0]; 30.83/14.34 598[label="vyw40 == vyw300",fontsize=16,color="magenta"];598 -> 798[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 598 -> 799[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 599 -> 541[label="",style="dashed", color="red", weight=0]; 30.83/14.34 599[label="vyw40 == vyw300",fontsize=16,color="magenta"];599 -> 800[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 599 -> 801[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 600 -> 542[label="",style="dashed", color="red", weight=0]; 30.83/14.34 600[label="vyw40 == vyw300",fontsize=16,color="magenta"];600 -> 802[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 600 -> 803[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 601 -> 543[label="",style="dashed", color="red", weight=0]; 30.83/14.34 601[label="vyw40 == vyw300",fontsize=16,color="magenta"];601 -> 804[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 601 -> 805[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 602 -> 544[label="",style="dashed", color="red", weight=0]; 30.83/14.34 602[label="vyw40 == vyw300",fontsize=16,color="magenta"];602 -> 806[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 602 -> 807[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 603 -> 545[label="",style="dashed", color="red", weight=0]; 30.83/14.34 603[label="vyw40 == vyw300",fontsize=16,color="magenta"];603 -> 808[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 603 -> 809[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 604 -> 546[label="",style="dashed", color="red", weight=0]; 30.83/14.34 604[label="vyw40 == vyw300",fontsize=16,color="magenta"];604 -> 810[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 604 -> 811[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 605 -> 547[label="",style="dashed", color="red", weight=0]; 30.83/14.34 605[label="vyw40 == vyw300",fontsize=16,color="magenta"];605 -> 812[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 605 -> 813[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 606 -> 548[label="",style="dashed", color="red", weight=0]; 30.83/14.34 606[label="vyw40 == vyw300",fontsize=16,color="magenta"];606 -> 814[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 606 -> 815[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 607 -> 549[label="",style="dashed", color="red", weight=0]; 30.83/14.34 607[label="vyw40 == vyw300",fontsize=16,color="magenta"];607 -> 816[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 607 -> 817[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 608[label="compare2 (Right vyw78) (Right vyw79) False",fontsize=16,color="black",shape="box"];608 -> 818[label="",style="solid", color="black", weight=3]; 30.83/14.34 609[label="compare2 (Right vyw78) (Right vyw79) True",fontsize=16,color="black",shape="box"];609 -> 819[label="",style="solid", color="black", weight=3]; 30.83/14.34 1116[label="vyw40 == vyw300",fontsize=16,color="blue",shape="box"];3217[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1116 -> 3217[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3217 -> 1152[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3218[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1116 -> 3218[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3218 -> 1153[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3219[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1116 -> 3219[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3219 -> 1154[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3220[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1116 -> 3220[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3220 -> 1155[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3221[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1116 -> 3221[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3221 -> 1156[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3222[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1116 -> 3222[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3222 -> 1157[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3223[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1116 -> 3223[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3223 -> 1158[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3224[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1116 -> 3224[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3224 -> 1159[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3225[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1116 -> 3225[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3225 -> 1160[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3226[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1116 -> 3226[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3226 -> 1161[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3227[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1116 -> 3227[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3227 -> 1162[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3228[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1116 -> 3228[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3228 -> 1163[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3229[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1116 -> 3229[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3229 -> 1164[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3230[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1116 -> 3230[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3230 -> 1165[label="",style="solid", color="blue", weight=3]; 30.83/14.34 1117[label="vyw41 == vyw301",fontsize=16,color="blue",shape="box"];3231[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3231[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3231 -> 1166[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3232[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3232[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3232 -> 1167[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3233[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3233[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3233 -> 1168[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3234[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3234[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3234 -> 1169[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3235[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3235[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3235 -> 1170[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3236[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3236[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3236 -> 1171[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3237[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3237[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3237 -> 1172[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3238[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3238[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3238 -> 1173[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3239[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3239[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3239 -> 1174[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3240[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3240[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3240 -> 1175[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3241[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3241[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3241 -> 1176[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3242[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3242[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3242 -> 1177[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3243[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3243[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3243 -> 1178[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3244[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3244[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3244 -> 1179[label="",style="solid", color="blue", weight=3]; 30.83/14.34 938[label="compare2 (vyw113,vyw114) (vyw115,vyw116) False",fontsize=16,color="black",shape="box"];938 -> 1011[label="",style="solid", color="black", weight=3]; 30.83/14.34 939[label="compare2 (vyw113,vyw114) (vyw115,vyw116) True",fontsize=16,color="black",shape="box"];939 -> 1012[label="",style="solid", color="black", weight=3]; 30.83/14.34 626[label="compare1 False True True",fontsize=16,color="black",shape="box"];626 -> 850[label="",style="solid", color="black", weight=3]; 30.83/14.34 627[label="compare1 True False False",fontsize=16,color="black",shape="box"];627 -> 851[label="",style="solid", color="black", weight=3]; 30.83/14.34 628[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];628 -> 852[label="",style="solid", color="black", weight=3]; 30.83/14.34 629[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];629 -> 853[label="",style="solid", color="black", weight=3]; 30.83/14.34 630[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];630 -> 854[label="",style="solid", color="black", weight=3]; 30.83/14.34 631[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];631 -> 855[label="",style="solid", color="black", weight=3]; 30.83/14.34 632[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];632 -> 856[label="",style="solid", color="black", weight=3]; 30.83/14.34 633[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];633 -> 857[label="",style="solid", color="black", weight=3]; 30.83/14.34 634[label="vyw300",fontsize=16,color="green",shape="box"];635[label="vyw40",fontsize=16,color="green",shape="box"];636[label="vyw300",fontsize=16,color="green",shape="box"];637[label="vyw40",fontsize=16,color="green",shape="box"];638[label="vyw300",fontsize=16,color="green",shape="box"];639[label="vyw40",fontsize=16,color="green",shape="box"];640[label="vyw300",fontsize=16,color="green",shape="box"];641[label="vyw40",fontsize=16,color="green",shape="box"];642[label="vyw300",fontsize=16,color="green",shape="box"];643[label="vyw40",fontsize=16,color="green",shape="box"];644[label="vyw300",fontsize=16,color="green",shape="box"];645[label="vyw40",fontsize=16,color="green",shape="box"];646[label="vyw300",fontsize=16,color="green",shape="box"];647[label="vyw40",fontsize=16,color="green",shape="box"];648[label="vyw300",fontsize=16,color="green",shape="box"];649[label="vyw40",fontsize=16,color="green",shape="box"];650[label="vyw300",fontsize=16,color="green",shape="box"];651[label="vyw40",fontsize=16,color="green",shape="box"];652[label="vyw300",fontsize=16,color="green",shape="box"];653[label="vyw40",fontsize=16,color="green",shape="box"];654[label="vyw300",fontsize=16,color="green",shape="box"];655[label="vyw40",fontsize=16,color="green",shape="box"];656[label="vyw300",fontsize=16,color="green",shape="box"];657[label="vyw40",fontsize=16,color="green",shape="box"];658[label="vyw300",fontsize=16,color="green",shape="box"];659[label="vyw40",fontsize=16,color="green",shape="box"];660[label="vyw300",fontsize=16,color="green",shape="box"];661[label="vyw40",fontsize=16,color="green",shape="box"];662[label="LT",fontsize=16,color="green",shape="box"];663[label="vyw43",fontsize=16,color="green",shape="box"];664[label="GT",fontsize=16,color="green",shape="box"];665[label="vyw3000",fontsize=16,color="green",shape="box"];666[label="vyw400",fontsize=16,color="green",shape="box"];667[label="primMulInt (Pos vyw3000) (Pos vyw410)",fontsize=16,color="black",shape="box"];667 -> 858[label="",style="solid", color="black", weight=3]; 30.83/14.34 668[label="primMulInt (Pos vyw3000) (Neg vyw410)",fontsize=16,color="black",shape="box"];668 -> 859[label="",style="solid", color="black", weight=3]; 30.83/14.34 669[label="primMulInt (Neg vyw3000) (Pos vyw410)",fontsize=16,color="black",shape="box"];669 -> 860[label="",style="solid", color="black", weight=3]; 30.83/14.34 670[label="primMulInt (Neg vyw3000) (Neg vyw410)",fontsize=16,color="black",shape="box"];670 -> 861[label="",style="solid", color="black", weight=3]; 30.83/14.34 671[label="Integer (primMulInt vyw3000 vyw410)",fontsize=16,color="green",shape="box"];671 -> 862[label="",style="dashed", color="green", weight=3]; 30.83/14.34 672[label="Pos vyw410",fontsize=16,color="green",shape="box"];673[label="vyw300",fontsize=16,color="green",shape="box"];674[label="vyw40",fontsize=16,color="green",shape="box"];675[label="Pos vyw3010",fontsize=16,color="green",shape="box"];676[label="Neg vyw410",fontsize=16,color="green",shape="box"];677[label="vyw300",fontsize=16,color="green",shape="box"];678[label="vyw40",fontsize=16,color="green",shape="box"];679[label="Pos vyw3010",fontsize=16,color="green",shape="box"];680[label="Pos vyw410",fontsize=16,color="green",shape="box"];681[label="vyw300",fontsize=16,color="green",shape="box"];682[label="vyw40",fontsize=16,color="green",shape="box"];683[label="Neg vyw3010",fontsize=16,color="green",shape="box"];684[label="Neg vyw410",fontsize=16,color="green",shape="box"];685[label="vyw300",fontsize=16,color="green",shape="box"];686[label="vyw40",fontsize=16,color="green",shape="box"];687[label="Neg vyw3010",fontsize=16,color="green",shape="box"];688[label="LT",fontsize=16,color="green",shape="box"];689[label="compare0 (Just vyw40) Nothing otherwise",fontsize=16,color="black",shape="box"];689 -> 863[label="",style="solid", color="black", weight=3]; 30.83/14.34 690[label="(vyw400,vyw401,vyw402) == vyw300",fontsize=16,color="burlywood",shape="box"];3245[label="vyw300/(vyw3000,vyw3001,vyw3002)",fontsize=10,color="white",style="solid",shape="box"];690 -> 3245[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3245 -> 864[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 691[label="primEqInt vyw40 vyw300",fontsize=16,color="burlywood",shape="triangle"];3246[label="vyw40/Pos vyw400",fontsize=10,color="white",style="solid",shape="box"];691 -> 3246[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3246 -> 865[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3247[label="vyw40/Neg vyw400",fontsize=10,color="white",style="solid",shape="box"];691 -> 3247[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3247 -> 866[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 692[label="LT == vyw300",fontsize=16,color="burlywood",shape="box"];3248[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];692 -> 3248[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3248 -> 867[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3249[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];692 -> 3249[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3249 -> 868[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3250[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];692 -> 3250[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3250 -> 869[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 693[label="EQ == vyw300",fontsize=16,color="burlywood",shape="box"];3251[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];693 -> 3251[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3251 -> 870[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3252[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];693 -> 3252[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3252 -> 871[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3253[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];693 -> 3253[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3253 -> 872[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 694[label="GT == vyw300",fontsize=16,color="burlywood",shape="box"];3254[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];694 -> 3254[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3254 -> 873[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3255[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];694 -> 3255[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3255 -> 874[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3256[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];694 -> 3256[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3256 -> 875[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 695[label="vyw400 : vyw401 == vyw300",fontsize=16,color="burlywood",shape="box"];3257[label="vyw300/vyw3000 : vyw3001",fontsize=10,color="white",style="solid",shape="box"];695 -> 3257[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3257 -> 876[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3258[label="vyw300/[]",fontsize=10,color="white",style="solid",shape="box"];695 -> 3258[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3258 -> 877[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 696[label="[] == vyw300",fontsize=16,color="burlywood",shape="box"];3259[label="vyw300/vyw3000 : vyw3001",fontsize=10,color="white",style="solid",shape="box"];696 -> 3259[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3259 -> 878[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3260[label="vyw300/[]",fontsize=10,color="white",style="solid",shape="box"];696 -> 3260[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3260 -> 879[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 697[label="primEqChar vyw40 vyw300",fontsize=16,color="burlywood",shape="box"];3261[label="vyw40/Char vyw400",fontsize=10,color="white",style="solid",shape="box"];697 -> 3261[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3261 -> 880[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 698[label="(vyw400,vyw401) == vyw300",fontsize=16,color="burlywood",shape="box"];3262[label="vyw300/(vyw3000,vyw3001)",fontsize=10,color="white",style="solid",shape="box"];698 -> 3262[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3262 -> 881[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 699[label="() == vyw300",fontsize=16,color="burlywood",shape="box"];3263[label="vyw300/()",fontsize=10,color="white",style="solid",shape="box"];699 -> 3263[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3263 -> 882[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 700[label="primEqFloat vyw40 vyw300",fontsize=16,color="burlywood",shape="box"];3264[label="vyw40/Float vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];700 -> 3264[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3264 -> 883[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 701[label="Nothing == vyw300",fontsize=16,color="burlywood",shape="box"];3265[label="vyw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];701 -> 3265[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3265 -> 884[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3266[label="vyw300/Just vyw3000",fontsize=10,color="white",style="solid",shape="box"];701 -> 3266[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3266 -> 885[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 702[label="Just vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];3267[label="vyw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];702 -> 3267[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3267 -> 886[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3268[label="vyw300/Just vyw3000",fontsize=10,color="white",style="solid",shape="box"];702 -> 3268[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3268 -> 887[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 703[label="primEqDouble vyw40 vyw300",fontsize=16,color="burlywood",shape="box"];3269[label="vyw40/Double vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];703 -> 3269[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3269 -> 888[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 704[label="Integer vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];3270[label="vyw300/Integer vyw3000",fontsize=10,color="white",style="solid",shape="box"];704 -> 3270[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3270 -> 889[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 705[label="False == vyw300",fontsize=16,color="burlywood",shape="box"];3271[label="vyw300/False",fontsize=10,color="white",style="solid",shape="box"];705 -> 3271[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3271 -> 890[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3272[label="vyw300/True",fontsize=10,color="white",style="solid",shape="box"];705 -> 3272[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3272 -> 891[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 706[label="True == vyw300",fontsize=16,color="burlywood",shape="box"];3273[label="vyw300/False",fontsize=10,color="white",style="solid",shape="box"];706 -> 3273[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3273 -> 892[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3274[label="vyw300/True",fontsize=10,color="white",style="solid",shape="box"];706 -> 3274[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3274 -> 893[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 707[label="vyw400 :% vyw401 == vyw300",fontsize=16,color="burlywood",shape="box"];3275[label="vyw300/vyw3000 :% vyw3001",fontsize=10,color="white",style="solid",shape="box"];707 -> 3275[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3275 -> 894[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 708[label="Left vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];3276[label="vyw300/Left vyw3000",fontsize=10,color="white",style="solid",shape="box"];708 -> 3276[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3276 -> 895[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3277[label="vyw300/Right vyw3000",fontsize=10,color="white",style="solid",shape="box"];708 -> 3277[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3277 -> 896[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 709[label="Right vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];3278[label="vyw300/Left vyw3000",fontsize=10,color="white",style="solid",shape="box"];709 -> 3278[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3278 -> 897[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3279[label="vyw300/Right vyw3000",fontsize=10,color="white",style="solid",shape="box"];709 -> 3279[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3279 -> 898[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 710 -> 1004[label="",style="dashed", color="red", weight=0]; 30.83/14.34 710[label="compare1 (Just vyw49) (Just vyw50) (Just vyw49 <= Just vyw50)",fontsize=16,color="magenta"];710 -> 1005[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 710 -> 1006[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 710 -> 1007[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 711[label="EQ",fontsize=16,color="green",shape="box"];1132 -> 536[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1132[label="vyw40 == vyw300",fontsize=16,color="magenta"];1132 -> 1188[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1132 -> 1189[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1133 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1133[label="vyw40 == vyw300",fontsize=16,color="magenta"];1133 -> 1190[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1133 -> 1191[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1134 -> 538[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1134[label="vyw40 == vyw300",fontsize=16,color="magenta"];1134 -> 1192[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1134 -> 1193[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1135 -> 539[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1135[label="vyw40 == vyw300",fontsize=16,color="magenta"];1135 -> 1194[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1135 -> 1195[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1136 -> 540[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1136[label="vyw40 == vyw300",fontsize=16,color="magenta"];1136 -> 1196[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1136 -> 1197[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1137 -> 541[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1137[label="vyw40 == vyw300",fontsize=16,color="magenta"];1137 -> 1198[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1137 -> 1199[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1138 -> 542[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1138[label="vyw40 == vyw300",fontsize=16,color="magenta"];1138 -> 1200[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1138 -> 1201[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1139 -> 543[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1139[label="vyw40 == vyw300",fontsize=16,color="magenta"];1139 -> 1202[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1139 -> 1203[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1140 -> 544[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1140[label="vyw40 == vyw300",fontsize=16,color="magenta"];1140 -> 1204[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1140 -> 1205[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1141 -> 545[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1141[label="vyw40 == vyw300",fontsize=16,color="magenta"];1141 -> 1206[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1141 -> 1207[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1142 -> 546[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1142[label="vyw40 == vyw300",fontsize=16,color="magenta"];1142 -> 1208[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1142 -> 1209[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1143 -> 547[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1143[label="vyw40 == vyw300",fontsize=16,color="magenta"];1143 -> 1210[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1143 -> 1211[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1144 -> 548[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1144[label="vyw40 == vyw300",fontsize=16,color="magenta"];1144 -> 1212[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1144 -> 1213[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1145 -> 549[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1145[label="vyw40 == vyw300",fontsize=16,color="magenta"];1145 -> 1214[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1145 -> 1215[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1146[label="vyw41 == vyw301",fontsize=16,color="blue",shape="box"];3280[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1146 -> 3280[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3280 -> 1216[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3281[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1146 -> 3281[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3281 -> 1217[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3282[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1146 -> 3282[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3282 -> 1218[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3283[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1146 -> 3283[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3283 -> 1219[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3284[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1146 -> 3284[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3284 -> 1220[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3285[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1146 -> 3285[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3285 -> 1221[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3286[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1146 -> 3286[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3286 -> 1222[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3287[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1146 -> 3287[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3287 -> 1223[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3288[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1146 -> 3288[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3288 -> 1224[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3289[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1146 -> 3289[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3289 -> 1225[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3290[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1146 -> 3290[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3290 -> 1226[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3291[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1146 -> 3291[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3291 -> 1227[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3292[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1146 -> 3292[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3292 -> 1228[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3293[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1146 -> 3293[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3293 -> 1229[label="",style="solid", color="blue", weight=3]; 30.83/14.34 1147[label="vyw42 == vyw302",fontsize=16,color="blue",shape="box"];3294[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 3294[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3294 -> 1230[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3295[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 3295[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3295 -> 1231[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3296[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 3296[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3296 -> 1232[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3297[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 3297[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3297 -> 1233[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3298[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 3298[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3298 -> 1234[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3299[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 3299[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3299 -> 1235[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3300[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 3300[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3300 -> 1236[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3301[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 3301[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3301 -> 1237[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3302[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 3302[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3302 -> 1238[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3303[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 3303[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3303 -> 1239[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3304[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 3304[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3304 -> 1240[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3305[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 3305[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3305 -> 1241[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3306[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 3306[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3306 -> 1242[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3307[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 3307[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3307 -> 1243[label="",style="solid", color="blue", weight=3]; 30.83/14.34 1148[label="False && vyw138",fontsize=16,color="black",shape="box"];1148 -> 1244[label="",style="solid", color="black", weight=3]; 30.83/14.34 1149[label="True && vyw138",fontsize=16,color="black",shape="box"];1149 -> 1245[label="",style="solid", color="black", weight=3]; 30.83/14.34 1150[label="compare1 (vyw100,vyw101,vyw102) (vyw103,vyw104,vyw105) ((vyw100,vyw101,vyw102) <= (vyw103,vyw104,vyw105))",fontsize=16,color="black",shape="box"];1150 -> 1246[label="",style="solid", color="black", weight=3]; 30.83/14.34 1151[label="EQ",fontsize=16,color="green",shape="box"];742[label="Pos vyw410",fontsize=16,color="green",shape="box"];743[label="vyw300",fontsize=16,color="green",shape="box"];744[label="vyw40",fontsize=16,color="green",shape="box"];745[label="Pos vyw3010",fontsize=16,color="green",shape="box"];746[label="Neg vyw410",fontsize=16,color="green",shape="box"];747[label="vyw300",fontsize=16,color="green",shape="box"];748[label="vyw40",fontsize=16,color="green",shape="box"];749[label="Pos vyw3010",fontsize=16,color="green",shape="box"];750[label="Pos vyw410",fontsize=16,color="green",shape="box"];751[label="vyw300",fontsize=16,color="green",shape="box"];752[label="vyw40",fontsize=16,color="green",shape="box"];753[label="Neg vyw3010",fontsize=16,color="green",shape="box"];754[label="Neg vyw410",fontsize=16,color="green",shape="box"];755[label="vyw300",fontsize=16,color="green",shape="box"];756[label="vyw40",fontsize=16,color="green",shape="box"];757[label="Neg vyw3010",fontsize=16,color="green",shape="box"];758[label="vyw300",fontsize=16,color="green",shape="box"];759[label="vyw40",fontsize=16,color="green",shape="box"];760[label="vyw300",fontsize=16,color="green",shape="box"];761[label="vyw40",fontsize=16,color="green",shape="box"];762[label="vyw300",fontsize=16,color="green",shape="box"];763[label="vyw40",fontsize=16,color="green",shape="box"];764[label="vyw300",fontsize=16,color="green",shape="box"];765[label="vyw40",fontsize=16,color="green",shape="box"];766[label="vyw300",fontsize=16,color="green",shape="box"];767[label="vyw40",fontsize=16,color="green",shape="box"];768[label="vyw300",fontsize=16,color="green",shape="box"];769[label="vyw40",fontsize=16,color="green",shape="box"];770[label="vyw300",fontsize=16,color="green",shape="box"];771[label="vyw40",fontsize=16,color="green",shape="box"];772[label="vyw300",fontsize=16,color="green",shape="box"];773[label="vyw40",fontsize=16,color="green",shape="box"];774[label="vyw300",fontsize=16,color="green",shape="box"];775[label="vyw40",fontsize=16,color="green",shape="box"];776[label="vyw300",fontsize=16,color="green",shape="box"];777[label="vyw40",fontsize=16,color="green",shape="box"];778[label="vyw300",fontsize=16,color="green",shape="box"];779[label="vyw40",fontsize=16,color="green",shape="box"];780[label="vyw300",fontsize=16,color="green",shape="box"];781[label="vyw40",fontsize=16,color="green",shape="box"];782[label="vyw300",fontsize=16,color="green",shape="box"];783[label="vyw40",fontsize=16,color="green",shape="box"];784[label="vyw300",fontsize=16,color="green",shape="box"];785[label="vyw40",fontsize=16,color="green",shape="box"];786 -> 1181[label="",style="dashed", color="red", weight=0]; 30.83/14.34 786[label="compare1 (Left vyw71) (Left vyw72) (Left vyw71 <= Left vyw72)",fontsize=16,color="magenta"];786 -> 1182[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 786 -> 1183[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 786 -> 1184[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 787[label="EQ",fontsize=16,color="green",shape="box"];788[label="LT",fontsize=16,color="green",shape="box"];789[label="compare0 (Right vyw40) (Left vyw300) otherwise",fontsize=16,color="black",shape="box"];789 -> 910[label="",style="solid", color="black", weight=3]; 30.83/14.34 790[label="vyw300",fontsize=16,color="green",shape="box"];791[label="vyw40",fontsize=16,color="green",shape="box"];792[label="vyw300",fontsize=16,color="green",shape="box"];793[label="vyw40",fontsize=16,color="green",shape="box"];794[label="vyw300",fontsize=16,color="green",shape="box"];795[label="vyw40",fontsize=16,color="green",shape="box"];796[label="vyw300",fontsize=16,color="green",shape="box"];797[label="vyw40",fontsize=16,color="green",shape="box"];798[label="vyw300",fontsize=16,color="green",shape="box"];799[label="vyw40",fontsize=16,color="green",shape="box"];800[label="vyw300",fontsize=16,color="green",shape="box"];801[label="vyw40",fontsize=16,color="green",shape="box"];802[label="vyw300",fontsize=16,color="green",shape="box"];803[label="vyw40",fontsize=16,color="green",shape="box"];804[label="vyw300",fontsize=16,color="green",shape="box"];805[label="vyw40",fontsize=16,color="green",shape="box"];806[label="vyw300",fontsize=16,color="green",shape="box"];807[label="vyw40",fontsize=16,color="green",shape="box"];808[label="vyw300",fontsize=16,color="green",shape="box"];809[label="vyw40",fontsize=16,color="green",shape="box"];810[label="vyw300",fontsize=16,color="green",shape="box"];811[label="vyw40",fontsize=16,color="green",shape="box"];812[label="vyw300",fontsize=16,color="green",shape="box"];813[label="vyw40",fontsize=16,color="green",shape="box"];814[label="vyw300",fontsize=16,color="green",shape="box"];815[label="vyw40",fontsize=16,color="green",shape="box"];816[label="vyw300",fontsize=16,color="green",shape="box"];817[label="vyw40",fontsize=16,color="green",shape="box"];818 -> 1307[label="",style="dashed", color="red", weight=0]; 30.83/14.34 818[label="compare1 (Right vyw78) (Right vyw79) (Right vyw78 <= Right vyw79)",fontsize=16,color="magenta"];818 -> 1308[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 818 -> 1309[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 818 -> 1310[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 819[label="EQ",fontsize=16,color="green",shape="box"];1152 -> 536[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1152[label="vyw40 == vyw300",fontsize=16,color="magenta"];1152 -> 1247[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1152 -> 1248[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1153 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1153[label="vyw40 == vyw300",fontsize=16,color="magenta"];1153 -> 1249[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1153 -> 1250[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1154 -> 538[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1154[label="vyw40 == vyw300",fontsize=16,color="magenta"];1154 -> 1251[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1154 -> 1252[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1155 -> 539[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1155[label="vyw40 == vyw300",fontsize=16,color="magenta"];1155 -> 1253[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1155 -> 1254[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1156 -> 540[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1156[label="vyw40 == vyw300",fontsize=16,color="magenta"];1156 -> 1255[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1156 -> 1256[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1157 -> 541[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1157[label="vyw40 == vyw300",fontsize=16,color="magenta"];1157 -> 1257[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1157 -> 1258[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1158 -> 542[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1158[label="vyw40 == vyw300",fontsize=16,color="magenta"];1158 -> 1259[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1158 -> 1260[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1159 -> 543[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1159[label="vyw40 == vyw300",fontsize=16,color="magenta"];1159 -> 1261[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1159 -> 1262[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1160 -> 544[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1160[label="vyw40 == vyw300",fontsize=16,color="magenta"];1160 -> 1263[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1160 -> 1264[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1161 -> 545[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1161[label="vyw40 == vyw300",fontsize=16,color="magenta"];1161 -> 1265[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1161 -> 1266[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1162 -> 546[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1162[label="vyw40 == vyw300",fontsize=16,color="magenta"];1162 -> 1267[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1162 -> 1268[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1163 -> 547[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1163[label="vyw40 == vyw300",fontsize=16,color="magenta"];1163 -> 1269[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1163 -> 1270[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1164 -> 548[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1164[label="vyw40 == vyw300",fontsize=16,color="magenta"];1164 -> 1271[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1164 -> 1272[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1165 -> 549[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1165[label="vyw40 == vyw300",fontsize=16,color="magenta"];1165 -> 1273[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1165 -> 1274[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1166 -> 536[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1166[label="vyw41 == vyw301",fontsize=16,color="magenta"];1166 -> 1275[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1166 -> 1276[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1167 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1167[label="vyw41 == vyw301",fontsize=16,color="magenta"];1167 -> 1277[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1167 -> 1278[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1168 -> 538[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1168[label="vyw41 == vyw301",fontsize=16,color="magenta"];1168 -> 1279[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1168 -> 1280[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1169 -> 539[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1169[label="vyw41 == vyw301",fontsize=16,color="magenta"];1169 -> 1281[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1169 -> 1282[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1170 -> 540[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1170[label="vyw41 == vyw301",fontsize=16,color="magenta"];1170 -> 1283[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1170 -> 1284[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1171 -> 541[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1171[label="vyw41 == vyw301",fontsize=16,color="magenta"];1171 -> 1285[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1171 -> 1286[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1172 -> 542[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1172[label="vyw41 == vyw301",fontsize=16,color="magenta"];1172 -> 1287[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1172 -> 1288[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1173 -> 543[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1173[label="vyw41 == vyw301",fontsize=16,color="magenta"];1173 -> 1289[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1173 -> 1290[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1174 -> 544[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1174[label="vyw41 == vyw301",fontsize=16,color="magenta"];1174 -> 1291[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1174 -> 1292[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1175 -> 545[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1175[label="vyw41 == vyw301",fontsize=16,color="magenta"];1175 -> 1293[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1175 -> 1294[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1176 -> 546[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1176[label="vyw41 == vyw301",fontsize=16,color="magenta"];1176 -> 1295[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1176 -> 1296[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1177 -> 547[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1177[label="vyw41 == vyw301",fontsize=16,color="magenta"];1177 -> 1297[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1177 -> 1298[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1178 -> 548[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1178[label="vyw41 == vyw301",fontsize=16,color="magenta"];1178 -> 1299[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1178 -> 1300[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1179 -> 549[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1179[label="vyw41 == vyw301",fontsize=16,color="magenta"];1179 -> 1301[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1179 -> 1302[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1011[label="compare1 (vyw113,vyw114) (vyw115,vyw116) ((vyw113,vyw114) <= (vyw115,vyw116))",fontsize=16,color="black",shape="box"];1011 -> 1180[label="",style="solid", color="black", weight=3]; 30.83/14.34 1012[label="EQ",fontsize=16,color="green",shape="box"];850[label="LT",fontsize=16,color="green",shape="box"];851[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];851 -> 956[label="",style="solid", color="black", weight=3]; 30.83/14.34 852[label="LT",fontsize=16,color="green",shape="box"];853[label="LT",fontsize=16,color="green",shape="box"];854[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];854 -> 957[label="",style="solid", color="black", weight=3]; 30.83/14.34 855[label="LT",fontsize=16,color="green",shape="box"];856[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];856 -> 958[label="",style="solid", color="black", weight=3]; 30.83/14.34 857[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];857 -> 959[label="",style="solid", color="black", weight=3]; 30.83/14.34 858[label="Pos (primMulNat vyw3000 vyw410)",fontsize=16,color="green",shape="box"];858 -> 960[label="",style="dashed", color="green", weight=3]; 30.83/14.34 859[label="Neg (primMulNat vyw3000 vyw410)",fontsize=16,color="green",shape="box"];859 -> 961[label="",style="dashed", color="green", weight=3]; 30.83/14.34 860[label="Neg (primMulNat vyw3000 vyw410)",fontsize=16,color="green",shape="box"];860 -> 962[label="",style="dashed", color="green", weight=3]; 30.83/14.34 861[label="Pos (primMulNat vyw3000 vyw410)",fontsize=16,color="green",shape="box"];861 -> 963[label="",style="dashed", color="green", weight=3]; 30.83/14.34 862 -> 440[label="",style="dashed", color="red", weight=0]; 30.83/14.34 862[label="primMulInt vyw3000 vyw410",fontsize=16,color="magenta"];862 -> 964[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 862 -> 965[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 863[label="compare0 (Just vyw40) Nothing True",fontsize=16,color="black",shape="box"];863 -> 966[label="",style="solid", color="black", weight=3]; 30.83/14.34 864[label="(vyw400,vyw401,vyw402) == (vyw3000,vyw3001,vyw3002)",fontsize=16,color="black",shape="box"];864 -> 967[label="",style="solid", color="black", weight=3]; 30.83/14.34 865[label="primEqInt (Pos vyw400) vyw300",fontsize=16,color="burlywood",shape="box"];3308[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];865 -> 3308[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3308 -> 968[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3309[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];865 -> 3309[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3309 -> 969[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 866[label="primEqInt (Neg vyw400) vyw300",fontsize=16,color="burlywood",shape="box"];3310[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];866 -> 3310[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3310 -> 970[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3311[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];866 -> 3311[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3311 -> 971[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 867[label="LT == LT",fontsize=16,color="black",shape="box"];867 -> 972[label="",style="solid", color="black", weight=3]; 30.83/14.34 868[label="LT == EQ",fontsize=16,color="black",shape="box"];868 -> 973[label="",style="solid", color="black", weight=3]; 30.83/14.34 869[label="LT == GT",fontsize=16,color="black",shape="box"];869 -> 974[label="",style="solid", color="black", weight=3]; 30.83/14.34 870[label="EQ == LT",fontsize=16,color="black",shape="box"];870 -> 975[label="",style="solid", color="black", weight=3]; 30.83/14.34 871[label="EQ == EQ",fontsize=16,color="black",shape="box"];871 -> 976[label="",style="solid", color="black", weight=3]; 30.83/14.34 872[label="EQ == GT",fontsize=16,color="black",shape="box"];872 -> 977[label="",style="solid", color="black", weight=3]; 30.83/14.34 873[label="GT == LT",fontsize=16,color="black",shape="box"];873 -> 978[label="",style="solid", color="black", weight=3]; 30.83/14.34 874[label="GT == EQ",fontsize=16,color="black",shape="box"];874 -> 979[label="",style="solid", color="black", weight=3]; 30.83/14.34 875[label="GT == GT",fontsize=16,color="black",shape="box"];875 -> 980[label="",style="solid", color="black", weight=3]; 30.83/14.34 876[label="vyw400 : vyw401 == vyw3000 : vyw3001",fontsize=16,color="black",shape="box"];876 -> 981[label="",style="solid", color="black", weight=3]; 30.83/14.34 877[label="vyw400 : vyw401 == []",fontsize=16,color="black",shape="box"];877 -> 982[label="",style="solid", color="black", weight=3]; 30.83/14.34 878[label="[] == vyw3000 : vyw3001",fontsize=16,color="black",shape="box"];878 -> 983[label="",style="solid", color="black", weight=3]; 30.83/14.34 879[label="[] == []",fontsize=16,color="black",shape="box"];879 -> 984[label="",style="solid", color="black", weight=3]; 30.83/14.34 880[label="primEqChar (Char vyw400) vyw300",fontsize=16,color="burlywood",shape="box"];3312[label="vyw300/Char vyw3000",fontsize=10,color="white",style="solid",shape="box"];880 -> 3312[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3312 -> 985[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 881[label="(vyw400,vyw401) == (vyw3000,vyw3001)",fontsize=16,color="black",shape="box"];881 -> 986[label="",style="solid", color="black", weight=3]; 30.83/14.34 882[label="() == ()",fontsize=16,color="black",shape="box"];882 -> 987[label="",style="solid", color="black", weight=3]; 30.83/14.34 883[label="primEqFloat (Float vyw400 vyw401) vyw300",fontsize=16,color="burlywood",shape="box"];3313[label="vyw300/Float vyw3000 vyw3001",fontsize=10,color="white",style="solid",shape="box"];883 -> 3313[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3313 -> 988[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 884[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];884 -> 989[label="",style="solid", color="black", weight=3]; 30.83/14.34 885[label="Nothing == Just vyw3000",fontsize=16,color="black",shape="box"];885 -> 990[label="",style="solid", color="black", weight=3]; 30.83/14.34 886[label="Just vyw400 == Nothing",fontsize=16,color="black",shape="box"];886 -> 991[label="",style="solid", color="black", weight=3]; 30.83/14.34 887[label="Just vyw400 == Just vyw3000",fontsize=16,color="black",shape="box"];887 -> 992[label="",style="solid", color="black", weight=3]; 30.83/14.34 888[label="primEqDouble (Double vyw400 vyw401) vyw300",fontsize=16,color="burlywood",shape="box"];3314[label="vyw300/Double vyw3000 vyw3001",fontsize=10,color="white",style="solid",shape="box"];888 -> 3314[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3314 -> 993[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 889[label="Integer vyw400 == Integer vyw3000",fontsize=16,color="black",shape="box"];889 -> 994[label="",style="solid", color="black", weight=3]; 30.83/14.34 890[label="False == False",fontsize=16,color="black",shape="box"];890 -> 995[label="",style="solid", color="black", weight=3]; 30.83/14.34 891[label="False == True",fontsize=16,color="black",shape="box"];891 -> 996[label="",style="solid", color="black", weight=3]; 30.83/14.34 892[label="True == False",fontsize=16,color="black",shape="box"];892 -> 997[label="",style="solid", color="black", weight=3]; 30.83/14.34 893[label="True == True",fontsize=16,color="black",shape="box"];893 -> 998[label="",style="solid", color="black", weight=3]; 30.83/14.34 894[label="vyw400 :% vyw401 == vyw3000 :% vyw3001",fontsize=16,color="black",shape="box"];894 -> 999[label="",style="solid", color="black", weight=3]; 30.83/14.34 895[label="Left vyw400 == Left vyw3000",fontsize=16,color="black",shape="box"];895 -> 1000[label="",style="solid", color="black", weight=3]; 30.83/14.34 896[label="Left vyw400 == Right vyw3000",fontsize=16,color="black",shape="box"];896 -> 1001[label="",style="solid", color="black", weight=3]; 30.83/14.34 897[label="Right vyw400 == Left vyw3000",fontsize=16,color="black",shape="box"];897 -> 1002[label="",style="solid", color="black", weight=3]; 30.83/14.34 898[label="Right vyw400 == Right vyw3000",fontsize=16,color="black",shape="box"];898 -> 1003[label="",style="solid", color="black", weight=3]; 30.83/14.34 1005[label="vyw50",fontsize=16,color="green",shape="box"];1006[label="Just vyw49 <= Just vyw50",fontsize=16,color="black",shape="box"];1006 -> 1043[label="",style="solid", color="black", weight=3]; 30.83/14.34 1007[label="vyw49",fontsize=16,color="green",shape="box"];1004[label="compare1 (Just vyw129) (Just vyw130) vyw131",fontsize=16,color="burlywood",shape="triangle"];3315[label="vyw131/False",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3315[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3315 -> 1044[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3316[label="vyw131/True",fontsize=10,color="white",style="solid",shape="box"];1004 -> 3316[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3316 -> 1045[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 1188[label="vyw300",fontsize=16,color="green",shape="box"];1189[label="vyw40",fontsize=16,color="green",shape="box"];1190[label="vyw300",fontsize=16,color="green",shape="box"];1191[label="vyw40",fontsize=16,color="green",shape="box"];1192[label="vyw300",fontsize=16,color="green",shape="box"];1193[label="vyw40",fontsize=16,color="green",shape="box"];1194[label="vyw300",fontsize=16,color="green",shape="box"];1195[label="vyw40",fontsize=16,color="green",shape="box"];1196[label="vyw300",fontsize=16,color="green",shape="box"];1197[label="vyw40",fontsize=16,color="green",shape="box"];1198[label="vyw300",fontsize=16,color="green",shape="box"];1199[label="vyw40",fontsize=16,color="green",shape="box"];1200[label="vyw300",fontsize=16,color="green",shape="box"];1201[label="vyw40",fontsize=16,color="green",shape="box"];1202[label="vyw300",fontsize=16,color="green",shape="box"];1203[label="vyw40",fontsize=16,color="green",shape="box"];1204[label="vyw300",fontsize=16,color="green",shape="box"];1205[label="vyw40",fontsize=16,color="green",shape="box"];1206[label="vyw300",fontsize=16,color="green",shape="box"];1207[label="vyw40",fontsize=16,color="green",shape="box"];1208[label="vyw300",fontsize=16,color="green",shape="box"];1209[label="vyw40",fontsize=16,color="green",shape="box"];1210[label="vyw300",fontsize=16,color="green",shape="box"];1211[label="vyw40",fontsize=16,color="green",shape="box"];1212[label="vyw300",fontsize=16,color="green",shape="box"];1213[label="vyw40",fontsize=16,color="green",shape="box"];1214[label="vyw300",fontsize=16,color="green",shape="box"];1215[label="vyw40",fontsize=16,color="green",shape="box"];1216 -> 536[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1216[label="vyw41 == vyw301",fontsize=16,color="magenta"];1216 -> 1314[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1216 -> 1315[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1217 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1217[label="vyw41 == vyw301",fontsize=16,color="magenta"];1217 -> 1316[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1217 -> 1317[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1218 -> 538[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1218[label="vyw41 == vyw301",fontsize=16,color="magenta"];1218 -> 1318[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1218 -> 1319[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1219 -> 539[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1219[label="vyw41 == vyw301",fontsize=16,color="magenta"];1219 -> 1320[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1219 -> 1321[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1220 -> 540[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1220[label="vyw41 == vyw301",fontsize=16,color="magenta"];1220 -> 1322[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1220 -> 1323[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1221 -> 541[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1221[label="vyw41 == vyw301",fontsize=16,color="magenta"];1221 -> 1324[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1221 -> 1325[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1222 -> 542[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1222[label="vyw41 == vyw301",fontsize=16,color="magenta"];1222 -> 1326[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1222 -> 1327[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1223 -> 543[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1223[label="vyw41 == vyw301",fontsize=16,color="magenta"];1223 -> 1328[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1223 -> 1329[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1224 -> 544[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1224[label="vyw41 == vyw301",fontsize=16,color="magenta"];1224 -> 1330[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1224 -> 1331[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1225 -> 545[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1225[label="vyw41 == vyw301",fontsize=16,color="magenta"];1225 -> 1332[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1225 -> 1333[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1226 -> 546[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1226[label="vyw41 == vyw301",fontsize=16,color="magenta"];1226 -> 1334[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1226 -> 1335[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1227 -> 547[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1227[label="vyw41 == vyw301",fontsize=16,color="magenta"];1227 -> 1336[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1227 -> 1337[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1228 -> 548[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1228[label="vyw41 == vyw301",fontsize=16,color="magenta"];1228 -> 1338[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1228 -> 1339[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1229 -> 549[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1229[label="vyw41 == vyw301",fontsize=16,color="magenta"];1229 -> 1340[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1229 -> 1341[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1230 -> 536[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1230[label="vyw42 == vyw302",fontsize=16,color="magenta"];1230 -> 1342[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1230 -> 1343[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1231 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1231[label="vyw42 == vyw302",fontsize=16,color="magenta"];1231 -> 1344[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1231 -> 1345[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1232 -> 538[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1232[label="vyw42 == vyw302",fontsize=16,color="magenta"];1232 -> 1346[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1232 -> 1347[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1233 -> 539[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1233[label="vyw42 == vyw302",fontsize=16,color="magenta"];1233 -> 1348[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1233 -> 1349[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1234 -> 540[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1234[label="vyw42 == vyw302",fontsize=16,color="magenta"];1234 -> 1350[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1234 -> 1351[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1235 -> 541[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1235[label="vyw42 == vyw302",fontsize=16,color="magenta"];1235 -> 1352[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1235 -> 1353[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1236 -> 542[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1236[label="vyw42 == vyw302",fontsize=16,color="magenta"];1236 -> 1354[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1236 -> 1355[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1237 -> 543[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1237[label="vyw42 == vyw302",fontsize=16,color="magenta"];1237 -> 1356[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1237 -> 1357[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1238 -> 544[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1238[label="vyw42 == vyw302",fontsize=16,color="magenta"];1238 -> 1358[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1238 -> 1359[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1239 -> 545[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1239[label="vyw42 == vyw302",fontsize=16,color="magenta"];1239 -> 1360[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1239 -> 1361[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1240 -> 546[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1240[label="vyw42 == vyw302",fontsize=16,color="magenta"];1240 -> 1362[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1240 -> 1363[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1241 -> 547[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1241[label="vyw42 == vyw302",fontsize=16,color="magenta"];1241 -> 1364[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1241 -> 1365[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1242 -> 548[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1242[label="vyw42 == vyw302",fontsize=16,color="magenta"];1242 -> 1366[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1242 -> 1367[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1243 -> 549[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1243[label="vyw42 == vyw302",fontsize=16,color="magenta"];1243 -> 1368[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1243 -> 1369[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1244[label="False",fontsize=16,color="green",shape="box"];1245[label="vyw138",fontsize=16,color="green",shape="box"];1246 -> 1460[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1246[label="compare1 (vyw100,vyw101,vyw102) (vyw103,vyw104,vyw105) (vyw100 < vyw103 || vyw100 == vyw103 && (vyw101 < vyw104 || vyw101 == vyw104 && vyw102 <= vyw105))",fontsize=16,color="magenta"];1246 -> 1461[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1246 -> 1462[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1246 -> 1463[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1246 -> 1464[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1246 -> 1465[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1246 -> 1466[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1246 -> 1467[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1246 -> 1468[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1182[label="vyw71",fontsize=16,color="green",shape="box"];1183[label="vyw72",fontsize=16,color="green",shape="box"];1184[label="Left vyw71 <= Left vyw72",fontsize=16,color="black",shape="box"];1184 -> 1303[label="",style="solid", color="black", weight=3]; 30.83/14.34 1181[label="compare1 (Left vyw143) (Left vyw144) vyw145",fontsize=16,color="burlywood",shape="triangle"];3317[label="vyw145/False",fontsize=10,color="white",style="solid",shape="box"];1181 -> 3317[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3317 -> 1304[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3318[label="vyw145/True",fontsize=10,color="white",style="solid",shape="box"];1181 -> 3318[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3318 -> 1305[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 910[label="compare0 (Right vyw40) (Left vyw300) True",fontsize=16,color="black",shape="box"];910 -> 1306[label="",style="solid", color="black", weight=3]; 30.83/14.34 1308[label="Right vyw78 <= Right vyw79",fontsize=16,color="black",shape="box"];1308 -> 1372[label="",style="solid", color="black", weight=3]; 30.83/14.34 1309[label="vyw78",fontsize=16,color="green",shape="box"];1310[label="vyw79",fontsize=16,color="green",shape="box"];1307[label="compare1 (Right vyw150) (Right vyw151) vyw152",fontsize=16,color="burlywood",shape="triangle"];3319[label="vyw152/False",fontsize=10,color="white",style="solid",shape="box"];1307 -> 3319[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3319 -> 1373[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3320[label="vyw152/True",fontsize=10,color="white",style="solid",shape="box"];1307 -> 3320[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3320 -> 1374[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 1247[label="vyw300",fontsize=16,color="green",shape="box"];1248[label="vyw40",fontsize=16,color="green",shape="box"];1249[label="vyw300",fontsize=16,color="green",shape="box"];1250[label="vyw40",fontsize=16,color="green",shape="box"];1251[label="vyw300",fontsize=16,color="green",shape="box"];1252[label="vyw40",fontsize=16,color="green",shape="box"];1253[label="vyw300",fontsize=16,color="green",shape="box"];1254[label="vyw40",fontsize=16,color="green",shape="box"];1255[label="vyw300",fontsize=16,color="green",shape="box"];1256[label="vyw40",fontsize=16,color="green",shape="box"];1257[label="vyw300",fontsize=16,color="green",shape="box"];1258[label="vyw40",fontsize=16,color="green",shape="box"];1259[label="vyw300",fontsize=16,color="green",shape="box"];1260[label="vyw40",fontsize=16,color="green",shape="box"];1261[label="vyw300",fontsize=16,color="green",shape="box"];1262[label="vyw40",fontsize=16,color="green",shape="box"];1263[label="vyw300",fontsize=16,color="green",shape="box"];1264[label="vyw40",fontsize=16,color="green",shape="box"];1265[label="vyw300",fontsize=16,color="green",shape="box"];1266[label="vyw40",fontsize=16,color="green",shape="box"];1267[label="vyw300",fontsize=16,color="green",shape="box"];1268[label="vyw40",fontsize=16,color="green",shape="box"];1269[label="vyw300",fontsize=16,color="green",shape="box"];1270[label="vyw40",fontsize=16,color="green",shape="box"];1271[label="vyw300",fontsize=16,color="green",shape="box"];1272[label="vyw40",fontsize=16,color="green",shape="box"];1273[label="vyw300",fontsize=16,color="green",shape="box"];1274[label="vyw40",fontsize=16,color="green",shape="box"];1275[label="vyw301",fontsize=16,color="green",shape="box"];1276[label="vyw41",fontsize=16,color="green",shape="box"];1277[label="vyw301",fontsize=16,color="green",shape="box"];1278[label="vyw41",fontsize=16,color="green",shape="box"];1279[label="vyw301",fontsize=16,color="green",shape="box"];1280[label="vyw41",fontsize=16,color="green",shape="box"];1281[label="vyw301",fontsize=16,color="green",shape="box"];1282[label="vyw41",fontsize=16,color="green",shape="box"];1283[label="vyw301",fontsize=16,color="green",shape="box"];1284[label="vyw41",fontsize=16,color="green",shape="box"];1285[label="vyw301",fontsize=16,color="green",shape="box"];1286[label="vyw41",fontsize=16,color="green",shape="box"];1287[label="vyw301",fontsize=16,color="green",shape="box"];1288[label="vyw41",fontsize=16,color="green",shape="box"];1289[label="vyw301",fontsize=16,color="green",shape="box"];1290[label="vyw41",fontsize=16,color="green",shape="box"];1291[label="vyw301",fontsize=16,color="green",shape="box"];1292[label="vyw41",fontsize=16,color="green",shape="box"];1293[label="vyw301",fontsize=16,color="green",shape="box"];1294[label="vyw41",fontsize=16,color="green",shape="box"];1295[label="vyw301",fontsize=16,color="green",shape="box"];1296[label="vyw41",fontsize=16,color="green",shape="box"];1297[label="vyw301",fontsize=16,color="green",shape="box"];1298[label="vyw41",fontsize=16,color="green",shape="box"];1299[label="vyw301",fontsize=16,color="green",shape="box"];1300[label="vyw41",fontsize=16,color="green",shape="box"];1301[label="vyw301",fontsize=16,color="green",shape="box"];1302[label="vyw41",fontsize=16,color="green",shape="box"];1180 -> 1529[label="",style="dashed", color="red", weight=0]; 30.83/14.34 1180[label="compare1 (vyw113,vyw114) (vyw115,vyw116) (vyw113 < vyw115 || vyw113 == vyw115 && vyw114 <= vyw116)",fontsize=16,color="magenta"];1180 -> 1530[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1180 -> 1531[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1180 -> 1532[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1180 -> 1533[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1180 -> 1534[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1180 -> 1535[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 956[label="compare0 True False True",fontsize=16,color="black",shape="box"];956 -> 1377[label="",style="solid", color="black", weight=3]; 30.83/14.34 957[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];957 -> 1378[label="",style="solid", color="black", weight=3]; 30.83/14.34 958[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];958 -> 1379[label="",style="solid", color="black", weight=3]; 30.83/14.34 959[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];959 -> 1380[label="",style="solid", color="black", weight=3]; 30.83/14.34 960[label="primMulNat vyw3000 vyw410",fontsize=16,color="burlywood",shape="triangle"];3321[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];960 -> 3321[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3321 -> 1381[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3322[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];960 -> 3322[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3322 -> 1382[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 961 -> 960[label="",style="dashed", color="red", weight=0]; 30.83/14.34 961[label="primMulNat vyw3000 vyw410",fontsize=16,color="magenta"];961 -> 1383[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 962 -> 960[label="",style="dashed", color="red", weight=0]; 30.83/14.34 962[label="primMulNat vyw3000 vyw410",fontsize=16,color="magenta"];962 -> 1384[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 963 -> 960[label="",style="dashed", color="red", weight=0]; 30.83/14.34 963[label="primMulNat vyw3000 vyw410",fontsize=16,color="magenta"];963 -> 1385[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 963 -> 1386[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 964[label="vyw3000",fontsize=16,color="green",shape="box"];965[label="vyw410",fontsize=16,color="green",shape="box"];966[label="GT",fontsize=16,color="green",shape="box"];967 -> 1113[label="",style="dashed", color="red", weight=0]; 30.83/14.34 967[label="vyw400 == vyw3000 && vyw401 == vyw3001 && vyw402 == vyw3002",fontsize=16,color="magenta"];967 -> 1122[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 967 -> 1123[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 968[label="primEqInt (Pos (Succ vyw4000)) vyw300",fontsize=16,color="burlywood",shape="box"];3323[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];968 -> 3323[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3323 -> 1387[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3324[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];968 -> 3324[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3324 -> 1388[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 969[label="primEqInt (Pos Zero) vyw300",fontsize=16,color="burlywood",shape="box"];3325[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];969 -> 3325[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3325 -> 1389[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3326[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];969 -> 3326[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3326 -> 1390[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 970[label="primEqInt (Neg (Succ vyw4000)) vyw300",fontsize=16,color="burlywood",shape="box"];3327[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];970 -> 3327[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3327 -> 1391[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3328[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];970 -> 3328[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3328 -> 1392[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 971[label="primEqInt (Neg Zero) vyw300",fontsize=16,color="burlywood",shape="box"];3329[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];971 -> 3329[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3329 -> 1393[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 3330[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];971 -> 3330[label="",style="solid", color="burlywood", weight=9]; 30.83/14.34 3330 -> 1394[label="",style="solid", color="burlywood", weight=3]; 30.83/14.34 972[label="True",fontsize=16,color="green",shape="box"];973[label="False",fontsize=16,color="green",shape="box"];974[label="False",fontsize=16,color="green",shape="box"];975[label="False",fontsize=16,color="green",shape="box"];976[label="True",fontsize=16,color="green",shape="box"];977[label="False",fontsize=16,color="green",shape="box"];978[label="False",fontsize=16,color="green",shape="box"];979[label="False",fontsize=16,color="green",shape="box"];980[label="True",fontsize=16,color="green",shape="box"];981 -> 1113[label="",style="dashed", color="red", weight=0]; 30.83/14.34 981[label="vyw400 == vyw3000 && vyw401 == vyw3001",fontsize=16,color="magenta"];981 -> 1124[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 981 -> 1125[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 982[label="False",fontsize=16,color="green",shape="box"];983[label="False",fontsize=16,color="green",shape="box"];984[label="True",fontsize=16,color="green",shape="box"];985[label="primEqChar (Char vyw400) (Char vyw3000)",fontsize=16,color="black",shape="box"];985 -> 1395[label="",style="solid", color="black", weight=3]; 30.83/14.34 986 -> 1113[label="",style="dashed", color="red", weight=0]; 30.83/14.34 986[label="vyw400 == vyw3000 && vyw401 == vyw3001",fontsize=16,color="magenta"];986 -> 1126[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 986 -> 1127[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 987[label="True",fontsize=16,color="green",shape="box"];988[label="primEqFloat (Float vyw400 vyw401) (Float vyw3000 vyw3001)",fontsize=16,color="black",shape="box"];988 -> 1396[label="",style="solid", color="black", weight=3]; 30.83/14.34 989[label="True",fontsize=16,color="green",shape="box"];990[label="False",fontsize=16,color="green",shape="box"];991[label="False",fontsize=16,color="green",shape="box"];992[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3331[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];992 -> 3331[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3331 -> 1397[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3332[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];992 -> 3332[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3332 -> 1398[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3333[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];992 -> 3333[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3333 -> 1399[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3334[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];992 -> 3334[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3334 -> 1400[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3335[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];992 -> 3335[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3335 -> 1401[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3336[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];992 -> 3336[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3336 -> 1402[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3337[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];992 -> 3337[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3337 -> 1403[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3338[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];992 -> 3338[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3338 -> 1404[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3339[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];992 -> 3339[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3339 -> 1405[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3340[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];992 -> 3340[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3340 -> 1406[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3341[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];992 -> 3341[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3341 -> 1407[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3342[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];992 -> 3342[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3342 -> 1408[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3343[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];992 -> 3343[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3343 -> 1409[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3344[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];992 -> 3344[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3344 -> 1410[label="",style="solid", color="blue", weight=3]; 30.83/14.34 993[label="primEqDouble (Double vyw400 vyw401) (Double vyw3000 vyw3001)",fontsize=16,color="black",shape="box"];993 -> 1411[label="",style="solid", color="black", weight=3]; 30.83/14.34 994 -> 691[label="",style="dashed", color="red", weight=0]; 30.83/14.34 994[label="primEqInt vyw400 vyw3000",fontsize=16,color="magenta"];994 -> 1412[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 994 -> 1413[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 995[label="True",fontsize=16,color="green",shape="box"];996[label="False",fontsize=16,color="green",shape="box"];997[label="False",fontsize=16,color="green",shape="box"];998[label="True",fontsize=16,color="green",shape="box"];999 -> 1113[label="",style="dashed", color="red", weight=0]; 30.83/14.34 999[label="vyw400 == vyw3000 && vyw401 == vyw3001",fontsize=16,color="magenta"];999 -> 1128[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 999 -> 1129[label="",style="dashed", color="magenta", weight=3]; 30.83/14.34 1000[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3345[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3345[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3345 -> 1414[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3346[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3346[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3346 -> 1415[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3347[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3347[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3347 -> 1416[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3348[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3348[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3348 -> 1417[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3349[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3349[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3349 -> 1418[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3350[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3350[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3350 -> 1419[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3351[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3351[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3351 -> 1420[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3352[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3352[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3352 -> 1421[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3353[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3353[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3353 -> 1422[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3354[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3354[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3354 -> 1423[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3355[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3355[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3355 -> 1424[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3356[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3356[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3356 -> 1425[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3357[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3357[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3357 -> 1426[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3358[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3358[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3358 -> 1427[label="",style="solid", color="blue", weight=3]; 30.83/14.34 1001[label="False",fontsize=16,color="green",shape="box"];1002[label="False",fontsize=16,color="green",shape="box"];1003[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3359[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3359[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3359 -> 1428[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3360[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3360[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3360 -> 1429[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3361[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3361[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3361 -> 1430[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3362[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3362[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3362 -> 1431[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3363[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3363[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3363 -> 1432[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3364[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3364[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3364 -> 1433[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3365[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3365[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3365 -> 1434[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3366[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3366[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3366 -> 1435[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3367[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3367[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3367 -> 1436[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3368[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3368[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3368 -> 1437[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3369[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3369[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3369 -> 1438[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3370[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3370[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3370 -> 1439[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3371[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3371[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3371 -> 1440[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3372[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3372[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3372 -> 1441[label="",style="solid", color="blue", weight=3]; 30.83/14.34 1043[label="vyw49 <= vyw50",fontsize=16,color="blue",shape="box"];3373[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3373[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3373 -> 1442[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3374[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3374[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3374 -> 1443[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3375[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3375[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3375 -> 1444[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3376[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3376[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3376 -> 1445[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3377[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3377[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3377 -> 1446[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3378[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3378[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3378 -> 1447[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3379[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3379[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3379 -> 1448[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3380[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3380[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3380 -> 1449[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3381[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3381[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3381 -> 1450[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3382[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3382[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3382 -> 1451[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3383[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3383[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3383 -> 1452[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3384[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3384[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3384 -> 1453[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3385[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3385[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3385 -> 1454[label="",style="solid", color="blue", weight=3]; 30.83/14.34 3386[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3386[label="",style="solid", color="blue", weight=9]; 30.83/14.34 3386 -> 1455[label="",style="solid", color="blue", weight=3]; 30.83/14.34 1044[label="compare1 (Just vyw129) (Just vyw130) False",fontsize=16,color="black",shape="box"];1044 -> 1456[label="",style="solid", color="black", weight=3]; 30.83/14.34 1045[label="compare1 (Just vyw129) (Just vyw130) True",fontsize=16,color="black",shape="box"];1045 -> 1457[label="",style="solid", color="black", weight=3]; 30.83/14.35 1314[label="vyw301",fontsize=16,color="green",shape="box"];1315[label="vyw41",fontsize=16,color="green",shape="box"];1316[label="vyw301",fontsize=16,color="green",shape="box"];1317[label="vyw41",fontsize=16,color="green",shape="box"];1318[label="vyw301",fontsize=16,color="green",shape="box"];1319[label="vyw41",fontsize=16,color="green",shape="box"];1320[label="vyw301",fontsize=16,color="green",shape="box"];1321[label="vyw41",fontsize=16,color="green",shape="box"];1322[label="vyw301",fontsize=16,color="green",shape="box"];1323[label="vyw41",fontsize=16,color="green",shape="box"];1324[label="vyw301",fontsize=16,color="green",shape="box"];1325[label="vyw41",fontsize=16,color="green",shape="box"];1326[label="vyw301",fontsize=16,color="green",shape="box"];1327[label="vyw41",fontsize=16,color="green",shape="box"];1328[label="vyw301",fontsize=16,color="green",shape="box"];1329[label="vyw41",fontsize=16,color="green",shape="box"];1330[label="vyw301",fontsize=16,color="green",shape="box"];1331[label="vyw41",fontsize=16,color="green",shape="box"];1332[label="vyw301",fontsize=16,color="green",shape="box"];1333[label="vyw41",fontsize=16,color="green",shape="box"];1334[label="vyw301",fontsize=16,color="green",shape="box"];1335[label="vyw41",fontsize=16,color="green",shape="box"];1336[label="vyw301",fontsize=16,color="green",shape="box"];1337[label="vyw41",fontsize=16,color="green",shape="box"];1338[label="vyw301",fontsize=16,color="green",shape="box"];1339[label="vyw41",fontsize=16,color="green",shape="box"];1340[label="vyw301",fontsize=16,color="green",shape="box"];1341[label="vyw41",fontsize=16,color="green",shape="box"];1342[label="vyw302",fontsize=16,color="green",shape="box"];1343[label="vyw42",fontsize=16,color="green",shape="box"];1344[label="vyw302",fontsize=16,color="green",shape="box"];1345[label="vyw42",fontsize=16,color="green",shape="box"];1346[label="vyw302",fontsize=16,color="green",shape="box"];1347[label="vyw42",fontsize=16,color="green",shape="box"];1348[label="vyw302",fontsize=16,color="green",shape="box"];1349[label="vyw42",fontsize=16,color="green",shape="box"];1350[label="vyw302",fontsize=16,color="green",shape="box"];1351[label="vyw42",fontsize=16,color="green",shape="box"];1352[label="vyw302",fontsize=16,color="green",shape="box"];1353[label="vyw42",fontsize=16,color="green",shape="box"];1354[label="vyw302",fontsize=16,color="green",shape="box"];1355[label="vyw42",fontsize=16,color="green",shape="box"];1356[label="vyw302",fontsize=16,color="green",shape="box"];1357[label="vyw42",fontsize=16,color="green",shape="box"];1358[label="vyw302",fontsize=16,color="green",shape="box"];1359[label="vyw42",fontsize=16,color="green",shape="box"];1360[label="vyw302",fontsize=16,color="green",shape="box"];1361[label="vyw42",fontsize=16,color="green",shape="box"];1362[label="vyw302",fontsize=16,color="green",shape="box"];1363[label="vyw42",fontsize=16,color="green",shape="box"];1364[label="vyw302",fontsize=16,color="green",shape="box"];1365[label="vyw42",fontsize=16,color="green",shape="box"];1366[label="vyw302",fontsize=16,color="green",shape="box"];1367[label="vyw42",fontsize=16,color="green",shape="box"];1368[label="vyw302",fontsize=16,color="green",shape="box"];1369[label="vyw42",fontsize=16,color="green",shape="box"];1461[label="vyw102",fontsize=16,color="green",shape="box"];1462[label="vyw103",fontsize=16,color="green",shape="box"];1463[label="vyw105",fontsize=16,color="green",shape="box"];1464 -> 1113[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1464[label="vyw100 == vyw103 && (vyw101 < vyw104 || vyw101 == vyw104 && vyw102 <= vyw105)",fontsize=16,color="magenta"];1464 -> 1477[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1464 -> 1478[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1465[label="vyw101",fontsize=16,color="green",shape="box"];1466[label="vyw100",fontsize=16,color="green",shape="box"];1467[label="vyw104",fontsize=16,color="green",shape="box"];1468[label="vyw100 < vyw103",fontsize=16,color="blue",shape="box"];3387[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3387[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3387 -> 1479[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3388[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3388[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3388 -> 1480[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3389[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3389[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3389 -> 1481[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3390[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3390[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3390 -> 1482[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3391[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3391[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3391 -> 1483[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3392[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3392[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3392 -> 1484[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3393[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3393[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3393 -> 1485[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3394[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3394[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3394 -> 1486[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3395[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3395[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3395 -> 1487[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3396[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3396[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3396 -> 1488[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3397[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3397[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3397 -> 1489[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3398[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3398[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3398 -> 1490[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3399[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3399[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3399 -> 1491[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3400[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3400[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3400 -> 1492[label="",style="solid", color="blue", weight=3]; 30.83/14.35 1460[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) (vyw171 || vyw172)",fontsize=16,color="burlywood",shape="triangle"];3401[label="vyw171/False",fontsize=10,color="white",style="solid",shape="box"];1460 -> 3401[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3401 -> 1493[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3402[label="vyw171/True",fontsize=10,color="white",style="solid",shape="box"];1460 -> 3402[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3402 -> 1494[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1303[label="vyw71 <= vyw72",fontsize=16,color="blue",shape="box"];3403[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1303 -> 3403[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3403 -> 1495[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3404[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1303 -> 3404[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3404 -> 1496[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3405[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1303 -> 3405[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3405 -> 1497[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3406[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1303 -> 3406[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3406 -> 1498[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3407[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1303 -> 3407[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3407 -> 1499[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3408[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1303 -> 3408[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3408 -> 1500[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3409[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1303 -> 3409[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3409 -> 1501[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3410[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1303 -> 3410[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3410 -> 1502[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3411[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1303 -> 3411[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3411 -> 1503[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3412[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1303 -> 3412[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3412 -> 1504[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3413[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1303 -> 3413[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3413 -> 1505[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3414[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1303 -> 3414[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3414 -> 1506[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3415[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1303 -> 3415[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3415 -> 1507[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3416[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1303 -> 3416[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3416 -> 1508[label="",style="solid", color="blue", weight=3]; 30.83/14.35 1304[label="compare1 (Left vyw143) (Left vyw144) False",fontsize=16,color="black",shape="box"];1304 -> 1509[label="",style="solid", color="black", weight=3]; 30.83/14.35 1305[label="compare1 (Left vyw143) (Left vyw144) True",fontsize=16,color="black",shape="box"];1305 -> 1510[label="",style="solid", color="black", weight=3]; 30.83/14.35 1306[label="GT",fontsize=16,color="green",shape="box"];1372[label="vyw78 <= vyw79",fontsize=16,color="blue",shape="box"];3417[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 3417[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3417 -> 1511[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3418[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 3418[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3418 -> 1512[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3419[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 3419[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3419 -> 1513[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3420[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 3420[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3420 -> 1514[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3421[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 3421[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3421 -> 1515[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3422[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 3422[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3422 -> 1516[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3423[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 3423[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3423 -> 1517[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3424[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 3424[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3424 -> 1518[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3425[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 3425[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3425 -> 1519[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3426[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 3426[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3426 -> 1520[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3427[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 3427[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3427 -> 1521[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3428[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 3428[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3428 -> 1522[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3429[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 3429[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3429 -> 1523[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3430[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1372 -> 3430[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3430 -> 1524[label="",style="solid", color="blue", weight=3]; 30.83/14.35 1373[label="compare1 (Right vyw150) (Right vyw151) False",fontsize=16,color="black",shape="box"];1373 -> 1525[label="",style="solid", color="black", weight=3]; 30.83/14.35 1374[label="compare1 (Right vyw150) (Right vyw151) True",fontsize=16,color="black",shape="box"];1374 -> 1526[label="",style="solid", color="black", weight=3]; 30.83/14.35 1530[label="vyw113",fontsize=16,color="green",shape="box"];1531[label="vyw115",fontsize=16,color="green",shape="box"];1532[label="vyw113 < vyw115",fontsize=16,color="blue",shape="box"];3431[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1532 -> 3431[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3431 -> 1542[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3432[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1532 -> 3432[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3432 -> 1543[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3433[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1532 -> 3433[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3433 -> 1544[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3434[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1532 -> 3434[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3434 -> 1545[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3435[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1532 -> 3435[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3435 -> 1546[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3436[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1532 -> 3436[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3436 -> 1547[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3437[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1532 -> 3437[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3437 -> 1548[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3438[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1532 -> 3438[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3438 -> 1549[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3439[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1532 -> 3439[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3439 -> 1550[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3440[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1532 -> 3440[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3440 -> 1551[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3441[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1532 -> 3441[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3441 -> 1552[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3442[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1532 -> 3442[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3442 -> 1553[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3443[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1532 -> 3443[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3443 -> 1554[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3444[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1532 -> 3444[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3444 -> 1555[label="",style="solid", color="blue", weight=3]; 30.83/14.35 1533[label="vyw114",fontsize=16,color="green",shape="box"];1534[label="vyw116",fontsize=16,color="green",shape="box"];1535 -> 1113[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1535[label="vyw113 == vyw115 && vyw114 <= vyw116",fontsize=16,color="magenta"];1535 -> 1556[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1535 -> 1557[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1529[label="compare1 (vyw180,vyw181) (vyw182,vyw183) (vyw184 || vyw185)",fontsize=16,color="burlywood",shape="triangle"];3445[label="vyw184/False",fontsize=10,color="white",style="solid",shape="box"];1529 -> 3445[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3445 -> 1558[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3446[label="vyw184/True",fontsize=10,color="white",style="solid",shape="box"];1529 -> 3446[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3446 -> 1559[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1377[label="GT",fontsize=16,color="green",shape="box"];1378[label="GT",fontsize=16,color="green",shape="box"];1379[label="GT",fontsize=16,color="green",shape="box"];1380[label="GT",fontsize=16,color="green",shape="box"];1381[label="primMulNat (Succ vyw30000) vyw410",fontsize=16,color="burlywood",shape="box"];3447[label="vyw410/Succ vyw4100",fontsize=10,color="white",style="solid",shape="box"];1381 -> 3447[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3447 -> 1560[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3448[label="vyw410/Zero",fontsize=10,color="white",style="solid",shape="box"];1381 -> 3448[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3448 -> 1561[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1382[label="primMulNat Zero vyw410",fontsize=16,color="burlywood",shape="box"];3449[label="vyw410/Succ vyw4100",fontsize=10,color="white",style="solid",shape="box"];1382 -> 3449[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3449 -> 1562[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3450[label="vyw410/Zero",fontsize=10,color="white",style="solid",shape="box"];1382 -> 3450[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3450 -> 1563[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1383[label="vyw410",fontsize=16,color="green",shape="box"];1384[label="vyw3000",fontsize=16,color="green",shape="box"];1385[label="vyw3000",fontsize=16,color="green",shape="box"];1386[label="vyw410",fontsize=16,color="green",shape="box"];1122[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3451[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3451[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3451 -> 1564[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3452[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3452[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3452 -> 1565[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3453[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3453[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3453 -> 1566[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3454[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3454[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3454 -> 1567[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3455[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3455[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3455 -> 1568[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3456[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3456[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3456 -> 1569[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3457[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3457[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3457 -> 1570[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3458[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3458[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3458 -> 1571[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3459[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3459[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3459 -> 1572[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3460[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3460[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3460 -> 1573[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3461[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3461[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3461 -> 1574[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3462[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3462[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3462 -> 1575[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3463[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3463[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3463 -> 1576[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3464[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3464[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3464 -> 1577[label="",style="solid", color="blue", weight=3]; 30.83/14.35 1123 -> 1113[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1123[label="vyw401 == vyw3001 && vyw402 == vyw3002",fontsize=16,color="magenta"];1123 -> 1578[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1123 -> 1579[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1387[label="primEqInt (Pos (Succ vyw4000)) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];3465[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1387 -> 3465[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3465 -> 1580[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3466[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1387 -> 3466[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3466 -> 1581[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1388[label="primEqInt (Pos (Succ vyw4000)) (Neg vyw3000)",fontsize=16,color="black",shape="box"];1388 -> 1582[label="",style="solid", color="black", weight=3]; 30.83/14.35 1389[label="primEqInt (Pos Zero) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];3467[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1389 -> 3467[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3467 -> 1583[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3468[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1389 -> 3468[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3468 -> 1584[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1390[label="primEqInt (Pos Zero) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];3469[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1390 -> 3469[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3469 -> 1585[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3470[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1390 -> 3470[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3470 -> 1586[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1391[label="primEqInt (Neg (Succ vyw4000)) (Pos vyw3000)",fontsize=16,color="black",shape="box"];1391 -> 1587[label="",style="solid", color="black", weight=3]; 30.83/14.35 1392[label="primEqInt (Neg (Succ vyw4000)) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];3471[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1392 -> 3471[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3471 -> 1588[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3472[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1392 -> 3472[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3472 -> 1589[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1393[label="primEqInt (Neg Zero) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];3473[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1393 -> 3473[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3473 -> 1590[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3474[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1393 -> 3474[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3474 -> 1591[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1394[label="primEqInt (Neg Zero) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];3475[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1394 -> 3475[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3475 -> 1592[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3476[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1394 -> 3476[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3476 -> 1593[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1124[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3477[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 3477[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3477 -> 1594[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3478[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 3478[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3478 -> 1595[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3479[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 3479[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3479 -> 1596[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3480[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 3480[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3480 -> 1597[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3481[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 3481[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3481 -> 1598[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3482[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 3482[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3482 -> 1599[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3483[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 3483[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3483 -> 1600[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3484[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 3484[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3484 -> 1601[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3485[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 3485[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3485 -> 1602[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3486[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 3486[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3486 -> 1603[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3487[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 3487[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3487 -> 1604[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3488[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 3488[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3488 -> 1605[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3489[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 3489[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3489 -> 1606[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3490[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 3490[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3490 -> 1607[label="",style="solid", color="blue", weight=3]; 30.83/14.35 1125 -> 539[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1125[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1125 -> 1608[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1125 -> 1609[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1395[label="primEqNat vyw400 vyw3000",fontsize=16,color="burlywood",shape="triangle"];3491[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];1395 -> 3491[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3491 -> 1610[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3492[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];1395 -> 3492[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3492 -> 1611[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1126[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3493[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3493[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3493 -> 1612[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3494[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3494[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3494 -> 1613[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3495[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3495[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3495 -> 1614[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3496[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3496[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3496 -> 1615[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3497[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3497[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3497 -> 1616[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3498[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3498[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3498 -> 1617[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3499[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3499[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3499 -> 1618[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3500[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3500[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3500 -> 1619[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3501[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3501[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3501 -> 1620[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3502[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3502[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3502 -> 1621[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3503[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3503[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3503 -> 1622[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3504[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3504[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3504 -> 1623[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3505[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3505[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3505 -> 1624[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3506[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1126 -> 3506[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3506 -> 1625[label="",style="solid", color="blue", weight=3]; 30.83/14.35 1127[label="vyw401 == vyw3001",fontsize=16,color="blue",shape="box"];3507[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1127 -> 3507[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3507 -> 1626[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3508[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1127 -> 3508[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3508 -> 1627[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3509[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1127 -> 3509[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3509 -> 1628[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3510[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1127 -> 3510[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3510 -> 1629[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3511[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1127 -> 3511[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3511 -> 1630[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3512[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1127 -> 3512[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3512 -> 1631[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3513[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1127 -> 3513[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3513 -> 1632[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3514[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1127 -> 3514[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3514 -> 1633[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3515[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1127 -> 3515[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3515 -> 1634[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3516[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1127 -> 3516[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3516 -> 1635[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3517[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1127 -> 3517[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3517 -> 1636[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3518[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1127 -> 3518[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3518 -> 1637[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3519[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1127 -> 3519[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3519 -> 1638[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3520[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1127 -> 3520[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3520 -> 1639[label="",style="solid", color="blue", weight=3]; 30.83/14.35 1396 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1396[label="vyw400 * vyw3001 == vyw401 * vyw3000",fontsize=16,color="magenta"];1396 -> 1640[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1396 -> 1641[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1397 -> 536[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1397[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1397 -> 1642[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1397 -> 1643[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1398 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1398[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1398 -> 1644[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1398 -> 1645[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1399 -> 538[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1399[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1399 -> 1646[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1399 -> 1647[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1400 -> 539[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1400[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1400 -> 1648[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1400 -> 1649[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1401 -> 540[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1401[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1401 -> 1650[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1401 -> 1651[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1402 -> 541[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1402[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1402 -> 1652[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1402 -> 1653[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1403 -> 542[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1403[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1403 -> 1654[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1403 -> 1655[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1404 -> 543[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1404[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1404 -> 1656[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1404 -> 1657[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1405 -> 544[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1405[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1405 -> 1658[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1405 -> 1659[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1406 -> 545[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1406[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1406 -> 1660[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1406 -> 1661[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1407 -> 546[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1407[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1407 -> 1662[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1407 -> 1663[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1408 -> 547[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1408[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1408 -> 1664[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1408 -> 1665[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1409 -> 548[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1409[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1409 -> 1666[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1409 -> 1667[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1410 -> 549[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1410[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1410 -> 1668[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1410 -> 1669[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1411 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1411[label="vyw400 * vyw3001 == vyw401 * vyw3000",fontsize=16,color="magenta"];1411 -> 1670[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1411 -> 1671[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1412[label="vyw3000",fontsize=16,color="green",shape="box"];1413[label="vyw400",fontsize=16,color="green",shape="box"];1128[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3521[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1128 -> 3521[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3521 -> 1672[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3522[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1128 -> 3522[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3522 -> 1673[label="",style="solid", color="blue", weight=3]; 30.83/14.35 1129[label="vyw401 == vyw3001",fontsize=16,color="blue",shape="box"];3523[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1129 -> 3523[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3523 -> 1674[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3524[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1129 -> 3524[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3524 -> 1675[label="",style="solid", color="blue", weight=3]; 30.83/14.35 1414 -> 536[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1414[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1414 -> 1676[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1414 -> 1677[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1415 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1415[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1415 -> 1678[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1415 -> 1679[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1416 -> 538[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1416[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1416 -> 1680[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1416 -> 1681[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1417 -> 539[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1417[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1417 -> 1682[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1417 -> 1683[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1418 -> 540[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1418[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1418 -> 1684[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1418 -> 1685[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1419 -> 541[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1419[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1419 -> 1686[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1419 -> 1687[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1420 -> 542[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1420[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1420 -> 1688[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1420 -> 1689[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1421 -> 543[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1421[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1421 -> 1690[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1421 -> 1691[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1422 -> 544[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1422[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1422 -> 1692[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1422 -> 1693[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1423 -> 545[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1423[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1423 -> 1694[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1423 -> 1695[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1424 -> 546[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1424[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1424 -> 1696[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1424 -> 1697[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1425 -> 547[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1425[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1425 -> 1698[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1425 -> 1699[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1426 -> 548[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1426[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1426 -> 1700[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1426 -> 1701[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1427 -> 549[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1427[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1427 -> 1702[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1427 -> 1703[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1428 -> 536[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1428[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1428 -> 1704[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1428 -> 1705[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1429 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1429[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1429 -> 1706[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1429 -> 1707[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1430 -> 538[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1430[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1430 -> 1708[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1430 -> 1709[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1431 -> 539[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1431[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1431 -> 1710[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1431 -> 1711[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1432 -> 540[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1432[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1432 -> 1712[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1432 -> 1713[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1433 -> 541[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1433[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1433 -> 1714[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1433 -> 1715[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1434 -> 542[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1434[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1434 -> 1716[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1434 -> 1717[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1435 -> 543[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1435[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1435 -> 1718[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1435 -> 1719[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1436 -> 544[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1436[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1436 -> 1720[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1436 -> 1721[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1437 -> 545[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1437[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1437 -> 1722[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1437 -> 1723[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1438 -> 546[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1438[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1438 -> 1724[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1438 -> 1725[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1439 -> 547[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1439[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1439 -> 1726[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1439 -> 1727[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1440 -> 548[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1440[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1440 -> 1728[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1440 -> 1729[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1441 -> 549[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1441[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1441 -> 1730[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1441 -> 1731[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1442[label="vyw49 <= vyw50",fontsize=16,color="black",shape="triangle"];1442 -> 1732[label="",style="solid", color="black", weight=3]; 30.83/14.35 1443[label="vyw49 <= vyw50",fontsize=16,color="black",shape="triangle"];1443 -> 1733[label="",style="solid", color="black", weight=3]; 30.83/14.35 1444[label="vyw49 <= vyw50",fontsize=16,color="black",shape="triangle"];1444 -> 1734[label="",style="solid", color="black", weight=3]; 30.83/14.35 1445[label="vyw49 <= vyw50",fontsize=16,color="black",shape="triangle"];1445 -> 1735[label="",style="solid", color="black", weight=3]; 30.83/14.35 1446[label="vyw49 <= vyw50",fontsize=16,color="black",shape="triangle"];1446 -> 1736[label="",style="solid", color="black", weight=3]; 30.83/14.35 1447[label="vyw49 <= vyw50",fontsize=16,color="black",shape="triangle"];1447 -> 1737[label="",style="solid", color="black", weight=3]; 30.83/14.35 1448[label="vyw49 <= vyw50",fontsize=16,color="burlywood",shape="triangle"];3525[label="vyw49/Nothing",fontsize=10,color="white",style="solid",shape="box"];1448 -> 3525[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3525 -> 1738[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3526[label="vyw49/Just vyw490",fontsize=10,color="white",style="solid",shape="box"];1448 -> 3526[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3526 -> 1739[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1449[label="vyw49 <= vyw50",fontsize=16,color="burlywood",shape="triangle"];3527[label="vyw49/(vyw490,vyw491,vyw492)",fontsize=10,color="white",style="solid",shape="box"];1449 -> 3527[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3527 -> 1740[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1450[label="vyw49 <= vyw50",fontsize=16,color="black",shape="triangle"];1450 -> 1741[label="",style="solid", color="black", weight=3]; 30.83/14.35 1451[label="vyw49 <= vyw50",fontsize=16,color="black",shape="triangle"];1451 -> 1742[label="",style="solid", color="black", weight=3]; 30.83/14.35 1452[label="vyw49 <= vyw50",fontsize=16,color="burlywood",shape="triangle"];3528[label="vyw49/Left vyw490",fontsize=10,color="white",style="solid",shape="box"];1452 -> 3528[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3528 -> 1743[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3529[label="vyw49/Right vyw490",fontsize=10,color="white",style="solid",shape="box"];1452 -> 3529[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3529 -> 1744[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1453[label="vyw49 <= vyw50",fontsize=16,color="burlywood",shape="triangle"];3530[label="vyw49/(vyw490,vyw491)",fontsize=10,color="white",style="solid",shape="box"];1453 -> 3530[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3530 -> 1745[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1454[label="vyw49 <= vyw50",fontsize=16,color="burlywood",shape="triangle"];3531[label="vyw49/False",fontsize=10,color="white",style="solid",shape="box"];1454 -> 3531[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3531 -> 1746[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3532[label="vyw49/True",fontsize=10,color="white",style="solid",shape="box"];1454 -> 3532[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3532 -> 1747[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1455[label="vyw49 <= vyw50",fontsize=16,color="burlywood",shape="triangle"];3533[label="vyw49/LT",fontsize=10,color="white",style="solid",shape="box"];1455 -> 3533[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3533 -> 1748[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3534[label="vyw49/EQ",fontsize=10,color="white",style="solid",shape="box"];1455 -> 3534[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3534 -> 1749[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3535[label="vyw49/GT",fontsize=10,color="white",style="solid",shape="box"];1455 -> 3535[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3535 -> 1750[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1456[label="compare0 (Just vyw129) (Just vyw130) otherwise",fontsize=16,color="black",shape="box"];1456 -> 1751[label="",style="solid", color="black", weight=3]; 30.83/14.35 1457[label="LT",fontsize=16,color="green",shape="box"];1477[label="vyw100 == vyw103",fontsize=16,color="blue",shape="box"];3536[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 3536[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3536 -> 1752[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3537[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 3537[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3537 -> 1753[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3538[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 3538[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3538 -> 1754[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3539[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 3539[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3539 -> 1755[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3540[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 3540[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3540 -> 1756[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3541[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 3541[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3541 -> 1757[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3542[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 3542[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3542 -> 1758[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3543[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 3543[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3543 -> 1759[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3544[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 3544[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3544 -> 1760[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3545[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 3545[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3545 -> 1761[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3546[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 3546[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3546 -> 1762[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3547[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 3547[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3547 -> 1763[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3548[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 3548[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3548 -> 1764[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3549[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 3549[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3549 -> 1765[label="",style="solid", color="blue", weight=3]; 30.83/14.35 1478 -> 2153[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1478[label="vyw101 < vyw104 || vyw101 == vyw104 && vyw102 <= vyw105",fontsize=16,color="magenta"];1478 -> 2154[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1478 -> 2155[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1479 -> 19[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1479[label="vyw100 < vyw103",fontsize=16,color="magenta"];1479 -> 1768[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1479 -> 1769[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1480 -> 20[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1480[label="vyw100 < vyw103",fontsize=16,color="magenta"];1480 -> 1770[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1480 -> 1771[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1481 -> 21[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1481[label="vyw100 < vyw103",fontsize=16,color="magenta"];1481 -> 1772[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1481 -> 1773[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1482 -> 22[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1482[label="vyw100 < vyw103",fontsize=16,color="magenta"];1482 -> 1774[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1482 -> 1775[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1483 -> 23[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1483[label="vyw100 < vyw103",fontsize=16,color="magenta"];1483 -> 1776[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1483 -> 1777[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1484 -> 24[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1484[label="vyw100 < vyw103",fontsize=16,color="magenta"];1484 -> 1778[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1484 -> 1779[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1485 -> 25[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1485[label="vyw100 < vyw103",fontsize=16,color="magenta"];1485 -> 1780[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1485 -> 1781[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1486 -> 26[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1486[label="vyw100 < vyw103",fontsize=16,color="magenta"];1486 -> 1782[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1486 -> 1783[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1487 -> 27[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1487[label="vyw100 < vyw103",fontsize=16,color="magenta"];1487 -> 1784[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1487 -> 1785[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1488 -> 28[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1488[label="vyw100 < vyw103",fontsize=16,color="magenta"];1488 -> 1786[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1488 -> 1787[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1489 -> 29[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1489[label="vyw100 < vyw103",fontsize=16,color="magenta"];1489 -> 1788[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1489 -> 1789[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1490 -> 30[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1490[label="vyw100 < vyw103",fontsize=16,color="magenta"];1490 -> 1790[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1490 -> 1791[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1491 -> 31[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1491[label="vyw100 < vyw103",fontsize=16,color="magenta"];1491 -> 1792[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1491 -> 1793[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1492 -> 32[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1492[label="vyw100 < vyw103",fontsize=16,color="magenta"];1492 -> 1794[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1492 -> 1795[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1493[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) (False || vyw172)",fontsize=16,color="black",shape="box"];1493 -> 1796[label="",style="solid", color="black", weight=3]; 30.83/14.35 1494[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) (True || vyw172)",fontsize=16,color="black",shape="box"];1494 -> 1797[label="",style="solid", color="black", weight=3]; 30.83/14.35 1495 -> 1442[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1495[label="vyw71 <= vyw72",fontsize=16,color="magenta"];1495 -> 1798[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1495 -> 1799[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1496 -> 1443[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1496[label="vyw71 <= vyw72",fontsize=16,color="magenta"];1496 -> 1800[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1496 -> 1801[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1497 -> 1444[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1497[label="vyw71 <= vyw72",fontsize=16,color="magenta"];1497 -> 1802[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1497 -> 1803[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1498 -> 1445[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1498[label="vyw71 <= vyw72",fontsize=16,color="magenta"];1498 -> 1804[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1498 -> 1805[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1499 -> 1446[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1499[label="vyw71 <= vyw72",fontsize=16,color="magenta"];1499 -> 1806[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1499 -> 1807[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1500 -> 1447[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1500[label="vyw71 <= vyw72",fontsize=16,color="magenta"];1500 -> 1808[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1500 -> 1809[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1501 -> 1448[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1501[label="vyw71 <= vyw72",fontsize=16,color="magenta"];1501 -> 1810[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1501 -> 1811[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1502 -> 1449[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1502[label="vyw71 <= vyw72",fontsize=16,color="magenta"];1502 -> 1812[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1502 -> 1813[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1503 -> 1450[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1503[label="vyw71 <= vyw72",fontsize=16,color="magenta"];1503 -> 1814[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1503 -> 1815[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1504 -> 1451[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1504[label="vyw71 <= vyw72",fontsize=16,color="magenta"];1504 -> 1816[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1504 -> 1817[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1505 -> 1452[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1505[label="vyw71 <= vyw72",fontsize=16,color="magenta"];1505 -> 1818[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1505 -> 1819[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1506 -> 1453[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1506[label="vyw71 <= vyw72",fontsize=16,color="magenta"];1506 -> 1820[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1506 -> 1821[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1507 -> 1454[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1507[label="vyw71 <= vyw72",fontsize=16,color="magenta"];1507 -> 1822[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1507 -> 1823[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1508 -> 1455[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1508[label="vyw71 <= vyw72",fontsize=16,color="magenta"];1508 -> 1824[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1508 -> 1825[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1509[label="compare0 (Left vyw143) (Left vyw144) otherwise",fontsize=16,color="black",shape="box"];1509 -> 1826[label="",style="solid", color="black", weight=3]; 30.83/14.35 1510[label="LT",fontsize=16,color="green",shape="box"];1511 -> 1442[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1511[label="vyw78 <= vyw79",fontsize=16,color="magenta"];1511 -> 1827[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1511 -> 1828[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1512 -> 1443[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1512[label="vyw78 <= vyw79",fontsize=16,color="magenta"];1512 -> 1829[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1512 -> 1830[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1513 -> 1444[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1513[label="vyw78 <= vyw79",fontsize=16,color="magenta"];1513 -> 1831[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1513 -> 1832[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1514 -> 1445[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1514[label="vyw78 <= vyw79",fontsize=16,color="magenta"];1514 -> 1833[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1514 -> 1834[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1515 -> 1446[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1515[label="vyw78 <= vyw79",fontsize=16,color="magenta"];1515 -> 1835[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1515 -> 1836[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1516 -> 1447[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1516[label="vyw78 <= vyw79",fontsize=16,color="magenta"];1516 -> 1837[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1516 -> 1838[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1517 -> 1448[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1517[label="vyw78 <= vyw79",fontsize=16,color="magenta"];1517 -> 1839[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1517 -> 1840[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1518 -> 1449[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1518[label="vyw78 <= vyw79",fontsize=16,color="magenta"];1518 -> 1841[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1518 -> 1842[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1519 -> 1450[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1519[label="vyw78 <= vyw79",fontsize=16,color="magenta"];1519 -> 1843[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1519 -> 1844[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1520 -> 1451[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1520[label="vyw78 <= vyw79",fontsize=16,color="magenta"];1520 -> 1845[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1520 -> 1846[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1521 -> 1452[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1521[label="vyw78 <= vyw79",fontsize=16,color="magenta"];1521 -> 1847[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1521 -> 1848[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1522 -> 1453[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1522[label="vyw78 <= vyw79",fontsize=16,color="magenta"];1522 -> 1849[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1522 -> 1850[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1523 -> 1454[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1523[label="vyw78 <= vyw79",fontsize=16,color="magenta"];1523 -> 1851[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1523 -> 1852[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1524 -> 1455[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1524[label="vyw78 <= vyw79",fontsize=16,color="magenta"];1524 -> 1853[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1524 -> 1854[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1525[label="compare0 (Right vyw150) (Right vyw151) otherwise",fontsize=16,color="black",shape="box"];1525 -> 1855[label="",style="solid", color="black", weight=3]; 30.83/14.35 1526[label="LT",fontsize=16,color="green",shape="box"];1542 -> 19[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1542[label="vyw113 < vyw115",fontsize=16,color="magenta"];1542 -> 1856[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1542 -> 1857[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1543 -> 20[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1543[label="vyw113 < vyw115",fontsize=16,color="magenta"];1543 -> 1858[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1543 -> 1859[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1544 -> 21[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1544[label="vyw113 < vyw115",fontsize=16,color="magenta"];1544 -> 1860[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1544 -> 1861[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1545 -> 22[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1545[label="vyw113 < vyw115",fontsize=16,color="magenta"];1545 -> 1862[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1545 -> 1863[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1546 -> 23[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1546[label="vyw113 < vyw115",fontsize=16,color="magenta"];1546 -> 1864[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1546 -> 1865[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1547 -> 24[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1547[label="vyw113 < vyw115",fontsize=16,color="magenta"];1547 -> 1866[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1547 -> 1867[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1548 -> 25[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1548[label="vyw113 < vyw115",fontsize=16,color="magenta"];1548 -> 1868[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1548 -> 1869[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1549 -> 26[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1549[label="vyw113 < vyw115",fontsize=16,color="magenta"];1549 -> 1870[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1549 -> 1871[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1550 -> 27[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1550[label="vyw113 < vyw115",fontsize=16,color="magenta"];1550 -> 1872[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1550 -> 1873[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1551 -> 28[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1551[label="vyw113 < vyw115",fontsize=16,color="magenta"];1551 -> 1874[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1551 -> 1875[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1552 -> 29[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1552[label="vyw113 < vyw115",fontsize=16,color="magenta"];1552 -> 1876[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1552 -> 1877[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1553 -> 30[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1553[label="vyw113 < vyw115",fontsize=16,color="magenta"];1553 -> 1878[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1553 -> 1879[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1554 -> 31[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1554[label="vyw113 < vyw115",fontsize=16,color="magenta"];1554 -> 1880[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1554 -> 1881[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1555 -> 32[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1555[label="vyw113 < vyw115",fontsize=16,color="magenta"];1555 -> 1882[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1555 -> 1883[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1556[label="vyw113 == vyw115",fontsize=16,color="blue",shape="box"];3550[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 3550[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3550 -> 1884[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3551[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 3551[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3551 -> 1885[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3552[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 3552[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3552 -> 1886[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3553[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 3553[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3553 -> 1887[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3554[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 3554[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3554 -> 1888[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3555[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 3555[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3555 -> 1889[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3556[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 3556[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3556 -> 1890[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3557[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 3557[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3557 -> 1891[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3558[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 3558[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3558 -> 1892[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3559[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 3559[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3559 -> 1893[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3560[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 3560[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3560 -> 1894[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3561[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 3561[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3561 -> 1895[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3562[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 3562[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3562 -> 1896[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3563[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1556 -> 3563[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3563 -> 1897[label="",style="solid", color="blue", weight=3]; 30.83/14.35 1557[label="vyw114 <= vyw116",fontsize=16,color="blue",shape="box"];3564[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1557 -> 3564[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3564 -> 1898[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3565[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1557 -> 3565[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3565 -> 1899[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3566[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1557 -> 3566[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3566 -> 1900[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3567[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1557 -> 3567[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3567 -> 1901[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3568[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1557 -> 3568[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3568 -> 1902[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3569[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1557 -> 3569[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3569 -> 1903[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3570[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1557 -> 3570[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3570 -> 1904[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3571[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1557 -> 3571[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3571 -> 1905[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3572[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1557 -> 3572[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3572 -> 1906[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3573[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1557 -> 3573[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3573 -> 1907[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3574[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1557 -> 3574[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3574 -> 1908[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3575[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1557 -> 3575[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3575 -> 1909[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3576[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1557 -> 3576[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3576 -> 1910[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3577[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1557 -> 3577[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3577 -> 1911[label="",style="solid", color="blue", weight=3]; 30.83/14.35 1558[label="compare1 (vyw180,vyw181) (vyw182,vyw183) (False || vyw185)",fontsize=16,color="black",shape="box"];1558 -> 1912[label="",style="solid", color="black", weight=3]; 30.83/14.35 1559[label="compare1 (vyw180,vyw181) (vyw182,vyw183) (True || vyw185)",fontsize=16,color="black",shape="box"];1559 -> 1913[label="",style="solid", color="black", weight=3]; 30.83/14.35 1560[label="primMulNat (Succ vyw30000) (Succ vyw4100)",fontsize=16,color="black",shape="box"];1560 -> 1914[label="",style="solid", color="black", weight=3]; 30.83/14.35 1561[label="primMulNat (Succ vyw30000) Zero",fontsize=16,color="black",shape="box"];1561 -> 1915[label="",style="solid", color="black", weight=3]; 30.83/14.35 1562[label="primMulNat Zero (Succ vyw4100)",fontsize=16,color="black",shape="box"];1562 -> 1916[label="",style="solid", color="black", weight=3]; 30.83/14.35 1563[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1563 -> 1917[label="",style="solid", color="black", weight=3]; 30.83/14.35 1564 -> 536[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1564[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1564 -> 1918[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1564 -> 1919[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1565 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1565[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1565 -> 1920[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1565 -> 1921[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1566 -> 538[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1566[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1566 -> 1922[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1566 -> 1923[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1567 -> 539[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1567[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1567 -> 1924[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1567 -> 1925[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1568 -> 540[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1568[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1568 -> 1926[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1568 -> 1927[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1569 -> 541[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1569[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1569 -> 1928[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1569 -> 1929[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1570 -> 542[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1570[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1570 -> 1930[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1570 -> 1931[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1571 -> 543[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1571[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1571 -> 1932[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1571 -> 1933[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1572 -> 544[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1572[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1572 -> 1934[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1572 -> 1935[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1573 -> 545[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1573[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1573 -> 1936[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1573 -> 1937[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1574 -> 546[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1574[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1574 -> 1938[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1574 -> 1939[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1575 -> 547[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1575[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1575 -> 1940[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1575 -> 1941[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1576 -> 548[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1576[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1576 -> 1942[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1576 -> 1943[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1577 -> 549[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1577[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1577 -> 1944[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1577 -> 1945[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1578[label="vyw401 == vyw3001",fontsize=16,color="blue",shape="box"];3578[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1578 -> 3578[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3578 -> 1946[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3579[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1578 -> 3579[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3579 -> 1947[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3580[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1578 -> 3580[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3580 -> 1948[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3581[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1578 -> 3581[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3581 -> 1949[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3582[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1578 -> 3582[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3582 -> 1950[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3583[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1578 -> 3583[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3583 -> 1951[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3584[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1578 -> 3584[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3584 -> 1952[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3585[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1578 -> 3585[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3585 -> 1953[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3586[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1578 -> 3586[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3586 -> 1954[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3587[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1578 -> 3587[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3587 -> 1955[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3588[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1578 -> 3588[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3588 -> 1956[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3589[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1578 -> 3589[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3589 -> 1957[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3590[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1578 -> 3590[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3590 -> 1958[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3591[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1578 -> 3591[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3591 -> 1959[label="",style="solid", color="blue", weight=3]; 30.83/14.35 1579[label="vyw402 == vyw3002",fontsize=16,color="blue",shape="box"];3592[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3592[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3592 -> 1960[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3593[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3593[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3593 -> 1961[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3594[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3594[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3594 -> 1962[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3595[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3595[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3595 -> 1963[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3596[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3596[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3596 -> 1964[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3597[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3597[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3597 -> 1965[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3598[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3598[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3598 -> 1966[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3599[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3599[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3599 -> 1967[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3600[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3600[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3600 -> 1968[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3601[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3601[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3601 -> 1969[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3602[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3602[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3602 -> 1970[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3603[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3603[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3603 -> 1971[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3604[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3604[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3604 -> 1972[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3605[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1579 -> 3605[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3605 -> 1973[label="",style="solid", color="blue", weight=3]; 30.83/14.35 1580[label="primEqInt (Pos (Succ vyw4000)) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];1580 -> 1974[label="",style="solid", color="black", weight=3]; 30.83/14.35 1581[label="primEqInt (Pos (Succ vyw4000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1581 -> 1975[label="",style="solid", color="black", weight=3]; 30.83/14.35 1582[label="False",fontsize=16,color="green",shape="box"];1583[label="primEqInt (Pos Zero) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];1583 -> 1976[label="",style="solid", color="black", weight=3]; 30.83/14.35 1584[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1584 -> 1977[label="",style="solid", color="black", weight=3]; 30.83/14.35 1585[label="primEqInt (Pos Zero) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];1585 -> 1978[label="",style="solid", color="black", weight=3]; 30.83/14.35 1586[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1586 -> 1979[label="",style="solid", color="black", weight=3]; 30.83/14.35 1587[label="False",fontsize=16,color="green",shape="box"];1588[label="primEqInt (Neg (Succ vyw4000)) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];1588 -> 1980[label="",style="solid", color="black", weight=3]; 30.83/14.35 1589[label="primEqInt (Neg (Succ vyw4000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1589 -> 1981[label="",style="solid", color="black", weight=3]; 30.83/14.35 1590[label="primEqInt (Neg Zero) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];1590 -> 1982[label="",style="solid", color="black", weight=3]; 30.83/14.35 1591[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1591 -> 1983[label="",style="solid", color="black", weight=3]; 30.83/14.35 1592[label="primEqInt (Neg Zero) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];1592 -> 1984[label="",style="solid", color="black", weight=3]; 30.83/14.35 1593[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1593 -> 1985[label="",style="solid", color="black", weight=3]; 30.83/14.35 1594 -> 536[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1594[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1594 -> 1986[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1594 -> 1987[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1595 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1595[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1595 -> 1988[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1595 -> 1989[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1596 -> 538[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1596[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1596 -> 1990[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1596 -> 1991[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1597 -> 539[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1597[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1597 -> 1992[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1597 -> 1993[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1598 -> 540[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1598[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1598 -> 1994[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1598 -> 1995[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1599 -> 541[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1599[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1599 -> 1996[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1599 -> 1997[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1600 -> 542[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1600[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1600 -> 1998[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1600 -> 1999[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1601 -> 543[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1601[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1601 -> 2000[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1601 -> 2001[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1602 -> 544[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1602[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1602 -> 2002[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1602 -> 2003[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1603 -> 545[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1603[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1603 -> 2004[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1603 -> 2005[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1604 -> 546[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1604[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1604 -> 2006[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1604 -> 2007[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1605 -> 547[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1605[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1605 -> 2008[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1605 -> 2009[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1606 -> 548[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1606[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1606 -> 2010[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1606 -> 2011[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1607 -> 549[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1607[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1607 -> 2012[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1607 -> 2013[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1608[label="vyw3001",fontsize=16,color="green",shape="box"];1609[label="vyw401",fontsize=16,color="green",shape="box"];1610[label="primEqNat (Succ vyw4000) vyw3000",fontsize=16,color="burlywood",shape="box"];3606[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1610 -> 3606[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3606 -> 2014[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3607[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1610 -> 3607[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3607 -> 2015[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1611[label="primEqNat Zero vyw3000",fontsize=16,color="burlywood",shape="box"];3608[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1611 -> 3608[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3608 -> 2016[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3609[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1611 -> 3609[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3609 -> 2017[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1612 -> 536[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1612[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1612 -> 2018[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1612 -> 2019[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1613 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1613[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1613 -> 2020[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1613 -> 2021[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1614 -> 538[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1614[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1614 -> 2022[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1614 -> 2023[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1615 -> 539[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1615[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1615 -> 2024[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1615 -> 2025[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1616 -> 540[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1616[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1616 -> 2026[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1616 -> 2027[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1617 -> 541[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1617[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1617 -> 2028[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1617 -> 2029[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1618 -> 542[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1618[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1618 -> 2030[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1618 -> 2031[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1619 -> 543[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1619[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1619 -> 2032[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1619 -> 2033[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1620 -> 544[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1620[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1620 -> 2034[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1620 -> 2035[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1621 -> 545[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1621[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1621 -> 2036[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1621 -> 2037[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1622 -> 546[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1622[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1622 -> 2038[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1622 -> 2039[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1623 -> 547[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1623[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1623 -> 2040[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1623 -> 2041[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1624 -> 548[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1624[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1624 -> 2042[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1624 -> 2043[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1625 -> 549[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1625[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1625 -> 2044[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1625 -> 2045[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1626 -> 536[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1626[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1626 -> 2046[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1626 -> 2047[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1627 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1627[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1627 -> 2048[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1627 -> 2049[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1628 -> 538[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1628[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1628 -> 2050[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1628 -> 2051[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1629 -> 539[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1629[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1629 -> 2052[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1629 -> 2053[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1630 -> 540[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1630[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1630 -> 2054[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1630 -> 2055[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1631 -> 541[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1631[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1631 -> 2056[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1631 -> 2057[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1632 -> 542[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1632[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1632 -> 2058[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1632 -> 2059[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1633 -> 543[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1633[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1633 -> 2060[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1633 -> 2061[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1634 -> 544[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1634[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1634 -> 2062[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1634 -> 2063[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1635 -> 545[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1635[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1635 -> 2064[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1635 -> 2065[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1636 -> 546[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1636[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1636 -> 2066[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1636 -> 2067[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1637 -> 547[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1637[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1637 -> 2068[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1637 -> 2069[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1638 -> 548[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1638[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1638 -> 2070[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1638 -> 2071[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1639 -> 549[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1639[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1639 -> 2072[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1639 -> 2073[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1640 -> 386[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1640[label="vyw401 * vyw3000",fontsize=16,color="magenta"];1640 -> 2074[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1640 -> 2075[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1641 -> 386[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1641[label="vyw400 * vyw3001",fontsize=16,color="magenta"];1641 -> 2076[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1641 -> 2077[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1642[label="vyw3000",fontsize=16,color="green",shape="box"];1643[label="vyw400",fontsize=16,color="green",shape="box"];1644[label="vyw3000",fontsize=16,color="green",shape="box"];1645[label="vyw400",fontsize=16,color="green",shape="box"];1646[label="vyw3000",fontsize=16,color="green",shape="box"];1647[label="vyw400",fontsize=16,color="green",shape="box"];1648[label="vyw3000",fontsize=16,color="green",shape="box"];1649[label="vyw400",fontsize=16,color="green",shape="box"];1650[label="vyw3000",fontsize=16,color="green",shape="box"];1651[label="vyw400",fontsize=16,color="green",shape="box"];1652[label="vyw3000",fontsize=16,color="green",shape="box"];1653[label="vyw400",fontsize=16,color="green",shape="box"];1654[label="vyw3000",fontsize=16,color="green",shape="box"];1655[label="vyw400",fontsize=16,color="green",shape="box"];1656[label="vyw3000",fontsize=16,color="green",shape="box"];1657[label="vyw400",fontsize=16,color="green",shape="box"];1658[label="vyw3000",fontsize=16,color="green",shape="box"];1659[label="vyw400",fontsize=16,color="green",shape="box"];1660[label="vyw3000",fontsize=16,color="green",shape="box"];1661[label="vyw400",fontsize=16,color="green",shape="box"];1662[label="vyw3000",fontsize=16,color="green",shape="box"];1663[label="vyw400",fontsize=16,color="green",shape="box"];1664[label="vyw3000",fontsize=16,color="green",shape="box"];1665[label="vyw400",fontsize=16,color="green",shape="box"];1666[label="vyw3000",fontsize=16,color="green",shape="box"];1667[label="vyw400",fontsize=16,color="green",shape="box"];1668[label="vyw3000",fontsize=16,color="green",shape="box"];1669[label="vyw400",fontsize=16,color="green",shape="box"];1670 -> 386[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1670[label="vyw401 * vyw3000",fontsize=16,color="magenta"];1670 -> 2078[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1670 -> 2079[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1671 -> 386[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1671[label="vyw400 * vyw3001",fontsize=16,color="magenta"];1671 -> 2080[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1671 -> 2081[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1672 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1672[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1672 -> 2082[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1672 -> 2083[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1673 -> 546[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1673[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1673 -> 2084[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1673 -> 2085[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1674 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1674[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1674 -> 2086[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1674 -> 2087[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1675 -> 546[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1675[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1675 -> 2088[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1675 -> 2089[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1676[label="vyw3000",fontsize=16,color="green",shape="box"];1677[label="vyw400",fontsize=16,color="green",shape="box"];1678[label="vyw3000",fontsize=16,color="green",shape="box"];1679[label="vyw400",fontsize=16,color="green",shape="box"];1680[label="vyw3000",fontsize=16,color="green",shape="box"];1681[label="vyw400",fontsize=16,color="green",shape="box"];1682[label="vyw3000",fontsize=16,color="green",shape="box"];1683[label="vyw400",fontsize=16,color="green",shape="box"];1684[label="vyw3000",fontsize=16,color="green",shape="box"];1685[label="vyw400",fontsize=16,color="green",shape="box"];1686[label="vyw3000",fontsize=16,color="green",shape="box"];1687[label="vyw400",fontsize=16,color="green",shape="box"];1688[label="vyw3000",fontsize=16,color="green",shape="box"];1689[label="vyw400",fontsize=16,color="green",shape="box"];1690[label="vyw3000",fontsize=16,color="green",shape="box"];1691[label="vyw400",fontsize=16,color="green",shape="box"];1692[label="vyw3000",fontsize=16,color="green",shape="box"];1693[label="vyw400",fontsize=16,color="green",shape="box"];1694[label="vyw3000",fontsize=16,color="green",shape="box"];1695[label="vyw400",fontsize=16,color="green",shape="box"];1696[label="vyw3000",fontsize=16,color="green",shape="box"];1697[label="vyw400",fontsize=16,color="green",shape="box"];1698[label="vyw3000",fontsize=16,color="green",shape="box"];1699[label="vyw400",fontsize=16,color="green",shape="box"];1700[label="vyw3000",fontsize=16,color="green",shape="box"];1701[label="vyw400",fontsize=16,color="green",shape="box"];1702[label="vyw3000",fontsize=16,color="green",shape="box"];1703[label="vyw400",fontsize=16,color="green",shape="box"];1704[label="vyw3000",fontsize=16,color="green",shape="box"];1705[label="vyw400",fontsize=16,color="green",shape="box"];1706[label="vyw3000",fontsize=16,color="green",shape="box"];1707[label="vyw400",fontsize=16,color="green",shape="box"];1708[label="vyw3000",fontsize=16,color="green",shape="box"];1709[label="vyw400",fontsize=16,color="green",shape="box"];1710[label="vyw3000",fontsize=16,color="green",shape="box"];1711[label="vyw400",fontsize=16,color="green",shape="box"];1712[label="vyw3000",fontsize=16,color="green",shape="box"];1713[label="vyw400",fontsize=16,color="green",shape="box"];1714[label="vyw3000",fontsize=16,color="green",shape="box"];1715[label="vyw400",fontsize=16,color="green",shape="box"];1716[label="vyw3000",fontsize=16,color="green",shape="box"];1717[label="vyw400",fontsize=16,color="green",shape="box"];1718[label="vyw3000",fontsize=16,color="green",shape="box"];1719[label="vyw400",fontsize=16,color="green",shape="box"];1720[label="vyw3000",fontsize=16,color="green",shape="box"];1721[label="vyw400",fontsize=16,color="green",shape="box"];1722[label="vyw3000",fontsize=16,color="green",shape="box"];1723[label="vyw400",fontsize=16,color="green",shape="box"];1724[label="vyw3000",fontsize=16,color="green",shape="box"];1725[label="vyw400",fontsize=16,color="green",shape="box"];1726[label="vyw3000",fontsize=16,color="green",shape="box"];1727[label="vyw400",fontsize=16,color="green",shape="box"];1728[label="vyw3000",fontsize=16,color="green",shape="box"];1729[label="vyw400",fontsize=16,color="green",shape="box"];1730[label="vyw3000",fontsize=16,color="green",shape="box"];1731[label="vyw400",fontsize=16,color="green",shape="box"];1732 -> 2090[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1732[label="compare vyw49 vyw50 /= GT",fontsize=16,color="magenta"];1732 -> 2091[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1733 -> 2090[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1733[label="compare vyw49 vyw50 /= GT",fontsize=16,color="magenta"];1733 -> 2092[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1734 -> 2090[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1734[label="compare vyw49 vyw50 /= GT",fontsize=16,color="magenta"];1734 -> 2093[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1735 -> 2090[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1735[label="compare vyw49 vyw50 /= GT",fontsize=16,color="magenta"];1735 -> 2094[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1736 -> 2090[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1736[label="compare vyw49 vyw50 /= GT",fontsize=16,color="magenta"];1736 -> 2095[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1737 -> 2090[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1737[label="compare vyw49 vyw50 /= GT",fontsize=16,color="magenta"];1737 -> 2096[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1738[label="Nothing <= vyw50",fontsize=16,color="burlywood",shape="box"];3610[label="vyw50/Nothing",fontsize=10,color="white",style="solid",shape="box"];1738 -> 3610[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3610 -> 2099[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3611[label="vyw50/Just vyw500",fontsize=10,color="white",style="solid",shape="box"];1738 -> 3611[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3611 -> 2100[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1739[label="Just vyw490 <= vyw50",fontsize=16,color="burlywood",shape="box"];3612[label="vyw50/Nothing",fontsize=10,color="white",style="solid",shape="box"];1739 -> 3612[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3612 -> 2101[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3613[label="vyw50/Just vyw500",fontsize=10,color="white",style="solid",shape="box"];1739 -> 3613[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3613 -> 2102[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1740[label="(vyw490,vyw491,vyw492) <= vyw50",fontsize=16,color="burlywood",shape="box"];3614[label="vyw50/(vyw500,vyw501,vyw502)",fontsize=10,color="white",style="solid",shape="box"];1740 -> 3614[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3614 -> 2103[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1741 -> 2090[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1741[label="compare vyw49 vyw50 /= GT",fontsize=16,color="magenta"];1741 -> 2097[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1742 -> 2090[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1742[label="compare vyw49 vyw50 /= GT",fontsize=16,color="magenta"];1742 -> 2098[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1743[label="Left vyw490 <= vyw50",fontsize=16,color="burlywood",shape="box"];3615[label="vyw50/Left vyw500",fontsize=10,color="white",style="solid",shape="box"];1743 -> 3615[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3615 -> 2104[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3616[label="vyw50/Right vyw500",fontsize=10,color="white",style="solid",shape="box"];1743 -> 3616[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3616 -> 2105[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1744[label="Right vyw490 <= vyw50",fontsize=16,color="burlywood",shape="box"];3617[label="vyw50/Left vyw500",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3617[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3617 -> 2106[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3618[label="vyw50/Right vyw500",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3618[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3618 -> 2107[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1745[label="(vyw490,vyw491) <= vyw50",fontsize=16,color="burlywood",shape="box"];3619[label="vyw50/(vyw500,vyw501)",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3619[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3619 -> 2108[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1746[label="False <= vyw50",fontsize=16,color="burlywood",shape="box"];3620[label="vyw50/False",fontsize=10,color="white",style="solid",shape="box"];1746 -> 3620[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3620 -> 2109[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3621[label="vyw50/True",fontsize=10,color="white",style="solid",shape="box"];1746 -> 3621[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3621 -> 2110[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1747[label="True <= vyw50",fontsize=16,color="burlywood",shape="box"];3622[label="vyw50/False",fontsize=10,color="white",style="solid",shape="box"];1747 -> 3622[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3622 -> 2111[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3623[label="vyw50/True",fontsize=10,color="white",style="solid",shape="box"];1747 -> 3623[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3623 -> 2112[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1748[label="LT <= vyw50",fontsize=16,color="burlywood",shape="box"];3624[label="vyw50/LT",fontsize=10,color="white",style="solid",shape="box"];1748 -> 3624[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3624 -> 2113[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3625[label="vyw50/EQ",fontsize=10,color="white",style="solid",shape="box"];1748 -> 3625[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3625 -> 2114[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3626[label="vyw50/GT",fontsize=10,color="white",style="solid",shape="box"];1748 -> 3626[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3626 -> 2115[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1749[label="EQ <= vyw50",fontsize=16,color="burlywood",shape="box"];3627[label="vyw50/LT",fontsize=10,color="white",style="solid",shape="box"];1749 -> 3627[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3627 -> 2116[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3628[label="vyw50/EQ",fontsize=10,color="white",style="solid",shape="box"];1749 -> 3628[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3628 -> 2117[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3629[label="vyw50/GT",fontsize=10,color="white",style="solid",shape="box"];1749 -> 3629[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3629 -> 2118[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1750[label="GT <= vyw50",fontsize=16,color="burlywood",shape="box"];3630[label="vyw50/LT",fontsize=10,color="white",style="solid",shape="box"];1750 -> 3630[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3630 -> 2119[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3631[label="vyw50/EQ",fontsize=10,color="white",style="solid",shape="box"];1750 -> 3631[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3631 -> 2120[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3632[label="vyw50/GT",fontsize=10,color="white",style="solid",shape="box"];1750 -> 3632[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3632 -> 2121[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1751[label="compare0 (Just vyw129) (Just vyw130) True",fontsize=16,color="black",shape="box"];1751 -> 2122[label="",style="solid", color="black", weight=3]; 30.83/14.35 1752 -> 539[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1752[label="vyw100 == vyw103",fontsize=16,color="magenta"];1752 -> 2123[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1752 -> 2124[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1753 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1753[label="vyw100 == vyw103",fontsize=16,color="magenta"];1753 -> 2125[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1753 -> 2126[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1754 -> 540[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1754[label="vyw100 == vyw103",fontsize=16,color="magenta"];1754 -> 2127[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1754 -> 2128[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1755 -> 546[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1755[label="vyw100 == vyw103",fontsize=16,color="magenta"];1755 -> 2129[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1755 -> 2130[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1756 -> 548[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1756[label="vyw100 == vyw103",fontsize=16,color="magenta"];1756 -> 2131[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1756 -> 2132[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1757 -> 545[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1757[label="vyw100 == vyw103",fontsize=16,color="magenta"];1757 -> 2133[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1757 -> 2134[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1758 -> 544[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1758[label="vyw100 == vyw103",fontsize=16,color="magenta"];1758 -> 2135[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1758 -> 2136[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1759 -> 536[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1759[label="vyw100 == vyw103",fontsize=16,color="magenta"];1759 -> 2137[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1759 -> 2138[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1760 -> 542[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1760[label="vyw100 == vyw103",fontsize=16,color="magenta"];1760 -> 2139[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1760 -> 2140[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1761 -> 543[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1761[label="vyw100 == vyw103",fontsize=16,color="magenta"];1761 -> 2141[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1761 -> 2142[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1762 -> 549[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1762[label="vyw100 == vyw103",fontsize=16,color="magenta"];1762 -> 2143[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1762 -> 2144[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1763 -> 541[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1763[label="vyw100 == vyw103",fontsize=16,color="magenta"];1763 -> 2145[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1763 -> 2146[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1764 -> 547[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1764[label="vyw100 == vyw103",fontsize=16,color="magenta"];1764 -> 2147[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1764 -> 2148[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1765 -> 538[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1765[label="vyw100 == vyw103",fontsize=16,color="magenta"];1765 -> 2149[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1765 -> 2150[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2154[label="vyw101 < vyw104",fontsize=16,color="blue",shape="box"];3633[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2154 -> 3633[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3633 -> 2158[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3634[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2154 -> 3634[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3634 -> 2159[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3635[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2154 -> 3635[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3635 -> 2160[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3636[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2154 -> 3636[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3636 -> 2161[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3637[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2154 -> 3637[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3637 -> 2162[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3638[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2154 -> 3638[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3638 -> 2163[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3639[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2154 -> 3639[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3639 -> 2164[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3640[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2154 -> 3640[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3640 -> 2165[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3641[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2154 -> 3641[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3641 -> 2166[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3642[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2154 -> 3642[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3642 -> 2167[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3643[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2154 -> 3643[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3643 -> 2168[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3644[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2154 -> 3644[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3644 -> 2169[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3645[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2154 -> 3645[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3645 -> 2170[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3646[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2154 -> 3646[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3646 -> 2171[label="",style="solid", color="blue", weight=3]; 30.83/14.35 2155 -> 1113[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2155[label="vyw101 == vyw104 && vyw102 <= vyw105",fontsize=16,color="magenta"];2155 -> 2172[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2155 -> 2173[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2153[label="vyw191 || vyw192",fontsize=16,color="burlywood",shape="triangle"];3647[label="vyw191/False",fontsize=10,color="white",style="solid",shape="box"];2153 -> 3647[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3647 -> 2174[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3648[label="vyw191/True",fontsize=10,color="white",style="solid",shape="box"];2153 -> 3648[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3648 -> 2175[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1768[label="vyw103",fontsize=16,color="green",shape="box"];1769[label="vyw100",fontsize=16,color="green",shape="box"];1770[label="vyw103",fontsize=16,color="green",shape="box"];1771[label="vyw100",fontsize=16,color="green",shape="box"];1772[label="vyw103",fontsize=16,color="green",shape="box"];1773[label="vyw100",fontsize=16,color="green",shape="box"];1774[label="vyw103",fontsize=16,color="green",shape="box"];1775[label="vyw100",fontsize=16,color="green",shape="box"];1776[label="vyw103",fontsize=16,color="green",shape="box"];1777[label="vyw100",fontsize=16,color="green",shape="box"];1778[label="vyw103",fontsize=16,color="green",shape="box"];1779[label="vyw100",fontsize=16,color="green",shape="box"];1780[label="vyw103",fontsize=16,color="green",shape="box"];1781[label="vyw100",fontsize=16,color="green",shape="box"];1782[label="vyw103",fontsize=16,color="green",shape="box"];1783[label="vyw100",fontsize=16,color="green",shape="box"];1784[label="vyw103",fontsize=16,color="green",shape="box"];1785[label="vyw100",fontsize=16,color="green",shape="box"];1786[label="vyw103",fontsize=16,color="green",shape="box"];1787[label="vyw100",fontsize=16,color="green",shape="box"];1788[label="vyw103",fontsize=16,color="green",shape="box"];1789[label="vyw100",fontsize=16,color="green",shape="box"];1790[label="vyw103",fontsize=16,color="green",shape="box"];1791[label="vyw100",fontsize=16,color="green",shape="box"];1792[label="vyw103",fontsize=16,color="green",shape="box"];1793[label="vyw100",fontsize=16,color="green",shape="box"];1794[label="vyw103",fontsize=16,color="green",shape="box"];1795[label="vyw100",fontsize=16,color="green",shape="box"];1796[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) vyw172",fontsize=16,color="burlywood",shape="triangle"];3649[label="vyw172/False",fontsize=10,color="white",style="solid",shape="box"];1796 -> 3649[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3649 -> 2176[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3650[label="vyw172/True",fontsize=10,color="white",style="solid",shape="box"];1796 -> 3650[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3650 -> 2177[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1797 -> 1796[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1797[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) True",fontsize=16,color="magenta"];1797 -> 2178[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1798[label="vyw72",fontsize=16,color="green",shape="box"];1799[label="vyw71",fontsize=16,color="green",shape="box"];1800[label="vyw72",fontsize=16,color="green",shape="box"];1801[label="vyw71",fontsize=16,color="green",shape="box"];1802[label="vyw72",fontsize=16,color="green",shape="box"];1803[label="vyw71",fontsize=16,color="green",shape="box"];1804[label="vyw72",fontsize=16,color="green",shape="box"];1805[label="vyw71",fontsize=16,color="green",shape="box"];1806[label="vyw72",fontsize=16,color="green",shape="box"];1807[label="vyw71",fontsize=16,color="green",shape="box"];1808[label="vyw72",fontsize=16,color="green",shape="box"];1809[label="vyw71",fontsize=16,color="green",shape="box"];1810[label="vyw72",fontsize=16,color="green",shape="box"];1811[label="vyw71",fontsize=16,color="green",shape="box"];1812[label="vyw72",fontsize=16,color="green",shape="box"];1813[label="vyw71",fontsize=16,color="green",shape="box"];1814[label="vyw72",fontsize=16,color="green",shape="box"];1815[label="vyw71",fontsize=16,color="green",shape="box"];1816[label="vyw72",fontsize=16,color="green",shape="box"];1817[label="vyw71",fontsize=16,color="green",shape="box"];1818[label="vyw72",fontsize=16,color="green",shape="box"];1819[label="vyw71",fontsize=16,color="green",shape="box"];1820[label="vyw72",fontsize=16,color="green",shape="box"];1821[label="vyw71",fontsize=16,color="green",shape="box"];1822[label="vyw72",fontsize=16,color="green",shape="box"];1823[label="vyw71",fontsize=16,color="green",shape="box"];1824[label="vyw72",fontsize=16,color="green",shape="box"];1825[label="vyw71",fontsize=16,color="green",shape="box"];1826[label="compare0 (Left vyw143) (Left vyw144) True",fontsize=16,color="black",shape="box"];1826 -> 2179[label="",style="solid", color="black", weight=3]; 30.83/14.35 1827[label="vyw79",fontsize=16,color="green",shape="box"];1828[label="vyw78",fontsize=16,color="green",shape="box"];1829[label="vyw79",fontsize=16,color="green",shape="box"];1830[label="vyw78",fontsize=16,color="green",shape="box"];1831[label="vyw79",fontsize=16,color="green",shape="box"];1832[label="vyw78",fontsize=16,color="green",shape="box"];1833[label="vyw79",fontsize=16,color="green",shape="box"];1834[label="vyw78",fontsize=16,color="green",shape="box"];1835[label="vyw79",fontsize=16,color="green",shape="box"];1836[label="vyw78",fontsize=16,color="green",shape="box"];1837[label="vyw79",fontsize=16,color="green",shape="box"];1838[label="vyw78",fontsize=16,color="green",shape="box"];1839[label="vyw79",fontsize=16,color="green",shape="box"];1840[label="vyw78",fontsize=16,color="green",shape="box"];1841[label="vyw79",fontsize=16,color="green",shape="box"];1842[label="vyw78",fontsize=16,color="green",shape="box"];1843[label="vyw79",fontsize=16,color="green",shape="box"];1844[label="vyw78",fontsize=16,color="green",shape="box"];1845[label="vyw79",fontsize=16,color="green",shape="box"];1846[label="vyw78",fontsize=16,color="green",shape="box"];1847[label="vyw79",fontsize=16,color="green",shape="box"];1848[label="vyw78",fontsize=16,color="green",shape="box"];1849[label="vyw79",fontsize=16,color="green",shape="box"];1850[label="vyw78",fontsize=16,color="green",shape="box"];1851[label="vyw79",fontsize=16,color="green",shape="box"];1852[label="vyw78",fontsize=16,color="green",shape="box"];1853[label="vyw79",fontsize=16,color="green",shape="box"];1854[label="vyw78",fontsize=16,color="green",shape="box"];1855[label="compare0 (Right vyw150) (Right vyw151) True",fontsize=16,color="black",shape="box"];1855 -> 2180[label="",style="solid", color="black", weight=3]; 30.83/14.35 1856[label="vyw115",fontsize=16,color="green",shape="box"];1857[label="vyw113",fontsize=16,color="green",shape="box"];1858[label="vyw115",fontsize=16,color="green",shape="box"];1859[label="vyw113",fontsize=16,color="green",shape="box"];1860[label="vyw115",fontsize=16,color="green",shape="box"];1861[label="vyw113",fontsize=16,color="green",shape="box"];1862[label="vyw115",fontsize=16,color="green",shape="box"];1863[label="vyw113",fontsize=16,color="green",shape="box"];1864[label="vyw115",fontsize=16,color="green",shape="box"];1865[label="vyw113",fontsize=16,color="green",shape="box"];1866[label="vyw115",fontsize=16,color="green",shape="box"];1867[label="vyw113",fontsize=16,color="green",shape="box"];1868[label="vyw115",fontsize=16,color="green",shape="box"];1869[label="vyw113",fontsize=16,color="green",shape="box"];1870[label="vyw115",fontsize=16,color="green",shape="box"];1871[label="vyw113",fontsize=16,color="green",shape="box"];1872[label="vyw115",fontsize=16,color="green",shape="box"];1873[label="vyw113",fontsize=16,color="green",shape="box"];1874[label="vyw115",fontsize=16,color="green",shape="box"];1875[label="vyw113",fontsize=16,color="green",shape="box"];1876[label="vyw115",fontsize=16,color="green",shape="box"];1877[label="vyw113",fontsize=16,color="green",shape="box"];1878[label="vyw115",fontsize=16,color="green",shape="box"];1879[label="vyw113",fontsize=16,color="green",shape="box"];1880[label="vyw115",fontsize=16,color="green",shape="box"];1881[label="vyw113",fontsize=16,color="green",shape="box"];1882[label="vyw115",fontsize=16,color="green",shape="box"];1883[label="vyw113",fontsize=16,color="green",shape="box"];1884 -> 539[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1884[label="vyw113 == vyw115",fontsize=16,color="magenta"];1884 -> 2181[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1884 -> 2182[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1885 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1885[label="vyw113 == vyw115",fontsize=16,color="magenta"];1885 -> 2183[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1885 -> 2184[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1886 -> 540[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1886[label="vyw113 == vyw115",fontsize=16,color="magenta"];1886 -> 2185[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1886 -> 2186[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1887 -> 546[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1887[label="vyw113 == vyw115",fontsize=16,color="magenta"];1887 -> 2187[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1887 -> 2188[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1888 -> 548[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1888[label="vyw113 == vyw115",fontsize=16,color="magenta"];1888 -> 2189[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1888 -> 2190[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1889 -> 545[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1889[label="vyw113 == vyw115",fontsize=16,color="magenta"];1889 -> 2191[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1889 -> 2192[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1890 -> 544[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1890[label="vyw113 == vyw115",fontsize=16,color="magenta"];1890 -> 2193[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1890 -> 2194[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1891 -> 536[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1891[label="vyw113 == vyw115",fontsize=16,color="magenta"];1891 -> 2195[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1891 -> 2196[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1892 -> 542[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1892[label="vyw113 == vyw115",fontsize=16,color="magenta"];1892 -> 2197[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1892 -> 2198[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1893 -> 543[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1893[label="vyw113 == vyw115",fontsize=16,color="magenta"];1893 -> 2199[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1893 -> 2200[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1894 -> 549[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1894[label="vyw113 == vyw115",fontsize=16,color="magenta"];1894 -> 2201[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1894 -> 2202[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1895 -> 541[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1895[label="vyw113 == vyw115",fontsize=16,color="magenta"];1895 -> 2203[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1895 -> 2204[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1896 -> 547[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1896[label="vyw113 == vyw115",fontsize=16,color="magenta"];1896 -> 2205[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1896 -> 2206[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1897 -> 538[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1897[label="vyw113 == vyw115",fontsize=16,color="magenta"];1897 -> 2207[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1897 -> 2208[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1898 -> 1442[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1898[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1898 -> 2209[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1898 -> 2210[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1899 -> 1443[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1899[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1899 -> 2211[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1899 -> 2212[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1900 -> 1444[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1900[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1900 -> 2213[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1900 -> 2214[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1901 -> 1445[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1901[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1901 -> 2215[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1901 -> 2216[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1902 -> 1446[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1902[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1902 -> 2217[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1902 -> 2218[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1903 -> 1447[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1903[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1903 -> 2219[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1903 -> 2220[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1904 -> 1448[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1904[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1904 -> 2221[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1904 -> 2222[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1905 -> 1449[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1905[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1905 -> 2223[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1905 -> 2224[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1906 -> 1450[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1906[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1906 -> 2225[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1906 -> 2226[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1907 -> 1451[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1907[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1907 -> 2227[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1907 -> 2228[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1908 -> 1452[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1908[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1908 -> 2229[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1908 -> 2230[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1909 -> 1453[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1909[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1909 -> 2231[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1909 -> 2232[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1910 -> 1454[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1910[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1910 -> 2233[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1910 -> 2234[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1911 -> 1455[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1911[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1911 -> 2235[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1911 -> 2236[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1912[label="compare1 (vyw180,vyw181) (vyw182,vyw183) vyw185",fontsize=16,color="burlywood",shape="triangle"];3651[label="vyw185/False",fontsize=10,color="white",style="solid",shape="box"];1912 -> 3651[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3651 -> 2237[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3652[label="vyw185/True",fontsize=10,color="white",style="solid",shape="box"];1912 -> 3652[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3652 -> 2238[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 1913 -> 1912[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1913[label="compare1 (vyw180,vyw181) (vyw182,vyw183) True",fontsize=16,color="magenta"];1913 -> 2239[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1914 -> 2240[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1914[label="primPlusNat (primMulNat vyw30000 (Succ vyw4100)) (Succ vyw4100)",fontsize=16,color="magenta"];1914 -> 2241[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1915[label="Zero",fontsize=16,color="green",shape="box"];1916[label="Zero",fontsize=16,color="green",shape="box"];1917[label="Zero",fontsize=16,color="green",shape="box"];1918[label="vyw3000",fontsize=16,color="green",shape="box"];1919[label="vyw400",fontsize=16,color="green",shape="box"];1920[label="vyw3000",fontsize=16,color="green",shape="box"];1921[label="vyw400",fontsize=16,color="green",shape="box"];1922[label="vyw3000",fontsize=16,color="green",shape="box"];1923[label="vyw400",fontsize=16,color="green",shape="box"];1924[label="vyw3000",fontsize=16,color="green",shape="box"];1925[label="vyw400",fontsize=16,color="green",shape="box"];1926[label="vyw3000",fontsize=16,color="green",shape="box"];1927[label="vyw400",fontsize=16,color="green",shape="box"];1928[label="vyw3000",fontsize=16,color="green",shape="box"];1929[label="vyw400",fontsize=16,color="green",shape="box"];1930[label="vyw3000",fontsize=16,color="green",shape="box"];1931[label="vyw400",fontsize=16,color="green",shape="box"];1932[label="vyw3000",fontsize=16,color="green",shape="box"];1933[label="vyw400",fontsize=16,color="green",shape="box"];1934[label="vyw3000",fontsize=16,color="green",shape="box"];1935[label="vyw400",fontsize=16,color="green",shape="box"];1936[label="vyw3000",fontsize=16,color="green",shape="box"];1937[label="vyw400",fontsize=16,color="green",shape="box"];1938[label="vyw3000",fontsize=16,color="green",shape="box"];1939[label="vyw400",fontsize=16,color="green",shape="box"];1940[label="vyw3000",fontsize=16,color="green",shape="box"];1941[label="vyw400",fontsize=16,color="green",shape="box"];1942[label="vyw3000",fontsize=16,color="green",shape="box"];1943[label="vyw400",fontsize=16,color="green",shape="box"];1944[label="vyw3000",fontsize=16,color="green",shape="box"];1945[label="vyw400",fontsize=16,color="green",shape="box"];1946 -> 536[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1946[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1946 -> 2242[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1946 -> 2243[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1947 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1947[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1947 -> 2244[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1947 -> 2245[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1948 -> 538[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1948[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1948 -> 2246[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1948 -> 2247[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1949 -> 539[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1949[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1949 -> 2248[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1949 -> 2249[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1950 -> 540[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1950[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1950 -> 2250[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1950 -> 2251[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1951 -> 541[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1951[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1951 -> 2252[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1951 -> 2253[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1952 -> 542[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1952[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1952 -> 2254[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1952 -> 2255[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1953 -> 543[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1953[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1953 -> 2256[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1953 -> 2257[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1954 -> 544[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1954[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1954 -> 2258[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1954 -> 2259[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1955 -> 545[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1955[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1955 -> 2260[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1955 -> 2261[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1956 -> 546[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1956[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1956 -> 2262[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1956 -> 2263[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1957 -> 547[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1957[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1957 -> 2264[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1957 -> 2265[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1958 -> 548[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1958[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1958 -> 2266[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1958 -> 2267[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1959 -> 549[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1959[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1959 -> 2268[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1959 -> 2269[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1960 -> 536[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1960[label="vyw402 == vyw3002",fontsize=16,color="magenta"];1960 -> 2270[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1960 -> 2271[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1961 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1961[label="vyw402 == vyw3002",fontsize=16,color="magenta"];1961 -> 2272[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1961 -> 2273[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1962 -> 538[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1962[label="vyw402 == vyw3002",fontsize=16,color="magenta"];1962 -> 2274[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1962 -> 2275[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1963 -> 539[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1963[label="vyw402 == vyw3002",fontsize=16,color="magenta"];1963 -> 2276[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1963 -> 2277[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1964 -> 540[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1964[label="vyw402 == vyw3002",fontsize=16,color="magenta"];1964 -> 2278[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1964 -> 2279[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1965 -> 541[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1965[label="vyw402 == vyw3002",fontsize=16,color="magenta"];1965 -> 2280[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1965 -> 2281[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1966 -> 542[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1966[label="vyw402 == vyw3002",fontsize=16,color="magenta"];1966 -> 2282[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1966 -> 2283[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1967 -> 543[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1967[label="vyw402 == vyw3002",fontsize=16,color="magenta"];1967 -> 2284[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1967 -> 2285[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1968 -> 544[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1968[label="vyw402 == vyw3002",fontsize=16,color="magenta"];1968 -> 2286[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1968 -> 2287[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1969 -> 545[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1969[label="vyw402 == vyw3002",fontsize=16,color="magenta"];1969 -> 2288[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1969 -> 2289[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1970 -> 546[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1970[label="vyw402 == vyw3002",fontsize=16,color="magenta"];1970 -> 2290[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1970 -> 2291[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1971 -> 547[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1971[label="vyw402 == vyw3002",fontsize=16,color="magenta"];1971 -> 2292[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1971 -> 2293[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1972 -> 548[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1972[label="vyw402 == vyw3002",fontsize=16,color="magenta"];1972 -> 2294[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1972 -> 2295[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1973 -> 549[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1973[label="vyw402 == vyw3002",fontsize=16,color="magenta"];1973 -> 2296[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1973 -> 2297[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1974 -> 1395[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1974[label="primEqNat vyw4000 vyw30000",fontsize=16,color="magenta"];1974 -> 2298[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1974 -> 2299[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1975[label="False",fontsize=16,color="green",shape="box"];1976[label="False",fontsize=16,color="green",shape="box"];1977[label="True",fontsize=16,color="green",shape="box"];1978[label="False",fontsize=16,color="green",shape="box"];1979[label="True",fontsize=16,color="green",shape="box"];1980 -> 1395[label="",style="dashed", color="red", weight=0]; 30.83/14.35 1980[label="primEqNat vyw4000 vyw30000",fontsize=16,color="magenta"];1980 -> 2300[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1980 -> 2301[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 1981[label="False",fontsize=16,color="green",shape="box"];1982[label="False",fontsize=16,color="green",shape="box"];1983[label="True",fontsize=16,color="green",shape="box"];1984[label="False",fontsize=16,color="green",shape="box"];1985[label="True",fontsize=16,color="green",shape="box"];1986[label="vyw3000",fontsize=16,color="green",shape="box"];1987[label="vyw400",fontsize=16,color="green",shape="box"];1988[label="vyw3000",fontsize=16,color="green",shape="box"];1989[label="vyw400",fontsize=16,color="green",shape="box"];1990[label="vyw3000",fontsize=16,color="green",shape="box"];1991[label="vyw400",fontsize=16,color="green",shape="box"];1992[label="vyw3000",fontsize=16,color="green",shape="box"];1993[label="vyw400",fontsize=16,color="green",shape="box"];1994[label="vyw3000",fontsize=16,color="green",shape="box"];1995[label="vyw400",fontsize=16,color="green",shape="box"];1996[label="vyw3000",fontsize=16,color="green",shape="box"];1997[label="vyw400",fontsize=16,color="green",shape="box"];1998[label="vyw3000",fontsize=16,color="green",shape="box"];1999[label="vyw400",fontsize=16,color="green",shape="box"];2000[label="vyw3000",fontsize=16,color="green",shape="box"];2001[label="vyw400",fontsize=16,color="green",shape="box"];2002[label="vyw3000",fontsize=16,color="green",shape="box"];2003[label="vyw400",fontsize=16,color="green",shape="box"];2004[label="vyw3000",fontsize=16,color="green",shape="box"];2005[label="vyw400",fontsize=16,color="green",shape="box"];2006[label="vyw3000",fontsize=16,color="green",shape="box"];2007[label="vyw400",fontsize=16,color="green",shape="box"];2008[label="vyw3000",fontsize=16,color="green",shape="box"];2009[label="vyw400",fontsize=16,color="green",shape="box"];2010[label="vyw3000",fontsize=16,color="green",shape="box"];2011[label="vyw400",fontsize=16,color="green",shape="box"];2012[label="vyw3000",fontsize=16,color="green",shape="box"];2013[label="vyw400",fontsize=16,color="green",shape="box"];2014[label="primEqNat (Succ vyw4000) (Succ vyw30000)",fontsize=16,color="black",shape="box"];2014 -> 2302[label="",style="solid", color="black", weight=3]; 30.83/14.35 2015[label="primEqNat (Succ vyw4000) Zero",fontsize=16,color="black",shape="box"];2015 -> 2303[label="",style="solid", color="black", weight=3]; 30.83/14.35 2016[label="primEqNat Zero (Succ vyw30000)",fontsize=16,color="black",shape="box"];2016 -> 2304[label="",style="solid", color="black", weight=3]; 30.83/14.35 2017[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2017 -> 2305[label="",style="solid", color="black", weight=3]; 30.83/14.35 2018[label="vyw3000",fontsize=16,color="green",shape="box"];2019[label="vyw400",fontsize=16,color="green",shape="box"];2020[label="vyw3000",fontsize=16,color="green",shape="box"];2021[label="vyw400",fontsize=16,color="green",shape="box"];2022[label="vyw3000",fontsize=16,color="green",shape="box"];2023[label="vyw400",fontsize=16,color="green",shape="box"];2024[label="vyw3000",fontsize=16,color="green",shape="box"];2025[label="vyw400",fontsize=16,color="green",shape="box"];2026[label="vyw3000",fontsize=16,color="green",shape="box"];2027[label="vyw400",fontsize=16,color="green",shape="box"];2028[label="vyw3000",fontsize=16,color="green",shape="box"];2029[label="vyw400",fontsize=16,color="green",shape="box"];2030[label="vyw3000",fontsize=16,color="green",shape="box"];2031[label="vyw400",fontsize=16,color="green",shape="box"];2032[label="vyw3000",fontsize=16,color="green",shape="box"];2033[label="vyw400",fontsize=16,color="green",shape="box"];2034[label="vyw3000",fontsize=16,color="green",shape="box"];2035[label="vyw400",fontsize=16,color="green",shape="box"];2036[label="vyw3000",fontsize=16,color="green",shape="box"];2037[label="vyw400",fontsize=16,color="green",shape="box"];2038[label="vyw3000",fontsize=16,color="green",shape="box"];2039[label="vyw400",fontsize=16,color="green",shape="box"];2040[label="vyw3000",fontsize=16,color="green",shape="box"];2041[label="vyw400",fontsize=16,color="green",shape="box"];2042[label="vyw3000",fontsize=16,color="green",shape="box"];2043[label="vyw400",fontsize=16,color="green",shape="box"];2044[label="vyw3000",fontsize=16,color="green",shape="box"];2045[label="vyw400",fontsize=16,color="green",shape="box"];2046[label="vyw3001",fontsize=16,color="green",shape="box"];2047[label="vyw401",fontsize=16,color="green",shape="box"];2048[label="vyw3001",fontsize=16,color="green",shape="box"];2049[label="vyw401",fontsize=16,color="green",shape="box"];2050[label="vyw3001",fontsize=16,color="green",shape="box"];2051[label="vyw401",fontsize=16,color="green",shape="box"];2052[label="vyw3001",fontsize=16,color="green",shape="box"];2053[label="vyw401",fontsize=16,color="green",shape="box"];2054[label="vyw3001",fontsize=16,color="green",shape="box"];2055[label="vyw401",fontsize=16,color="green",shape="box"];2056[label="vyw3001",fontsize=16,color="green",shape="box"];2057[label="vyw401",fontsize=16,color="green",shape="box"];2058[label="vyw3001",fontsize=16,color="green",shape="box"];2059[label="vyw401",fontsize=16,color="green",shape="box"];2060[label="vyw3001",fontsize=16,color="green",shape="box"];2061[label="vyw401",fontsize=16,color="green",shape="box"];2062[label="vyw3001",fontsize=16,color="green",shape="box"];2063[label="vyw401",fontsize=16,color="green",shape="box"];2064[label="vyw3001",fontsize=16,color="green",shape="box"];2065[label="vyw401",fontsize=16,color="green",shape="box"];2066[label="vyw3001",fontsize=16,color="green",shape="box"];2067[label="vyw401",fontsize=16,color="green",shape="box"];2068[label="vyw3001",fontsize=16,color="green",shape="box"];2069[label="vyw401",fontsize=16,color="green",shape="box"];2070[label="vyw3001",fontsize=16,color="green",shape="box"];2071[label="vyw401",fontsize=16,color="green",shape="box"];2072[label="vyw3001",fontsize=16,color="green",shape="box"];2073[label="vyw401",fontsize=16,color="green",shape="box"];2074[label="vyw401",fontsize=16,color="green",shape="box"];2075[label="vyw3000",fontsize=16,color="green",shape="box"];2076[label="vyw400",fontsize=16,color="green",shape="box"];2077[label="vyw3001",fontsize=16,color="green",shape="box"];2078[label="vyw401",fontsize=16,color="green",shape="box"];2079[label="vyw3000",fontsize=16,color="green",shape="box"];2080[label="vyw400",fontsize=16,color="green",shape="box"];2081[label="vyw3001",fontsize=16,color="green",shape="box"];2082[label="vyw3000",fontsize=16,color="green",shape="box"];2083[label="vyw400",fontsize=16,color="green",shape="box"];2084[label="vyw3000",fontsize=16,color="green",shape="box"];2085[label="vyw400",fontsize=16,color="green",shape="box"];2086[label="vyw3001",fontsize=16,color="green",shape="box"];2087[label="vyw401",fontsize=16,color="green",shape="box"];2088[label="vyw3001",fontsize=16,color="green",shape="box"];2089[label="vyw401",fontsize=16,color="green",shape="box"];2091 -> 169[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2091[label="compare vyw49 vyw50",fontsize=16,color="magenta"];2091 -> 2306[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2091 -> 2307[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2090[label="vyw187 /= GT",fontsize=16,color="black",shape="triangle"];2090 -> 2308[label="",style="solid", color="black", weight=3]; 30.83/14.35 2092 -> 170[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2092[label="compare vyw49 vyw50",fontsize=16,color="magenta"];2092 -> 2309[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2092 -> 2310[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2093 -> 171[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2093[label="compare vyw49 vyw50",fontsize=16,color="magenta"];2093 -> 2311[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2093 -> 2312[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2094 -> 172[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2094[label="compare vyw49 vyw50",fontsize=16,color="magenta"];2094 -> 2313[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2094 -> 2314[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2095 -> 173[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2095[label="compare vyw49 vyw50",fontsize=16,color="magenta"];2095 -> 2315[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2095 -> 2316[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2096 -> 174[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2096[label="compare vyw49 vyw50",fontsize=16,color="magenta"];2096 -> 2317[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2096 -> 2318[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2099[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2099 -> 2319[label="",style="solid", color="black", weight=3]; 30.83/14.35 2100[label="Nothing <= Just vyw500",fontsize=16,color="black",shape="box"];2100 -> 2320[label="",style="solid", color="black", weight=3]; 30.83/14.35 2101[label="Just vyw490 <= Nothing",fontsize=16,color="black",shape="box"];2101 -> 2321[label="",style="solid", color="black", weight=3]; 30.83/14.35 2102[label="Just vyw490 <= Just vyw500",fontsize=16,color="black",shape="box"];2102 -> 2322[label="",style="solid", color="black", weight=3]; 30.83/14.35 2103[label="(vyw490,vyw491,vyw492) <= (vyw500,vyw501,vyw502)",fontsize=16,color="black",shape="box"];2103 -> 2323[label="",style="solid", color="black", weight=3]; 30.83/14.35 2097 -> 177[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2097[label="compare vyw49 vyw50",fontsize=16,color="magenta"];2097 -> 2324[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2097 -> 2325[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2098 -> 178[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2098[label="compare vyw49 vyw50",fontsize=16,color="magenta"];2098 -> 2326[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2098 -> 2327[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2104[label="Left vyw490 <= Left vyw500",fontsize=16,color="black",shape="box"];2104 -> 2328[label="",style="solid", color="black", weight=3]; 30.83/14.35 2105[label="Left vyw490 <= Right vyw500",fontsize=16,color="black",shape="box"];2105 -> 2329[label="",style="solid", color="black", weight=3]; 30.83/14.35 2106[label="Right vyw490 <= Left vyw500",fontsize=16,color="black",shape="box"];2106 -> 2330[label="",style="solid", color="black", weight=3]; 30.83/14.35 2107[label="Right vyw490 <= Right vyw500",fontsize=16,color="black",shape="box"];2107 -> 2331[label="",style="solid", color="black", weight=3]; 30.83/14.35 2108[label="(vyw490,vyw491) <= (vyw500,vyw501)",fontsize=16,color="black",shape="box"];2108 -> 2332[label="",style="solid", color="black", weight=3]; 30.83/14.35 2109[label="False <= False",fontsize=16,color="black",shape="box"];2109 -> 2333[label="",style="solid", color="black", weight=3]; 30.83/14.35 2110[label="False <= True",fontsize=16,color="black",shape="box"];2110 -> 2334[label="",style="solid", color="black", weight=3]; 30.83/14.35 2111[label="True <= False",fontsize=16,color="black",shape="box"];2111 -> 2335[label="",style="solid", color="black", weight=3]; 30.83/14.35 2112[label="True <= True",fontsize=16,color="black",shape="box"];2112 -> 2336[label="",style="solid", color="black", weight=3]; 30.83/14.35 2113[label="LT <= LT",fontsize=16,color="black",shape="box"];2113 -> 2337[label="",style="solid", color="black", weight=3]; 30.83/14.35 2114[label="LT <= EQ",fontsize=16,color="black",shape="box"];2114 -> 2338[label="",style="solid", color="black", weight=3]; 30.83/14.35 2115[label="LT <= GT",fontsize=16,color="black",shape="box"];2115 -> 2339[label="",style="solid", color="black", weight=3]; 30.83/14.35 2116[label="EQ <= LT",fontsize=16,color="black",shape="box"];2116 -> 2340[label="",style="solid", color="black", weight=3]; 30.83/14.35 2117[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2117 -> 2341[label="",style="solid", color="black", weight=3]; 30.83/14.35 2118[label="EQ <= GT",fontsize=16,color="black",shape="box"];2118 -> 2342[label="",style="solid", color="black", weight=3]; 30.83/14.35 2119[label="GT <= LT",fontsize=16,color="black",shape="box"];2119 -> 2343[label="",style="solid", color="black", weight=3]; 30.83/14.35 2120[label="GT <= EQ",fontsize=16,color="black",shape="box"];2120 -> 2344[label="",style="solid", color="black", weight=3]; 30.83/14.35 2121[label="GT <= GT",fontsize=16,color="black",shape="box"];2121 -> 2345[label="",style="solid", color="black", weight=3]; 30.83/14.35 2122[label="GT",fontsize=16,color="green",shape="box"];2123[label="vyw103",fontsize=16,color="green",shape="box"];2124[label="vyw100",fontsize=16,color="green",shape="box"];2125[label="vyw103",fontsize=16,color="green",shape="box"];2126[label="vyw100",fontsize=16,color="green",shape="box"];2127[label="vyw103",fontsize=16,color="green",shape="box"];2128[label="vyw100",fontsize=16,color="green",shape="box"];2129[label="vyw103",fontsize=16,color="green",shape="box"];2130[label="vyw100",fontsize=16,color="green",shape="box"];2131[label="vyw103",fontsize=16,color="green",shape="box"];2132[label="vyw100",fontsize=16,color="green",shape="box"];2133[label="vyw103",fontsize=16,color="green",shape="box"];2134[label="vyw100",fontsize=16,color="green",shape="box"];2135[label="vyw103",fontsize=16,color="green",shape="box"];2136[label="vyw100",fontsize=16,color="green",shape="box"];2137[label="vyw103",fontsize=16,color="green",shape="box"];2138[label="vyw100",fontsize=16,color="green",shape="box"];2139[label="vyw103",fontsize=16,color="green",shape="box"];2140[label="vyw100",fontsize=16,color="green",shape="box"];2141[label="vyw103",fontsize=16,color="green",shape="box"];2142[label="vyw100",fontsize=16,color="green",shape="box"];2143[label="vyw103",fontsize=16,color="green",shape="box"];2144[label="vyw100",fontsize=16,color="green",shape="box"];2145[label="vyw103",fontsize=16,color="green",shape="box"];2146[label="vyw100",fontsize=16,color="green",shape="box"];2147[label="vyw103",fontsize=16,color="green",shape="box"];2148[label="vyw100",fontsize=16,color="green",shape="box"];2149[label="vyw103",fontsize=16,color="green",shape="box"];2150[label="vyw100",fontsize=16,color="green",shape="box"];2158 -> 19[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2158[label="vyw101 < vyw104",fontsize=16,color="magenta"];2158 -> 2346[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2158 -> 2347[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2159 -> 20[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2159[label="vyw101 < vyw104",fontsize=16,color="magenta"];2159 -> 2348[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2159 -> 2349[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2160 -> 21[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2160[label="vyw101 < vyw104",fontsize=16,color="magenta"];2160 -> 2350[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2160 -> 2351[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2161 -> 22[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2161[label="vyw101 < vyw104",fontsize=16,color="magenta"];2161 -> 2352[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2161 -> 2353[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2162 -> 23[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2162[label="vyw101 < vyw104",fontsize=16,color="magenta"];2162 -> 2354[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2162 -> 2355[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2163 -> 24[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2163[label="vyw101 < vyw104",fontsize=16,color="magenta"];2163 -> 2356[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2163 -> 2357[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2164 -> 25[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2164[label="vyw101 < vyw104",fontsize=16,color="magenta"];2164 -> 2358[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2164 -> 2359[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2165 -> 26[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2165[label="vyw101 < vyw104",fontsize=16,color="magenta"];2165 -> 2360[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2165 -> 2361[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2166 -> 27[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2166[label="vyw101 < vyw104",fontsize=16,color="magenta"];2166 -> 2362[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2166 -> 2363[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2167 -> 28[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2167[label="vyw101 < vyw104",fontsize=16,color="magenta"];2167 -> 2364[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2167 -> 2365[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2168 -> 29[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2168[label="vyw101 < vyw104",fontsize=16,color="magenta"];2168 -> 2366[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2168 -> 2367[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2169 -> 30[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2169[label="vyw101 < vyw104",fontsize=16,color="magenta"];2169 -> 2368[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2169 -> 2369[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2170 -> 31[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2170[label="vyw101 < vyw104",fontsize=16,color="magenta"];2170 -> 2370[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2170 -> 2371[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2171 -> 32[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2171[label="vyw101 < vyw104",fontsize=16,color="magenta"];2171 -> 2372[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2171 -> 2373[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2172[label="vyw101 == vyw104",fontsize=16,color="blue",shape="box"];3653[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 3653[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3653 -> 2374[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3654[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 3654[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3654 -> 2375[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3655[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 3655[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3655 -> 2376[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3656[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 3656[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3656 -> 2377[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3657[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 3657[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3657 -> 2378[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3658[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 3658[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3658 -> 2379[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3659[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 3659[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3659 -> 2380[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3660[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 3660[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3660 -> 2381[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3661[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 3661[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3661 -> 2382[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3662[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 3662[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3662 -> 2383[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3663[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 3663[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3663 -> 2384[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3664[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 3664[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3664 -> 2385[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3665[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 3665[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3665 -> 2386[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3666[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2172 -> 3666[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3666 -> 2387[label="",style="solid", color="blue", weight=3]; 30.83/14.35 2173[label="vyw102 <= vyw105",fontsize=16,color="blue",shape="box"];3667[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2173 -> 3667[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3667 -> 2388[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3668[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2173 -> 3668[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3668 -> 2389[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3669[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2173 -> 3669[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3669 -> 2390[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3670[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2173 -> 3670[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3670 -> 2391[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3671[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2173 -> 3671[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3671 -> 2392[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3672[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2173 -> 3672[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3672 -> 2393[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3673[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2173 -> 3673[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3673 -> 2394[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3674[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2173 -> 3674[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3674 -> 2395[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3675[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2173 -> 3675[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3675 -> 2396[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3676[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2173 -> 3676[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3676 -> 2397[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3677[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2173 -> 3677[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3677 -> 2398[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3678[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2173 -> 3678[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3678 -> 2399[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3679[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2173 -> 3679[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3679 -> 2400[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3680[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2173 -> 3680[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3680 -> 2401[label="",style="solid", color="blue", weight=3]; 30.83/14.35 2174[label="False || vyw192",fontsize=16,color="black",shape="box"];2174 -> 2402[label="",style="solid", color="black", weight=3]; 30.83/14.35 2175[label="True || vyw192",fontsize=16,color="black",shape="box"];2175 -> 2403[label="",style="solid", color="black", weight=3]; 30.83/14.35 2176[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) False",fontsize=16,color="black",shape="box"];2176 -> 2404[label="",style="solid", color="black", weight=3]; 30.83/14.35 2177[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) True",fontsize=16,color="black",shape="box"];2177 -> 2405[label="",style="solid", color="black", weight=3]; 30.83/14.35 2178[label="True",fontsize=16,color="green",shape="box"];2179[label="GT",fontsize=16,color="green",shape="box"];2180[label="GT",fontsize=16,color="green",shape="box"];2181[label="vyw115",fontsize=16,color="green",shape="box"];2182[label="vyw113",fontsize=16,color="green",shape="box"];2183[label="vyw115",fontsize=16,color="green",shape="box"];2184[label="vyw113",fontsize=16,color="green",shape="box"];2185[label="vyw115",fontsize=16,color="green",shape="box"];2186[label="vyw113",fontsize=16,color="green",shape="box"];2187[label="vyw115",fontsize=16,color="green",shape="box"];2188[label="vyw113",fontsize=16,color="green",shape="box"];2189[label="vyw115",fontsize=16,color="green",shape="box"];2190[label="vyw113",fontsize=16,color="green",shape="box"];2191[label="vyw115",fontsize=16,color="green",shape="box"];2192[label="vyw113",fontsize=16,color="green",shape="box"];2193[label="vyw115",fontsize=16,color="green",shape="box"];2194[label="vyw113",fontsize=16,color="green",shape="box"];2195[label="vyw115",fontsize=16,color="green",shape="box"];2196[label="vyw113",fontsize=16,color="green",shape="box"];2197[label="vyw115",fontsize=16,color="green",shape="box"];2198[label="vyw113",fontsize=16,color="green",shape="box"];2199[label="vyw115",fontsize=16,color="green",shape="box"];2200[label="vyw113",fontsize=16,color="green",shape="box"];2201[label="vyw115",fontsize=16,color="green",shape="box"];2202[label="vyw113",fontsize=16,color="green",shape="box"];2203[label="vyw115",fontsize=16,color="green",shape="box"];2204[label="vyw113",fontsize=16,color="green",shape="box"];2205[label="vyw115",fontsize=16,color="green",shape="box"];2206[label="vyw113",fontsize=16,color="green",shape="box"];2207[label="vyw115",fontsize=16,color="green",shape="box"];2208[label="vyw113",fontsize=16,color="green",shape="box"];2209[label="vyw116",fontsize=16,color="green",shape="box"];2210[label="vyw114",fontsize=16,color="green",shape="box"];2211[label="vyw116",fontsize=16,color="green",shape="box"];2212[label="vyw114",fontsize=16,color="green",shape="box"];2213[label="vyw116",fontsize=16,color="green",shape="box"];2214[label="vyw114",fontsize=16,color="green",shape="box"];2215[label="vyw116",fontsize=16,color="green",shape="box"];2216[label="vyw114",fontsize=16,color="green",shape="box"];2217[label="vyw116",fontsize=16,color="green",shape="box"];2218[label="vyw114",fontsize=16,color="green",shape="box"];2219[label="vyw116",fontsize=16,color="green",shape="box"];2220[label="vyw114",fontsize=16,color="green",shape="box"];2221[label="vyw116",fontsize=16,color="green",shape="box"];2222[label="vyw114",fontsize=16,color="green",shape="box"];2223[label="vyw116",fontsize=16,color="green",shape="box"];2224[label="vyw114",fontsize=16,color="green",shape="box"];2225[label="vyw116",fontsize=16,color="green",shape="box"];2226[label="vyw114",fontsize=16,color="green",shape="box"];2227[label="vyw116",fontsize=16,color="green",shape="box"];2228[label="vyw114",fontsize=16,color="green",shape="box"];2229[label="vyw116",fontsize=16,color="green",shape="box"];2230[label="vyw114",fontsize=16,color="green",shape="box"];2231[label="vyw116",fontsize=16,color="green",shape="box"];2232[label="vyw114",fontsize=16,color="green",shape="box"];2233[label="vyw116",fontsize=16,color="green",shape="box"];2234[label="vyw114",fontsize=16,color="green",shape="box"];2235[label="vyw116",fontsize=16,color="green",shape="box"];2236[label="vyw114",fontsize=16,color="green",shape="box"];2237[label="compare1 (vyw180,vyw181) (vyw182,vyw183) False",fontsize=16,color="black",shape="box"];2237 -> 2406[label="",style="solid", color="black", weight=3]; 30.83/14.35 2238[label="compare1 (vyw180,vyw181) (vyw182,vyw183) True",fontsize=16,color="black",shape="box"];2238 -> 2407[label="",style="solid", color="black", weight=3]; 30.83/14.35 2239[label="True",fontsize=16,color="green",shape="box"];2241 -> 960[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2241[label="primMulNat vyw30000 (Succ vyw4100)",fontsize=16,color="magenta"];2241 -> 2408[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2241 -> 2409[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2240[label="primPlusNat vyw193 (Succ vyw4100)",fontsize=16,color="burlywood",shape="triangle"];3681[label="vyw193/Succ vyw1930",fontsize=10,color="white",style="solid",shape="box"];2240 -> 3681[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3681 -> 2410[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3682[label="vyw193/Zero",fontsize=10,color="white",style="solid",shape="box"];2240 -> 3682[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3682 -> 2411[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 2242[label="vyw3001",fontsize=16,color="green",shape="box"];2243[label="vyw401",fontsize=16,color="green",shape="box"];2244[label="vyw3001",fontsize=16,color="green",shape="box"];2245[label="vyw401",fontsize=16,color="green",shape="box"];2246[label="vyw3001",fontsize=16,color="green",shape="box"];2247[label="vyw401",fontsize=16,color="green",shape="box"];2248[label="vyw3001",fontsize=16,color="green",shape="box"];2249[label="vyw401",fontsize=16,color="green",shape="box"];2250[label="vyw3001",fontsize=16,color="green",shape="box"];2251[label="vyw401",fontsize=16,color="green",shape="box"];2252[label="vyw3001",fontsize=16,color="green",shape="box"];2253[label="vyw401",fontsize=16,color="green",shape="box"];2254[label="vyw3001",fontsize=16,color="green",shape="box"];2255[label="vyw401",fontsize=16,color="green",shape="box"];2256[label="vyw3001",fontsize=16,color="green",shape="box"];2257[label="vyw401",fontsize=16,color="green",shape="box"];2258[label="vyw3001",fontsize=16,color="green",shape="box"];2259[label="vyw401",fontsize=16,color="green",shape="box"];2260[label="vyw3001",fontsize=16,color="green",shape="box"];2261[label="vyw401",fontsize=16,color="green",shape="box"];2262[label="vyw3001",fontsize=16,color="green",shape="box"];2263[label="vyw401",fontsize=16,color="green",shape="box"];2264[label="vyw3001",fontsize=16,color="green",shape="box"];2265[label="vyw401",fontsize=16,color="green",shape="box"];2266[label="vyw3001",fontsize=16,color="green",shape="box"];2267[label="vyw401",fontsize=16,color="green",shape="box"];2268[label="vyw3001",fontsize=16,color="green",shape="box"];2269[label="vyw401",fontsize=16,color="green",shape="box"];2270[label="vyw3002",fontsize=16,color="green",shape="box"];2271[label="vyw402",fontsize=16,color="green",shape="box"];2272[label="vyw3002",fontsize=16,color="green",shape="box"];2273[label="vyw402",fontsize=16,color="green",shape="box"];2274[label="vyw3002",fontsize=16,color="green",shape="box"];2275[label="vyw402",fontsize=16,color="green",shape="box"];2276[label="vyw3002",fontsize=16,color="green",shape="box"];2277[label="vyw402",fontsize=16,color="green",shape="box"];2278[label="vyw3002",fontsize=16,color="green",shape="box"];2279[label="vyw402",fontsize=16,color="green",shape="box"];2280[label="vyw3002",fontsize=16,color="green",shape="box"];2281[label="vyw402",fontsize=16,color="green",shape="box"];2282[label="vyw3002",fontsize=16,color="green",shape="box"];2283[label="vyw402",fontsize=16,color="green",shape="box"];2284[label="vyw3002",fontsize=16,color="green",shape="box"];2285[label="vyw402",fontsize=16,color="green",shape="box"];2286[label="vyw3002",fontsize=16,color="green",shape="box"];2287[label="vyw402",fontsize=16,color="green",shape="box"];2288[label="vyw3002",fontsize=16,color="green",shape="box"];2289[label="vyw402",fontsize=16,color="green",shape="box"];2290[label="vyw3002",fontsize=16,color="green",shape="box"];2291[label="vyw402",fontsize=16,color="green",shape="box"];2292[label="vyw3002",fontsize=16,color="green",shape="box"];2293[label="vyw402",fontsize=16,color="green",shape="box"];2294[label="vyw3002",fontsize=16,color="green",shape="box"];2295[label="vyw402",fontsize=16,color="green",shape="box"];2296[label="vyw3002",fontsize=16,color="green",shape="box"];2297[label="vyw402",fontsize=16,color="green",shape="box"];2298[label="vyw4000",fontsize=16,color="green",shape="box"];2299[label="vyw30000",fontsize=16,color="green",shape="box"];2300[label="vyw4000",fontsize=16,color="green",shape="box"];2301[label="vyw30000",fontsize=16,color="green",shape="box"];2302 -> 1395[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2302[label="primEqNat vyw4000 vyw30000",fontsize=16,color="magenta"];2302 -> 2412[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2302 -> 2413[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2303[label="False",fontsize=16,color="green",shape="box"];2304[label="False",fontsize=16,color="green",shape="box"];2305[label="True",fontsize=16,color="green",shape="box"];2306[label="vyw50",fontsize=16,color="green",shape="box"];2307[label="vyw49",fontsize=16,color="green",shape="box"];2308 -> 2414[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2308[label="not (vyw187 == GT)",fontsize=16,color="magenta"];2308 -> 2415[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2309[label="vyw50",fontsize=16,color="green",shape="box"];2310[label="vyw49",fontsize=16,color="green",shape="box"];2311[label="vyw50",fontsize=16,color="green",shape="box"];2312[label="vyw49",fontsize=16,color="green",shape="box"];2313[label="vyw50",fontsize=16,color="green",shape="box"];2314[label="vyw49",fontsize=16,color="green",shape="box"];2315[label="vyw50",fontsize=16,color="green",shape="box"];2316[label="vyw49",fontsize=16,color="green",shape="box"];2317[label="vyw50",fontsize=16,color="green",shape="box"];2318[label="vyw49",fontsize=16,color="green",shape="box"];2319[label="True",fontsize=16,color="green",shape="box"];2320[label="True",fontsize=16,color="green",shape="box"];2321[label="False",fontsize=16,color="green",shape="box"];2322[label="vyw490 <= vyw500",fontsize=16,color="blue",shape="box"];3683[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3683[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3683 -> 2416[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3684[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3684[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3684 -> 2417[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3685[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3685[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3685 -> 2418[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3686[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3686[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3686 -> 2419[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3687[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3687[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3687 -> 2420[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3688[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3688[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3688 -> 2421[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3689[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3689[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3689 -> 2422[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3690[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3690[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3690 -> 2423[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3691[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3691[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3691 -> 2424[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3692[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3692[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3692 -> 2425[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3693[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3693[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3693 -> 2426[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3694[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3694[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3694 -> 2427[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3695[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3695[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3695 -> 2428[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3696[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2322 -> 3696[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3696 -> 2429[label="",style="solid", color="blue", weight=3]; 30.83/14.35 2323 -> 2153[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2323[label="vyw490 < vyw500 || vyw490 == vyw500 && (vyw491 < vyw501 || vyw491 == vyw501 && vyw492 <= vyw502)",fontsize=16,color="magenta"];2323 -> 2430[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2323 -> 2431[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2324[label="vyw50",fontsize=16,color="green",shape="box"];2325[label="vyw49",fontsize=16,color="green",shape="box"];2326[label="vyw50",fontsize=16,color="green",shape="box"];2327[label="vyw49",fontsize=16,color="green",shape="box"];2328[label="vyw490 <= vyw500",fontsize=16,color="blue",shape="box"];3697[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 3697[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3697 -> 2432[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3698[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 3698[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3698 -> 2433[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3699[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 3699[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3699 -> 2434[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3700[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 3700[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3700 -> 2435[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3701[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 3701[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3701 -> 2436[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3702[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 3702[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3702 -> 2437[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3703[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 3703[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3703 -> 2438[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3704[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 3704[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3704 -> 2439[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3705[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 3705[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3705 -> 2440[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3706[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 3706[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3706 -> 2441[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3707[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 3707[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3707 -> 2442[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3708[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 3708[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3708 -> 2443[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3709[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 3709[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3709 -> 2444[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3710[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 3710[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3710 -> 2445[label="",style="solid", color="blue", weight=3]; 30.83/14.35 2329[label="True",fontsize=16,color="green",shape="box"];2330[label="False",fontsize=16,color="green",shape="box"];2331[label="vyw490 <= vyw500",fontsize=16,color="blue",shape="box"];3711[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3711[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3711 -> 2446[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3712[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3712[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3712 -> 2447[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3713[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3713[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3713 -> 2448[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3714[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3714[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3714 -> 2449[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3715[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3715[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3715 -> 2450[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3716[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3716[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3716 -> 2451[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3717[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3717[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3717 -> 2452[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3718[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3718[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3718 -> 2453[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3719[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3719[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3719 -> 2454[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3720[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3720[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3720 -> 2455[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3721[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3721[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3721 -> 2456[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3722[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3722[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3722 -> 2457[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3723[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3723[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3723 -> 2458[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3724[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 3724[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3724 -> 2459[label="",style="solid", color="blue", weight=3]; 30.83/14.35 2332 -> 2153[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2332[label="vyw490 < vyw500 || vyw490 == vyw500 && vyw491 <= vyw501",fontsize=16,color="magenta"];2332 -> 2460[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2332 -> 2461[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2333[label="True",fontsize=16,color="green",shape="box"];2334[label="True",fontsize=16,color="green",shape="box"];2335[label="False",fontsize=16,color="green",shape="box"];2336[label="True",fontsize=16,color="green",shape="box"];2337[label="True",fontsize=16,color="green",shape="box"];2338[label="True",fontsize=16,color="green",shape="box"];2339[label="True",fontsize=16,color="green",shape="box"];2340[label="False",fontsize=16,color="green",shape="box"];2341[label="True",fontsize=16,color="green",shape="box"];2342[label="True",fontsize=16,color="green",shape="box"];2343[label="False",fontsize=16,color="green",shape="box"];2344[label="False",fontsize=16,color="green",shape="box"];2345[label="True",fontsize=16,color="green",shape="box"];2346[label="vyw104",fontsize=16,color="green",shape="box"];2347[label="vyw101",fontsize=16,color="green",shape="box"];2348[label="vyw104",fontsize=16,color="green",shape="box"];2349[label="vyw101",fontsize=16,color="green",shape="box"];2350[label="vyw104",fontsize=16,color="green",shape="box"];2351[label="vyw101",fontsize=16,color="green",shape="box"];2352[label="vyw104",fontsize=16,color="green",shape="box"];2353[label="vyw101",fontsize=16,color="green",shape="box"];2354[label="vyw104",fontsize=16,color="green",shape="box"];2355[label="vyw101",fontsize=16,color="green",shape="box"];2356[label="vyw104",fontsize=16,color="green",shape="box"];2357[label="vyw101",fontsize=16,color="green",shape="box"];2358[label="vyw104",fontsize=16,color="green",shape="box"];2359[label="vyw101",fontsize=16,color="green",shape="box"];2360[label="vyw104",fontsize=16,color="green",shape="box"];2361[label="vyw101",fontsize=16,color="green",shape="box"];2362[label="vyw104",fontsize=16,color="green",shape="box"];2363[label="vyw101",fontsize=16,color="green",shape="box"];2364[label="vyw104",fontsize=16,color="green",shape="box"];2365[label="vyw101",fontsize=16,color="green",shape="box"];2366[label="vyw104",fontsize=16,color="green",shape="box"];2367[label="vyw101",fontsize=16,color="green",shape="box"];2368[label="vyw104",fontsize=16,color="green",shape="box"];2369[label="vyw101",fontsize=16,color="green",shape="box"];2370[label="vyw104",fontsize=16,color="green",shape="box"];2371[label="vyw101",fontsize=16,color="green",shape="box"];2372[label="vyw104",fontsize=16,color="green",shape="box"];2373[label="vyw101",fontsize=16,color="green",shape="box"];2374 -> 539[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2374[label="vyw101 == vyw104",fontsize=16,color="magenta"];2374 -> 2462[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2374 -> 2463[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2375 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2375[label="vyw101 == vyw104",fontsize=16,color="magenta"];2375 -> 2464[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2375 -> 2465[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2376 -> 540[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2376[label="vyw101 == vyw104",fontsize=16,color="magenta"];2376 -> 2466[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2376 -> 2467[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2377 -> 546[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2377[label="vyw101 == vyw104",fontsize=16,color="magenta"];2377 -> 2468[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2377 -> 2469[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2378 -> 548[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2378[label="vyw101 == vyw104",fontsize=16,color="magenta"];2378 -> 2470[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2378 -> 2471[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2379 -> 545[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2379[label="vyw101 == vyw104",fontsize=16,color="magenta"];2379 -> 2472[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2379 -> 2473[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2380 -> 544[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2380[label="vyw101 == vyw104",fontsize=16,color="magenta"];2380 -> 2474[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2380 -> 2475[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2381 -> 536[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2381[label="vyw101 == vyw104",fontsize=16,color="magenta"];2381 -> 2476[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2381 -> 2477[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2382 -> 542[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2382[label="vyw101 == vyw104",fontsize=16,color="magenta"];2382 -> 2478[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2382 -> 2479[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2383 -> 543[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2383[label="vyw101 == vyw104",fontsize=16,color="magenta"];2383 -> 2480[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2383 -> 2481[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2384 -> 549[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2384[label="vyw101 == vyw104",fontsize=16,color="magenta"];2384 -> 2482[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2384 -> 2483[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2385 -> 541[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2385[label="vyw101 == vyw104",fontsize=16,color="magenta"];2385 -> 2484[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2385 -> 2485[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2386 -> 547[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2386[label="vyw101 == vyw104",fontsize=16,color="magenta"];2386 -> 2486[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2386 -> 2487[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2387 -> 538[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2387[label="vyw101 == vyw104",fontsize=16,color="magenta"];2387 -> 2488[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2387 -> 2489[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2388 -> 1442[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2388[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2388 -> 2490[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2388 -> 2491[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2389 -> 1443[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2389[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2389 -> 2492[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2389 -> 2493[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2390 -> 1444[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2390[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2390 -> 2494[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2390 -> 2495[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2391 -> 1445[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2391[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2391 -> 2496[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2391 -> 2497[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2392 -> 1446[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2392[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2392 -> 2498[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2392 -> 2499[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2393 -> 1447[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2393[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2393 -> 2500[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2393 -> 2501[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2394 -> 1448[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2394[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2394 -> 2502[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2394 -> 2503[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2395 -> 1449[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2395[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2395 -> 2504[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2395 -> 2505[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2396 -> 1450[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2396[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2396 -> 2506[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2396 -> 2507[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2397 -> 1451[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2397[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2397 -> 2508[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2397 -> 2509[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2398 -> 1452[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2398[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2398 -> 2510[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2398 -> 2511[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2399 -> 1453[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2399[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2399 -> 2512[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2399 -> 2513[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2400 -> 1454[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2400[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2400 -> 2514[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2400 -> 2515[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2401 -> 1455[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2401[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2401 -> 2516[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2401 -> 2517[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2402[label="vyw192",fontsize=16,color="green",shape="box"];2403[label="True",fontsize=16,color="green",shape="box"];2404[label="compare0 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) otherwise",fontsize=16,color="black",shape="box"];2404 -> 2518[label="",style="solid", color="black", weight=3]; 30.83/14.35 2405[label="LT",fontsize=16,color="green",shape="box"];2406[label="compare0 (vyw180,vyw181) (vyw182,vyw183) otherwise",fontsize=16,color="black",shape="box"];2406 -> 2519[label="",style="solid", color="black", weight=3]; 30.83/14.35 2407[label="LT",fontsize=16,color="green",shape="box"];2408[label="vyw30000",fontsize=16,color="green",shape="box"];2409[label="Succ vyw4100",fontsize=16,color="green",shape="box"];2410[label="primPlusNat (Succ vyw1930) (Succ vyw4100)",fontsize=16,color="black",shape="box"];2410 -> 2520[label="",style="solid", color="black", weight=3]; 30.83/14.35 2411[label="primPlusNat Zero (Succ vyw4100)",fontsize=16,color="black",shape="box"];2411 -> 2521[label="",style="solid", color="black", weight=3]; 30.83/14.35 2412[label="vyw4000",fontsize=16,color="green",shape="box"];2413[label="vyw30000",fontsize=16,color="green",shape="box"];2415 -> 538[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2415[label="vyw187 == GT",fontsize=16,color="magenta"];2415 -> 2522[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2415 -> 2523[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2414[label="not vyw194",fontsize=16,color="burlywood",shape="triangle"];3725[label="vyw194/False",fontsize=10,color="white",style="solid",shape="box"];2414 -> 3725[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3725 -> 2524[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 3726[label="vyw194/True",fontsize=10,color="white",style="solid",shape="box"];2414 -> 3726[label="",style="solid", color="burlywood", weight=9]; 30.83/14.35 3726 -> 2525[label="",style="solid", color="burlywood", weight=3]; 30.83/14.35 2416 -> 1442[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2416[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2416 -> 2526[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2416 -> 2527[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2417 -> 1443[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2417[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2417 -> 2528[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2417 -> 2529[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2418 -> 1444[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2418[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2418 -> 2530[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2418 -> 2531[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2419 -> 1445[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2419[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2419 -> 2532[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2419 -> 2533[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2420 -> 1446[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2420[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2420 -> 2534[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2420 -> 2535[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2421 -> 1447[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2421[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2421 -> 2536[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2421 -> 2537[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2422 -> 1448[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2422[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2422 -> 2538[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2422 -> 2539[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2423 -> 1449[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2423[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2423 -> 2540[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2423 -> 2541[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2424 -> 1450[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2424[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2424 -> 2542[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2424 -> 2543[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2425 -> 1451[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2425[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2425 -> 2544[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2425 -> 2545[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2426 -> 1452[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2426[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2426 -> 2546[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2426 -> 2547[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2427 -> 1453[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2427[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2427 -> 2548[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2427 -> 2549[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2428 -> 1454[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2428[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2428 -> 2550[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2428 -> 2551[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2429 -> 1455[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2429[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2429 -> 2552[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2429 -> 2553[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2430[label="vyw490 < vyw500",fontsize=16,color="blue",shape="box"];3727[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 3727[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3727 -> 2554[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3728[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 3728[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3728 -> 2555[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3729[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 3729[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3729 -> 2556[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3730[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 3730[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3730 -> 2557[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3731[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 3731[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3731 -> 2558[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3732[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 3732[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3732 -> 2559[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3733[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 3733[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3733 -> 2560[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3734[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 3734[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3734 -> 2561[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3735[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 3735[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3735 -> 2562[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3736[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 3736[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3736 -> 2563[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3737[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 3737[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3737 -> 2564[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3738[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 3738[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3738 -> 2565[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3739[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 3739[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3739 -> 2566[label="",style="solid", color="blue", weight=3]; 30.83/14.35 3740[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2430 -> 3740[label="",style="solid", color="blue", weight=9]; 30.83/14.35 3740 -> 2567[label="",style="solid", color="blue", weight=3]; 30.83/14.35 2431 -> 1113[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2431[label="vyw490 == vyw500 && (vyw491 < vyw501 || vyw491 == vyw501 && vyw492 <= vyw502)",fontsize=16,color="magenta"];2431 -> 2568[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2431 -> 2569[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2432 -> 1442[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2432[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2432 -> 2570[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2432 -> 2571[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2433 -> 1443[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2433[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2433 -> 2572[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2433 -> 2573[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2434 -> 1444[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2434[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2434 -> 2574[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2434 -> 2575[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2435 -> 1445[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2435[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2435 -> 2576[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2435 -> 2577[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2436 -> 1446[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2436[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2436 -> 2578[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2436 -> 2579[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2437 -> 1447[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2437[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2437 -> 2580[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2437 -> 2581[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2438 -> 1448[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2438[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2438 -> 2582[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2438 -> 2583[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2439 -> 1449[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2439[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2439 -> 2584[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2439 -> 2585[label="",style="dashed", color="magenta", weight=3]; 30.83/14.35 2440 -> 1450[label="",style="dashed", color="red", weight=0]; 30.83/14.35 2440[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2440 -> 2586[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2440 -> 2587[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2441 -> 1451[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2441[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2441 -> 2588[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2441 -> 2589[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2442 -> 1452[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2442[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2442 -> 2590[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2442 -> 2591[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2443 -> 1453[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2443[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2443 -> 2592[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2443 -> 2593[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2444 -> 1454[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2444[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2444 -> 2594[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2444 -> 2595[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2445 -> 1455[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2445[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2445 -> 2596[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2445 -> 2597[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2446 -> 1442[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2446[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2446 -> 2598[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2446 -> 2599[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2447 -> 1443[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2447[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2447 -> 2600[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2447 -> 2601[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2448 -> 1444[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2448[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2448 -> 2602[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2448 -> 2603[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2449 -> 1445[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2449[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2449 -> 2604[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2449 -> 2605[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2450 -> 1446[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2450[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2450 -> 2606[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2450 -> 2607[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2451 -> 1447[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2451[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2451 -> 2608[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2451 -> 2609[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2452 -> 1448[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2452[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2452 -> 2610[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2452 -> 2611[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2453 -> 1449[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2453[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2453 -> 2612[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2453 -> 2613[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2454 -> 1450[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2454[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2454 -> 2614[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2454 -> 2615[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2455 -> 1451[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2455[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2455 -> 2616[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2455 -> 2617[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2456 -> 1452[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2456[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2456 -> 2618[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2456 -> 2619[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2457 -> 1453[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2457[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2457 -> 2620[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2457 -> 2621[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2458 -> 1454[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2458[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2458 -> 2622[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2458 -> 2623[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2459 -> 1455[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2459[label="vyw490 <= vyw500",fontsize=16,color="magenta"];2459 -> 2624[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2459 -> 2625[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2460[label="vyw490 < vyw500",fontsize=16,color="blue",shape="box"];3741[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3741[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3741 -> 2626[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3742[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3742[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3742 -> 2627[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3743[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3743[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3743 -> 2628[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3744[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3744[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3744 -> 2629[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3745[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3745[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3745 -> 2630[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3746[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3746[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3746 -> 2631[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3747[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3747[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3747 -> 2632[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3748[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3748[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3748 -> 2633[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3749[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3749[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3749 -> 2634[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3750[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3750[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3750 -> 2635[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3751[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3751[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3751 -> 2636[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3752[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3752[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3752 -> 2637[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3753[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3753[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3753 -> 2638[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3754[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2460 -> 3754[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3754 -> 2639[label="",style="solid", color="blue", weight=3]; 30.83/14.36 2461 -> 1113[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2461[label="vyw490 == vyw500 && vyw491 <= vyw501",fontsize=16,color="magenta"];2461 -> 2640[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2461 -> 2641[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2462[label="vyw104",fontsize=16,color="green",shape="box"];2463[label="vyw101",fontsize=16,color="green",shape="box"];2464[label="vyw104",fontsize=16,color="green",shape="box"];2465[label="vyw101",fontsize=16,color="green",shape="box"];2466[label="vyw104",fontsize=16,color="green",shape="box"];2467[label="vyw101",fontsize=16,color="green",shape="box"];2468[label="vyw104",fontsize=16,color="green",shape="box"];2469[label="vyw101",fontsize=16,color="green",shape="box"];2470[label="vyw104",fontsize=16,color="green",shape="box"];2471[label="vyw101",fontsize=16,color="green",shape="box"];2472[label="vyw104",fontsize=16,color="green",shape="box"];2473[label="vyw101",fontsize=16,color="green",shape="box"];2474[label="vyw104",fontsize=16,color="green",shape="box"];2475[label="vyw101",fontsize=16,color="green",shape="box"];2476[label="vyw104",fontsize=16,color="green",shape="box"];2477[label="vyw101",fontsize=16,color="green",shape="box"];2478[label="vyw104",fontsize=16,color="green",shape="box"];2479[label="vyw101",fontsize=16,color="green",shape="box"];2480[label="vyw104",fontsize=16,color="green",shape="box"];2481[label="vyw101",fontsize=16,color="green",shape="box"];2482[label="vyw104",fontsize=16,color="green",shape="box"];2483[label="vyw101",fontsize=16,color="green",shape="box"];2484[label="vyw104",fontsize=16,color="green",shape="box"];2485[label="vyw101",fontsize=16,color="green",shape="box"];2486[label="vyw104",fontsize=16,color="green",shape="box"];2487[label="vyw101",fontsize=16,color="green",shape="box"];2488[label="vyw104",fontsize=16,color="green",shape="box"];2489[label="vyw101",fontsize=16,color="green",shape="box"];2490[label="vyw105",fontsize=16,color="green",shape="box"];2491[label="vyw102",fontsize=16,color="green",shape="box"];2492[label="vyw105",fontsize=16,color="green",shape="box"];2493[label="vyw102",fontsize=16,color="green",shape="box"];2494[label="vyw105",fontsize=16,color="green",shape="box"];2495[label="vyw102",fontsize=16,color="green",shape="box"];2496[label="vyw105",fontsize=16,color="green",shape="box"];2497[label="vyw102",fontsize=16,color="green",shape="box"];2498[label="vyw105",fontsize=16,color="green",shape="box"];2499[label="vyw102",fontsize=16,color="green",shape="box"];2500[label="vyw105",fontsize=16,color="green",shape="box"];2501[label="vyw102",fontsize=16,color="green",shape="box"];2502[label="vyw105",fontsize=16,color="green",shape="box"];2503[label="vyw102",fontsize=16,color="green",shape="box"];2504[label="vyw105",fontsize=16,color="green",shape="box"];2505[label="vyw102",fontsize=16,color="green",shape="box"];2506[label="vyw105",fontsize=16,color="green",shape="box"];2507[label="vyw102",fontsize=16,color="green",shape="box"];2508[label="vyw105",fontsize=16,color="green",shape="box"];2509[label="vyw102",fontsize=16,color="green",shape="box"];2510[label="vyw105",fontsize=16,color="green",shape="box"];2511[label="vyw102",fontsize=16,color="green",shape="box"];2512[label="vyw105",fontsize=16,color="green",shape="box"];2513[label="vyw102",fontsize=16,color="green",shape="box"];2514[label="vyw105",fontsize=16,color="green",shape="box"];2515[label="vyw102",fontsize=16,color="green",shape="box"];2516[label="vyw105",fontsize=16,color="green",shape="box"];2517[label="vyw102",fontsize=16,color="green",shape="box"];2518[label="compare0 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) True",fontsize=16,color="black",shape="box"];2518 -> 2642[label="",style="solid", color="black", weight=3]; 30.83/14.36 2519[label="compare0 (vyw180,vyw181) (vyw182,vyw183) True",fontsize=16,color="black",shape="box"];2519 -> 2643[label="",style="solid", color="black", weight=3]; 30.83/14.36 2520[label="Succ (Succ (primPlusNat vyw1930 vyw4100))",fontsize=16,color="green",shape="box"];2520 -> 2644[label="",style="dashed", color="green", weight=3]; 30.83/14.36 2521[label="Succ vyw4100",fontsize=16,color="green",shape="box"];2522[label="GT",fontsize=16,color="green",shape="box"];2523[label="vyw187",fontsize=16,color="green",shape="box"];2524[label="not False",fontsize=16,color="black",shape="box"];2524 -> 2645[label="",style="solid", color="black", weight=3]; 30.83/14.36 2525[label="not True",fontsize=16,color="black",shape="box"];2525 -> 2646[label="",style="solid", color="black", weight=3]; 30.83/14.36 2526[label="vyw500",fontsize=16,color="green",shape="box"];2527[label="vyw490",fontsize=16,color="green",shape="box"];2528[label="vyw500",fontsize=16,color="green",shape="box"];2529[label="vyw490",fontsize=16,color="green",shape="box"];2530[label="vyw500",fontsize=16,color="green",shape="box"];2531[label="vyw490",fontsize=16,color="green",shape="box"];2532[label="vyw500",fontsize=16,color="green",shape="box"];2533[label="vyw490",fontsize=16,color="green",shape="box"];2534[label="vyw500",fontsize=16,color="green",shape="box"];2535[label="vyw490",fontsize=16,color="green",shape="box"];2536[label="vyw500",fontsize=16,color="green",shape="box"];2537[label="vyw490",fontsize=16,color="green",shape="box"];2538[label="vyw500",fontsize=16,color="green",shape="box"];2539[label="vyw490",fontsize=16,color="green",shape="box"];2540[label="vyw500",fontsize=16,color="green",shape="box"];2541[label="vyw490",fontsize=16,color="green",shape="box"];2542[label="vyw500",fontsize=16,color="green",shape="box"];2543[label="vyw490",fontsize=16,color="green",shape="box"];2544[label="vyw500",fontsize=16,color="green",shape="box"];2545[label="vyw490",fontsize=16,color="green",shape="box"];2546[label="vyw500",fontsize=16,color="green",shape="box"];2547[label="vyw490",fontsize=16,color="green",shape="box"];2548[label="vyw500",fontsize=16,color="green",shape="box"];2549[label="vyw490",fontsize=16,color="green",shape="box"];2550[label="vyw500",fontsize=16,color="green",shape="box"];2551[label="vyw490",fontsize=16,color="green",shape="box"];2552[label="vyw500",fontsize=16,color="green",shape="box"];2553[label="vyw490",fontsize=16,color="green",shape="box"];2554 -> 19[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2554[label="vyw490 < vyw500",fontsize=16,color="magenta"];2554 -> 2647[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2554 -> 2648[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2555 -> 20[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2555[label="vyw490 < vyw500",fontsize=16,color="magenta"];2555 -> 2649[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2555 -> 2650[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2556 -> 21[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2556[label="vyw490 < vyw500",fontsize=16,color="magenta"];2556 -> 2651[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2556 -> 2652[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2557 -> 22[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2557[label="vyw490 < vyw500",fontsize=16,color="magenta"];2557 -> 2653[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2557 -> 2654[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2558 -> 23[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2558[label="vyw490 < vyw500",fontsize=16,color="magenta"];2558 -> 2655[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2558 -> 2656[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2559 -> 24[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2559[label="vyw490 < vyw500",fontsize=16,color="magenta"];2559 -> 2657[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2559 -> 2658[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2560 -> 25[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2560[label="vyw490 < vyw500",fontsize=16,color="magenta"];2560 -> 2659[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2560 -> 2660[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2561 -> 26[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2561[label="vyw490 < vyw500",fontsize=16,color="magenta"];2561 -> 2661[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2561 -> 2662[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2562 -> 27[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2562[label="vyw490 < vyw500",fontsize=16,color="magenta"];2562 -> 2663[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2562 -> 2664[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2563 -> 28[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2563[label="vyw490 < vyw500",fontsize=16,color="magenta"];2563 -> 2665[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2563 -> 2666[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2564 -> 29[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2564[label="vyw490 < vyw500",fontsize=16,color="magenta"];2564 -> 2667[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2564 -> 2668[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2565 -> 30[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2565[label="vyw490 < vyw500",fontsize=16,color="magenta"];2565 -> 2669[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2565 -> 2670[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2566 -> 31[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2566[label="vyw490 < vyw500",fontsize=16,color="magenta"];2566 -> 2671[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2566 -> 2672[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2567 -> 32[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2567[label="vyw490 < vyw500",fontsize=16,color="magenta"];2567 -> 2673[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2567 -> 2674[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2568[label="vyw490 == vyw500",fontsize=16,color="blue",shape="box"];3755[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2568 -> 3755[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3755 -> 2675[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3756[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2568 -> 3756[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3756 -> 2676[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3757[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2568 -> 3757[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3757 -> 2677[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3758[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2568 -> 3758[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3758 -> 2678[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3759[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2568 -> 3759[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3759 -> 2679[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3760[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2568 -> 3760[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3760 -> 2680[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3761[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2568 -> 3761[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3761 -> 2681[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3762[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2568 -> 3762[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3762 -> 2682[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3763[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2568 -> 3763[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3763 -> 2683[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3764[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2568 -> 3764[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3764 -> 2684[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3765[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2568 -> 3765[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3765 -> 2685[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3766[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2568 -> 3766[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3766 -> 2686[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3767[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2568 -> 3767[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3767 -> 2687[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3768[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2568 -> 3768[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3768 -> 2688[label="",style="solid", color="blue", weight=3]; 30.83/14.36 2569 -> 2153[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2569[label="vyw491 < vyw501 || vyw491 == vyw501 && vyw492 <= vyw502",fontsize=16,color="magenta"];2569 -> 2689[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2569 -> 2690[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 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[label="vyw490",fontsize=16,color="green",shape="box"];2594[label="vyw500",fontsize=16,color="green",shape="box"];2595[label="vyw490",fontsize=16,color="green",shape="box"];2596[label="vyw500",fontsize=16,color="green",shape="box"];2597[label="vyw490",fontsize=16,color="green",shape="box"];2598[label="vyw500",fontsize=16,color="green",shape="box"];2599[label="vyw490",fontsize=16,color="green",shape="box"];2600[label="vyw500",fontsize=16,color="green",shape="box"];2601[label="vyw490",fontsize=16,color="green",shape="box"];2602[label="vyw500",fontsize=16,color="green",shape="box"];2603[label="vyw490",fontsize=16,color="green",shape="box"];2604[label="vyw500",fontsize=16,color="green",shape="box"];2605[label="vyw490",fontsize=16,color="green",shape="box"];2606[label="vyw500",fontsize=16,color="green",shape="box"];2607[label="vyw490",fontsize=16,color="green",shape="box"];2608[label="vyw500",fontsize=16,color="green",shape="box"];2609[label="vyw490",fontsize=16,color="green",shape="box"];2610[label="vyw500",fontsize=16,color="green",shape="box"];2611[label="vyw490",fontsize=16,color="green",shape="box"];2612[label="vyw500",fontsize=16,color="green",shape="box"];2613[label="vyw490",fontsize=16,color="green",shape="box"];2614[label="vyw500",fontsize=16,color="green",shape="box"];2615[label="vyw490",fontsize=16,color="green",shape="box"];2616[label="vyw500",fontsize=16,color="green",shape="box"];2617[label="vyw490",fontsize=16,color="green",shape="box"];2618[label="vyw500",fontsize=16,color="green",shape="box"];2619[label="vyw490",fontsize=16,color="green",shape="box"];2620[label="vyw500",fontsize=16,color="green",shape="box"];2621[label="vyw490",fontsize=16,color="green",shape="box"];2622[label="vyw500",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 -> 19[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2626[label="vyw490 < vyw500",fontsize=16,color="magenta"];2626 -> 2691[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2626 -> 2692[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2627 -> 20[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2627[label="vyw490 < vyw500",fontsize=16,color="magenta"];2627 -> 2693[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2627 -> 2694[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2628 -> 21[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2628[label="vyw490 < vyw500",fontsize=16,color="magenta"];2628 -> 2695[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2628 -> 2696[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2629 -> 22[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2629[label="vyw490 < vyw500",fontsize=16,color="magenta"];2629 -> 2697[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2629 -> 2698[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2630 -> 23[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2630[label="vyw490 < vyw500",fontsize=16,color="magenta"];2630 -> 2699[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2630 -> 2700[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2631 -> 24[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2631[label="vyw490 < vyw500",fontsize=16,color="magenta"];2631 -> 2701[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2631 -> 2702[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2632 -> 25[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2632[label="vyw490 < vyw500",fontsize=16,color="magenta"];2632 -> 2703[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2632 -> 2704[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2633 -> 26[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2633[label="vyw490 < vyw500",fontsize=16,color="magenta"];2633 -> 2705[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2633 -> 2706[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2634 -> 27[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2634[label="vyw490 < vyw500",fontsize=16,color="magenta"];2634 -> 2707[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2634 -> 2708[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2635 -> 28[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2635[label="vyw490 < vyw500",fontsize=16,color="magenta"];2635 -> 2709[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2635 -> 2710[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2636 -> 29[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2636[label="vyw490 < vyw500",fontsize=16,color="magenta"];2636 -> 2711[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2636 -> 2712[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2637 -> 30[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2637[label="vyw490 < vyw500",fontsize=16,color="magenta"];2637 -> 2713[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2637 -> 2714[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2638 -> 31[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2638[label="vyw490 < vyw500",fontsize=16,color="magenta"];2638 -> 2715[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2638 -> 2716[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2639 -> 32[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2639[label="vyw490 < vyw500",fontsize=16,color="magenta"];2639 -> 2717[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2639 -> 2718[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2640[label="vyw490 == vyw500",fontsize=16,color="blue",shape="box"];3769[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2640 -> 3769[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3769 -> 2719[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3770[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2640 -> 3770[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3770 -> 2720[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3771[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2640 -> 3771[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3771 -> 2721[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3772[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2640 -> 3772[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3772 -> 2722[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3773[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2640 -> 3773[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3773 -> 2723[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3774[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2640 -> 3774[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3774 -> 2724[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3775[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2640 -> 3775[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3775 -> 2725[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3776[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2640 -> 3776[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3776 -> 2726[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3777[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2640 -> 3777[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3777 -> 2727[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3778[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2640 -> 3778[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3778 -> 2728[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3779[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2640 -> 3779[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3779 -> 2729[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3780[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2640 -> 3780[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3780 -> 2730[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3781[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2640 -> 3781[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3781 -> 2731[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3782[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2640 -> 3782[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3782 -> 2732[label="",style="solid", color="blue", weight=3]; 30.83/14.36 2641[label="vyw491 <= vyw501",fontsize=16,color="blue",shape="box"];3783[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2641 -> 3783[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3783 -> 2733[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3784[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2641 -> 3784[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3784 -> 2734[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3785[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2641 -> 3785[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3785 -> 2735[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3786[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2641 -> 3786[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3786 -> 2736[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3787[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2641 -> 3787[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3787 -> 2737[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3788[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2641 -> 3788[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3788 -> 2738[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3789[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2641 -> 3789[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3789 -> 2739[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3790[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2641 -> 3790[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3790 -> 2740[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3791[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2641 -> 3791[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3791 -> 2741[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3792[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2641 -> 3792[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3792 -> 2742[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3793[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2641 -> 3793[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3793 -> 2743[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3794[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2641 -> 3794[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3794 -> 2744[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3795[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2641 -> 3795[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3795 -> 2745[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3796[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2641 -> 3796[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3796 -> 2746[label="",style="solid", color="blue", weight=3]; 30.83/14.36 2642[label="GT",fontsize=16,color="green",shape="box"];2643[label="GT",fontsize=16,color="green",shape="box"];2644[label="primPlusNat vyw1930 vyw4100",fontsize=16,color="burlywood",shape="triangle"];3797[label="vyw1930/Succ vyw19300",fontsize=10,color="white",style="solid",shape="box"];2644 -> 3797[label="",style="solid", color="burlywood", weight=9]; 30.83/14.36 3797 -> 2747[label="",style="solid", color="burlywood", weight=3]; 30.83/14.36 3798[label="vyw1930/Zero",fontsize=10,color="white",style="solid",shape="box"];2644 -> 3798[label="",style="solid", color="burlywood", weight=9]; 30.83/14.36 3798 -> 2748[label="",style="solid", color="burlywood", weight=3]; 30.83/14.36 2645[label="True",fontsize=16,color="green",shape="box"];2646[label="False",fontsize=16,color="green",shape="box"];2647[label="vyw500",fontsize=16,color="green",shape="box"];2648[label="vyw490",fontsize=16,color="green",shape="box"];2649[label="vyw500",fontsize=16,color="green",shape="box"];2650[label="vyw490",fontsize=16,color="green",shape="box"];2651[label="vyw500",fontsize=16,color="green",shape="box"];2652[label="vyw490",fontsize=16,color="green",shape="box"];2653[label="vyw500",fontsize=16,color="green",shape="box"];2654[label="vyw490",fontsize=16,color="green",shape="box"];2655[label="vyw500",fontsize=16,color="green",shape="box"];2656[label="vyw490",fontsize=16,color="green",shape="box"];2657[label="vyw500",fontsize=16,color="green",shape="box"];2658[label="vyw490",fontsize=16,color="green",shape="box"];2659[label="vyw500",fontsize=16,color="green",shape="box"];2660[label="vyw490",fontsize=16,color="green",shape="box"];2661[label="vyw500",fontsize=16,color="green",shape="box"];2662[label="vyw490",fontsize=16,color="green",shape="box"];2663[label="vyw500",fontsize=16,color="green",shape="box"];2664[label="vyw490",fontsize=16,color="green",shape="box"];2665[label="vyw500",fontsize=16,color="green",shape="box"];2666[label="vyw490",fontsize=16,color="green",shape="box"];2667[label="vyw500",fontsize=16,color="green",shape="box"];2668[label="vyw490",fontsize=16,color="green",shape="box"];2669[label="vyw500",fontsize=16,color="green",shape="box"];2670[label="vyw490",fontsize=16,color="green",shape="box"];2671[label="vyw500",fontsize=16,color="green",shape="box"];2672[label="vyw490",fontsize=16,color="green",shape="box"];2673[label="vyw500",fontsize=16,color="green",shape="box"];2674[label="vyw490",fontsize=16,color="green",shape="box"];2675 -> 539[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2675[label="vyw490 == vyw500",fontsize=16,color="magenta"];2675 -> 2749[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2675 -> 2750[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2676 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2676[label="vyw490 == vyw500",fontsize=16,color="magenta"];2676 -> 2751[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2676 -> 2752[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2677 -> 540[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2677[label="vyw490 == vyw500",fontsize=16,color="magenta"];2677 -> 2753[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2677 -> 2754[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2678 -> 546[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2678[label="vyw490 == vyw500",fontsize=16,color="magenta"];2678 -> 2755[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2678 -> 2756[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2679 -> 548[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2679[label="vyw490 == vyw500",fontsize=16,color="magenta"];2679 -> 2757[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2679 -> 2758[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2680 -> 545[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2680[label="vyw490 == vyw500",fontsize=16,color="magenta"];2680 -> 2759[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2680 -> 2760[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2681 -> 544[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2681[label="vyw490 == vyw500",fontsize=16,color="magenta"];2681 -> 2761[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2681 -> 2762[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2682 -> 536[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2682[label="vyw490 == vyw500",fontsize=16,color="magenta"];2682 -> 2763[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2682 -> 2764[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2683 -> 542[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2683[label="vyw490 == vyw500",fontsize=16,color="magenta"];2683 -> 2765[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2683 -> 2766[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2684 -> 543[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2684[label="vyw490 == vyw500",fontsize=16,color="magenta"];2684 -> 2767[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2684 -> 2768[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2685 -> 549[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2685[label="vyw490 == vyw500",fontsize=16,color="magenta"];2685 -> 2769[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2685 -> 2770[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2686 -> 541[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2686[label="vyw490 == vyw500",fontsize=16,color="magenta"];2686 -> 2771[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2686 -> 2772[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2687 -> 547[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2687[label="vyw490 == vyw500",fontsize=16,color="magenta"];2687 -> 2773[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2687 -> 2774[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2688 -> 538[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2688[label="vyw490 == vyw500",fontsize=16,color="magenta"];2688 -> 2775[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2688 -> 2776[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2689[label="vyw491 < vyw501",fontsize=16,color="blue",shape="box"];3799[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2689 -> 3799[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3799 -> 2777[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3800[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2689 -> 3800[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3800 -> 2778[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3801[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2689 -> 3801[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3801 -> 2779[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3802[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2689 -> 3802[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3802 -> 2780[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3803[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2689 -> 3803[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3803 -> 2781[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3804[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2689 -> 3804[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3804 -> 2782[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3805[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2689 -> 3805[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3805 -> 2783[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3806[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2689 -> 3806[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3806 -> 2784[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3807[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2689 -> 3807[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3807 -> 2785[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3808[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2689 -> 3808[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3808 -> 2786[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3809[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2689 -> 3809[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3809 -> 2787[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3810[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2689 -> 3810[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3810 -> 2788[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3811[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2689 -> 3811[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3811 -> 2789[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3812[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2689 -> 3812[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3812 -> 2790[label="",style="solid", color="blue", weight=3]; 30.83/14.36 2690 -> 1113[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2690[label="vyw491 == vyw501 && vyw492 <= vyw502",fontsize=16,color="magenta"];2690 -> 2791[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2690 -> 2792[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2691[label="vyw500",fontsize=16,color="green",shape="box"];2692[label="vyw490",fontsize=16,color="green",shape="box"];2693[label="vyw500",fontsize=16,color="green",shape="box"];2694[label="vyw490",fontsize=16,color="green",shape="box"];2695[label="vyw500",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 -> 539[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2719[label="vyw490 == vyw500",fontsize=16,color="magenta"];2719 -> 2793[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2719 -> 2794[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2720 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2720[label="vyw490 == vyw500",fontsize=16,color="magenta"];2720 -> 2795[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2720 -> 2796[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2721 -> 540[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2721[label="vyw490 == vyw500",fontsize=16,color="magenta"];2721 -> 2797[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2721 -> 2798[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2722 -> 546[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2722[label="vyw490 == vyw500",fontsize=16,color="magenta"];2722 -> 2799[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2722 -> 2800[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2723 -> 548[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2723[label="vyw490 == vyw500",fontsize=16,color="magenta"];2723 -> 2801[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2723 -> 2802[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2724 -> 545[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2724[label="vyw490 == vyw500",fontsize=16,color="magenta"];2724 -> 2803[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2724 -> 2804[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2725 -> 544[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2725[label="vyw490 == vyw500",fontsize=16,color="magenta"];2725 -> 2805[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2725 -> 2806[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2726 -> 536[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2726[label="vyw490 == vyw500",fontsize=16,color="magenta"];2726 -> 2807[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2726 -> 2808[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2727 -> 542[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2727[label="vyw490 == vyw500",fontsize=16,color="magenta"];2727 -> 2809[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2727 -> 2810[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2728 -> 543[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2728[label="vyw490 == vyw500",fontsize=16,color="magenta"];2728 -> 2811[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2728 -> 2812[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2729 -> 549[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2729[label="vyw490 == vyw500",fontsize=16,color="magenta"];2729 -> 2813[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2729 -> 2814[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2730 -> 541[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2730[label="vyw490 == vyw500",fontsize=16,color="magenta"];2730 -> 2815[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2730 -> 2816[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2731 -> 547[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2731[label="vyw490 == vyw500",fontsize=16,color="magenta"];2731 -> 2817[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2731 -> 2818[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2732 -> 538[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2732[label="vyw490 == vyw500",fontsize=16,color="magenta"];2732 -> 2819[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2732 -> 2820[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2733 -> 1442[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2733[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2733 -> 2821[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2733 -> 2822[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2734 -> 1443[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2734[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2734 -> 2823[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2734 -> 2824[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2735 -> 1444[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2735[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2735 -> 2825[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2735 -> 2826[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2736 -> 1445[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2736[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2736 -> 2827[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2736 -> 2828[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2737 -> 1446[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2737[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2737 -> 2829[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2737 -> 2830[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2738 -> 1447[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2738[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2738 -> 2831[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2738 -> 2832[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2739 -> 1448[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2739[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2739 -> 2833[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2739 -> 2834[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2740 -> 1449[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2740[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2740 -> 2835[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2740 -> 2836[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2741 -> 1450[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2741[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2741 -> 2837[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2741 -> 2838[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2742 -> 1451[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2742[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2742 -> 2839[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2742 -> 2840[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2743 -> 1452[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2743[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2743 -> 2841[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2743 -> 2842[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2744 -> 1453[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2744[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2744 -> 2843[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2744 -> 2844[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2745 -> 1454[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2745[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2745 -> 2845[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2745 -> 2846[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2746 -> 1455[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2746[label="vyw491 <= vyw501",fontsize=16,color="magenta"];2746 -> 2847[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2746 -> 2848[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2747[label="primPlusNat (Succ vyw19300) vyw4100",fontsize=16,color="burlywood",shape="box"];3813[label="vyw4100/Succ vyw41000",fontsize=10,color="white",style="solid",shape="box"];2747 -> 3813[label="",style="solid", color="burlywood", weight=9]; 30.83/14.36 3813 -> 2849[label="",style="solid", color="burlywood", weight=3]; 30.83/14.36 3814[label="vyw4100/Zero",fontsize=10,color="white",style="solid",shape="box"];2747 -> 3814[label="",style="solid", color="burlywood", weight=9]; 30.83/14.36 3814 -> 2850[label="",style="solid", color="burlywood", weight=3]; 30.83/14.36 2748[label="primPlusNat Zero vyw4100",fontsize=16,color="burlywood",shape="box"];3815[label="vyw4100/Succ vyw41000",fontsize=10,color="white",style="solid",shape="box"];2748 -> 3815[label="",style="solid", color="burlywood", weight=9]; 30.83/14.36 3815 -> 2851[label="",style="solid", color="burlywood", weight=3]; 30.83/14.36 3816[label="vyw4100/Zero",fontsize=10,color="white",style="solid",shape="box"];2748 -> 3816[label="",style="solid", color="burlywood", weight=9]; 30.83/14.36 3816 -> 2852[label="",style="solid", color="burlywood", weight=3]; 30.83/14.36 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="vyw490",fontsize=16,color="green",shape="box"];2769[label="vyw500",fontsize=16,color="green",shape="box"];2770[label="vyw490",fontsize=16,color="green",shape="box"];2771[label="vyw500",fontsize=16,color="green",shape="box"];2772[label="vyw490",fontsize=16,color="green",shape="box"];2773[label="vyw500",fontsize=16,color="green",shape="box"];2774[label="vyw490",fontsize=16,color="green",shape="box"];2775[label="vyw500",fontsize=16,color="green",shape="box"];2776[label="vyw490",fontsize=16,color="green",shape="box"];2777 -> 19[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2777[label="vyw491 < vyw501",fontsize=16,color="magenta"];2777 -> 2853[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2777 -> 2854[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2778 -> 20[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2778[label="vyw491 < vyw501",fontsize=16,color="magenta"];2778 -> 2855[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2778 -> 2856[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2779 -> 21[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2779[label="vyw491 < vyw501",fontsize=16,color="magenta"];2779 -> 2857[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2779 -> 2858[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2780 -> 22[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2780[label="vyw491 < vyw501",fontsize=16,color="magenta"];2780 -> 2859[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2780 -> 2860[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2781 -> 23[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2781[label="vyw491 < vyw501",fontsize=16,color="magenta"];2781 -> 2861[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2781 -> 2862[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2782 -> 24[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2782[label="vyw491 < vyw501",fontsize=16,color="magenta"];2782 -> 2863[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2782 -> 2864[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2783 -> 25[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2783[label="vyw491 < vyw501",fontsize=16,color="magenta"];2783 -> 2865[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2783 -> 2866[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2784 -> 26[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2784[label="vyw491 < vyw501",fontsize=16,color="magenta"];2784 -> 2867[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2784 -> 2868[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2785 -> 27[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2785[label="vyw491 < vyw501",fontsize=16,color="magenta"];2785 -> 2869[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2785 -> 2870[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2786 -> 28[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2786[label="vyw491 < vyw501",fontsize=16,color="magenta"];2786 -> 2871[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2786 -> 2872[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2787 -> 29[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2787[label="vyw491 < vyw501",fontsize=16,color="magenta"];2787 -> 2873[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2787 -> 2874[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2788 -> 30[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2788[label="vyw491 < vyw501",fontsize=16,color="magenta"];2788 -> 2875[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2788 -> 2876[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2789 -> 31[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2789[label="vyw491 < vyw501",fontsize=16,color="magenta"];2789 -> 2877[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2789 -> 2878[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2790 -> 32[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2790[label="vyw491 < vyw501",fontsize=16,color="magenta"];2790 -> 2879[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2790 -> 2880[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2791[label="vyw491 == vyw501",fontsize=16,color="blue",shape="box"];3817[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2791 -> 3817[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3817 -> 2881[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3818[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2791 -> 3818[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3818 -> 2882[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3819[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2791 -> 3819[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3819 -> 2883[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3820[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2791 -> 3820[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3820 -> 2884[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3821[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2791 -> 3821[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3821 -> 2885[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3822[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2791 -> 3822[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3822 -> 2886[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3823[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2791 -> 3823[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3823 -> 2887[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3824[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2791 -> 3824[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3824 -> 2888[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3825[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2791 -> 3825[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3825 -> 2889[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3826[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2791 -> 3826[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3826 -> 2890[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3827[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2791 -> 3827[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3827 -> 2891[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3828[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2791 -> 3828[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3828 -> 2892[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3829[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2791 -> 3829[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3829 -> 2893[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3830[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2791 -> 3830[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3830 -> 2894[label="",style="solid", color="blue", weight=3]; 30.83/14.36 2792[label="vyw492 <= vyw502",fontsize=16,color="blue",shape="box"];3831[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2792 -> 3831[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3831 -> 2895[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3832[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2792 -> 3832[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3832 -> 2896[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3833[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2792 -> 3833[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3833 -> 2897[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3834[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2792 -> 3834[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3834 -> 2898[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3835[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2792 -> 3835[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3835 -> 2899[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3836[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2792 -> 3836[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3836 -> 2900[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3837[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2792 -> 3837[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3837 -> 2901[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3838[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2792 -> 3838[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3838 -> 2902[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3839[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2792 -> 3839[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3839 -> 2903[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3840[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2792 -> 3840[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3840 -> 2904[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3841[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2792 -> 3841[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3841 -> 2905[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3842[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2792 -> 3842[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3842 -> 2906[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3843[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2792 -> 3843[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3843 -> 2907[label="",style="solid", color="blue", weight=3]; 30.83/14.36 3844[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2792 -> 3844[label="",style="solid", color="blue", weight=9]; 30.83/14.36 3844 -> 2908[label="",style="solid", color="blue", weight=3]; 30.83/14.36 2793[label="vyw500",fontsize=16,color="green",shape="box"];2794[label="vyw490",fontsize=16,color="green",shape="box"];2795[label="vyw500",fontsize=16,color="green",shape="box"];2796[label="vyw490",fontsize=16,color="green",shape="box"];2797[label="vyw500",fontsize=16,color="green",shape="box"];2798[label="vyw490",fontsize=16,color="green",shape="box"];2799[label="vyw500",fontsize=16,color="green",shape="box"];2800[label="vyw490",fontsize=16,color="green",shape="box"];2801[label="vyw500",fontsize=16,color="green",shape="box"];2802[label="vyw490",fontsize=16,color="green",shape="box"];2803[label="vyw500",fontsize=16,color="green",shape="box"];2804[label="vyw490",fontsize=16,color="green",shape="box"];2805[label="vyw500",fontsize=16,color="green",shape="box"];2806[label="vyw490",fontsize=16,color="green",shape="box"];2807[label="vyw500",fontsize=16,color="green",shape="box"];2808[label="vyw490",fontsize=16,color="green",shape="box"];2809[label="vyw500",fontsize=16,color="green",shape="box"];2810[label="vyw490",fontsize=16,color="green",shape="box"];2811[label="vyw500",fontsize=16,color="green",shape="box"];2812[label="vyw490",fontsize=16,color="green",shape="box"];2813[label="vyw500",fontsize=16,color="green",shape="box"];2814[label="vyw490",fontsize=16,color="green",shape="box"];2815[label="vyw500",fontsize=16,color="green",shape="box"];2816[label="vyw490",fontsize=16,color="green",shape="box"];2817[label="vyw500",fontsize=16,color="green",shape="box"];2818[label="vyw490",fontsize=16,color="green",shape="box"];2819[label="vyw500",fontsize=16,color="green",shape="box"];2820[label="vyw490",fontsize=16,color="green",shape="box"];2821[label="vyw501",fontsize=16,color="green",shape="box"];2822[label="vyw491",fontsize=16,color="green",shape="box"];2823[label="vyw501",fontsize=16,color="green",shape="box"];2824[label="vyw491",fontsize=16,color="green",shape="box"];2825[label="vyw501",fontsize=16,color="green",shape="box"];2826[label="vyw491",fontsize=16,color="green",shape="box"];2827[label="vyw501",fontsize=16,color="green",shape="box"];2828[label="vyw491",fontsize=16,color="green",shape="box"];2829[label="vyw501",fontsize=16,color="green",shape="box"];2830[label="vyw491",fontsize=16,color="green",shape="box"];2831[label="vyw501",fontsize=16,color="green",shape="box"];2832[label="vyw491",fontsize=16,color="green",shape="box"];2833[label="vyw501",fontsize=16,color="green",shape="box"];2834[label="vyw491",fontsize=16,color="green",shape="box"];2835[label="vyw501",fontsize=16,color="green",shape="box"];2836[label="vyw491",fontsize=16,color="green",shape="box"];2837[label="vyw501",fontsize=16,color="green",shape="box"];2838[label="vyw491",fontsize=16,color="green",shape="box"];2839[label="vyw501",fontsize=16,color="green",shape="box"];2840[label="vyw491",fontsize=16,color="green",shape="box"];2841[label="vyw501",fontsize=16,color="green",shape="box"];2842[label="vyw491",fontsize=16,color="green",shape="box"];2843[label="vyw501",fontsize=16,color="green",shape="box"];2844[label="vyw491",fontsize=16,color="green",shape="box"];2845[label="vyw501",fontsize=16,color="green",shape="box"];2846[label="vyw491",fontsize=16,color="green",shape="box"];2847[label="vyw501",fontsize=16,color="green",shape="box"];2848[label="vyw491",fontsize=16,color="green",shape="box"];2849[label="primPlusNat (Succ vyw19300) (Succ vyw41000)",fontsize=16,color="black",shape="box"];2849 -> 2909[label="",style="solid", color="black", weight=3]; 30.83/14.36 2850[label="primPlusNat (Succ vyw19300) Zero",fontsize=16,color="black",shape="box"];2850 -> 2910[label="",style="solid", color="black", weight=3]; 30.83/14.36 2851[label="primPlusNat Zero (Succ vyw41000)",fontsize=16,color="black",shape="box"];2851 -> 2911[label="",style="solid", color="black", weight=3]; 30.83/14.36 2852[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2852 -> 2912[label="",style="solid", color="black", weight=3]; 30.83/14.36 2853[label="vyw501",fontsize=16,color="green",shape="box"];2854[label="vyw491",fontsize=16,color="green",shape="box"];2855[label="vyw501",fontsize=16,color="green",shape="box"];2856[label="vyw491",fontsize=16,color="green",shape="box"];2857[label="vyw501",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 -> 539[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2881[label="vyw491 == vyw501",fontsize=16,color="magenta"];2881 -> 2913[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2881 -> 2914[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2882 -> 537[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2882[label="vyw491 == vyw501",fontsize=16,color="magenta"];2882 -> 2915[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2882 -> 2916[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2883 -> 540[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2883[label="vyw491 == vyw501",fontsize=16,color="magenta"];2883 -> 2917[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2883 -> 2918[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2884 -> 546[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2884[label="vyw491 == vyw501",fontsize=16,color="magenta"];2884 -> 2919[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2884 -> 2920[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2885 -> 548[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2885[label="vyw491 == vyw501",fontsize=16,color="magenta"];2885 -> 2921[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2885 -> 2922[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2886 -> 545[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2886[label="vyw491 == vyw501",fontsize=16,color="magenta"];2886 -> 2923[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2886 -> 2924[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2887 -> 544[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2887[label="vyw491 == vyw501",fontsize=16,color="magenta"];2887 -> 2925[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2887 -> 2926[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2888 -> 536[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2888[label="vyw491 == vyw501",fontsize=16,color="magenta"];2888 -> 2927[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2888 -> 2928[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2889 -> 542[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2889[label="vyw491 == vyw501",fontsize=16,color="magenta"];2889 -> 2929[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2889 -> 2930[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2890 -> 543[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2890[label="vyw491 == vyw501",fontsize=16,color="magenta"];2890 -> 2931[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2890 -> 2932[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2891 -> 549[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2891[label="vyw491 == vyw501",fontsize=16,color="magenta"];2891 -> 2933[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2891 -> 2934[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2892 -> 541[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2892[label="vyw491 == vyw501",fontsize=16,color="magenta"];2892 -> 2935[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2892 -> 2936[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2893 -> 547[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2893[label="vyw491 == vyw501",fontsize=16,color="magenta"];2893 -> 2937[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2893 -> 2938[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2894 -> 538[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2894[label="vyw491 == vyw501",fontsize=16,color="magenta"];2894 -> 2939[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2894 -> 2940[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2895 -> 1442[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2895[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2895 -> 2941[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2895 -> 2942[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2896 -> 1443[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2896[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2896 -> 2943[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2896 -> 2944[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2897 -> 1444[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2897[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2897 -> 2945[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2897 -> 2946[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2898 -> 1445[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2898[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2898 -> 2947[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2898 -> 2948[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2899 -> 1446[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2899[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2899 -> 2949[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2899 -> 2950[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2900 -> 1447[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2900[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2900 -> 2951[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2900 -> 2952[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2901 -> 1448[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2901[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2901 -> 2953[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2901 -> 2954[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2902 -> 1449[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2902[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2902 -> 2955[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2902 -> 2956[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2903 -> 1450[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2903[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2903 -> 2957[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2903 -> 2958[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2904 -> 1451[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2904[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2904 -> 2959[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2904 -> 2960[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2905 -> 1452[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2905[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2905 -> 2961[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2905 -> 2962[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2906 -> 1453[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2906[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2906 -> 2963[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2906 -> 2964[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2907 -> 1454[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2907[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2907 -> 2965[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2907 -> 2966[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2908 -> 1455[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2908[label="vyw492 <= vyw502",fontsize=16,color="magenta"];2908 -> 2967[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2908 -> 2968[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2909[label="Succ (Succ (primPlusNat vyw19300 vyw41000))",fontsize=16,color="green",shape="box"];2909 -> 2969[label="",style="dashed", color="green", weight=3]; 30.83/14.36 2910[label="Succ vyw19300",fontsize=16,color="green",shape="box"];2911[label="Succ vyw41000",fontsize=16,color="green",shape="box"];2912[label="Zero",fontsize=16,color="green",shape="box"];2913[label="vyw501",fontsize=16,color="green",shape="box"];2914[label="vyw491",fontsize=16,color="green",shape="box"];2915[label="vyw501",fontsize=16,color="green",shape="box"];2916[label="vyw491",fontsize=16,color="green",shape="box"];2917[label="vyw501",fontsize=16,color="green",shape="box"];2918[label="vyw491",fontsize=16,color="green",shape="box"];2919[label="vyw501",fontsize=16,color="green",shape="box"];2920[label="vyw491",fontsize=16,color="green",shape="box"];2921[label="vyw501",fontsize=16,color="green",shape="box"];2922[label="vyw491",fontsize=16,color="green",shape="box"];2923[label="vyw501",fontsize=16,color="green",shape="box"];2924[label="vyw491",fontsize=16,color="green",shape="box"];2925[label="vyw501",fontsize=16,color="green",shape="box"];2926[label="vyw491",fontsize=16,color="green",shape="box"];2927[label="vyw501",fontsize=16,color="green",shape="box"];2928[label="vyw491",fontsize=16,color="green",shape="box"];2929[label="vyw501",fontsize=16,color="green",shape="box"];2930[label="vyw491",fontsize=16,color="green",shape="box"];2931[label="vyw501",fontsize=16,color="green",shape="box"];2932[label="vyw491",fontsize=16,color="green",shape="box"];2933[label="vyw501",fontsize=16,color="green",shape="box"];2934[label="vyw491",fontsize=16,color="green",shape="box"];2935[label="vyw501",fontsize=16,color="green",shape="box"];2936[label="vyw491",fontsize=16,color="green",shape="box"];2937[label="vyw501",fontsize=16,color="green",shape="box"];2938[label="vyw491",fontsize=16,color="green",shape="box"];2939[label="vyw501",fontsize=16,color="green",shape="box"];2940[label="vyw491",fontsize=16,color="green",shape="box"];2941[label="vyw502",fontsize=16,color="green",shape="box"];2942[label="vyw492",fontsize=16,color="green",shape="box"];2943[label="vyw502",fontsize=16,color="green",shape="box"];2944[label="vyw492",fontsize=16,color="green",shape="box"];2945[label="vyw502",fontsize=16,color="green",shape="box"];2946[label="vyw492",fontsize=16,color="green",shape="box"];2947[label="vyw502",fontsize=16,color="green",shape="box"];2948[label="vyw492",fontsize=16,color="green",shape="box"];2949[label="vyw502",fontsize=16,color="green",shape="box"];2950[label="vyw492",fontsize=16,color="green",shape="box"];2951[label="vyw502",fontsize=16,color="green",shape="box"];2952[label="vyw492",fontsize=16,color="green",shape="box"];2953[label="vyw502",fontsize=16,color="green",shape="box"];2954[label="vyw492",fontsize=16,color="green",shape="box"];2955[label="vyw502",fontsize=16,color="green",shape="box"];2956[label="vyw492",fontsize=16,color="green",shape="box"];2957[label="vyw502",fontsize=16,color="green",shape="box"];2958[label="vyw492",fontsize=16,color="green",shape="box"];2959[label="vyw502",fontsize=16,color="green",shape="box"];2960[label="vyw492",fontsize=16,color="green",shape="box"];2961[label="vyw502",fontsize=16,color="green",shape="box"];2962[label="vyw492",fontsize=16,color="green",shape="box"];2963[label="vyw502",fontsize=16,color="green",shape="box"];2964[label="vyw492",fontsize=16,color="green",shape="box"];2965[label="vyw502",fontsize=16,color="green",shape="box"];2966[label="vyw492",fontsize=16,color="green",shape="box"];2967[label="vyw502",fontsize=16,color="green",shape="box"];2968[label="vyw492",fontsize=16,color="green",shape="box"];2969 -> 2644[label="",style="dashed", color="red", weight=0]; 30.83/14.36 2969[label="primPlusNat vyw19300 vyw41000",fontsize=16,color="magenta"];2969 -> 2970[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2969 -> 2971[label="",style="dashed", color="magenta", weight=3]; 30.83/14.36 2970[label="vyw19300",fontsize=16,color="green",shape="box"];2971[label="vyw41000",fontsize=16,color="green",shape="box"];} 30.83/14.36 30.83/14.36 ---------------------------------------- 30.83/14.36 30.83/14.36 (16) 30.83/14.36 Complex Obligation (AND) 30.83/14.36 30.83/14.36 ---------------------------------------- 30.83/14.36 30.83/14.36 (17) 30.83/14.36 Obligation: 30.83/14.36 Q DP problem: 30.83/14.36 The TRS P consists of the following rules: 30.83/14.36 30.83/14.36 new_primCmpNat(Succ(vyw400), Succ(vyw3000)) -> new_primCmpNat(vyw400, vyw3000) 30.83/14.36 30.83/14.36 R is empty. 30.83/14.36 Q is empty. 30.83/14.36 We have to consider all minimal (P,Q,R)-chains. 30.83/14.36 ---------------------------------------- 30.83/14.36 30.83/14.36 (18) QDPSizeChangeProof (EQUIVALENT) 30.83/14.36 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. 30.83/14.36 30.83/14.36 From the DPs we obtained the following set of size-change graphs: 30.83/14.36 *new_primCmpNat(Succ(vyw400), Succ(vyw3000)) -> new_primCmpNat(vyw400, vyw3000) 30.83/14.36 The graph contains the following edges 1 > 1, 2 > 2 30.83/14.36 30.83/14.36 30.83/14.36 ---------------------------------------- 30.83/14.36 30.83/14.36 (19) 30.83/14.36 YES 30.83/14.36 30.83/14.36 ---------------------------------------- 30.83/14.36 30.83/14.36 (20) 30.83/14.36 Obligation: 30.83/14.36 Q DP problem: 30.83/14.36 The TRS P consists of the following rules: 30.83/14.36 30.83/14.36 new_lookupFM(Branch(vyw30, vyw31, vyw32, vyw33, vyw34), vyw4, bd, be) -> new_lookupFM2(vyw30, vyw31, vyw32, vyw33, vyw34, vyw4, new_lt24(vyw4, vyw30, be), bd, be) 30.83/14.36 new_lookupFM2(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, h, ba) -> new_lookupFM1(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_gt(vyw18, vyw13, ba), h, ba) 30.83/14.36 new_lookupFM1(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bb, bc) -> new_lookupFM(vyw32, vyw33, bb, bc) 30.83/14.36 new_lookupFM2(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba) -> new_lookupFM(vyw16, vyw18, h, ba) 30.83/14.36 30.83/14.36 The TRS R consists of the following rules: 30.83/14.36 30.83/14.36 new_esEs30(vyw401, vyw3001, app(app(ty_@2, ddh), dea)) -> new_esEs19(vyw401, vyw3001, ddh, dea) 30.83/14.36 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.83/14.36 new_ltEs17(LT, EQ) -> True 30.83/14.36 new_primPlusNat0(Zero, Zero) -> Zero 30.83/14.36 new_esEs7(vyw42, vyw302, ty_Char) -> new_esEs18(vyw42, vyw302) 30.83/14.36 new_esEs7(vyw42, vyw302, ty_@0) -> new_esEs20(vyw42, vyw302) 30.83/14.36 new_pePe(True, vyw192) -> True 30.83/14.36 new_esEs32(vyw491, vyw501, ty_Integer) -> new_esEs24(vyw491, vyw501) 30.83/14.36 new_lt4(vyw4, vyw30) -> new_esEs12(new_compare8(vyw4, vyw30)) 30.83/14.36 new_ltEs18(vyw102, vyw105, ty_Bool) -> new_ltEs5(vyw102, vyw105) 30.83/14.36 new_esEs40(vyw113, vyw115, ty_@0) -> new_esEs20(vyw113, vyw115) 30.83/14.36 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.83/14.36 new_esEs40(vyw113, vyw115, ty_Char) -> new_esEs18(vyw113, vyw115) 30.83/14.36 new_lt20(vyw490, vyw500, app(app(ty_Either, dhe), dhf)) -> new_lt17(vyw490, vyw500, dhe, dhf) 30.83/14.36 new_esEs11(vyw41, vyw301, ty_Double) -> new_esEs23(vyw41, vyw301) 30.83/14.36 new_esEs9(vyw40, vyw300, ty_Bool) -> new_esEs25(vyw40, vyw300) 30.83/14.36 new_esEs28(vyw101, vyw104, ty_Char) -> new_esEs18(vyw101, vyw104) 30.83/14.36 new_esEs29(vyw400, vyw3000, app(ty_Ratio, dda)) -> new_esEs26(vyw400, vyw3000, dda) 30.83/14.36 new_esEs32(vyw491, vyw501, ty_Int) -> new_esEs15(vyw491, vyw501) 30.83/14.36 new_esEs37(vyw402, vyw3002, app(ty_Maybe, fdc)) -> new_esEs22(vyw402, vyw3002, fdc) 30.83/14.36 new_ltEs23(vyw49, vyw50, app(app(ty_@2, efc), efd)) -> new_ltEs16(vyw49, vyw50, efc, efd) 30.83/14.36 new_lt21(vyw491, vyw501, app(app(app(ty_@3, ead), eae), eaf)) -> new_lt16(vyw491, vyw501, ead, eae, eaf) 30.83/14.36 new_lt11(vyw100, vyw103, app(app(app(ty_@3, baf), bag), bah)) -> new_lt16(vyw100, vyw103, baf, bag, bah) 30.83/14.36 new_esEs4(vyw40, vyw300, app(app(app(ty_@3, bed), bee), bef)) -> new_esEs14(vyw40, vyw300, bed, bee, bef) 30.83/14.36 new_lt23(vyw113, vyw115, app(ty_Maybe, fef)) -> new_lt15(vyw113, vyw115, fef) 30.83/14.36 new_esEs27(vyw100, vyw103, app(ty_Maybe, bae)) -> new_esEs22(vyw100, vyw103, bae) 30.83/14.36 new_lt24(vyw4, vyw30, app(ty_Ratio, gb)) -> new_lt6(vyw4, vyw30, gb) 30.83/14.36 new_primMulNat0(Succ(vyw30000), Succ(vyw4100)) -> new_primPlusNat1(new_primMulNat0(vyw30000, Succ(vyw4100)), vyw4100) 30.83/14.36 new_esEs13(Right(vyw400), Right(vyw3000), dc, ty_Char) -> new_esEs18(vyw400, vyw3000) 30.83/14.36 new_ltEs21(vyw78, vyw79, ty_Float) -> new_ltEs14(vyw78, vyw79) 30.83/14.36 new_esEs10(vyw40, vyw300, ty_Ordering) -> new_esEs16(vyw40, vyw300) 30.83/14.36 new_esEs36(vyw401, vyw3001, ty_Double) -> new_esEs23(vyw401, vyw3001) 30.83/14.36 new_esEs13(Right(vyw400), Right(vyw3000), dc, ty_Float) -> new_esEs21(vyw400, vyw3000) 30.83/14.36 new_esEs28(vyw101, vyw104, ty_@0) -> new_esEs20(vyw101, vyw104) 30.83/14.36 new_esEs13(Left(vyw400), Left(vyw3000), ty_Double, cb) -> new_esEs23(vyw400, vyw3000) 30.83/14.36 new_ltEs23(vyw49, vyw50, ty_Char) -> new_ltEs9(vyw49, vyw50) 30.83/14.36 new_ltEs20(vyw492, vyw502, ty_Double) -> new_ltEs4(vyw492, vyw502) 30.83/14.36 new_lt24(vyw4, vyw30, app(ty_[], bf)) -> new_lt12(vyw4, vyw30, bf) 30.83/14.36 new_ltEs21(vyw78, vyw79, ty_@0) -> new_ltEs13(vyw78, vyw79) 30.83/14.36 new_esEs33(vyw400, vyw3000, app(ty_[], eed)) -> new_esEs17(vyw400, vyw3000, eed) 30.83/14.36 new_lt10(vyw101, vyw104, app(app(ty_Either, bcc), bcd)) -> new_lt17(vyw101, vyw104, bcc, bcd) 30.83/14.36 new_compare31(True, False) -> GT 30.83/14.36 new_esEs15(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) 30.83/14.36 new_compare5(Double(vyw40, Pos(vyw410)), Double(vyw300, Pos(vyw3010))) -> new_compare6(new_sr(vyw40, Pos(vyw3010)), new_sr(Pos(vyw410), vyw300)) 30.83/14.36 new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) 30.83/14.36 new_esEs28(vyw101, vyw104, ty_Float) -> new_esEs21(vyw101, vyw104) 30.83/14.36 new_ltEs20(vyw492, vyw502, ty_Integer) -> new_ltEs10(vyw492, vyw502) 30.83/14.36 new_lt24(vyw4, vyw30, app(app(ty_@2, gc), gd)) -> new_lt9(vyw4, vyw30, gc, gd) 30.83/14.36 new_compare25(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, True, hh, baa, bab) -> EQ 30.83/14.36 new_lt16(vyw4, vyw30, cfg, cfh, cga) -> new_esEs12(new_compare30(vyw4, vyw30, cfg, cfh, cga)) 30.83/14.36 new_esEs35(vyw400, vyw3000, ty_Ordering) -> new_esEs16(vyw400, vyw3000) 30.83/14.36 new_ltEs15(Left(vyw490), Left(vyw500), ty_Bool, fea) -> new_ltEs5(vyw490, vyw500) 30.83/14.36 new_esEs16(EQ, GT) -> False 30.83/14.36 new_esEs16(GT, EQ) -> False 30.83/14.36 new_ltEs17(LT, GT) -> True 30.83/14.36 new_not(True) -> False 30.83/14.36 new_esEs9(vyw40, vyw300, ty_Integer) -> new_esEs24(vyw40, vyw300) 30.83/14.36 new_primCompAux00(vyw43, LT) -> LT 30.83/14.36 new_lt22(vyw490, vyw500, ty_Float) -> new_lt7(vyw490, vyw500) 30.83/14.36 new_esEs22(Nothing, Just(vyw3000), ge) -> False 30.83/14.36 new_esEs22(Just(vyw400), Nothing, ge) -> False 30.83/14.36 new_esEs22(Nothing, Nothing, ge) -> True 30.83/14.36 new_lt19(vyw4, vyw30) -> new_esEs12(new_compare7(vyw4, vyw30)) 30.83/14.36 new_esEs9(vyw40, vyw300, ty_Int) -> new_esEs15(vyw40, vyw300) 30.83/14.36 new_lt11(vyw100, vyw103, ty_Bool) -> new_lt18(vyw100, vyw103) 30.83/14.36 new_ltEs17(EQ, GT) -> True 30.83/14.36 new_esEs30(vyw401, vyw3001, ty_Ordering) -> new_esEs16(vyw401, vyw3001) 30.83/14.36 new_esEs32(vyw491, vyw501, app(ty_Maybe, eac)) -> new_esEs22(vyw491, vyw501, eac) 30.83/14.36 new_esEs13(Left(vyw400), Left(vyw3000), app(app(ty_Either, da), db), cb) -> new_esEs13(vyw400, vyw3000, da, db) 30.83/14.36 new_esEs37(vyw402, vyw3002, ty_Int) -> new_esEs15(vyw402, vyw3002) 30.83/14.36 new_esEs35(vyw400, vyw3000, app(app(app(ty_@3, faa), fab), fac)) -> new_esEs14(vyw400, vyw3000, faa, fab, fac) 30.83/14.36 new_esEs7(vyw42, vyw302, app(ty_[], dbc)) -> new_esEs17(vyw42, vyw302, dbc) 30.83/14.36 new_esEs13(Right(vyw400), Right(vyw3000), dc, ty_@0) -> new_esEs20(vyw400, vyw3000) 30.83/14.36 new_primEqNat0(Succ(vyw4000), Zero) -> False 30.83/14.36 new_primEqNat0(Zero, Succ(vyw30000)) -> False 30.83/14.36 new_esEs18(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) 30.83/14.36 new_compare32(vyw40, vyw300, ty_Double) -> new_compare5(vyw40, vyw300) 30.83/14.36 new_esEs31(vyw490, vyw500, app(ty_Ratio, dgh)) -> new_esEs26(vyw490, vyw500, dgh) 30.83/14.36 new_compare18(vyw180, vyw181, vyw182, vyw183, False, bhg, bhh) -> GT 30.83/14.36 new_ltEs6(Just(vyw490), Just(vyw500), app(ty_Maybe, fa)) -> new_ltEs6(vyw490, vyw500, fa) 30.83/14.36 new_lt11(vyw100, vyw103, ty_Integer) -> new_lt5(vyw100, vyw103) 30.83/14.36 new_ltEs15(Right(vyw490), Right(vyw500), fdh, ty_Ordering) -> new_ltEs17(vyw490, vyw500) 30.83/14.36 new_compare7(EQ, EQ) -> EQ 30.83/14.36 new_ltEs17(LT, LT) -> True 30.83/14.36 new_compare13(@2(vyw40, vyw41), @2(vyw300, vyw301), gc, gd) -> new_compare27(vyw40, vyw41, vyw300, vyw301, new_asAs(new_esEs10(vyw40, vyw300, gc), new_esEs11(vyw41, vyw301, gd)), gc, gd) 30.83/14.36 new_esEs16(LT, EQ) -> False 30.83/14.36 new_esEs16(EQ, LT) -> False 30.83/14.36 new_esEs13(Right(vyw400), Right(vyw3000), dc, app(ty_Ratio, ec)) -> new_esEs26(vyw400, vyw3000, ec) 30.83/14.36 new_lt22(vyw490, vyw500, ty_Double) -> new_lt14(vyw490, vyw500) 30.83/14.36 new_esEs27(vyw100, vyw103, ty_Int) -> new_esEs15(vyw100, vyw103) 30.83/14.36 new_compare15(vyw143, vyw144, True, bea, beb) -> LT 30.83/14.36 new_ltEs16(@2(vyw490, vyw491), @2(vyw500, vyw501), efc, efd) -> new_pePe(new_lt22(vyw490, vyw500, efc), new_asAs(new_esEs34(vyw490, vyw500, efc), new_ltEs22(vyw491, vyw501, efd))) 30.83/14.36 new_primCmpInt(Pos(Succ(vyw400)), Neg(vyw300)) -> GT 30.83/14.36 new_esEs6(vyw41, vyw301, app(app(ty_Either, daf), dag)) -> new_esEs13(vyw41, vyw301, daf, dag) 30.83/14.36 new_esEs4(vyw40, vyw300, ty_Bool) -> new_esEs25(vyw40, vyw300) 30.83/14.36 new_ltEs19(vyw71, vyw72, ty_Float) -> new_ltEs14(vyw71, vyw72) 30.83/14.36 new_lt10(vyw101, vyw104, ty_Double) -> new_lt14(vyw101, vyw104) 30.83/14.36 new_ltEs5(False, True) -> True 30.83/14.36 new_esEs7(vyw42, vyw302, ty_Ordering) -> new_esEs16(vyw42, vyw302) 30.83/14.36 new_ltEs18(vyw102, vyw105, ty_Integer) -> new_ltEs10(vyw102, vyw105) 30.83/14.36 new_lt10(vyw101, vyw104, ty_Char) -> new_lt4(vyw101, vyw104) 30.83/14.36 new_ltEs9(vyw49, vyw50) -> new_fsEs(new_compare8(vyw49, vyw50)) 30.83/14.36 new_esEs7(vyw42, vyw302, app(app(ty_@2, dbd), dbe)) -> new_esEs19(vyw42, vyw302, dbd, dbe) 30.83/14.36 new_ltEs15(Left(vyw490), Left(vyw500), ty_Char, fea) -> new_ltEs9(vyw490, vyw500) 30.83/14.36 new_compare7(GT, GT) -> EQ 30.83/14.36 new_primCmpNat0(Zero, Succ(vyw3000)) -> LT 30.83/14.36 new_compare28(vyw71, vyw72, False, ceb, cec) -> new_compare15(vyw71, vyw72, new_ltEs19(vyw71, vyw72, ceb), ceb, cec) 30.83/14.36 new_ltEs23(vyw49, vyw50, ty_Bool) -> new_ltEs5(vyw49, vyw50) 30.83/14.36 new_ltEs15(Right(vyw490), Right(vyw500), fdh, ty_Int) -> new_ltEs8(vyw490, vyw500) 30.83/14.36 new_ltEs22(vyw491, vyw501, ty_Int) -> new_ltEs8(vyw491, vyw501) 30.83/14.36 new_esEs22(Just(vyw400), Just(vyw3000), app(ty_[], ha)) -> new_esEs17(vyw400, vyw3000, ha) 30.83/14.36 new_ltEs19(vyw71, vyw72, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs12(vyw71, vyw72, ceg, ceh, cfa) 30.83/14.36 new_esEs5(vyw40, vyw300, ty_Double) -> new_esEs23(vyw40, vyw300) 30.83/14.36 new_ltEs15(Right(vyw490), Left(vyw500), fdh, fea) -> False 30.83/14.36 new_compare11(Float(vyw40, Pos(vyw410)), Float(vyw300, Pos(vyw3010))) -> new_compare6(new_sr(vyw40, Pos(vyw3010)), new_sr(Pos(vyw410), vyw300)) 30.83/14.36 new_esEs33(vyw400, vyw3000, ty_Double) -> new_esEs23(vyw400, vyw3000) 30.83/14.36 new_compare19(Right(vyw40), Right(vyw300), cbc, cbd) -> new_compare29(vyw40, vyw300, new_esEs9(vyw40, vyw300, cbd), cbc, cbd) 30.83/14.36 new_lt15(vyw4, vyw30, bec) -> new_esEs12(new_compare16(vyw4, vyw30, bec)) 30.83/14.36 new_ltEs23(vyw49, vyw50, app(ty_Ratio, cbe)) -> new_ltEs11(vyw49, vyw50, cbe) 30.83/14.36 new_gt(vyw18, vyw13, ty_Bool) -> new_esEs41(new_compare31(vyw18, vyw13)) 30.83/14.36 new_lt22(vyw490, vyw500, ty_Char) -> new_lt4(vyw490, vyw500) 30.83/14.36 new_lt23(vyw113, vyw115, ty_Bool) -> new_lt18(vyw113, vyw115) 30.83/14.36 new_lt5(vyw4, vyw30) -> new_esEs12(new_compare9(vyw4, vyw30)) 30.83/14.36 new_ltEs15(Right(vyw490), Right(vyw500), fdh, ty_Integer) -> new_ltEs10(vyw490, vyw500) 30.83/14.36 new_compare31(False, False) -> EQ 30.83/14.36 new_ltEs19(vyw71, vyw72, ty_@0) -> new_ltEs13(vyw71, vyw72) 30.83/14.36 new_esEs28(vyw101, vyw104, ty_Ordering) -> new_esEs16(vyw101, vyw104) 30.83/14.36 new_esEs30(vyw401, vyw3001, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs14(vyw401, vyw3001, ddd, dde, ddf) 30.83/14.36 new_esEs33(vyw400, vyw3000, ty_Char) -> new_esEs18(vyw400, vyw3000) 30.83/14.36 new_ltEs18(vyw102, vyw105, ty_Double) -> new_ltEs4(vyw102, vyw105) 30.83/14.36 new_ltEs10(vyw49, vyw50) -> new_fsEs(new_compare9(vyw49, vyw50)) 30.83/14.36 new_esEs36(vyw401, vyw3001, app(ty_Ratio, fcb)) -> new_esEs26(vyw401, vyw3001, fcb) 30.83/14.36 new_esEs17([], [], beg) -> True 30.83/14.36 new_ltEs15(Left(vyw490), Left(vyw500), app(ty_Maybe, fhb), fea) -> new_ltEs6(vyw490, vyw500, fhb) 30.83/14.36 new_esEs10(vyw40, vyw300, ty_Char) -> new_esEs18(vyw40, vyw300) 30.83/14.36 new_esEs30(vyw401, vyw3001, app(ty_[], ddg)) -> new_esEs17(vyw401, vyw3001, ddg) 30.83/14.36 new_esEs13(Right(vyw400), Right(vyw3000), dc, ty_Ordering) -> new_esEs16(vyw400, vyw3000) 30.83/14.36 new_ltEs15(Right(vyw490), Right(vyw500), fdh, app(app(ty_Either, gah), gba)) -> new_ltEs15(vyw490, vyw500, gah, gba) 30.83/14.36 new_gt(vyw18, vyw13, app(app(ty_Either, cag), cah)) -> new_esEs41(new_compare19(vyw18, vyw13, cag, cah)) 30.83/14.36 new_esEs10(vyw40, vyw300, ty_Integer) -> new_esEs24(vyw40, vyw300) 30.83/14.36 new_compare32(vyw40, vyw300, app(ty_[], def)) -> new_compare4(vyw40, vyw300, def) 30.83/14.36 new_esEs31(vyw490, vyw500, ty_Double) -> new_esEs23(vyw490, vyw500) 30.83/14.36 new_esEs30(vyw401, vyw3001, ty_Bool) -> new_esEs25(vyw401, vyw3001) 30.83/14.36 new_ltEs22(vyw491, vyw501, ty_Ordering) -> new_ltEs17(vyw491, vyw501) 30.83/14.36 new_compare32(vyw40, vyw300, app(ty_Maybe, deh)) -> new_compare16(vyw40, vyw300, deh) 30.83/14.36 new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 30.83/14.36 new_esEs4(vyw40, vyw300, ty_@0) -> new_esEs20(vyw40, vyw300) 30.83/14.36 new_esEs37(vyw402, vyw3002, app(app(ty_Either, fde), fdf)) -> new_esEs13(vyw402, vyw3002, fde, fdf) 30.83/14.36 new_primCmpInt(Neg(Zero), Pos(Succ(vyw3000))) -> LT 30.83/14.36 new_esEs13(Right(vyw400), Right(vyw3000), dc, app(app(app(ty_@3, dd), de), df)) -> new_esEs14(vyw400, vyw3000, dd, de, df) 30.83/14.36 new_primMulInt(Pos(vyw3000), Pos(vyw410)) -> Pos(new_primMulNat0(vyw3000, vyw410)) 30.83/14.36 new_lt14(vyw4, vyw30) -> new_esEs12(new_compare5(vyw4, vyw30)) 30.83/14.36 new_ltEs15(Left(vyw490), Right(vyw500), fdh, fea) -> True 30.83/14.36 new_compare19(Right(vyw40), Left(vyw300), cbc, cbd) -> GT 30.83/14.36 new_ltEs7(vyw49, vyw50, cff) -> new_fsEs(new_compare4(vyw49, vyw50, cff)) 30.83/14.36 new_esEs10(vyw40, vyw300, ty_Bool) -> new_esEs25(vyw40, vyw300) 30.83/14.36 new_compare7(LT, LT) -> EQ 30.83/14.36 new_primMulNat0(Succ(vyw30000), Zero) -> Zero 30.83/14.36 new_primMulNat0(Zero, Succ(vyw4100)) -> Zero 30.83/14.36 new_esEs7(vyw42, vyw302, ty_Float) -> new_esEs21(vyw42, vyw302) 30.83/14.36 new_lt10(vyw101, vyw104, ty_Float) -> new_lt7(vyw101, vyw104) 30.83/14.36 new_ltEs6(Just(vyw490), Just(vyw500), ty_Float) -> new_ltEs14(vyw490, vyw500) 30.83/14.36 new_esEs6(vyw41, vyw301, ty_Integer) -> new_esEs24(vyw41, vyw301) 30.83/14.36 new_esEs37(vyw402, vyw3002, app(app(app(ty_@3, fce), fcf), fcg)) -> new_esEs14(vyw402, vyw3002, fce, fcf, fcg) 30.83/14.36 new_ltEs18(vyw102, vyw105, app(app(ty_Either, bde), bdf)) -> new_ltEs15(vyw102, vyw105, bde, bdf) 30.83/14.36 new_compare26(vyw49, vyw50, True, fdg) -> EQ 30.83/14.36 new_primPlusNat1(Succ(vyw1930), vyw4100) -> Succ(Succ(new_primPlusNat0(vyw1930, vyw4100))) 30.83/14.36 new_ltEs24(vyw114, vyw116, ty_Float) -> new_ltEs14(vyw114, vyw116) 30.83/14.36 new_ltEs6(Just(vyw490), Just(vyw500), ty_Int) -> new_ltEs8(vyw490, vyw500) 30.83/14.36 new_esEs11(vyw41, vyw301, ty_Float) -> new_esEs21(vyw41, vyw301) 30.83/14.36 new_esEs6(vyw41, vyw301, ty_Bool) -> new_esEs25(vyw41, vyw301) 30.83/14.36 new_primPlusNat0(Succ(vyw19300), Zero) -> Succ(vyw19300) 30.83/14.36 new_primPlusNat0(Zero, Succ(vyw41000)) -> Succ(vyw41000) 30.83/14.36 new_esEs28(vyw101, vyw104, app(ty_[], bbe)) -> new_esEs17(vyw101, vyw104, bbe) 30.83/14.36 new_esEs35(vyw400, vyw3000, app(app(ty_@2, fae), faf)) -> new_esEs19(vyw400, vyw3000, fae, faf) 30.83/14.36 new_lt24(vyw4, vyw30, app(app(app(ty_@3, cfg), cfh), cga)) -> new_lt16(vyw4, vyw30, cfg, cfh, cga) 30.83/14.36 new_primPlusNat1(Zero, vyw4100) -> Succ(vyw4100) 30.83/14.36 new_lt21(vyw491, vyw501, app(ty_Ratio, eab)) -> new_lt6(vyw491, vyw501, eab) 30.83/14.36 new_ltEs15(Right(vyw490), Right(vyw500), fdh, ty_Double) -> new_ltEs4(vyw490, vyw500) 30.83/14.36 new_esEs27(vyw100, vyw103, app(app(ty_Either, bba), bbb)) -> new_esEs13(vyw100, vyw103, bba, bbb) 30.83/14.36 new_esEs16(LT, GT) -> False 30.83/14.36 new_esEs16(GT, LT) -> False 30.83/14.36 new_ltEs6(Nothing, Just(vyw500), ef) -> True 30.83/14.36 new_esEs28(vyw101, vyw104, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs14(vyw101, vyw104, bbh, bca, bcb) 30.83/14.36 new_esEs10(vyw40, vyw300, app(app(ty_@2, bfg), bfh)) -> new_esEs19(vyw40, vyw300, bfg, bfh) 30.83/14.36 new_esEs40(vyw113, vyw115, app(app(app(ty_@3, feg), feh), ffa)) -> new_esEs14(vyw113, vyw115, feg, feh, ffa) 30.83/14.36 new_esEs30(vyw401, vyw3001, ty_@0) -> new_esEs20(vyw401, vyw3001) 30.83/14.36 new_esEs33(vyw400, vyw3000, app(app(ty_@2, eee), eef)) -> new_esEs19(vyw400, vyw3000, eee, eef) 30.83/14.36 new_esEs12(LT) -> True 30.83/14.36 new_esEs9(vyw40, vyw300, app(app(ty_@2, cdd), cde)) -> new_esEs19(vyw40, vyw300, cdd, cde) 30.83/14.36 new_esEs30(vyw401, vyw3001, ty_Char) -> new_esEs18(vyw401, vyw3001) 30.83/14.36 new_esEs32(vyw491, vyw501, ty_Bool) -> new_esEs25(vyw491, vyw501) 30.83/14.36 new_esEs6(vyw41, vyw301, app(ty_Maybe, dad)) -> new_esEs22(vyw41, vyw301, dad) 30.83/14.36 new_esEs13(Right(vyw400), Right(vyw3000), dc, app(ty_Maybe, eb)) -> new_esEs22(vyw400, vyw3000, eb) 30.83/14.36 new_lt21(vyw491, vyw501, app(ty_[], eaa)) -> new_lt12(vyw491, vyw501, eaa) 30.83/14.36 new_esEs40(vyw113, vyw115, app(ty_[], fed)) -> new_esEs17(vyw113, vyw115, fed) 30.83/14.36 new_lt20(vyw490, vyw500, ty_Float) -> new_lt7(vyw490, vyw500) 30.83/14.36 new_ltEs21(vyw78, vyw79, app(ty_Ratio, ech)) -> new_ltEs11(vyw78, vyw79, ech) 30.83/14.36 new_ltEs15(Right(vyw490), Right(vyw500), fdh, app(ty_Ratio, gac)) -> new_ltEs11(vyw490, vyw500, gac) 30.83/14.36 new_esEs40(vyw113, vyw115, ty_Ordering) -> new_esEs16(vyw113, vyw115) 30.83/14.36 new_ltEs15(Left(vyw490), Left(vyw500), app(ty_[], fgh), fea) -> new_ltEs7(vyw490, vyw500, fgh) 30.83/14.36 new_ltEs15(Right(vyw490), Right(vyw500), fdh, app(app(ty_@2, gbb), gbc)) -> new_ltEs16(vyw490, vyw500, gbb, gbc) 30.83/14.36 new_esEs27(vyw100, vyw103, app(ty_Ratio, bad)) -> new_esEs26(vyw100, vyw103, bad) 30.83/14.36 new_esEs8(vyw40, vyw300, ty_Double) -> new_esEs23(vyw40, vyw300) 30.83/14.36 new_compare9(Integer(vyw40), Integer(vyw300)) -> new_primCmpInt(vyw40, vyw300) 30.83/14.36 new_esEs7(vyw42, vyw302, ty_Bool) -> new_esEs25(vyw42, vyw302) 30.83/14.36 new_ltEs18(vyw102, vyw105, ty_Char) -> new_ltEs9(vyw102, vyw105) 30.83/14.36 new_esEs33(vyw400, vyw3000, ty_Float) -> new_esEs21(vyw400, vyw3000) 30.83/14.36 new_esEs5(vyw40, vyw300, app(ty_[], cgg)) -> new_esEs17(vyw40, vyw300, cgg) 30.83/14.36 new_esEs35(vyw400, vyw3000, ty_Int) -> new_esEs15(vyw400, vyw3000) 30.83/14.36 new_esEs5(vyw40, vyw300, ty_@0) -> new_esEs20(vyw40, vyw300) 30.83/14.36 new_ltEs17(EQ, EQ) -> True 30.83/14.36 new_esEs29(vyw400, vyw3000, app(ty_Maybe, dch)) -> new_esEs22(vyw400, vyw3000, dch) 30.83/14.36 new_ltEs20(vyw492, vyw502, ty_Ordering) -> new_ltEs17(vyw492, vyw502) 30.83/14.36 new_esEs10(vyw40, vyw300, ty_Float) -> new_esEs21(vyw40, vyw300) 30.83/14.36 new_compare6(vyw4, vyw30) -> new_primCmpInt(vyw4, vyw30) 30.83/14.36 new_esEs4(vyw40, vyw300, ty_Ordering) -> new_esEs16(vyw40, vyw300) 30.83/14.36 new_ltEs20(vyw492, vyw502, app(app(ty_Either, eca), ecb)) -> new_ltEs15(vyw492, vyw502, eca, ecb) 30.83/14.36 new_esEs27(vyw100, vyw103, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs14(vyw100, vyw103, baf, bag, bah) 30.83/14.36 new_esEs25(True, True) -> True 30.83/14.36 new_ltEs17(GT, LT) -> False 30.83/14.36 new_esEs37(vyw402, vyw3002, app(ty_Ratio, fdd)) -> new_esEs26(vyw402, vyw3002, fdd) 30.83/14.36 new_ltEs17(EQ, LT) -> False 30.83/14.36 new_lt21(vyw491, vyw501, ty_@0) -> new_lt8(vyw491, vyw501) 30.83/14.36 new_esEs12(GT) -> False 30.83/14.36 new_esEs12(EQ) -> False 30.83/14.36 new_esEs22(Just(vyw400), Just(vyw3000), app(ty_Ratio, he)) -> new_esEs26(vyw400, vyw3000, he) 30.83/14.36 new_compare11(Float(vyw40, Pos(vyw410)), Float(vyw300, Neg(vyw3010))) -> new_compare6(new_sr(vyw40, Pos(vyw3010)), new_sr(Neg(vyw410), vyw300)) 30.83/14.36 new_compare11(Float(vyw40, Neg(vyw410)), Float(vyw300, Pos(vyw3010))) -> new_compare6(new_sr(vyw40, Neg(vyw3010)), new_sr(Pos(vyw410), vyw300)) 30.83/14.36 new_esEs11(vyw41, vyw301, ty_Char) -> new_esEs18(vyw41, vyw301) 30.83/14.36 new_lt24(vyw4, vyw30, ty_Integer) -> new_lt5(vyw4, vyw30) 30.83/14.36 new_esEs13(Left(vyw400), Left(vyw3000), ty_Char, cb) -> new_esEs18(vyw400, vyw3000) 30.83/14.36 new_esEs37(vyw402, vyw3002, ty_Ordering) -> new_esEs16(vyw402, vyw3002) 30.83/14.36 new_esEs4(vyw40, vyw300, ty_Float) -> new_esEs21(vyw40, vyw300) 30.83/14.36 new_esEs31(vyw490, vyw500, app(app(ty_Either, dhe), dhf)) -> new_esEs13(vyw490, vyw500, dhe, dhf) 30.83/14.36 new_ltEs5(False, False) -> True 30.83/14.36 new_lt11(vyw100, vyw103, app(ty_Ratio, bad)) -> new_lt6(vyw100, vyw103, bad) 30.83/14.36 new_esEs40(vyw113, vyw115, ty_Integer) -> new_esEs24(vyw113, vyw115) 30.83/14.36 new_esEs28(vyw101, vyw104, ty_Double) -> new_esEs23(vyw101, vyw104) 30.83/14.36 new_ltEs18(vyw102, vyw105, ty_@0) -> new_ltEs13(vyw102, vyw105) 30.83/14.36 new_ltEs6(Just(vyw490), Just(vyw500), ty_@0) -> new_ltEs13(vyw490, vyw500) 30.83/14.36 new_esEs5(vyw40, vyw300, ty_Char) -> new_esEs18(vyw40, vyw300) 30.83/14.36 new_lt13(vyw4, vyw30) -> new_esEs12(new_compare6(vyw4, vyw30)) 30.83/14.36 new_esEs32(vyw491, vyw501, app(app(ty_@2, eba), ebb)) -> new_esEs19(vyw491, vyw501, eba, ebb) 30.83/14.36 new_esEs32(vyw491, vyw501, ty_Char) -> new_esEs18(vyw491, vyw501) 30.83/14.36 new_esEs34(vyw490, vyw500, ty_Int) -> new_esEs15(vyw490, vyw500) 30.83/14.36 new_lt22(vyw490, vyw500, app(app(ty_Either, egc), egd)) -> new_lt17(vyw490, vyw500, egc, egd) 30.83/14.36 new_esEs39(vyw401, vyw3001, ty_Integer) -> new_esEs24(vyw401, vyw3001) 30.83/14.36 new_esEs22(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs16(vyw400, vyw3000) 30.83/14.36 new_gt(vyw18, vyw13, app(app(ty_@2, cba), cbb)) -> new_esEs41(new_compare13(vyw18, vyw13, cba, cbb)) 30.83/14.36 new_esEs36(vyw401, vyw3001, ty_@0) -> new_esEs20(vyw401, vyw3001) 30.83/14.36 new_gt(vyw18, vyw13, ty_Int) -> new_esEs41(new_compare6(vyw18, vyw13)) 30.83/14.36 new_compare7(GT, EQ) -> GT 30.83/14.36 new_esEs11(vyw41, vyw301, ty_@0) -> new_esEs20(vyw41, vyw301) 30.83/14.36 new_ltEs6(Just(vyw490), Just(vyw500), ty_Ordering) -> new_ltEs17(vyw490, vyw500) 30.83/14.36 new_ltEs18(vyw102, vyw105, ty_Ordering) -> new_ltEs17(vyw102, vyw105) 30.83/14.36 new_esEs28(vyw101, vyw104, ty_Int) -> new_esEs15(vyw101, vyw104) 30.83/14.36 new_esEs13(Left(vyw400), Left(vyw3000), ty_@0, cb) -> new_esEs20(vyw400, vyw3000) 30.83/14.36 new_compare32(vyw40, vyw300, app(app(app(ty_@3, dfa), dfb), dfc)) -> new_compare30(vyw40, vyw300, dfa, dfb, dfc) 30.83/14.36 new_ltEs23(vyw49, vyw50, ty_Double) -> new_ltEs4(vyw49, vyw50) 30.83/14.36 new_ltEs15(Left(vyw490), Left(vyw500), ty_Ordering, fea) -> new_ltEs17(vyw490, vyw500) 30.83/14.36 new_lt24(vyw4, vyw30, ty_Bool) -> new_lt18(vyw4, vyw30) 30.83/14.36 new_lt23(vyw113, vyw115, app(app(app(ty_@3, feg), feh), ffa)) -> new_lt16(vyw113, vyw115, feg, feh, ffa) 30.83/14.36 new_lt24(vyw4, vyw30, ty_Float) -> new_lt7(vyw4, vyw30) 30.83/14.36 new_compare32(vyw40, vyw300, ty_Integer) -> new_compare9(vyw40, vyw300) 30.83/14.36 new_primCmpInt(Pos(Succ(vyw400)), Pos(vyw300)) -> new_primCmpNat0(Succ(vyw400), vyw300) 30.83/14.36 new_esEs9(vyw40, vyw300, app(ty_[], cdc)) -> new_esEs17(vyw40, vyw300, cdc) 30.83/14.36 new_compare29(vyw78, vyw79, False, ece, ecf) -> new_compare110(vyw78, vyw79, new_ltEs21(vyw78, vyw79, ecf), ece, ecf) 30.83/14.36 new_lt23(vyw113, vyw115, ty_Char) -> new_lt4(vyw113, vyw115) 30.83/14.36 new_compare17(vyw180, vyw181, vyw182, vyw183, True, vyw185, bhg, bhh) -> new_compare18(vyw180, vyw181, vyw182, vyw183, True, bhg, bhh) 30.83/14.36 new_compare32(vyw40, vyw300, ty_Float) -> new_compare11(vyw40, vyw300) 30.83/14.36 new_primCompAux00(vyw43, EQ) -> vyw43 30.83/14.36 new_compare32(vyw40, vyw300, ty_Bool) -> new_compare31(vyw40, vyw300) 30.83/14.36 new_esEs4(vyw40, vyw300, app(ty_Maybe, ge)) -> new_esEs22(vyw40, vyw300, ge) 30.83/14.36 new_esEs8(vyw40, vyw300, app(ty_[], cca)) -> new_esEs17(vyw40, vyw300, cca) 30.83/14.36 new_compare4(:(vyw40, vyw41), [], bf) -> GT 30.83/14.36 new_esEs40(vyw113, vyw115, ty_Bool) -> new_esEs25(vyw113, vyw115) 30.83/14.36 new_esEs33(vyw400, vyw3000, ty_Bool) -> new_esEs25(vyw400, vyw3000) 30.83/14.36 new_lt22(vyw490, vyw500, app(ty_[], efe)) -> new_lt12(vyw490, vyw500, efe) 30.83/14.36 new_esEs35(vyw400, vyw3000, app(app(ty_Either, fba), fbb)) -> new_esEs13(vyw400, vyw3000, fba, fbb) 30.83/14.36 new_lt23(vyw113, vyw115, ty_Float) -> new_lt7(vyw113, vyw115) 30.83/14.36 new_esEs22(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs20(vyw400, vyw3000) 30.83/14.36 new_esEs32(vyw491, vyw501, ty_Ordering) -> new_esEs16(vyw491, vyw501) 30.83/14.36 new_lt24(vyw4, vyw30, ty_Ordering) -> new_lt19(vyw4, vyw30) 30.83/14.36 new_esEs36(vyw401, vyw3001, app(app(ty_Either, fcc), fcd)) -> new_esEs13(vyw401, vyw3001, fcc, fcd) 30.83/14.36 new_ltEs24(vyw114, vyw116, app(ty_[], fff)) -> new_ltEs7(vyw114, vyw116, fff) 30.83/14.36 new_esEs35(vyw400, vyw3000, ty_Integer) -> new_esEs24(vyw400, vyw3000) 30.83/14.36 new_esEs35(vyw400, vyw3000, ty_Float) -> new_esEs21(vyw400, vyw3000) 30.83/14.36 new_ltEs15(Right(vyw490), Right(vyw500), fdh, ty_Char) -> new_ltEs9(vyw490, vyw500) 30.83/14.36 new_esEs30(vyw401, vyw3001, ty_Double) -> new_esEs23(vyw401, vyw3001) 30.83/14.36 new_esEs37(vyw402, vyw3002, ty_@0) -> new_esEs20(vyw402, vyw3002) 30.83/14.36 new_ltEs15(Left(vyw490), Left(vyw500), ty_Int, fea) -> new_ltEs8(vyw490, vyw500) 30.83/14.36 new_esEs10(vyw40, vyw300, ty_Int) -> new_esEs15(vyw40, vyw300) 30.83/14.36 new_lt23(vyw113, vyw115, ty_Ordering) -> new_lt19(vyw113, vyw115) 30.83/14.36 new_ltEs18(vyw102, vyw105, app(ty_[], bcg)) -> new_ltEs7(vyw102, vyw105, bcg) 30.83/14.36 new_esEs10(vyw40, vyw300, app(ty_Maybe, bga)) -> new_esEs22(vyw40, vyw300, bga) 30.83/14.36 new_esEs34(vyw490, vyw500, ty_Integer) -> new_esEs24(vyw490, vyw500) 30.83/14.36 new_esEs29(vyw400, vyw3000, ty_Double) -> new_esEs23(vyw400, vyw3000) 30.83/14.36 new_esEs36(vyw401, vyw3001, ty_Float) -> new_esEs21(vyw401, vyw3001) 30.83/14.36 new_esEs29(vyw400, vyw3000, app(app(ty_Either, ddb), ddc)) -> new_esEs13(vyw400, vyw3000, ddb, ddc) 30.83/14.36 new_ltEs15(Left(vyw490), Left(vyw500), ty_@0, fea) -> new_ltEs13(vyw490, vyw500) 30.83/14.36 new_esEs4(vyw40, vyw300, ty_Char) -> new_esEs18(vyw40, vyw300) 30.83/14.36 new_esEs32(vyw491, vyw501, ty_@0) -> new_esEs20(vyw491, vyw501) 30.83/14.36 new_esEs13(Left(vyw400), Left(vyw3000), ty_Ordering, cb) -> new_esEs16(vyw400, vyw3000) 30.83/14.36 new_ltEs24(vyw114, vyw116, app(ty_Ratio, ffg)) -> new_ltEs11(vyw114, vyw116, ffg) 30.83/14.36 new_compare32(vyw40, vyw300, ty_Char) -> new_compare8(vyw40, vyw300) 30.83/14.36 new_esEs34(vyw490, vyw500, ty_Bool) -> new_esEs25(vyw490, vyw500) 30.83/14.36 new_esEs14(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bed, bee, bef) -> new_asAs(new_esEs35(vyw400, vyw3000, bed), new_asAs(new_esEs36(vyw401, vyw3001, bee), new_esEs37(vyw402, vyw3002, bef))) 30.83/14.36 new_esEs41(GT) -> True 30.83/14.36 new_lt23(vyw113, vyw115, ty_Integer) -> new_lt5(vyw113, vyw115) 30.83/14.36 new_lt21(vyw491, vyw501, app(ty_Maybe, eac)) -> new_lt15(vyw491, vyw501, eac) 30.83/14.36 new_lt23(vyw113, vyw115, app(app(ty_Either, ffb), ffc)) -> new_lt17(vyw113, vyw115, ffb, ffc) 30.83/14.36 new_compare4([], [], bf) -> EQ 30.83/14.36 new_lt11(vyw100, vyw103, app(app(ty_@2, bbc), bbd)) -> new_lt9(vyw100, vyw103, bbc, bbd) 30.83/14.36 new_esEs16(EQ, EQ) -> True 30.83/14.36 new_ltEs6(Just(vyw490), Just(vyw500), app(app(app(ty_@3, fb), fc), fd)) -> new_ltEs12(vyw490, vyw500, fb, fc, fd) 30.83/14.36 new_esEs36(vyw401, vyw3001, ty_Ordering) -> new_esEs16(vyw401, vyw3001) 30.83/14.36 new_esEs31(vyw490, vyw500, ty_Int) -> new_esEs15(vyw490, vyw500) 30.83/14.36 new_esEs37(vyw402, vyw3002, ty_Bool) -> new_esEs25(vyw402, vyw3002) 30.83/14.36 new_esEs36(vyw401, vyw3001, app(ty_Maybe, fca)) -> new_esEs22(vyw401, vyw3001, fca) 30.83/14.36 new_esEs22(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs25(vyw400, vyw3000) 30.83/14.36 new_compare32(vyw40, vyw300, app(app(ty_Either, dfd), dfe)) -> new_compare19(vyw40, vyw300, dfd, dfe) 30.83/14.36 new_esEs27(vyw100, vyw103, ty_Double) -> new_esEs23(vyw100, vyw103) 30.83/14.36 new_gt(vyw18, vyw13, ty_Double) -> new_esEs41(new_compare5(vyw18, vyw13)) 30.83/14.36 new_lt22(vyw490, vyw500, ty_@0) -> new_lt8(vyw490, vyw500) 30.83/14.36 new_ltEs19(vyw71, vyw72, app(ty_[], ced)) -> new_ltEs7(vyw71, vyw72, ced) 30.83/14.36 new_lt20(vyw490, vyw500, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_lt16(vyw490, vyw500, dhb, dhc, dhd) 30.83/14.36 new_ltEs15(Left(vyw490), Left(vyw500), ty_Integer, fea) -> new_ltEs10(vyw490, vyw500) 30.83/14.36 new_esEs22(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs21(vyw400, vyw3000) 30.83/14.36 new_lt20(vyw490, vyw500, ty_Ordering) -> new_lt19(vyw490, vyw500) 30.83/14.36 new_esEs16(LT, LT) -> True 30.83/14.36 new_esEs4(vyw40, vyw300, ty_Integer) -> new_esEs24(vyw40, vyw300) 30.83/14.36 new_fsEs(vyw187) -> new_not(new_esEs16(vyw187, GT)) 30.83/14.36 new_compare31(False, True) -> LT 30.83/14.36 new_lt21(vyw491, vyw501, app(app(ty_Either, eag), eah)) -> new_lt17(vyw491, vyw501, eag, eah) 30.83/14.36 new_esEs33(vyw400, vyw3000, ty_@0) -> new_esEs20(vyw400, vyw3000) 30.83/14.36 new_primPlusNat0(Succ(vyw19300), Succ(vyw41000)) -> Succ(Succ(new_primPlusNat0(vyw19300, vyw41000))) 30.83/14.36 new_esEs10(vyw40, vyw300, ty_@0) -> new_esEs20(vyw40, vyw300) 30.83/14.36 new_lt21(vyw491, vyw501, ty_Bool) -> new_lt18(vyw491, vyw501) 30.83/14.36 new_esEs35(vyw400, vyw3000, ty_Bool) -> new_esEs25(vyw400, vyw3000) 30.83/14.36 new_ltEs20(vyw492, vyw502, app(ty_[], ebc)) -> new_ltEs7(vyw492, vyw502, ebc) 30.83/14.36 new_esEs37(vyw402, vyw3002, ty_Float) -> new_esEs21(vyw402, vyw3002) 30.83/14.36 new_esEs32(vyw491, vyw501, app(app(ty_Either, eag), eah)) -> new_esEs13(vyw491, vyw501, eag, eah) 30.83/14.36 new_esEs5(vyw40, vyw300, ty_Float) -> new_esEs21(vyw40, vyw300) 30.83/14.36 new_esEs38(vyw400, vyw3000, ty_Integer) -> new_esEs24(vyw400, vyw3000) 30.83/14.36 new_ltEs13(vyw49, vyw50) -> new_fsEs(new_compare12(vyw49, vyw50)) 30.83/14.36 new_esEs40(vyw113, vyw115, ty_Float) -> new_esEs21(vyw113, vyw115) 30.83/14.36 new_lt6(vyw4, vyw30, gb) -> new_esEs12(new_compare10(vyw4, vyw30, gb)) 30.83/14.36 new_lt20(vyw490, vyw500, ty_Char) -> new_lt4(vyw490, vyw500) 30.83/14.36 new_esEs32(vyw491, vyw501, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs14(vyw491, vyw501, ead, eae, eaf) 30.83/14.36 new_esEs11(vyw41, vyw301, app(ty_Ratio, bhd)) -> new_esEs26(vyw41, vyw301, bhd) 30.83/14.36 new_lt20(vyw490, vyw500, app(ty_Maybe, dha)) -> new_lt15(vyw490, vyw500, dha) 30.83/14.36 new_esEs13(Left(vyw400), Left(vyw3000), app(ty_[], cc), cb) -> new_esEs17(vyw400, vyw3000, cc) 30.83/14.36 new_compare25(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, hh, baa, bab) -> new_compare14(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, new_lt11(vyw100, vyw103, hh), new_asAs(new_esEs27(vyw100, vyw103, hh), new_pePe(new_lt10(vyw101, vyw104, baa), new_asAs(new_esEs28(vyw101, vyw104, baa), new_ltEs18(vyw102, vyw105, bab)))), hh, baa, bab) 30.83/14.36 new_lt22(vyw490, vyw500, ty_Ordering) -> new_lt19(vyw490, vyw500) 30.83/14.36 new_esEs35(vyw400, vyw3000, ty_Char) -> new_esEs18(vyw400, vyw3000) 30.83/14.36 new_esEs11(vyw41, vyw301, app(ty_Maybe, bhc)) -> new_esEs22(vyw41, vyw301, bhc) 30.83/14.36 new_esEs34(vyw490, vyw500, app(ty_Maybe, efg)) -> new_esEs22(vyw490, vyw500, efg) 30.83/14.36 new_ltEs5(True, True) -> True 30.83/14.36 new_esEs34(vyw490, vyw500, app(ty_Ratio, eff)) -> new_esEs26(vyw490, vyw500, eff) 30.83/14.36 new_esEs22(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs18(vyw400, vyw3000) 30.83/14.36 new_ltEs23(vyw49, vyw50, app(ty_[], cff)) -> new_ltEs7(vyw49, vyw50, cff) 30.83/14.36 new_esEs34(vyw490, vyw500, app(app(ty_Either, egc), egd)) -> new_esEs13(vyw490, vyw500, egc, egd) 30.83/14.36 new_ltEs18(vyw102, vyw105, ty_Float) -> new_ltEs14(vyw102, vyw105) 30.83/14.36 new_lt18(vyw4, vyw30) -> new_esEs12(new_compare31(vyw4, vyw30)) 30.83/14.36 new_ltEs6(Just(vyw490), Just(vyw500), app(app(ty_Either, ff), fg)) -> new_ltEs15(vyw490, vyw500, ff, fg) 30.83/14.36 new_esEs34(vyw490, vyw500, app(app(app(ty_@3, efh), ega), egb)) -> new_esEs14(vyw490, vyw500, efh, ega, egb) 30.83/14.36 new_compare14(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, False, vyw172, dfh, dga, dgb) -> new_compare111(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, vyw172, dfh, dga, dgb) 30.83/14.36 new_esEs11(vyw41, vyw301, app(app(ty_Either, bhe), bhf)) -> new_esEs13(vyw41, vyw301, bhe, bhf) 30.83/14.36 new_ltEs22(vyw491, vyw501, ty_Double) -> new_ltEs4(vyw491, vyw501) 30.83/14.36 new_ltEs22(vyw491, vyw501, app(ty_[], egg)) -> new_ltEs7(vyw491, vyw501, egg) 30.83/14.36 new_esEs28(vyw101, vyw104, app(app(ty_@2, bce), bcf)) -> new_esEs19(vyw101, vyw104, bce, bcf) 30.83/14.36 new_esEs10(vyw40, vyw300, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs14(vyw40, vyw300, bfc, bfd, bfe) 30.83/14.36 new_esEs32(vyw491, vyw501, app(ty_Ratio, eab)) -> new_esEs26(vyw491, vyw501, eab) 30.83/14.36 new_esEs36(vyw401, vyw3001, ty_Integer) -> new_esEs24(vyw401, vyw3001) 30.83/14.36 new_esEs29(vyw400, vyw3000, ty_Int) -> new_esEs15(vyw400, vyw3000) 30.83/14.36 new_esEs33(vyw400, vyw3000, app(ty_Ratio, eeh)) -> new_esEs26(vyw400, vyw3000, eeh) 30.83/14.36 new_esEs11(vyw41, vyw301, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs14(vyw41, vyw301, bge, bgf, bgg) 30.83/14.36 new_esEs23(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs15(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 30.83/14.36 new_compare29(vyw78, vyw79, True, ece, ecf) -> EQ 30.83/14.36 new_primCmpNat0(Succ(vyw400), Succ(vyw3000)) -> new_primCmpNat0(vyw400, vyw3000) 30.83/14.36 new_lt20(vyw490, vyw500, ty_Integer) -> new_lt5(vyw490, vyw500) 30.83/14.36 new_lt17(vyw4, vyw30, cbc, cbd) -> new_esEs12(new_compare19(vyw4, vyw30, cbc, cbd)) 30.83/14.36 new_lt11(vyw100, vyw103, ty_Int) -> new_lt13(vyw100, vyw103) 30.83/14.36 new_ltEs21(vyw78, vyw79, app(ty_[], ecg)) -> new_ltEs7(vyw78, vyw79, ecg) 30.83/14.36 new_esEs27(vyw100, vyw103, app(app(ty_@2, bbc), bbd)) -> new_esEs19(vyw100, vyw103, bbc, bbd) 30.83/14.36 new_compare15(vyw143, vyw144, False, bea, beb) -> GT 30.83/14.36 new_ltEs21(vyw78, vyw79, ty_Double) -> new_ltEs4(vyw78, vyw79) 30.83/14.36 new_esEs33(vyw400, vyw3000, ty_Ordering) -> new_esEs16(vyw400, vyw3000) 30.83/14.36 new_esEs37(vyw402, vyw3002, ty_Char) -> new_esEs18(vyw402, vyw3002) 30.83/14.36 new_lt21(vyw491, vyw501, ty_Integer) -> new_lt5(vyw491, vyw501) 30.83/14.36 new_esEs36(vyw401, vyw3001, ty_Char) -> new_esEs18(vyw401, vyw3001) 30.83/14.36 new_esEs22(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs24(vyw400, vyw3000) 30.83/14.36 new_esEs34(vyw490, vyw500, ty_Ordering) -> new_esEs16(vyw490, vyw500) 30.83/14.36 new_ltEs15(Right(vyw490), Right(vyw500), fdh, ty_Float) -> new_ltEs14(vyw490, vyw500) 30.83/14.36 new_ltEs15(Left(vyw490), Left(vyw500), app(ty_Ratio, fha), fea) -> new_ltEs11(vyw490, vyw500, fha) 30.83/14.36 new_lt20(vyw490, vyw500, ty_Bool) -> new_lt18(vyw490, vyw500) 30.83/14.36 new_compare28(vyw71, vyw72, True, ceb, cec) -> EQ 30.83/14.36 new_esEs10(vyw40, vyw300, app(ty_Ratio, bgb)) -> new_esEs26(vyw40, vyw300, bgb) 30.83/14.36 new_ltEs6(Just(vyw490), Just(vyw500), ty_Char) -> new_ltEs9(vyw490, vyw500) 30.83/14.36 new_esEs10(vyw40, vyw300, app(app(ty_Either, bgc), bgd)) -> new_esEs13(vyw40, vyw300, bgc, bgd) 30.83/14.36 new_esEs33(vyw400, vyw3000, app(app(ty_Either, efa), efb)) -> new_esEs13(vyw400, vyw3000, efa, efb) 30.83/14.36 new_esEs13(Right(vyw400), Right(vyw3000), dc, ty_Bool) -> new_esEs25(vyw400, vyw3000) 30.83/14.36 new_lt24(vyw4, vyw30, ty_@0) -> new_lt8(vyw4, vyw30) 30.83/14.36 new_esEs30(vyw401, vyw3001, ty_Int) -> new_esEs15(vyw401, vyw3001) 30.83/14.36 new_esEs37(vyw402, vyw3002, ty_Integer) -> new_esEs24(vyw402, vyw3002) 30.83/14.36 new_esEs11(vyw41, vyw301, ty_Ordering) -> new_esEs16(vyw41, vyw301) 30.83/14.36 new_compare112(vyw129, vyw130, False, dgc) -> GT 30.83/14.36 new_esEs13(Right(vyw400), Right(vyw3000), dc, ty_Integer) -> new_esEs24(vyw400, vyw3000) 30.83/14.36 new_esEs35(vyw400, vyw3000, app(ty_Maybe, fag)) -> new_esEs22(vyw400, vyw3000, fag) 30.83/14.36 new_esEs35(vyw400, vyw3000, ty_@0) -> new_esEs20(vyw400, vyw3000) 30.83/14.36 new_esEs33(vyw400, vyw3000, app(app(app(ty_@3, eea), eeb), eec)) -> new_esEs14(vyw400, vyw3000, eea, eeb, eec) 30.83/14.36 new_primCmpInt(Neg(Succ(vyw400)), Pos(vyw300)) -> LT 30.83/14.36 new_ltEs19(vyw71, vyw72, ty_Double) -> new_ltEs4(vyw71, vyw72) 30.83/14.36 new_esEs34(vyw490, vyw500, ty_Char) -> new_esEs18(vyw490, vyw500) 30.83/14.36 new_gt(vyw18, vyw13, ty_Float) -> new_esEs41(new_compare11(vyw18, vyw13)) 30.83/14.36 new_esEs5(vyw40, vyw300, ty_Integer) -> new_esEs24(vyw40, vyw300) 30.83/14.36 new_esEs5(vyw40, vyw300, ty_Int) -> new_esEs15(vyw40, vyw300) 30.83/14.36 new_lt21(vyw491, vyw501, ty_Ordering) -> new_lt19(vyw491, vyw501) 30.83/14.36 new_ltEs23(vyw49, vyw50, app(ty_Maybe, ef)) -> new_ltEs6(vyw49, vyw50, ef) 30.83/14.36 new_esEs34(vyw490, vyw500, ty_@0) -> new_esEs20(vyw490, vyw500) 30.83/14.36 new_compare112(vyw129, vyw130, True, dgc) -> LT 30.83/14.36 new_lt11(vyw100, vyw103, ty_Float) -> new_lt7(vyw100, vyw103) 30.83/14.36 new_ltEs19(vyw71, vyw72, app(app(ty_Either, cfb), cfc)) -> new_ltEs15(vyw71, vyw72, cfb, cfc) 30.83/14.36 new_primCmpInt(Pos(Zero), Neg(Succ(vyw3000))) -> GT 30.83/14.36 new_lt21(vyw491, vyw501, ty_Double) -> new_lt14(vyw491, vyw501) 30.83/14.36 new_lt22(vyw490, vyw500, ty_Bool) -> new_lt18(vyw490, vyw500) 30.83/14.36 new_esEs36(vyw401, vyw3001, ty_Bool) -> new_esEs25(vyw401, vyw3001) 30.83/14.36 new_ltEs22(vyw491, vyw501, app(ty_Ratio, egh)) -> new_ltEs11(vyw491, vyw501, egh) 30.83/14.36 new_compare32(vyw40, vyw300, app(ty_Ratio, deg)) -> new_compare10(vyw40, vyw300, deg) 30.83/14.36 new_primCmpInt(Neg(Succ(vyw400)), Neg(vyw300)) -> new_primCmpNat0(vyw300, Succ(vyw400)) 30.83/14.36 new_lt21(vyw491, vyw501, ty_Char) -> new_lt4(vyw491, vyw501) 30.83/14.36 new_esEs13(Left(vyw400), Left(vyw3000), app(ty_Ratio, cg), cb) -> new_esEs26(vyw400, vyw3000, cg) 30.83/14.36 new_lt11(vyw100, vyw103, ty_Double) -> new_lt14(vyw100, vyw103) 30.83/14.36 new_ltEs8(vyw49, vyw50) -> new_fsEs(new_compare6(vyw49, vyw50)) 30.83/14.36 new_compare4(:(vyw40, vyw41), :(vyw300, vyw301), bf) -> new_primCompAux0(vyw40, vyw300, new_compare4(vyw41, vyw301, bf), bf) 30.83/14.36 new_esEs31(vyw490, vyw500, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs14(vyw490, vyw500, dhb, dhc, dhd) 30.83/14.36 new_lt20(vyw490, vyw500, ty_Int) -> new_lt13(vyw490, vyw500) 30.83/14.36 new_lt23(vyw113, vyw115, ty_@0) -> new_lt8(vyw113, vyw115) 30.83/14.36 new_esEs6(vyw41, vyw301, app(ty_[], daa)) -> new_esEs17(vyw41, vyw301, daa) 30.83/14.36 new_esEs9(vyw40, vyw300, ty_Double) -> new_esEs23(vyw40, vyw300) 30.83/14.36 new_ltEs15(Right(vyw490), Right(vyw500), fdh, app(ty_[], gab)) -> new_ltEs7(vyw490, vyw500, gab) 30.83/14.36 new_compare32(vyw40, vyw300, app(app(ty_@2, dff), dfg)) -> new_compare13(vyw40, vyw300, dff, dfg) 30.83/14.36 new_esEs41(EQ) -> False 30.83/14.36 new_lt11(vyw100, vyw103, ty_Ordering) -> new_lt19(vyw100, vyw103) 30.83/14.36 new_ltEs14(vyw49, vyw50) -> new_fsEs(new_compare11(vyw49, vyw50)) 30.83/14.36 new_ltEs21(vyw78, vyw79, ty_Ordering) -> new_ltEs17(vyw78, vyw79) 30.83/14.36 new_ltEs24(vyw114, vyw116, ty_Bool) -> new_ltEs5(vyw114, vyw116) 30.83/14.36 new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False 30.83/14.36 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 30.83/14.36 new_ltEs6(Just(vyw490), Just(vyw500), ty_Bool) -> new_ltEs5(vyw490, vyw500) 30.83/14.36 new_lt22(vyw490, vyw500, ty_Integer) -> new_lt5(vyw490, vyw500) 30.83/14.36 new_esEs13(Left(vyw400), Left(vyw3000), ty_Int, cb) -> new_esEs15(vyw400, vyw3000) 30.83/14.36 new_esEs27(vyw100, vyw103, app(ty_[], bac)) -> new_esEs17(vyw100, vyw103, bac) 30.83/14.36 new_esEs29(vyw400, vyw3000, app(app(ty_@2, dcf), dcg)) -> new_esEs19(vyw400, vyw3000, dcf, dcg) 30.83/14.36 new_ltEs15(Left(vyw490), Left(vyw500), app(app(ty_Either, fhf), fhg), fea) -> new_ltEs15(vyw490, vyw500, fhf, fhg) 30.83/14.36 new_lt7(vyw4, vyw30) -> new_esEs12(new_compare11(vyw4, vyw30)) 30.83/14.36 new_compare17(vyw180, vyw181, vyw182, vyw183, False, vyw185, bhg, bhh) -> new_compare18(vyw180, vyw181, vyw182, vyw183, vyw185, bhg, bhh) 30.83/14.36 new_esEs28(vyw101, vyw104, app(app(ty_Either, bcc), bcd)) -> new_esEs13(vyw101, vyw104, bcc, bcd) 30.83/14.36 new_esEs29(vyw400, vyw3000, ty_Ordering) -> new_esEs16(vyw400, vyw3000) 30.83/14.36 new_esEs11(vyw41, vyw301, ty_Int) -> new_esEs15(vyw41, vyw301) 30.83/14.36 new_esEs8(vyw40, vyw300, ty_Ordering) -> new_esEs16(vyw40, vyw300) 30.83/14.36 new_primCompAux0(vyw40, vyw300, vyw39, bf) -> new_primCompAux00(vyw39, new_compare32(vyw40, vyw300, bf)) 30.83/14.36 new_primCmpNat0(Zero, Zero) -> EQ 30.83/14.36 new_lt10(vyw101, vyw104, ty_Int) -> new_lt13(vyw101, vyw104) 30.83/14.36 new_lt24(vyw4, vyw30, app(app(ty_Either, cbc), cbd)) -> new_lt17(vyw4, vyw30, cbc, cbd) 30.83/14.36 new_compare10(:%(vyw40, vyw41), :%(vyw300, vyw301), ty_Int) -> new_compare6(new_sr(vyw40, vyw301), new_sr(vyw300, vyw41)) 30.83/14.36 new_ltEs15(Right(vyw490), Right(vyw500), fdh, ty_@0) -> new_ltEs13(vyw490, vyw500) 30.83/14.36 new_esEs20(@0, @0) -> True 30.83/14.36 new_lt11(vyw100, vyw103, ty_Char) -> new_lt4(vyw100, vyw103) 30.83/14.36 new_esEs8(vyw40, vyw300, app(app(ty_@2, ccb), ccc)) -> new_esEs19(vyw40, vyw300, ccb, ccc) 30.83/14.36 new_lt23(vyw113, vyw115, app(app(ty_@2, ffd), ffe)) -> new_lt9(vyw113, vyw115, ffd, ffe) 30.83/14.36 new_esEs25(False, False) -> True 30.83/14.36 new_ltEs19(vyw71, vyw72, ty_Integer) -> new_ltEs10(vyw71, vyw72) 30.83/14.36 new_compare11(Float(vyw40, Neg(vyw410)), Float(vyw300, Neg(vyw3010))) -> new_compare6(new_sr(vyw40, Neg(vyw3010)), new_sr(Neg(vyw410), vyw300)) 30.83/14.36 new_ltEs6(Just(vyw490), Just(vyw500), app(app(ty_@2, fh), ga)) -> new_ltEs16(vyw490, vyw500, fh, ga) 30.83/14.36 new_esEs11(vyw41, vyw301, ty_Integer) -> new_esEs24(vyw41, vyw301) 30.83/14.36 new_gt(vyw18, vyw13, ty_Ordering) -> new_esEs41(new_compare7(vyw18, vyw13)) 30.83/14.36 new_esEs22(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs15(vyw400, vyw3000) 30.83/14.36 new_ltEs22(vyw491, vyw501, ty_Char) -> new_ltEs9(vyw491, vyw501) 30.83/14.36 new_esEs5(vyw40, vyw300, ty_Bool) -> new_esEs25(vyw40, vyw300) 30.83/14.36 new_esEs29(vyw400, vyw3000, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs14(vyw400, vyw3000, dcb, dcc, dcd) 30.83/14.36 new_primCompAux00(vyw43, GT) -> GT 30.83/14.36 new_ltEs24(vyw114, vyw116, ty_Double) -> new_ltEs4(vyw114, vyw116) 30.83/14.36 new_esEs22(Just(vyw400), Just(vyw3000), app(ty_Maybe, hd)) -> new_esEs22(vyw400, vyw3000, hd) 30.83/14.36 new_esEs30(vyw401, vyw3001, app(ty_Ratio, dec)) -> new_esEs26(vyw401, vyw3001, dec) 30.83/14.36 new_ltEs24(vyw114, vyw116, ty_Integer) -> new_ltEs10(vyw114, vyw116) 30.83/14.36 new_esEs33(vyw400, vyw3000, app(ty_Maybe, eeg)) -> new_esEs22(vyw400, vyw3000, eeg) 30.83/14.36 new_esEs35(vyw400, vyw3000, app(ty_Ratio, fah)) -> new_esEs26(vyw400, vyw3000, fah) 30.83/14.36 new_compare5(Double(vyw40, Neg(vyw410)), Double(vyw300, Neg(vyw3010))) -> new_compare6(new_sr(vyw40, Neg(vyw3010)), new_sr(Neg(vyw410), vyw300)) 30.83/14.36 new_esEs33(vyw400, vyw3000, ty_Int) -> new_esEs15(vyw400, vyw3000) 30.83/14.36 new_esEs25(False, True) -> False 30.83/14.36 new_esEs25(True, False) -> False 30.83/14.36 new_esEs6(vyw41, vyw301, ty_Float) -> new_esEs21(vyw41, vyw301) 30.83/14.36 new_ltEs4(vyw49, vyw50) -> new_fsEs(new_compare5(vyw49, vyw50)) 30.83/14.36 new_esEs11(vyw41, vyw301, ty_Bool) -> new_esEs25(vyw41, vyw301) 30.83/14.36 new_lt22(vyw490, vyw500, app(app(app(ty_@3, efh), ega), egb)) -> new_lt16(vyw490, vyw500, efh, ega, egb) 30.83/14.36 new_lt23(vyw113, vyw115, app(ty_Ratio, fee)) -> new_lt6(vyw113, vyw115, fee) 30.83/14.36 new_esEs36(vyw401, vyw3001, app(app(app(ty_@3, fbc), fbd), fbe)) -> new_esEs14(vyw401, vyw3001, fbc, fbd, fbe) 30.83/14.36 new_compare32(vyw40, vyw300, ty_Int) -> new_compare6(vyw40, vyw300) 30.83/14.36 new_lt10(vyw101, vyw104, app(app(app(ty_@3, bbh), bca), bcb)) -> new_lt16(vyw101, vyw104, bbh, bca, bcb) 30.83/14.36 new_compare110(vyw150, vyw151, True, cgb, cgc) -> LT 30.83/14.36 new_ltEs20(vyw492, vyw502, app(app(app(ty_@3, ebf), ebg), ebh)) -> new_ltEs12(vyw492, vyw502, ebf, ebg, ebh) 30.83/14.36 new_esEs37(vyw402, vyw3002, app(ty_[], fch)) -> new_esEs17(vyw402, vyw3002, fch) 30.83/14.36 new_ltEs6(Just(vyw490), Just(vyw500), ty_Integer) -> new_ltEs10(vyw490, vyw500) 30.83/14.36 new_ltEs20(vyw492, vyw502, ty_Float) -> new_ltEs14(vyw492, vyw502) 30.83/14.36 new_esEs8(vyw40, vyw300, ty_@0) -> new_esEs20(vyw40, vyw300) 30.83/14.36 new_esEs31(vyw490, vyw500, app(app(ty_@2, dhg), dhh)) -> new_esEs19(vyw490, vyw500, dhg, dhh) 30.83/14.36 new_esEs13(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, bg), bh), ca), cb) -> new_esEs14(vyw400, vyw3000, bg, bh, ca) 30.83/14.36 new_lt23(vyw113, vyw115, app(ty_[], fed)) -> new_lt12(vyw113, vyw115, fed) 30.83/14.36 new_esEs30(vyw401, vyw3001, app(app(ty_Either, ded), dee)) -> new_esEs13(vyw401, vyw3001, ded, dee) 30.83/14.36 new_ltEs22(vyw491, vyw501, ty_@0) -> new_ltEs13(vyw491, vyw501) 30.83/14.36 new_esEs31(vyw490, vyw500, ty_Ordering) -> new_esEs16(vyw490, vyw500) 30.83/14.36 new_primCmpNat0(Succ(vyw400), Zero) -> GT 30.83/14.36 new_compare16(Just(vyw40), Nothing, bec) -> GT 30.83/14.36 new_esEs13(Right(vyw400), Right(vyw3000), dc, app(ty_[], dg)) -> new_esEs17(vyw400, vyw3000, dg) 30.83/14.36 new_pePe(False, vyw192) -> vyw192 30.83/14.36 new_esEs31(vyw490, vyw500, ty_Integer) -> new_esEs24(vyw490, vyw500) 30.83/14.36 new_esEs10(vyw40, vyw300, ty_Double) -> new_esEs23(vyw40, vyw300) 30.83/14.36 new_ltEs23(vyw49, vyw50, ty_Int) -> new_ltEs8(vyw49, vyw50) 30.83/14.36 new_lt10(vyw101, vyw104, app(ty_Ratio, bbf)) -> new_lt6(vyw101, vyw104, bbf) 30.83/14.36 new_lt8(vyw4, vyw30) -> new_esEs12(new_compare12(vyw4, vyw30)) 30.83/14.36 new_esEs21(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs15(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 30.83/14.36 new_esEs8(vyw40, vyw300, ty_Char) -> new_esEs18(vyw40, vyw300) 30.83/14.36 new_lt10(vyw101, vyw104, app(ty_[], bbe)) -> new_lt12(vyw101, vyw104, bbe) 30.83/14.36 new_lt20(vyw490, vyw500, ty_@0) -> new_lt8(vyw490, vyw500) 30.83/14.36 new_ltEs24(vyw114, vyw116, app(app(ty_@2, fgf), fgg)) -> new_ltEs16(vyw114, vyw116, fgf, fgg) 30.83/14.36 new_lt10(vyw101, vyw104, app(app(ty_@2, bce), bcf)) -> new_lt9(vyw101, vyw104, bce, bcf) 30.83/14.36 new_esEs28(vyw101, vyw104, app(ty_Maybe, bbg)) -> new_esEs22(vyw101, vyw104, bbg) 30.83/14.36 new_esEs22(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, gf), gg), gh)) -> new_esEs14(vyw400, vyw3000, gf, gg, gh) 30.83/14.36 new_esEs6(vyw41, vyw301, ty_Double) -> new_esEs23(vyw41, vyw301) 30.83/14.36 new_lt22(vyw490, vyw500, app(ty_Maybe, efg)) -> new_lt15(vyw490, vyw500, efg) 30.83/14.36 new_compare27(vyw113, vyw114, vyw115, vyw116, False, feb, fec) -> new_compare17(vyw113, vyw114, vyw115, vyw116, new_lt23(vyw113, vyw115, feb), new_asAs(new_esEs40(vyw113, vyw115, feb), new_ltEs24(vyw114, vyw116, fec)), feb, fec) 30.83/14.36 new_esEs29(vyw400, vyw3000, ty_Bool) -> new_esEs25(vyw400, vyw3000) 30.83/14.36 new_esEs6(vyw41, vyw301, ty_Char) -> new_esEs18(vyw41, vyw301) 30.83/14.36 new_esEs22(Just(vyw400), Just(vyw3000), app(app(ty_Either, hf), hg)) -> new_esEs13(vyw400, vyw3000, hf, hg) 30.83/14.36 new_compare16(Nothing, Nothing, bec) -> EQ 30.83/14.36 new_esEs27(vyw100, vyw103, ty_@0) -> new_esEs20(vyw100, vyw103) 30.83/14.36 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 30.83/14.36 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 30.83/14.36 new_esEs6(vyw41, vyw301, ty_@0) -> new_esEs20(vyw41, vyw301) 30.83/14.36 new_ltEs18(vyw102, vyw105, app(ty_Maybe, bda)) -> new_ltEs6(vyw102, vyw105, bda) 30.83/14.36 new_gt(vyw18, vyw13, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs41(new_compare30(vyw18, vyw13, cad, cae, caf)) 30.83/14.36 new_compare7(EQ, GT) -> LT 30.83/14.36 new_esEs5(vyw40, vyw300, app(app(ty_Either, chd), che)) -> new_esEs13(vyw40, vyw300, chd, che) 30.83/14.36 new_ltEs22(vyw491, vyw501, ty_Float) -> new_ltEs14(vyw491, vyw501) 30.83/14.36 new_ltEs20(vyw492, vyw502, ty_@0) -> new_ltEs13(vyw492, vyw502) 30.83/14.36 new_compare14(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, True, vyw172, dfh, dga, dgb) -> new_compare111(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, True, dfh, dga, dgb) 30.83/14.36 new_esEs31(vyw490, vyw500, ty_@0) -> new_esEs20(vyw490, vyw500) 30.83/14.36 new_ltEs18(vyw102, vyw105, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs12(vyw102, vyw105, bdb, bdc, bdd) 30.83/14.36 new_esEs28(vyw101, vyw104, app(ty_Ratio, bbf)) -> new_esEs26(vyw101, vyw104, bbf) 30.83/14.36 new_esEs29(vyw400, vyw3000, ty_Char) -> new_esEs18(vyw400, vyw3000) 30.83/14.36 new_esEs8(vyw40, vyw300, ty_Bool) -> new_esEs25(vyw40, vyw300) 30.83/14.36 new_compare32(vyw40, vyw300, ty_Ordering) -> new_compare7(vyw40, vyw300) 30.83/14.36 new_esEs32(vyw491, vyw501, ty_Float) -> new_esEs21(vyw491, vyw501) 30.83/14.36 new_esEs40(vyw113, vyw115, app(ty_Maybe, fef)) -> new_esEs22(vyw113, vyw115, fef) 30.83/14.36 new_esEs7(vyw42, vyw302, app(ty_Maybe, dbf)) -> new_esEs22(vyw42, vyw302, dbf) 30.83/14.36 new_esEs4(vyw40, vyw300, app(ty_Ratio, bfb)) -> new_esEs26(vyw40, vyw300, bfb) 30.83/14.36 new_ltEs21(vyw78, vyw79, app(app(ty_Either, ede), edf)) -> new_ltEs15(vyw78, vyw79, ede, edf) 30.83/14.36 new_esEs5(vyw40, vyw300, app(app(app(ty_@3, cgd), cge), cgf)) -> new_esEs14(vyw40, vyw300, cgd, cge, cgf) 30.83/14.36 new_esEs40(vyw113, vyw115, app(app(ty_Either, ffb), ffc)) -> new_esEs13(vyw113, vyw115, ffb, ffc) 30.83/14.36 new_esEs33(vyw400, vyw3000, ty_Integer) -> new_esEs24(vyw400, vyw3000) 30.83/14.36 new_compare10(:%(vyw40, vyw41), :%(vyw300, vyw301), ty_Integer) -> new_compare9(new_sr0(vyw40, vyw301), new_sr0(vyw300, vyw41)) 30.83/14.36 new_ltEs15(Left(vyw490), Left(vyw500), app(app(app(ty_@3, fhc), fhd), fhe), fea) -> new_ltEs12(vyw490, vyw500, fhc, fhd, fhe) 30.83/14.36 new_compare19(Left(vyw40), Left(vyw300), cbc, cbd) -> new_compare28(vyw40, vyw300, new_esEs8(vyw40, vyw300, cbc), cbc, cbd) 30.83/14.36 new_ltEs5(True, False) -> False 30.83/14.36 new_esEs36(vyw401, vyw3001, ty_Int) -> new_esEs15(vyw401, vyw3001) 30.83/14.36 new_esEs11(vyw41, vyw301, app(app(ty_@2, bha), bhb)) -> new_esEs19(vyw41, vyw301, bha, bhb) 30.83/14.36 new_esEs31(vyw490, vyw500, app(ty_Maybe, dha)) -> new_esEs22(vyw490, vyw500, dha) 30.83/14.36 new_lt24(vyw4, vyw30, ty_Double) -> new_lt14(vyw4, vyw30) 30.83/14.36 new_ltEs15(Left(vyw490), Left(vyw500), app(app(ty_@2, fhh), gaa), fea) -> new_ltEs16(vyw490, vyw500, fhh, gaa) 30.83/14.36 new_esEs34(vyw490, vyw500, ty_Float) -> new_esEs21(vyw490, vyw500) 30.83/14.36 new_esEs8(vyw40, vyw300, ty_Float) -> new_esEs21(vyw40, vyw300) 30.83/14.36 new_esEs5(vyw40, vyw300, ty_Ordering) -> new_esEs16(vyw40, vyw300) 30.83/14.36 new_esEs40(vyw113, vyw115, app(ty_Ratio, fee)) -> new_esEs26(vyw113, vyw115, fee) 30.83/14.36 new_esEs30(vyw401, vyw3001, app(ty_Maybe, deb)) -> new_esEs22(vyw401, vyw3001, deb) 30.83/14.36 new_esEs5(vyw40, vyw300, app(ty_Maybe, chb)) -> new_esEs22(vyw40, vyw300, chb) 30.83/14.36 new_compare32(vyw40, vyw300, ty_@0) -> new_compare12(vyw40, vyw300) 30.83/14.36 new_esEs8(vyw40, vyw300, ty_Integer) -> new_esEs24(vyw40, vyw300) 30.83/14.36 new_esEs29(vyw400, vyw3000, app(ty_[], dce)) -> new_esEs17(vyw400, vyw3000, dce) 30.83/14.36 new_esEs19(@2(vyw400, vyw401), @2(vyw3000, vyw3001), beh, bfa) -> new_asAs(new_esEs29(vyw400, vyw3000, beh), new_esEs30(vyw401, vyw3001, bfa)) 30.83/14.36 new_lt21(vyw491, vyw501, ty_Float) -> new_lt7(vyw491, vyw501) 30.83/14.36 new_lt20(vyw490, vyw500, app(ty_Ratio, dgh)) -> new_lt6(vyw490, vyw500, dgh) 30.83/14.36 new_esEs9(vyw40, vyw300, ty_Float) -> new_esEs21(vyw40, vyw300) 30.83/14.36 new_compare31(True, True) -> EQ 30.83/14.36 new_lt9(vyw4, vyw30, gc, gd) -> new_esEs12(new_compare13(vyw4, vyw30, gc, gd)) 30.83/14.36 new_esEs13(Left(vyw400), Left(vyw3000), ty_Integer, cb) -> new_esEs24(vyw400, vyw3000) 30.83/14.36 new_lt24(vyw4, vyw30, app(ty_Maybe, bec)) -> new_lt15(vyw4, vyw30, bec) 30.83/14.36 new_compare16(Just(vyw40), Just(vyw300), bec) -> new_compare26(vyw40, vyw300, new_esEs4(vyw40, vyw300, bec), bec) 30.83/14.36 new_esEs7(vyw42, vyw302, ty_Integer) -> new_esEs24(vyw42, vyw302) 30.83/14.36 new_ltEs19(vyw71, vyw72, ty_Ordering) -> new_ltEs17(vyw71, vyw72) 30.83/14.36 new_lt20(vyw490, vyw500, app(app(ty_@2, dhg), dhh)) -> new_lt9(vyw490, vyw500, dhg, dhh) 30.83/14.36 new_compare111(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, True, dfh, dga, dgb) -> LT 30.83/14.36 new_primMulInt(Neg(vyw3000), Neg(vyw410)) -> Pos(new_primMulNat0(vyw3000, vyw410)) 30.83/14.36 new_primCmpInt(Pos(Zero), Pos(Succ(vyw3000))) -> new_primCmpNat0(Zero, Succ(vyw3000)) 30.83/14.36 new_esEs31(vyw490, vyw500, ty_Bool) -> new_esEs25(vyw490, vyw500) 30.83/14.36 new_ltEs22(vyw491, vyw501, app(app(ty_@2, ehg), ehh)) -> new_ltEs16(vyw491, vyw501, ehg, ehh) 30.83/14.36 new_esEs13(Left(vyw400), Left(vyw3000), ty_Bool, cb) -> new_esEs25(vyw400, vyw3000) 30.83/14.36 new_lt24(vyw4, vyw30, ty_Char) -> new_lt4(vyw4, vyw30) 30.83/14.36 new_lt20(vyw490, vyw500, app(ty_[], dgg)) -> new_lt12(vyw490, vyw500, dgg) 30.83/14.36 new_esEs32(vyw491, vyw501, ty_Double) -> new_esEs23(vyw491, vyw501) 30.83/14.36 new_esEs31(vyw490, vyw500, ty_Char) -> new_esEs18(vyw490, vyw500) 30.83/14.36 new_compare4([], :(vyw300, vyw301), bf) -> LT 30.83/14.36 new_esEs34(vyw490, vyw500, app(app(ty_@2, ege), egf)) -> new_esEs19(vyw490, vyw500, ege, egf) 30.83/14.36 new_esEs29(vyw400, vyw3000, ty_@0) -> new_esEs20(vyw400, vyw3000) 30.83/14.36 new_ltEs19(vyw71, vyw72, ty_Char) -> new_ltEs9(vyw71, vyw72) 30.83/14.36 new_compare12(@0, @0) -> EQ 30.83/14.36 new_primMulInt(Pos(vyw3000), Neg(vyw410)) -> Neg(new_primMulNat0(vyw3000, vyw410)) 30.83/14.36 new_primMulInt(Neg(vyw3000), Pos(vyw410)) -> Neg(new_primMulNat0(vyw3000, vyw410)) 30.83/14.36 new_esEs4(vyw40, vyw300, app(ty_[], beg)) -> new_esEs17(vyw40, vyw300, beg) 30.83/14.36 new_esEs40(vyw113, vyw115, ty_Double) -> new_esEs23(vyw113, vyw115) 30.83/14.36 new_ltEs23(vyw49, vyw50, ty_Float) -> new_ltEs14(vyw49, vyw50) 30.83/14.36 new_ltEs6(Just(vyw490), Just(vyw500), app(ty_[], eg)) -> new_ltEs7(vyw490, vyw500, eg) 30.83/14.36 new_esEs31(vyw490, vyw500, app(ty_[], dgg)) -> new_esEs17(vyw490, vyw500, dgg) 30.83/14.36 new_esEs4(vyw40, vyw300, app(app(ty_Either, dc), cb)) -> new_esEs13(vyw40, vyw300, dc, cb) 30.83/14.36 new_ltEs24(vyw114, vyw116, ty_Int) -> new_ltEs8(vyw114, vyw116) 30.83/14.36 new_esEs30(vyw401, vyw3001, ty_Integer) -> new_esEs24(vyw401, vyw3001) 30.83/14.36 new_sr0(Integer(vyw3000), Integer(vyw410)) -> Integer(new_primMulInt(vyw3000, vyw410)) 30.83/14.36 new_esEs34(vyw490, vyw500, ty_Double) -> new_esEs23(vyw490, vyw500) 30.83/14.36 new_esEs22(Just(vyw400), Just(vyw3000), app(app(ty_@2, hb), hc)) -> new_esEs19(vyw400, vyw3000, hb, hc) 30.83/14.36 new_esEs31(vyw490, vyw500, ty_Float) -> new_esEs21(vyw490, vyw500) 30.83/14.36 new_compare7(EQ, LT) -> GT 30.83/14.36 new_esEs7(vyw42, vyw302, ty_Double) -> new_esEs23(vyw42, vyw302) 30.83/14.36 new_compare7(GT, LT) -> GT 30.83/14.36 new_esEs16(GT, GT) -> True 30.83/14.36 new_gt(vyw18, vyw13, app(ty_Ratio, cab)) -> new_esEs41(new_compare10(vyw18, vyw13, cab)) 30.83/14.36 new_ltEs22(vyw491, vyw501, ty_Integer) -> new_ltEs10(vyw491, vyw501) 30.83/14.36 new_lt11(vyw100, vyw103, app(ty_[], bac)) -> new_lt12(vyw100, vyw103, bac) 30.83/14.36 new_esEs27(vyw100, vyw103, ty_Ordering) -> new_esEs16(vyw100, vyw103) 30.83/14.36 new_ltEs21(vyw78, vyw79, app(ty_Maybe, eda)) -> new_ltEs6(vyw78, vyw79, eda) 30.83/14.36 new_esEs13(Left(vyw400), Right(vyw3000), dc, cb) -> False 30.83/14.36 new_esEs13(Right(vyw400), Left(vyw3000), dc, cb) -> False 30.83/14.36 new_esEs9(vyw40, vyw300, ty_@0) -> new_esEs20(vyw40, vyw300) 30.83/14.36 new_compare30(@3(vyw40, vyw41, vyw42), @3(vyw300, vyw301, vyw302), cfg, cfh, cga) -> new_compare25(vyw40, vyw41, vyw42, vyw300, vyw301, vyw302, new_asAs(new_esEs5(vyw40, vyw300, cfg), new_asAs(new_esEs6(vyw41, vyw301, cfh), new_esEs7(vyw42, vyw302, cga))), cfg, cfh, cga) 30.83/14.36 new_ltEs18(vyw102, vyw105, ty_Int) -> new_ltEs8(vyw102, vyw105) 30.83/14.36 new_asAs(True, vyw138) -> vyw138 30.83/14.36 new_esEs7(vyw42, vyw302, ty_Int) -> new_esEs15(vyw42, vyw302) 30.83/14.36 new_esEs5(vyw40, vyw300, app(app(ty_@2, cgh), cha)) -> new_esEs19(vyw40, vyw300, cgh, cha) 30.83/14.36 new_esEs39(vyw401, vyw3001, ty_Int) -> new_esEs15(vyw401, vyw3001) 30.83/14.36 new_esEs10(vyw40, vyw300, app(ty_[], bff)) -> new_esEs17(vyw40, vyw300, bff) 30.83/14.36 new_ltEs15(Left(vyw490), Left(vyw500), ty_Float, fea) -> new_ltEs14(vyw490, vyw500) 30.83/14.36 new_ltEs20(vyw492, vyw502, ty_Char) -> new_ltEs9(vyw492, vyw502) 30.83/14.36 new_lt23(vyw113, vyw115, ty_Double) -> new_lt14(vyw113, vyw115) 30.83/14.36 new_lt11(vyw100, vyw103, app(ty_Maybe, bae)) -> new_lt15(vyw100, vyw103, bae) 30.83/14.36 new_esEs13(Left(vyw400), Left(vyw3000), app(ty_Maybe, cf), cb) -> new_esEs22(vyw400, vyw3000, cf) 30.83/14.36 new_lt21(vyw491, vyw501, app(app(ty_@2, eba), ebb)) -> new_lt9(vyw491, vyw501, eba, ebb) 30.83/14.36 new_ltEs20(vyw492, vyw502, app(ty_Ratio, ebd)) -> new_ltEs11(vyw492, vyw502, ebd) 30.83/14.36 new_esEs40(vyw113, vyw115, ty_Int) -> new_esEs15(vyw113, vyw115) 30.83/14.36 new_lt22(vyw490, vyw500, app(ty_Ratio, eff)) -> new_lt6(vyw490, vyw500, eff) 30.83/14.36 new_ltEs21(vyw78, vyw79, app(app(ty_@2, edg), edh)) -> new_ltEs16(vyw78, vyw79, edg, edh) 30.83/14.36 new_lt22(vyw490, vyw500, ty_Int) -> new_lt13(vyw490, vyw500) 30.83/14.36 new_compare8(Char(vyw40), Char(vyw300)) -> new_primCmpNat0(vyw40, vyw300) 30.83/14.36 new_lt11(vyw100, vyw103, ty_@0) -> new_lt8(vyw100, vyw103) 30.83/14.36 new_esEs36(vyw401, vyw3001, app(ty_[], fbf)) -> new_esEs17(vyw401, vyw3001, fbf) 30.83/14.36 new_sr(vyw300, vyw41) -> new_primMulInt(vyw300, vyw41) 30.83/14.36 new_compare7(LT, GT) -> LT 30.83/14.36 new_compare18(vyw180, vyw181, vyw182, vyw183, True, bhg, bhh) -> LT 30.83/14.36 new_compare19(Left(vyw40), Right(vyw300), cbc, cbd) -> LT 30.83/14.36 new_esEs29(vyw400, vyw3000, ty_Integer) -> new_esEs24(vyw400, vyw3000) 30.83/14.36 new_compare7(LT, EQ) -> LT 30.83/14.36 new_lt10(vyw101, vyw104, app(ty_Maybe, bbg)) -> new_lt15(vyw101, vyw104, bbg) 30.83/14.36 new_ltEs6(Just(vyw490), Just(vyw500), app(ty_Ratio, eh)) -> new_ltEs11(vyw490, vyw500, eh) 30.83/14.36 new_primMulNat0(Zero, Zero) -> Zero 30.83/14.36 new_esEs6(vyw41, vyw301, app(ty_Ratio, dae)) -> new_esEs26(vyw41, vyw301, dae) 30.83/14.36 new_ltEs21(vyw78, vyw79, ty_Char) -> new_ltEs9(vyw78, vyw79) 30.83/14.36 new_lt22(vyw490, vyw500, app(app(ty_@2, ege), egf)) -> new_lt9(vyw490, vyw500, ege, egf) 30.83/14.36 new_ltEs24(vyw114, vyw116, ty_Ordering) -> new_ltEs17(vyw114, vyw116) 30.83/14.36 new_ltEs23(vyw49, vyw50, ty_@0) -> new_ltEs13(vyw49, vyw50) 30.83/14.36 new_esEs13(Left(vyw400), Left(vyw3000), ty_Float, cb) -> new_esEs21(vyw400, vyw3000) 30.83/14.36 new_ltEs22(vyw491, vyw501, ty_Bool) -> new_ltEs5(vyw491, vyw501) 30.83/14.36 new_compare26(vyw49, vyw50, False, fdg) -> new_compare112(vyw49, vyw50, new_ltEs23(vyw49, vyw50, fdg), fdg) 30.83/14.36 new_lt10(vyw101, vyw104, ty_@0) -> new_lt8(vyw101, vyw104) 30.83/14.36 new_ltEs20(vyw492, vyw502, app(app(ty_@2, ecc), ecd)) -> new_ltEs16(vyw492, vyw502, ecc, ecd) 30.83/14.36 new_esEs7(vyw42, vyw302, app(app(app(ty_@3, dah), dba), dbb)) -> new_esEs14(vyw42, vyw302, dah, dba, dbb) 30.83/14.36 new_ltEs23(vyw49, vyw50, app(app(ty_Either, fdh), fea)) -> new_ltEs15(vyw49, vyw50, fdh, fea) 30.83/14.36 new_esEs26(:%(vyw400, vyw401), :%(vyw3000, vyw3001), bfb) -> new_asAs(new_esEs38(vyw400, vyw3000, bfb), new_esEs39(vyw401, vyw3001, bfb)) 30.83/14.36 new_esEs36(vyw401, vyw3001, app(app(ty_@2, fbg), fbh)) -> new_esEs19(vyw401, vyw3001, fbg, fbh) 30.83/14.36 new_gt(vyw18, vyw13, app(ty_Maybe, cac)) -> new_esEs41(new_compare16(vyw18, vyw13, cac)) 30.83/14.36 new_esEs28(vyw101, vyw104, ty_Integer) -> new_esEs24(vyw101, vyw104) 30.83/14.36 new_ltEs20(vyw492, vyw502, app(ty_Maybe, ebe)) -> new_ltEs6(vyw492, vyw502, ebe) 30.83/14.36 new_esEs13(Left(vyw400), Left(vyw3000), app(app(ty_@2, cd), ce), cb) -> new_esEs19(vyw400, vyw3000, cd, ce) 30.83/14.36 new_ltEs19(vyw71, vyw72, app(ty_Ratio, cee)) -> new_ltEs11(vyw71, vyw72, cee) 30.83/14.36 new_esEs29(vyw400, vyw3000, ty_Float) -> new_esEs21(vyw400, vyw3000) 30.83/14.36 new_ltEs15(Right(vyw490), Right(vyw500), fdh, ty_Bool) -> new_ltEs5(vyw490, vyw500) 30.83/14.36 new_esEs13(Right(vyw400), Right(vyw3000), dc, ty_Int) -> new_esEs15(vyw400, vyw3000) 30.83/14.36 new_esEs6(vyw41, vyw301, app(app(ty_@2, dab), dac)) -> new_esEs19(vyw41, vyw301, dab, dac) 30.83/14.36 new_esEs5(vyw40, vyw300, app(ty_Ratio, chc)) -> new_esEs26(vyw40, vyw300, chc) 30.83/14.36 new_compare5(Double(vyw40, Pos(vyw410)), Double(vyw300, Neg(vyw3010))) -> new_compare6(new_sr(vyw40, Pos(vyw3010)), new_sr(Neg(vyw410), vyw300)) 30.83/14.36 new_compare5(Double(vyw40, Neg(vyw410)), Double(vyw300, Pos(vyw3010))) -> new_compare6(new_sr(vyw40, Neg(vyw3010)), new_sr(Pos(vyw410), vyw300)) 30.83/14.36 new_esEs6(vyw41, vyw301, ty_Ordering) -> new_esEs16(vyw41, vyw301) 30.83/14.36 new_ltEs22(vyw491, vyw501, app(app(ty_Either, ehe), ehf)) -> new_ltEs15(vyw491, vyw501, ehe, ehf) 30.83/14.36 new_esEs37(vyw402, vyw3002, app(app(ty_@2, fda), fdb)) -> new_esEs19(vyw402, vyw3002, fda, fdb) 30.83/14.36 new_esEs28(vyw101, vyw104, ty_Bool) -> new_esEs25(vyw101, vyw104) 30.83/14.36 new_ltEs19(vyw71, vyw72, app(app(ty_@2, cfd), cfe)) -> new_ltEs16(vyw71, vyw72, cfd, cfe) 30.83/14.36 new_compare111(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, False, dfh, dga, dgb) -> GT 30.83/14.36 new_ltEs18(vyw102, vyw105, app(ty_Ratio, bch)) -> new_ltEs11(vyw102, vyw105, bch) 30.83/14.36 new_ltEs19(vyw71, vyw72, app(ty_Maybe, cef)) -> new_ltEs6(vyw71, vyw72, cef) 30.83/14.36 new_compare27(vyw113, vyw114, vyw115, vyw116, True, feb, fec) -> EQ 30.83/14.36 new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False 30.83/14.36 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 30.83/14.36 new_esEs35(vyw400, vyw3000, ty_Double) -> new_esEs23(vyw400, vyw3000) 30.83/14.36 new_esEs13(Right(vyw400), Right(vyw3000), dc, app(app(ty_@2, dh), ea)) -> new_esEs19(vyw400, vyw3000, dh, ea) 30.83/14.36 new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 30.83/14.36 new_gt(vyw18, vyw13, app(ty_[], caa)) -> new_esEs41(new_compare4(vyw18, vyw13, caa)) 30.83/14.36 new_esEs8(vyw40, vyw300, ty_Int) -> new_esEs15(vyw40, vyw300) 30.83/14.36 new_esEs6(vyw41, vyw301, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs14(vyw41, vyw301, chf, chg, chh) 30.83/14.36 new_ltEs11(vyw49, vyw50, cbe) -> new_fsEs(new_compare10(vyw49, vyw50, cbe)) 30.83/14.36 new_ltEs6(Nothing, Nothing, ef) -> True 30.83/14.36 new_ltEs23(vyw49, vyw50, ty_Ordering) -> new_ltEs17(vyw49, vyw50) 30.83/14.36 new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False 30.83/14.36 new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False 30.83/14.36 new_esEs9(vyw40, vyw300, ty_Char) -> new_esEs18(vyw40, vyw300) 30.83/14.36 new_ltEs6(Just(vyw490), Nothing, ef) -> False 30.83/14.36 new_primCmpInt(Neg(Zero), Neg(Succ(vyw3000))) -> new_primCmpNat0(Succ(vyw3000), Zero) 30.83/14.36 new_esEs8(vyw40, vyw300, app(ty_Maybe, ccd)) -> new_esEs22(vyw40, vyw300, ccd) 30.83/14.36 new_gt(vyw18, vyw13, ty_Integer) -> new_esEs41(new_compare9(vyw18, vyw13)) 30.83/14.36 new_esEs32(vyw491, vyw501, app(ty_[], eaa)) -> new_esEs17(vyw491, vyw501, eaa) 30.83/14.36 new_esEs17(:(vyw400, vyw401), :(vyw3000, vyw3001), beg) -> new_asAs(new_esEs33(vyw400, vyw3000, beg), new_esEs17(vyw401, vyw3001, beg)) 30.83/14.36 new_esEs38(vyw400, vyw3000, ty_Int) -> new_esEs15(vyw400, vyw3000) 30.83/14.36 new_ltEs15(Right(vyw490), Right(vyw500), fdh, app(app(app(ty_@3, gae), gaf), gag)) -> new_ltEs12(vyw490, vyw500, gae, gaf, gag) 30.83/14.36 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.83/14.36 new_esEs9(vyw40, vyw300, ty_Ordering) -> new_esEs16(vyw40, vyw300) 30.83/14.36 new_esEs27(vyw100, vyw103, ty_Char) -> new_esEs18(vyw100, vyw103) 30.83/14.36 new_ltEs19(vyw71, vyw72, ty_Bool) -> new_ltEs5(vyw71, vyw72) 30.83/14.36 new_esEs9(vyw40, vyw300, app(ty_Maybe, cdf)) -> new_esEs22(vyw40, vyw300, cdf) 30.83/14.36 new_esEs30(vyw401, vyw3001, ty_Float) -> new_esEs21(vyw401, vyw3001) 30.83/14.36 new_lt20(vyw490, vyw500, ty_Double) -> new_lt14(vyw490, vyw500) 30.83/14.36 new_ltEs21(vyw78, vyw79, ty_Integer) -> new_ltEs10(vyw78, vyw79) 30.83/14.36 new_lt21(vyw491, vyw501, ty_Int) -> new_lt13(vyw491, vyw501) 30.83/14.36 new_ltEs6(Just(vyw490), Just(vyw500), ty_Double) -> new_ltEs4(vyw490, vyw500) 30.83/14.36 new_lt23(vyw113, vyw115, ty_Int) -> new_lt13(vyw113, vyw115) 30.83/14.36 new_ltEs23(vyw49, vyw50, ty_Integer) -> new_ltEs10(vyw49, vyw50) 30.83/14.36 new_not(False) -> True 30.83/14.36 new_esEs6(vyw41, vyw301, ty_Int) -> new_esEs15(vyw41, vyw301) 30.83/14.36 new_ltEs15(Right(vyw490), Right(vyw500), fdh, app(ty_Maybe, gad)) -> new_ltEs6(vyw490, vyw500, gad) 30.83/14.36 new_esEs9(vyw40, vyw300, app(ty_Ratio, cdg)) -> new_esEs26(vyw40, vyw300, cdg) 30.83/14.36 new_ltEs24(vyw114, vyw116, app(ty_Maybe, ffh)) -> new_ltEs6(vyw114, vyw116, ffh) 30.83/14.36 new_lt11(vyw100, vyw103, app(app(ty_Either, bba), bbb)) -> new_lt17(vyw100, vyw103, bba, bbb) 30.83/14.36 new_esEs4(vyw40, vyw300, ty_Double) -> new_esEs23(vyw40, vyw300) 30.83/14.36 new_gt(vyw18, vyw13, ty_@0) -> new_esEs41(new_compare12(vyw18, vyw13)) 30.83/14.36 new_esEs41(LT) -> False 30.83/14.36 new_lt12(vyw4, vyw30, bf) -> new_esEs12(new_compare4(vyw4, vyw30, bf)) 30.83/14.36 new_lt10(vyw101, vyw104, ty_Integer) -> new_lt5(vyw101, vyw104) 30.83/14.36 new_ltEs21(vyw78, vyw79, ty_Int) -> new_ltEs8(vyw78, vyw79) 30.83/14.36 new_ltEs18(vyw102, vyw105, app(app(ty_@2, bdg), bdh)) -> new_ltEs16(vyw102, vyw105, bdg, bdh) 30.83/14.36 new_ltEs24(vyw114, vyw116, app(app(app(ty_@3, fga), fgb), fgc)) -> new_ltEs12(vyw114, vyw116, fga, fgb, fgc) 30.83/14.36 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.83/14.36 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.83/14.36 new_esEs27(vyw100, vyw103, ty_Bool) -> new_esEs25(vyw100, vyw103) 30.83/14.36 new_esEs7(vyw42, vyw302, app(ty_Ratio, dbg)) -> new_esEs26(vyw42, vyw302, dbg) 30.83/14.36 new_esEs24(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) 30.83/14.36 new_esEs13(Right(vyw400), Right(vyw3000), dc, app(app(ty_Either, ed), ee)) -> new_esEs13(vyw400, vyw3000, ed, ee) 30.83/14.36 new_esEs7(vyw42, vyw302, app(app(ty_Either, dbh), dca)) -> new_esEs13(vyw42, vyw302, dbh, dca) 30.83/14.36 new_ltEs21(vyw78, vyw79, app(app(app(ty_@3, edb), edc), edd)) -> new_ltEs12(vyw78, vyw79, edb, edc, edd) 30.83/14.36 new_ltEs17(GT, EQ) -> False 30.83/14.36 new_esEs27(vyw100, vyw103, ty_Integer) -> new_esEs24(vyw100, vyw103) 30.83/14.36 new_esEs4(vyw40, vyw300, ty_Int) -> new_esEs15(vyw40, vyw300) 30.83/14.36 new_ltEs24(vyw114, vyw116, app(app(ty_Either, fgd), fge)) -> new_ltEs15(vyw114, vyw116, fgd, fge) 30.83/14.36 new_lt10(vyw101, vyw104, ty_Bool) -> new_lt18(vyw101, vyw104) 30.83/14.36 new_ltEs12(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), dgd, dge, dgf) -> new_pePe(new_lt20(vyw490, vyw500, dgd), new_asAs(new_esEs31(vyw490, vyw500, dgd), new_pePe(new_lt21(vyw491, vyw501, dge), new_asAs(new_esEs32(vyw491, vyw501, dge), new_ltEs20(vyw492, vyw502, dgf))))) 30.83/14.36 new_esEs35(vyw400, vyw3000, app(ty_[], fad)) -> new_esEs17(vyw400, vyw3000, fad) 30.83/14.36 new_esEs22(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs23(vyw400, vyw3000) 30.83/14.36 new_ltEs23(vyw49, vyw50, app(app(app(ty_@3, dgd), dge), dgf)) -> new_ltEs12(vyw49, vyw50, dgd, dge, dgf) 30.83/14.36 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.83/14.36 new_esEs27(vyw100, vyw103, ty_Float) -> new_esEs21(vyw100, vyw103) 30.83/14.36 new_esEs8(vyw40, vyw300, app(app(ty_Either, ccf), ccg)) -> new_esEs13(vyw40, vyw300, ccf, ccg) 30.83/14.36 new_ltEs22(vyw491, vyw501, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_ltEs12(vyw491, vyw501, ehb, ehc, ehd) 30.83/14.36 new_lt10(vyw101, vyw104, ty_Ordering) -> new_lt19(vyw101, vyw104) 30.83/14.36 new_esEs13(Right(vyw400), Right(vyw3000), dc, ty_Double) -> new_esEs23(vyw400, vyw3000) 30.83/14.36 new_esEs9(vyw40, vyw300, app(app(ty_Either, cdh), cea)) -> new_esEs13(vyw40, vyw300, cdh, cea) 30.83/14.36 new_esEs37(vyw402, vyw3002, ty_Double) -> new_esEs23(vyw402, vyw3002) 30.83/14.36 new_ltEs20(vyw492, vyw502, ty_Int) -> new_ltEs8(vyw492, vyw502) 30.83/14.36 new_esEs11(vyw41, vyw301, app(ty_[], bgh)) -> new_esEs17(vyw41, vyw301, bgh) 30.83/14.36 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.83/14.36 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.83/14.36 new_ltEs21(vyw78, vyw79, ty_Bool) -> new_ltEs5(vyw78, vyw79) 30.83/14.36 new_gt(vyw18, vyw13, ty_Char) -> new_esEs41(new_compare8(vyw18, vyw13)) 30.83/14.36 new_ltEs24(vyw114, vyw116, ty_@0) -> new_ltEs13(vyw114, vyw116) 30.83/14.36 new_ltEs17(GT, GT) -> True 30.83/14.36 new_esEs34(vyw490, vyw500, app(ty_[], efe)) -> new_esEs17(vyw490, vyw500, efe) 30.83/14.36 new_esEs8(vyw40, vyw300, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs14(vyw40, vyw300, cbf, cbg, cbh) 30.83/14.36 new_esEs8(vyw40, vyw300, app(ty_Ratio, cce)) -> new_esEs26(vyw40, vyw300, cce) 30.83/14.36 new_compare110(vyw150, vyw151, False, cgb, cgc) -> GT 30.83/14.36 new_lt24(vyw4, vyw30, ty_Int) -> new_lt13(vyw4, vyw30) 30.83/14.36 new_primEqNat0(Zero, Zero) -> True 30.83/14.36 new_ltEs24(vyw114, vyw116, ty_Char) -> new_ltEs9(vyw114, vyw116) 30.83/14.36 new_compare16(Nothing, Just(vyw300), bec) -> LT 30.83/14.36 new_esEs9(vyw40, vyw300, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs14(vyw40, vyw300, cch, cda, cdb) 30.83/14.36 new_esEs17(:(vyw400, vyw401), [], beg) -> False 30.83/14.36 new_esEs17([], :(vyw3000, vyw3001), beg) -> False 30.83/14.36 new_asAs(False, vyw138) -> False 30.83/14.36 new_ltEs20(vyw492, vyw502, ty_Bool) -> new_ltEs5(vyw492, vyw502) 30.83/14.36 new_ltEs15(Left(vyw490), Left(vyw500), ty_Double, fea) -> new_ltEs4(vyw490, vyw500) 30.83/14.36 new_ltEs19(vyw71, vyw72, ty_Int) -> new_ltEs8(vyw71, vyw72) 30.83/14.36 new_esEs4(vyw40, vyw300, app(app(ty_@2, beh), bfa)) -> new_esEs19(vyw40, vyw300, beh, bfa) 30.83/14.36 new_ltEs22(vyw491, vyw501, app(ty_Maybe, eha)) -> new_ltEs6(vyw491, vyw501, eha) 30.83/14.36 new_esEs40(vyw113, vyw115, app(app(ty_@2, ffd), ffe)) -> new_esEs19(vyw113, vyw115, ffd, ffe) 30.83/14.36 30.83/14.36 The set Q consists of the following terms: 30.83/14.36 30.83/14.36 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.83/14.36 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.36 new_esEs34(x0, x1, app(ty_[], x2)) 30.83/14.36 new_ltEs23(x0, x1, ty_Char) 30.83/14.36 new_lt5(x0, x1) 30.83/14.36 new_ltEs7(x0, x1, x2) 30.83/14.36 new_esEs31(x0, x1, ty_Int) 30.83/14.36 new_ltEs17(EQ, EQ) 30.83/14.36 new_ltEs21(x0, x1, app(ty_[], x2)) 30.83/14.36 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.36 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.36 new_primMulInt(Pos(x0), Pos(x1)) 30.83/14.36 new_ltEs15(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.83/14.36 new_compare29(x0, x1, False, x2, x3) 30.83/14.36 new_primMulInt(Pos(x0), Neg(x1)) 30.83/14.36 new_primMulInt(Neg(x0), Pos(x1)) 30.83/14.36 new_lt10(x0, x1, app(ty_Ratio, x2)) 30.83/14.36 new_esEs6(x0, x1, ty_Bool) 30.83/14.36 new_ltEs22(x0, x1, ty_Float) 30.83/14.36 new_esEs29(x0, x1, ty_Integer) 30.83/14.36 new_lt11(x0, x1, app(ty_Ratio, x2)) 30.83/14.36 new_esEs32(x0, x1, ty_Char) 30.83/14.36 new_ltEs15(Left(x0), Left(x1), ty_Int, x2) 30.83/14.36 new_ltEs15(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.83/14.36 new_esEs9(x0, x1, ty_Char) 30.83/14.36 new_esEs22(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.83/14.36 new_esEs6(x0, x1, ty_Integer) 30.83/14.36 new_esEs39(x0, x1, ty_Int) 30.83/14.36 new_lt10(x0, x1, ty_Int) 30.83/14.36 new_esEs20(@0, @0) 30.83/14.36 new_lt13(x0, x1) 30.83/14.36 new_primEqInt(Pos(Zero), Pos(Zero)) 30.83/14.36 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.36 new_ltEs6(Just(x0), Just(x1), ty_Integer) 30.83/14.36 new_esEs6(x0, x1, app(ty_Ratio, x2)) 30.83/14.36 new_esEs40(x0, x1, ty_Char) 30.83/14.36 new_esEs36(x0, x1, ty_Float) 30.83/14.36 new_esEs6(x0, x1, ty_@0) 30.83/14.36 new_lt24(x0, x1, app(ty_[], x2)) 30.83/14.36 new_ltEs19(x0, x1, ty_Float) 30.83/14.36 new_esEs17([], [], x0) 30.83/14.36 new_esEs36(x0, x1, app(ty_[], x2)) 30.83/14.36 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.36 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.36 new_esEs5(x0, x1, ty_Char) 30.83/14.36 new_ltEs20(x0, x1, ty_@0) 30.83/14.36 new_primEqInt(Neg(Zero), Neg(Zero)) 30.83/14.36 new_lt21(x0, x1, ty_Ordering) 30.83/14.36 new_ltEs20(x0, x1, ty_Int) 30.83/14.36 new_esEs29(x0, x1, ty_@0) 30.83/14.36 new_primCmpNat0(Succ(x0), Succ(x1)) 30.83/14.36 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.36 new_ltEs15(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.83/14.36 new_esEs22(Just(x0), Just(x1), ty_Ordering) 30.83/14.36 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.83/14.36 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.83/14.36 new_ltEs6(Just(x0), Just(x1), ty_Float) 30.83/14.36 new_esEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.83/14.36 new_esEs30(x0, x1, app(ty_[], x2)) 30.83/14.36 new_esEs8(x0, x1, app(ty_Maybe, x2)) 30.83/14.36 new_lt11(x0, x1, ty_Int) 30.83/14.36 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.36 new_esEs13(Left(x0), Right(x1), x2, x3) 30.83/14.36 new_esEs13(Right(x0), Left(x1), x2, x3) 30.83/14.36 new_esEs9(x0, x1, ty_Double) 30.83/14.36 new_esEs13(Left(x0), Left(x1), ty_Double, x2) 30.83/14.36 new_ltEs15(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.83/14.36 new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 30.83/14.36 new_lt22(x0, x1, app(ty_Maybe, x2)) 30.83/14.36 new_ltEs21(x0, x1, ty_Int) 30.83/14.36 new_lt21(x0, x1, ty_Double) 30.83/14.36 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.36 new_lt11(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.36 new_primEqInt(Pos(Zero), Neg(Zero)) 30.83/14.36 new_primEqInt(Neg(Zero), Pos(Zero)) 30.83/14.36 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.36 new_primMulInt(Neg(x0), Neg(x1)) 30.83/14.36 new_esEs11(x0, x1, ty_Double) 30.83/14.36 new_lt24(x0, x1, ty_Char) 30.83/14.36 new_esEs27(x0, x1, ty_Float) 30.83/14.36 new_lt22(x0, x1, ty_Ordering) 30.83/14.36 new_esEs37(x0, x1, app(ty_Maybe, x2)) 30.83/14.36 new_esEs8(x0, x1, ty_Float) 30.83/14.36 new_esEs29(x0, x1, ty_Bool) 30.83/14.36 new_esEs29(x0, x1, app(ty_Maybe, x2)) 30.83/14.36 new_ltEs23(x0, x1, ty_Ordering) 30.83/14.36 new_lt16(x0, x1, x2, x3, x4) 30.83/14.36 new_esEs33(x0, x1, ty_Float) 30.83/14.36 new_esEs22(Just(x0), Just(x1), app(ty_[], x2)) 30.83/14.36 new_lt21(x0, x1, app(ty_Ratio, x2)) 30.83/14.36 new_esEs32(x0, x1, ty_Ordering) 30.83/14.36 new_esEs31(x0, x1, ty_@0) 30.83/14.36 new_compare8(Char(x0), Char(x1)) 30.83/14.36 new_lt23(x0, x1, app(ty_Maybe, x2)) 30.83/14.36 new_esEs31(x0, x1, app(ty_[], x2)) 30.83/14.36 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.36 new_esEs7(x0, x1, ty_Char) 30.83/14.36 new_ltEs15(Left(x0), Left(x1), ty_Bool, x2) 30.83/14.36 new_esEs11(x0, x1, ty_Ordering) 30.83/14.36 new_esEs16(LT, GT) 30.83/14.36 new_esEs16(GT, LT) 30.83/14.36 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.36 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.36 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.36 new_ltEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.83/14.36 new_ltEs19(x0, x1, ty_Integer) 30.83/14.36 new_compare4([], [], x0) 30.83/14.36 new_lt11(x0, x1, ty_Bool) 30.83/14.36 new_ltEs9(x0, x1) 30.83/14.36 new_ltEs15(Right(x0), Right(x1), x2, ty_Integer) 30.83/14.36 new_ltEs22(x0, x1, ty_Integer) 30.83/14.36 new_ltEs4(x0, x1) 30.83/14.36 new_esEs27(x0, x1, app(ty_Maybe, x2)) 30.83/14.36 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.36 new_ltEs13(x0, x1) 30.83/14.36 new_lt21(x0, x1, ty_Char) 30.83/14.36 new_compare6(x0, x1) 30.83/14.36 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 30.83/14.36 new_esEs4(x0, x1, ty_Double) 30.83/14.36 new_lt24(x0, x1, app(ty_Maybe, x2)) 30.83/14.36 new_esEs12(GT) 30.83/14.36 new_ltEs24(x0, x1, ty_Bool) 30.83/14.36 new_ltEs15(Left(x0), Left(x1), ty_Integer, x2) 30.83/14.36 new_compare16(Nothing, Just(x0), x1) 30.83/14.36 new_ltEs6(Just(x0), Just(x1), ty_Int) 30.83/14.36 new_esEs13(Left(x0), Left(x1), ty_Ordering, x2) 30.83/14.36 new_lt22(x0, x1, ty_Double) 30.83/14.36 new_lt11(x0, x1, app(ty_[], x2)) 30.83/14.36 new_ltEs19(x0, x1, app(ty_[], x2)) 30.83/14.36 new_ltEs22(x0, x1, ty_@0) 30.83/14.36 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.36 new_compare7(GT, EQ) 30.83/14.36 new_compare7(EQ, GT) 30.83/14.36 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.36 new_esEs22(Nothing, Just(x0), x1) 30.83/14.36 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.36 new_esEs6(x0, x1, app(ty_Maybe, x2)) 30.83/14.36 new_esEs5(x0, x1, ty_Double) 30.83/14.36 new_esEs32(x0, x1, app(ty_Ratio, x2)) 30.83/14.36 new_lt23(x0, x1, ty_Int) 30.83/14.36 new_ltEs18(x0, x1, ty_Int) 30.83/14.36 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.36 new_esEs7(x0, x1, ty_Ordering) 30.83/14.36 new_esEs9(x0, x1, ty_Ordering) 30.83/14.36 new_primEqNat0(Zero, Succ(x0)) 30.83/14.36 new_lt20(x0, x1, ty_Int) 30.83/14.36 new_esEs39(x0, x1, ty_Integer) 30.83/14.36 new_compare15(x0, x1, False, x2, x3) 30.83/14.36 new_esEs27(x0, x1, ty_Double) 30.83/14.36 new_ltEs19(x0, x1, ty_@0) 30.83/14.36 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.36 new_ltEs17(LT, LT) 30.83/14.36 new_ltEs23(x0, x1, ty_Double) 30.83/14.36 new_ltEs24(x0, x1, ty_Int) 30.83/14.36 new_esEs8(x0, x1, app(ty_Ratio, x2)) 30.83/14.36 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.83/14.36 new_esEs35(x0, x1, ty_Char) 30.83/14.36 new_gt(x0, x1, app(ty_[], x2)) 30.83/14.36 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.36 new_ltEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.83/14.36 new_esEs22(Just(x0), Just(x1), ty_Double) 30.83/14.36 new_esEs40(x0, x1, ty_Ordering) 30.83/14.36 new_lt11(x0, x1, ty_Integer) 30.83/14.36 new_ltEs6(Just(x0), Just(x1), ty_Bool) 30.83/14.36 new_lt21(x0, x1, ty_Float) 30.83/14.36 new_esEs8(x0, x1, ty_Ordering) 30.83/14.36 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.36 new_lt10(x0, x1, ty_@0) 30.83/14.36 new_esEs8(x0, x1, ty_Bool) 30.83/14.36 new_lt21(x0, x1, app(ty_[], x2)) 30.83/14.36 new_compare32(x0, x1, ty_Int) 30.83/14.36 new_ltEs5(True, True) 30.83/14.36 new_esEs7(x0, x1, app(ty_[], x2)) 30.83/14.36 new_esEs4(x0, x1, app(ty_Maybe, x2)) 30.83/14.36 new_compare10(:%(x0, x1), :%(x2, x3), ty_Integer) 30.83/14.36 new_primPlusNat0(Succ(x0), Zero) 30.83/14.36 new_esEs16(EQ, GT) 30.83/14.36 new_esEs16(GT, EQ) 30.83/14.36 new_esEs32(x0, x1, ty_Double) 30.83/14.36 new_compare28(x0, x1, False, x2, x3) 30.83/14.36 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.36 new_esEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.83/14.36 new_pePe(True, x0) 30.83/14.36 new_lt11(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.36 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.36 new_ltEs18(x0, x1, app(ty_[], x2)) 30.83/14.36 new_esEs8(x0, x1, ty_Integer) 30.83/14.36 new_lt20(x0, x1, ty_Bool) 30.83/14.36 new_esEs22(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.83/14.36 new_compare25(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 30.83/14.36 new_esEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.83/14.36 new_esEs13(Right(x0), Right(x1), x2, ty_@0) 30.83/14.36 new_lt24(x0, x1, ty_Ordering) 30.83/14.36 new_ltEs15(Right(x0), Left(x1), x2, x3) 30.83/14.36 new_ltEs15(Left(x0), Right(x1), x2, x3) 30.83/14.36 new_ltEs17(LT, EQ) 30.83/14.36 new_ltEs17(EQ, LT) 30.83/14.36 new_lt4(x0, x1) 30.83/14.36 new_compare32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.36 new_esEs33(x0, x1, ty_Ordering) 30.83/14.36 new_compare7(GT, LT) 30.83/14.36 new_compare7(LT, GT) 30.83/14.36 new_esEs13(Right(x0), Right(x1), x2, ty_Integer) 30.83/14.36 new_esEs40(x0, x1, app(ty_Ratio, x2)) 30.83/14.36 new_esEs35(x0, x1, ty_Double) 30.83/14.36 new_ltEs24(x0, x1, app(ty_[], x2)) 30.83/14.36 new_esEs10(x0, x1, ty_@0) 30.83/14.36 new_ltEs19(x0, x1, ty_Int) 30.83/14.36 new_esEs28(x0, x1, ty_@0) 30.83/14.36 new_esEs25(False, True) 30.83/14.36 new_esEs25(True, False) 30.83/14.36 new_lt23(x0, x1, ty_@0) 30.83/14.36 new_esEs11(x0, x1, ty_Bool) 30.83/14.36 new_esEs33(x0, x1, ty_Double) 30.83/14.36 new_lt23(x0, x1, ty_Bool) 30.83/14.36 new_compare32(x0, x1, ty_@0) 30.83/14.36 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.36 new_esEs11(x0, x1, ty_Integer) 30.83/14.36 new_esEs35(x0, x1, ty_Ordering) 30.83/14.36 new_esEs10(x0, x1, ty_Bool) 30.83/14.36 new_esEs36(x0, x1, ty_Ordering) 30.83/14.36 new_esEs8(x0, x1, ty_@0) 30.83/14.36 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 30.83/14.36 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.36 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.36 new_esEs11(x0, x1, app(ty_Maybe, x2)) 30.83/14.36 new_ltEs19(x0, x1, ty_Double) 30.83/14.36 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.36 new_compare4([], :(x0, x1), x2) 30.83/14.36 new_esEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.83/14.36 new_ltEs19(x0, x1, ty_Char) 30.83/14.36 new_ltEs22(x0, x1, ty_Char) 30.83/14.36 new_esEs13(Right(x0), Right(x1), x2, ty_Bool) 30.83/14.36 new_esEs10(x0, x1, app(ty_[], x2)) 30.83/14.36 new_esEs21(Float(x0, x1), Float(x2, x3)) 30.83/14.36 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.83/14.36 new_lt8(x0, x1) 30.83/14.36 new_ltEs20(x0, x1, app(ty_[], x2)) 30.83/14.36 new_esEs33(x0, x1, app(ty_Ratio, x2)) 30.83/14.36 new_compare32(x0, x1, app(ty_Ratio, x2)) 30.83/14.36 new_ltEs15(Right(x0), Right(x1), x2, ty_Ordering) 30.83/14.36 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.36 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.36 new_ltEs22(x0, x1, ty_Int) 30.83/14.36 new_esEs36(x0, x1, app(ty_Ratio, x2)) 30.83/14.36 new_esEs32(x0, x1, app(ty_Maybe, x2)) 30.83/14.36 new_ltEs15(Left(x0), Left(x1), ty_Float, x2) 30.83/14.36 new_esEs4(x0, x1, ty_Bool) 30.83/14.36 new_esEs13(Left(x0), Left(x1), ty_@0, x2) 30.83/14.36 new_lt10(x0, x1, ty_Float) 30.83/14.36 new_ltEs22(x0, x1, ty_Double) 30.83/14.36 new_esEs23(Double(x0, x1), Double(x2, x3)) 30.83/14.36 new_lt20(x0, x1, app(ty_[], x2)) 30.83/14.36 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.36 new_ltEs15(Right(x0), Right(x1), x2, ty_@0) 30.83/14.36 new_lt22(x0, x1, ty_Bool) 30.83/14.36 new_primPlusNat0(Zero, Zero) 30.83/14.36 new_ltEs6(Just(x0), Just(x1), app(ty_[], x2)) 30.83/14.36 new_ltEs6(Nothing, Nothing, x0) 30.83/14.36 new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.83/14.36 new_esEs17(:(x0, x1), [], x2) 30.83/14.36 new_esEs37(x0, x1, ty_Ordering) 30.83/14.36 new_compare32(x0, x1, ty_Integer) 30.83/14.36 new_not(True) 30.83/14.36 new_esEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.83/14.36 new_esEs30(x0, x1, ty_Bool) 30.83/14.36 new_primEqNat0(Succ(x0), Zero) 30.83/14.36 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.36 new_gt(x0, x1, ty_Int) 30.83/14.36 new_lt23(x0, x1, ty_Char) 30.83/14.36 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.36 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.36 new_gt(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.36 new_esEs4(x0, x1, ty_Integer) 30.83/14.36 new_ltEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.83/14.36 new_gt(x0, x1, ty_Char) 30.83/14.36 new_ltEs21(x0, x1, ty_@0) 30.83/14.36 new_compare32(x0, x1, app(ty_Maybe, x2)) 30.83/14.36 new_lt20(x0, x1, ty_Float) 30.83/14.36 new_ltEs20(x0, x1, ty_Float) 30.83/14.36 new_esEs15(x0, x1) 30.83/14.36 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.36 new_esEs10(x0, x1, ty_Integer) 30.83/14.36 new_lt23(x0, x1, ty_Integer) 30.83/14.36 new_esEs34(x0, x1, ty_Char) 30.83/14.36 new_asAs(True, x0) 30.83/14.37 new_lt24(x0, x1, ty_Double) 30.83/14.37 new_compare19(Right(x0), Right(x1), x2, x3) 30.83/14.37 new_esEs31(x0, x1, ty_Float) 30.83/14.37 new_compare28(x0, x1, True, x2, x3) 30.83/14.37 new_ltEs19(x0, x1, ty_Bool) 30.83/14.37 new_esEs11(x0, x1, ty_Char) 30.83/14.37 new_esEs34(x0, x1, ty_Double) 30.83/14.37 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_esEs30(x0, x1, ty_Char) 30.83/14.37 new_esEs29(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_ltEs14(x0, x1) 30.83/14.37 new_compare10(:%(x0, x1), :%(x2, x3), ty_Int) 30.83/14.37 new_esEs30(x0, x1, ty_@0) 30.83/14.37 new_compare15(x0, x1, True, x2, x3) 30.83/14.37 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_lt22(x0, x1, ty_Integer) 30.83/14.37 new_lt17(x0, x1, x2, x3) 30.83/14.37 new_lt24(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs36(x0, x1, ty_Double) 30.83/14.37 new_lt12(x0, x1, x2) 30.83/14.37 new_compare12(@0, @0) 30.83/14.37 new_esEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.83/14.37 new_esEs34(x0, x1, ty_Int) 30.83/14.37 new_esEs11(x0, x1, ty_Int) 30.83/14.37 new_esEs30(x0, x1, ty_Int) 30.83/14.37 new_esEs31(x0, x1, ty_Integer) 30.83/14.37 new_lt11(x0, x1, ty_@0) 30.83/14.37 new_esEs31(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_lt10(x0, x1, ty_Integer) 30.83/14.37 new_lt22(x0, x1, ty_Int) 30.83/14.37 new_esEs29(x0, x1, ty_Int) 30.83/14.37 new_esEs17([], :(x0, x1), x2) 30.83/14.37 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_compare27(x0, x1, x2, x3, False, x4, x5) 30.83/14.37 new_esEs13(Right(x0), Right(x1), x2, ty_Char) 30.83/14.37 new_ltEs17(LT, GT) 30.83/14.37 new_ltEs17(GT, LT) 30.83/14.37 new_esEs10(x0, x1, ty_Float) 30.83/14.37 new_compare4(:(x0, x1), [], x2) 30.83/14.37 new_ltEs22(x0, x1, ty_Bool) 30.83/14.37 new_esEs25(True, True) 30.83/14.37 new_ltEs15(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.83/14.37 new_compare110(x0, x1, False, x2, x3) 30.83/14.37 new_esEs29(x0, x1, ty_Char) 30.83/14.37 new_fsEs(x0) 30.83/14.37 new_lt22(x0, x1, ty_Char) 30.83/14.37 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs11(x0, x1, ty_Float) 30.83/14.37 new_esEs5(x0, x1, app(ty_[], x2)) 30.83/14.37 new_esEs17(:(x0, x1), :(x2, x3), x4) 30.83/14.37 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_esEs29(x0, x1, ty_Float) 30.83/14.37 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_ltEs20(x0, x1, ty_Integer) 30.83/14.37 new_esEs5(x0, x1, ty_Ordering) 30.83/14.37 new_esEs22(Just(x0), Just(x1), ty_Integer) 30.83/14.37 new_esEs10(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_esEs24(Integer(x0), Integer(x1)) 30.83/14.37 new_ltEs18(x0, x1, ty_Ordering) 30.83/14.37 new_esEs31(x0, x1, ty_Bool) 30.83/14.37 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs5(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_ltEs18(x0, x1, ty_Double) 30.83/14.37 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_esEs9(x0, x1, ty_Float) 30.83/14.37 new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.83/14.37 new_esEs9(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_gt(x0, x1, ty_Bool) 30.83/14.37 new_esEs22(Just(x0), Just(x1), ty_Float) 30.83/14.37 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_primEqNat0(Zero, Zero) 30.83/14.37 new_esEs22(Just(x0), Just(x1), ty_Bool) 30.83/14.37 new_gt(x0, x1, ty_Integer) 30.83/14.37 new_esEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.83/14.37 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.83/14.37 new_not(False) 30.83/14.37 new_ltEs22(x0, x1, app(ty_[], x2)) 30.83/14.37 new_esEs10(x0, x1, ty_Char) 30.83/14.37 new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_compare7(EQ, LT) 30.83/14.37 new_compare7(LT, EQ) 30.83/14.37 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.83/14.37 new_ltEs20(x0, x1, ty_Bool) 30.83/14.37 new_esEs4(x0, x1, ty_Int) 30.83/14.37 new_esEs12(LT) 30.83/14.37 new_compare7(GT, GT) 30.83/14.37 new_esEs27(x0, x1, ty_Ordering) 30.83/14.37 new_lt20(x0, x1, ty_Double) 30.83/14.37 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_primCompAux0(x0, x1, x2, x3) 30.83/14.37 new_esEs13(Right(x0), Right(x1), x2, ty_Float) 30.83/14.37 new_esEs4(x0, x1, ty_Char) 30.83/14.37 new_lt6(x0, x1, x2) 30.83/14.37 new_ltEs6(Just(x0), Just(x1), ty_Double) 30.83/14.37 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs22(Just(x0), Just(x1), ty_Int) 30.83/14.37 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_esEs35(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_esEs40(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_esEs30(x0, x1, ty_Integer) 30.83/14.37 new_ltEs24(x0, x1, ty_Double) 30.83/14.37 new_lt10(x0, x1, ty_Bool) 30.83/14.37 new_lt22(x0, x1, ty_Float) 30.83/14.37 new_compare11(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.83/14.37 new_compare11(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.83/14.37 new_esEs41(LT) 30.83/14.37 new_esEs28(x0, x1, app(ty_[], x2)) 30.83/14.37 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.83/14.37 new_esEs32(x0, x1, ty_Int) 30.83/14.37 new_lt10(x0, x1, ty_Char) 30.83/14.37 new_esEs32(x0, x1, ty_Float) 30.83/14.37 new_esEs4(x0, x1, ty_Float) 30.83/14.37 new_ltEs15(Left(x0), Left(x1), ty_Double, x2) 30.83/14.37 new_esEs22(Just(x0), Just(x1), ty_Char) 30.83/14.37 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.83/14.37 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.83/14.37 new_esEs16(LT, EQ) 30.83/14.37 new_esEs16(EQ, LT) 30.83/14.37 new_esEs10(x0, x1, ty_Int) 30.83/14.37 new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) 30.83/14.37 new_lt18(x0, x1) 30.83/14.37 new_esEs16(GT, GT) 30.83/14.37 new_esEs13(Right(x0), Right(x1), x2, ty_Int) 30.83/14.37 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs22(Just(x0), Nothing, x1) 30.83/14.37 new_ltEs15(Left(x0), Left(x1), ty_Ordering, x2) 30.83/14.37 new_esEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.83/14.37 new_esEs35(x0, x1, ty_Float) 30.83/14.37 new_esEs5(x0, x1, ty_@0) 30.83/14.37 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_esEs27(x0, x1, app(ty_[], x2)) 30.83/14.37 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.83/14.37 new_lt7(x0, x1) 30.83/14.37 new_esEs7(x0, x1, ty_Integer) 30.83/14.37 new_esEs31(x0, x1, ty_Char) 30.83/14.37 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.83/14.37 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.83/14.37 new_esEs7(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_esEs34(x0, x1, ty_Float) 30.83/14.37 new_compare16(Just(x0), Just(x1), x2) 30.83/14.37 new_compare27(x0, x1, x2, x3, True, x4, x5) 30.83/14.37 new_lt24(x0, x1, ty_Integer) 30.83/14.37 new_lt11(x0, x1, ty_Ordering) 30.83/14.37 new_primCompAux00(x0, EQ) 30.83/14.37 new_esEs5(x0, x1, ty_Bool) 30.83/14.37 new_compare11(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.83/14.37 new_lt10(x0, x1, ty_Ordering) 30.83/14.37 new_esEs35(x0, x1, app(ty_[], x2)) 30.83/14.37 new_esEs4(x0, x1, app(ty_[], x2)) 30.83/14.37 new_lt24(x0, x1, ty_Bool) 30.83/14.37 new_esEs8(x0, x1, app(ty_[], x2)) 30.83/14.37 new_compare19(Left(x0), Left(x1), x2, x3) 30.83/14.37 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.83/14.37 new_asAs(False, x0) 30.83/14.37 new_esEs9(x0, x1, ty_@0) 30.83/14.37 new_ltEs20(x0, x1, ty_Char) 30.83/14.37 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_ltEs5(False, True) 30.83/14.37 new_esEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.83/14.37 new_ltEs5(True, False) 30.83/14.37 new_esEs16(EQ, EQ) 30.83/14.37 new_compare17(x0, x1, x2, x3, False, x4, x5, x6) 30.83/14.37 new_esEs40(x0, x1, ty_Bool) 30.83/14.37 new_esEs32(x0, x1, ty_Bool) 30.83/14.37 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_esEs6(x0, x1, app(ty_[], x2)) 30.83/14.37 new_lt11(x0, x1, ty_Double) 30.83/14.37 new_ltEs6(Just(x0), Nothing, x1) 30.83/14.37 new_compare11(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.83/14.37 new_esEs37(x0, x1, app(ty_[], x2)) 30.83/14.37 new_esEs7(x0, x1, ty_@0) 30.83/14.37 new_esEs5(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_lt11(x0, x1, ty_Char) 30.83/14.37 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_lt19(x0, x1) 30.83/14.37 new_esEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.83/14.37 new_ltEs21(x0, x1, ty_Double) 30.83/14.37 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs5(x0, x1, ty_Int) 30.83/14.37 new_primCmpNat0(Zero, Succ(x0)) 30.83/14.37 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.83/14.37 new_primPlusNat1(Zero, x0) 30.83/14.37 new_esEs9(x0, x1, ty_Int) 30.83/14.37 new_esEs22(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.83/14.37 new_esEs4(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_ltEs15(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.83/14.37 new_esEs22(Nothing, Nothing, x0) 30.83/14.37 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_esEs30(x0, x1, ty_Float) 30.83/14.37 new_ltEs16(@2(x0, x1), @2(x2, x3), x4, x5) 30.83/14.37 new_esEs7(x0, x1, ty_Float) 30.83/14.37 new_compare19(Right(x0), Left(x1), x2, x3) 30.83/14.37 new_compare19(Left(x0), Right(x1), x2, x3) 30.83/14.37 new_esEs40(x0, x1, ty_Int) 30.83/14.37 new_esEs31(x0, x1, ty_Double) 30.83/14.37 new_lt24(x0, x1, ty_Float) 30.83/14.37 new_esEs22(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.83/14.37 new_lt24(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_primPlusNat1(Succ(x0), x1) 30.83/14.37 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_esEs13(Right(x0), Right(x1), x2, ty_Ordering) 30.83/14.37 new_ltEs24(x0, x1, ty_Ordering) 30.83/14.37 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_esEs32(x0, x1, ty_Integer) 30.83/14.37 new_esEs40(x0, x1, ty_@0) 30.83/14.37 new_gt(x0, x1, ty_Float) 30.83/14.37 new_esEs30(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_ltEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.83/14.37 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.83/14.37 new_esEs9(x0, x1, ty_Bool) 30.83/14.37 new_compare110(x0, x1, True, x2, x3) 30.83/14.37 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_compare31(False, False) 30.83/14.37 new_gt(x0, x1, ty_@0) 30.83/14.37 new_lt24(x0, x1, ty_@0) 30.83/14.37 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs29(x0, x1, app(ty_[], x2)) 30.83/14.37 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_lt24(x0, x1, ty_Int) 30.83/14.37 new_compare32(x0, x1, app(ty_[], x2)) 30.83/14.37 new_primCompAux00(x0, LT) 30.83/14.37 new_esEs22(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_esEs41(GT) 30.83/14.37 new_esEs28(x0, x1, ty_Double) 30.83/14.37 new_compare26(x0, x1, True, x2) 30.83/14.37 new_esEs6(x0, x1, ty_Ordering) 30.83/14.37 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_lt24(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_esEs35(x0, x1, ty_Bool) 30.83/14.37 new_compare16(Nothing, Nothing, x0) 30.83/14.37 new_esEs34(x0, x1, ty_Integer) 30.83/14.37 new_esEs28(x0, x1, ty_Ordering) 30.83/14.37 new_esEs34(x0, x1, ty_Bool) 30.83/14.37 new_esEs33(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_esEs13(Left(x0), Left(x1), app(ty_[], x2), x3) 30.83/14.37 new_ltEs18(x0, x1, ty_Float) 30.83/14.37 new_lt20(x0, x1, ty_Char) 30.83/14.37 new_ltEs6(Just(x0), Just(x1), ty_Char) 30.83/14.37 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_compare32(x0, x1, ty_Ordering) 30.83/14.37 new_lt23(x0, x1, ty_Float) 30.83/14.37 new_lt20(x0, x1, ty_Ordering) 30.83/14.37 new_esEs29(x0, x1, ty_Double) 30.83/14.37 new_esEs40(x0, x1, app(ty_[], x2)) 30.83/14.37 new_esEs9(x0, x1, ty_Integer) 30.83/14.37 new_esEs6(x0, x1, ty_Double) 30.83/14.37 new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.83/14.37 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_lt21(x0, x1, ty_Int) 30.83/14.37 new_compare32(x0, x1, ty_Float) 30.83/14.37 new_gt(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_esEs35(x0, x1, ty_Integer) 30.83/14.37 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs25(False, False) 30.83/14.37 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_esEs29(x0, x1, ty_Ordering) 30.83/14.37 new_esEs7(x0, x1, ty_Int) 30.83/14.37 new_compare18(x0, x1, x2, x3, True, x4, x5) 30.83/14.37 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.83/14.37 new_ltEs6(Just(x0), Just(x1), ty_Ordering) 30.83/14.37 new_ltEs21(x0, x1, ty_Ordering) 30.83/14.37 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.83/14.37 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.83/14.37 new_ltEs20(x0, x1, ty_Double) 30.83/14.37 new_esEs22(Just(x0), Just(x1), ty_@0) 30.83/14.37 new_lt10(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_esEs7(x0, x1, ty_Bool) 30.83/14.37 new_esEs13(Right(x0), Right(x1), x2, ty_Double) 30.83/14.37 new_ltEs23(x0, x1, app(ty_[], x2)) 30.83/14.37 new_esEs37(x0, x1, ty_@0) 30.83/14.37 new_compare14(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 30.83/14.37 new_ltEs17(GT, GT) 30.83/14.37 new_ltEs24(x0, x1, ty_Float) 30.83/14.37 new_esEs35(x0, x1, ty_Int) 30.83/14.37 new_lt23(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_compare32(x0, x1, ty_Bool) 30.83/14.37 new_lt22(x0, x1, ty_@0) 30.83/14.37 new_ltEs24(x0, x1, ty_Char) 30.83/14.37 new_lt10(x0, x1, ty_Double) 30.83/14.37 new_ltEs15(Left(x0), Left(x1), ty_Char, x2) 30.83/14.37 new_esEs7(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.83/14.37 new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.83/14.37 new_esEs34(x0, x1, ty_Ordering) 30.83/14.37 new_esEs37(x0, x1, ty_Double) 30.83/14.37 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_esEs10(x0, x1, ty_Double) 30.83/14.37 new_esEs18(Char(x0), Char(x1)) 30.83/14.37 new_compare32(x0, x1, ty_Char) 30.83/14.37 new_lt9(x0, x1, x2, x3) 30.83/14.37 new_esEs32(x0, x1, ty_@0) 30.83/14.37 new_ltEs23(x0, x1, ty_@0) 30.83/14.37 new_esEs40(x0, x1, ty_Integer) 30.83/14.37 new_esEs33(x0, x1, app(ty_[], x2)) 30.83/14.37 new_lt20(x0, x1, ty_Integer) 30.83/14.37 new_ltEs15(Right(x0), Right(x1), x2, ty_Char) 30.83/14.37 new_compare26(x0, x1, False, x2) 30.83/14.37 new_lt10(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs4(x0, x1, ty_@0) 30.83/14.37 new_esEs36(x0, x1, ty_Int) 30.83/14.37 new_esEs37(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_esEs13(Left(x0), Left(x1), ty_Integer, x2) 30.83/14.37 new_esEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.83/14.37 new_ltEs18(x0, x1, ty_@0) 30.83/14.37 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_lt11(x0, x1, ty_Float) 30.83/14.37 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_compare9(Integer(x0), Integer(x1)) 30.83/14.37 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_primEqNat0(Succ(x0), Succ(x1)) 30.83/14.37 new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_primMulNat0(Zero, Zero) 30.83/14.37 new_ltEs22(x0, x1, ty_Ordering) 30.83/14.37 new_gt(x0, x1, ty_Double) 30.83/14.37 new_esEs11(x0, x1, app(ty_[], x2)) 30.83/14.37 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_compare112(x0, x1, False, x2) 30.83/14.37 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.83/14.37 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.83/14.37 new_esEs28(x0, x1, ty_Bool) 30.83/14.37 new_ltEs18(x0, x1, ty_Bool) 30.83/14.37 new_esEs27(x0, x1, ty_Char) 30.83/14.37 new_esEs8(x0, x1, ty_Char) 30.83/14.37 new_esEs27(x0, x1, ty_@0) 30.83/14.37 new_ltEs15(Right(x0), Right(x1), x2, ty_Int) 30.83/14.37 new_esEs9(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_primCmpNat0(Succ(x0), Zero) 30.83/14.37 new_gt(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_lt21(x0, x1, ty_Integer) 30.83/14.37 new_compare32(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_esEs31(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_ltEs19(x0, x1, ty_Ordering) 30.83/14.37 new_compare31(True, False) 30.83/14.37 new_compare31(False, True) 30.83/14.37 new_primMulNat0(Zero, Succ(x0)) 30.83/14.37 new_ltEs15(Left(x0), Left(x1), app(ty_[], x2), x3) 30.83/14.37 new_compare13(@2(x0, x1), @2(x2, x3), x4, x5) 30.83/14.37 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_ltEs18(x0, x1, ty_Char) 30.83/14.37 new_primPlusNat0(Succ(x0), Succ(x1)) 30.83/14.37 new_sr(x0, x1) 30.83/14.37 new_lt20(x0, x1, ty_@0) 30.83/14.37 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_ltEs21(x0, x1, ty_Float) 30.83/14.37 new_ltEs21(x0, x1, ty_Integer) 30.83/14.37 new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.83/14.37 new_esEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.83/14.37 new_esEs10(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_compare18(x0, x1, x2, x3, False, x4, x5) 30.83/14.37 new_ltEs18(x0, x1, ty_Integer) 30.83/14.37 new_esEs28(x0, x1, ty_Char) 30.83/14.37 new_lt23(x0, x1, app(ty_[], x2)) 30.83/14.37 new_ltEs21(x0, x1, ty_Bool) 30.83/14.37 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.83/14.37 new_ltEs15(Right(x0), Right(x1), x2, ty_Bool) 30.83/14.37 new_esEs8(x0, x1, ty_Int) 30.83/14.37 new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 30.83/14.37 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_esEs27(x0, x1, ty_Int) 30.83/14.37 new_esEs36(x0, x1, ty_@0) 30.83/14.37 new_esEs30(x0, x1, ty_Double) 30.83/14.37 new_esEs32(x0, x1, app(ty_[], x2)) 30.83/14.37 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs26(:%(x0, x1), :%(x2, x3), x4) 30.83/14.37 new_esEs33(x0, x1, ty_Char) 30.83/14.37 new_esEs28(x0, x1, ty_Integer) 30.83/14.37 new_ltEs24(x0, x1, ty_Integer) 30.83/14.37 new_lt14(x0, x1) 30.83/14.37 new_ltEs15(Right(x0), Right(x1), x2, ty_Double) 30.83/14.37 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_esEs27(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_ltEs15(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.83/14.37 new_pePe(False, x0) 30.83/14.37 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs11(x0, x1, ty_@0) 30.83/14.37 new_gt(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs34(x0, x1, ty_@0) 30.83/14.37 new_esEs36(x0, x1, ty_Bool) 30.83/14.37 new_ltEs15(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.83/14.37 new_ltEs5(False, False) 30.83/14.37 new_compare16(Just(x0), Nothing, x1) 30.83/14.37 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_compare112(x0, x1, True, x2) 30.83/14.37 new_esEs33(x0, x1, ty_Int) 30.83/14.37 new_esEs33(x0, x1, ty_@0) 30.83/14.37 new_ltEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.83/14.37 new_esEs10(x0, x1, ty_Ordering) 30.83/14.37 new_esEs40(x0, x1, ty_Float) 30.83/14.37 new_esEs36(x0, x1, ty_Char) 30.83/14.37 new_lt21(x0, x1, ty_Bool) 30.83/14.37 new_esEs13(Left(x0), Left(x1), ty_Bool, x2) 30.83/14.37 new_esEs4(x0, x1, ty_Ordering) 30.83/14.37 new_primMulNat0(Succ(x0), Zero) 30.83/14.37 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.83/14.37 new_lt22(x0, x1, app(ty_[], x2)) 30.83/14.37 new_esEs28(x0, x1, ty_Float) 30.83/14.37 new_ltEs10(x0, x1) 30.83/14.37 new_esEs36(x0, x1, ty_Integer) 30.83/14.37 new_esEs13(Left(x0), Left(x1), ty_Int, x2) 30.83/14.37 new_lt23(x0, x1, ty_Double) 30.83/14.37 new_ltEs21(x0, x1, ty_Char) 30.83/14.37 new_esEs13(Left(x0), Left(x1), ty_Char, x2) 30.83/14.37 new_primMulNat0(Succ(x0), Succ(x1)) 30.83/14.37 new_esEs30(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_esEs5(x0, x1, ty_Float) 30.83/14.37 new_lt15(x0, x1, x2) 30.83/14.37 new_ltEs15(Left(x0), Left(x1), ty_@0, x2) 30.83/14.37 new_compare25(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 30.83/14.37 new_ltEs23(x0, x1, ty_Integer) 30.83/14.37 new_primPlusNat0(Zero, Succ(x0)) 30.83/14.37 new_esEs35(x0, x1, ty_@0) 30.83/14.37 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_compare29(x0, x1, True, x2, x3) 30.83/14.37 new_esEs6(x0, x1, ty_Float) 30.83/14.37 new_compare32(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs37(x0, x1, ty_Integer) 30.83/14.37 new_esEs9(x0, x1, app(ty_[], x2)) 30.83/14.37 new_esEs34(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_esEs36(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_esEs34(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_ltEs15(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.83/14.37 new_esEs28(x0, x1, ty_Int) 30.83/14.37 new_ltEs6(Nothing, Just(x0), x1) 30.83/14.37 new_lt23(x0, x1, ty_Ordering) 30.83/14.37 new_esEs6(x0, x1, ty_Char) 30.83/14.37 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.83/14.37 new_esEs40(x0, x1, ty_Double) 30.83/14.37 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_ltEs6(Just(x0), Just(x1), ty_@0) 30.83/14.37 new_esEs6(x0, x1, ty_Int) 30.83/14.37 new_esEs12(EQ) 30.83/14.37 new_esEs13(Left(x0), Left(x1), ty_Float, x2) 30.83/14.37 new_esEs35(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_esEs11(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_lt10(x0, x1, app(ty_[], x2)) 30.83/14.37 new_compare7(EQ, EQ) 30.83/14.37 new_ltEs8(x0, x1) 30.83/14.37 new_esEs41(EQ) 30.83/14.37 new_lt21(x0, x1, ty_@0) 30.83/14.37 new_esEs8(x0, x1, ty_Double) 30.83/14.37 new_esEs33(x0, x1, ty_Bool) 30.83/14.37 new_esEs30(x0, x1, ty_Ordering) 30.83/14.37 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_esEs5(x0, x1, ty_Integer) 30.83/14.37 new_compare14(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 30.83/14.37 new_esEs38(x0, x1, ty_Integer) 30.83/14.37 new_ltEs23(x0, x1, ty_Float) 30.83/14.37 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_ltEs20(x0, x1, ty_Ordering) 30.83/14.37 new_esEs37(x0, x1, ty_Bool) 30.83/14.37 new_ltEs23(x0, x1, ty_Bool) 30.83/14.37 new_esEs16(LT, LT) 30.83/14.37 new_lt11(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_esEs7(x0, x1, ty_Double) 30.83/14.37 new_ltEs15(Right(x0), Right(x1), x2, ty_Float) 30.83/14.37 new_ltEs11(x0, x1, x2) 30.83/14.37 new_esEs37(x0, x1, ty_Float) 30.83/14.37 new_compare31(True, True) 30.83/14.37 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.83/14.37 new_esEs27(x0, x1, ty_Integer) 30.83/14.37 new_esEs27(x0, x1, ty_Bool) 30.83/14.37 new_ltEs17(EQ, GT) 30.83/14.37 new_lt10(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_ltEs17(GT, EQ) 30.83/14.37 new_compare7(LT, LT) 30.83/14.37 new_compare4(:(x0, x1), :(x2, x3), x4) 30.83/14.37 new_esEs38(x0, x1, ty_Int) 30.83/14.37 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_gt(x0, x1, ty_Ordering) 30.83/14.37 new_esEs33(x0, x1, ty_Integer) 30.83/14.37 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_lt22(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_esEs37(x0, x1, ty_Int) 30.83/14.37 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_primCompAux00(x0, GT) 30.83/14.37 new_compare32(x0, x1, ty_Double) 30.83/14.37 new_ltEs24(x0, x1, ty_@0) 30.83/14.37 new_sr0(Integer(x0), Integer(x1)) 30.83/14.37 new_ltEs23(x0, x1, ty_Int) 30.83/14.37 new_primCmpNat0(Zero, Zero) 30.83/14.37 new_compare30(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.83/14.37 new_compare17(x0, x1, x2, x3, True, x4, x5, x6) 30.83/14.37 new_lt21(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_esEs37(x0, x1, ty_Char) 30.83/14.37 new_esEs31(x0, x1, ty_Ordering) 30.83/14.37 30.83/14.37 We have to consider all minimal (P,Q,R)-chains. 30.83/14.37 ---------------------------------------- 30.83/14.37 30.83/14.37 (21) QDPSizeChangeProof (EQUIVALENT) 30.83/14.37 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. 30.83/14.37 30.83/14.37 From the DPs we obtained the following set of size-change graphs: 30.83/14.37 *new_lookupFM2(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba) -> new_lookupFM(vyw16, vyw18, h, ba) 30.83/14.37 The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 30.83/14.37 30.83/14.37 30.83/14.37 *new_lookupFM2(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, h, ba) -> new_lookupFM1(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_gt(vyw18, vyw13, ba), h, ba) 30.83/14.37 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 30.83/14.37 30.83/14.37 30.83/14.37 *new_lookupFM1(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bb, bc) -> new_lookupFM(vyw32, vyw33, bb, bc) 30.83/14.37 The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 30.83/14.37 30.83/14.37 30.83/14.37 *new_lookupFM(Branch(vyw30, vyw31, vyw32, vyw33, vyw34), vyw4, bd, be) -> new_lookupFM2(vyw30, vyw31, vyw32, vyw33, vyw34, vyw4, new_lt24(vyw4, vyw30, be), bd, be) 30.83/14.37 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 >= 6, 3 >= 8, 4 >= 9 30.83/14.37 30.83/14.37 30.83/14.37 ---------------------------------------- 30.83/14.37 30.83/14.37 (22) 30.83/14.37 YES 30.83/14.37 30.83/14.37 ---------------------------------------- 30.83/14.37 30.83/14.37 (23) 30.83/14.37 Obligation: 30.83/14.37 Q DP problem: 30.83/14.37 The TRS P consists of the following rules: 30.83/14.37 30.83/14.37 new_ltEs(vyw49, vyw50, cc) -> new_compare(vyw49, vyw50, cc) 30.83/14.37 new_compare20(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(app(app(ty_@3, hh), baa), bab)), hf)) -> new_ltEs1(vyw490, vyw500, hh, baa, bab) 30.83/14.37 new_lt(:(vyw40, vyw41), :(vyw300, vyw301), ca) -> new_primCompAux(vyw40, vyw300, new_compare4(vyw41, vyw301, ca), ca) 30.83/14.37 new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(ty_[], bca)), bcb)) -> new_lt(vyw490, vyw500, bca) 30.83/14.37 new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(ty_[], df)), dg), dh)) -> new_lt(vyw490, vyw500, df) 30.83/14.37 new_ltEs0(Just(vyw490), Just(vyw500), app(app(ty_Either, db), dc)) -> new_ltEs2(vyw490, vyw500, db, dc) 30.83/14.37 new_compare24(vyw113, vyw114, vyw115, vyw116, False, app(ty_Maybe, ccf), cce) -> new_lt0(vyw113, vyw115, ccf) 30.83/14.37 new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(app(ty_Either, cab), cac), bgc, bfb) -> new_lt2(vyw100, vyw103, cab, cac) 30.83/14.37 new_ltEs2(Right(vyw490), Right(vyw500), bag, app(app(ty_@2, bbg), bbh)) -> new_ltEs3(vyw490, vyw500, bbg, bbh) 30.83/14.37 new_ltEs0(Just(vyw490), Just(vyw500), app(app(app(ty_@3, cf), cg), da)) -> new_ltEs1(vyw490, vyw500, cf, cg, da) 30.83/14.37 new_ltEs2(Left(vyw490), Left(vyw500), app(ty_[], he), hf) -> new_ltEs(vyw490, vyw500, he) 30.83/14.37 new_compare20(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(ty_Maybe, ce))) -> new_ltEs0(vyw490, vyw500, ce) 30.83/14.37 new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fa, app(app(app(ty_@3, fd), ff), fg), dh) -> new_lt1(vyw491, vyw501, fd, ff, fg) 30.83/14.37 new_compare20(Right(vyw490), Right(vyw500), False, app(app(ty_Either, bag), app(app(ty_Either, bbe), bbf))) -> new_ltEs2(vyw490, vyw500, bbe, bbf) 30.83/14.37 new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fa), app(app(app(ty_@3, fd), ff), fg)), dh)) -> new_lt1(vyw491, vyw501, fd, ff, fg) 30.83/14.37 new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, beh, bgc, app(app(ty_Either, bha), bhb)) -> new_ltEs2(vyw102, vyw105, bha, bhb) 30.83/14.37 new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, beh, bgc, app(ty_Maybe, bge)) -> new_ltEs0(vyw102, vyw105, bge) 30.83/14.37 new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, bdc), app(app(ty_Either, bea), beb))) -> new_ltEs2(vyw491, vyw501, bea, beb) 30.83/14.37 new_lt2(Left(vyw40), Left(vyw300), caf, cag) -> new_compare22(vyw40, vyw300, new_esEs8(vyw40, vyw300, caf), caf, cag) 30.83/14.37 new_ltEs3(@2(vyw490, vyw491), @2(vyw500, vyw501), bdc, app(app(ty_@2, bec), bed)) -> new_ltEs3(vyw491, vyw501, bec, bed) 30.83/14.37 new_compare24(vyw113, vyw114, vyw115, vyw116, False, cdf, app(app(ty_Either, ced), cee)) -> new_ltEs2(vyw114, vyw116, ced, cee) 30.83/14.37 new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(app(app(ty_@3, eb), ec), ed)), dg), dh)) -> new_lt1(vyw490, vyw500, eb, ec, ed) 30.83/14.37 new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fa, app(ty_[], fb), dh) -> new_lt(vyw491, vyw501, fb) 30.83/14.37 new_ltEs3(@2(vyw490, vyw491), @2(vyw500, vyw501), app(app(ty_@2, bda), bdb), bcb) -> new_lt3(vyw490, vyw500, bda, bdb) 30.83/14.37 new_lt3(@2(vyw40, vyw41), @2(vyw300, vyw301), ccb, ccc) -> new_compare24(vyw40, vyw41, vyw300, vyw301, new_asAs(new_esEs10(vyw40, vyw300, ccb), new_esEs11(vyw41, vyw301, ccc)), ccb, ccc) 30.83/14.37 new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(app(ty_Either, ee), ef), dg, dh) -> new_lt2(vyw490, vyw500, ee, ef) 30.83/14.37 new_compare24(vyw113, vyw114, vyw115, vyw116, False, app(app(ty_Either, cdb), cdc), cce) -> new_lt2(vyw113, vyw115, cdb, cdc) 30.83/14.37 new_compare2(Right(vyw40), Right(vyw300), caf, cag) -> new_compare23(vyw40, vyw300, new_esEs9(vyw40, vyw300, cag), caf, cag) 30.83/14.37 new_compare20(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(ty_[], cd))) -> new_ltEs(vyw490, vyw500, cd) 30.83/14.37 new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, bdc), app(app(app(ty_@3, bdf), bdg), bdh))) -> new_ltEs1(vyw491, vyw501, bdf, bdg, bdh) 30.83/14.37 new_primCompAux(vyw40, vyw300, vyw39, app(ty_Maybe, ba)) -> new_compare0(vyw40, vyw300, ba) 30.83/14.37 new_compare24(vyw113, vyw114, vyw115, vyw116, False, cdf, app(ty_[], cdg)) -> new_ltEs(vyw114, vyw116, cdg) 30.83/14.37 new_compare24(vyw113, vyw114, vyw115, vyw116, False, app(ty_[], ccd), cce) -> new_lt(vyw113, vyw115, ccd) 30.83/14.37 new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fa), dg), app(app(ty_Either, ha), hb))) -> new_ltEs2(vyw492, vyw502, ha, hb) 30.83/14.37 new_ltEs3(@2(vyw490, vyw491), @2(vyw500, vyw501), bdc, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_ltEs1(vyw491, vyw501, bdf, bdg, bdh) 30.83/14.37 new_compare23(vyw78, vyw79, False, ceh, app(app(ty_@2, cfh), cga)) -> new_ltEs3(vyw78, vyw79, cfh, cga) 30.83/14.37 new_compare20(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(app(app(ty_@3, cf), cg), da))) -> new_ltEs1(vyw490, vyw500, cf, cg, da) 30.83/14.37 new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fa), app(ty_[], fb)), dh)) -> new_lt(vyw491, vyw501, fb) 30.83/14.37 new_ltEs2(Right(vyw490), Right(vyw500), bag, app(ty_Maybe, bba)) -> new_ltEs0(vyw490, vyw500, bba) 30.83/14.37 new_compare20(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(ty_[], he)), hf)) -> new_ltEs(vyw490, vyw500, he) 30.83/14.37 new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(app(app(ty_@3, bcd), bce), bcf)), bcb)) -> new_lt1(vyw490, vyw500, bcd, bce, bcf) 30.83/14.37 new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, beh, bgc, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_ltEs1(vyw102, vyw105, bgf, bgg, bgh) 30.83/14.37 new_primCompAux(vyw40, vyw300, vyw39, app(app(ty_@2, bg), bh)) -> new_compare3(vyw40, vyw300, bg, bh) 30.83/14.37 new_compare20(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(ty_Maybe, hg)), hf)) -> new_ltEs0(vyw490, vyw500, hg) 30.83/14.37 new_compare20(vyw49, vyw50, False, app(ty_[], cc)) -> new_compare(vyw49, vyw50, cc) 30.83/14.37 new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(ty_Maybe, bhf), bgc, bfb) -> new_lt0(vyw100, vyw103, bhf) 30.83/14.37 new_ltEs0(Just(vyw490), Just(vyw500), app(ty_Maybe, ce)) -> new_ltEs0(vyw490, vyw500, ce) 30.83/14.37 new_ltEs3(@2(vyw490, vyw491), @2(vyw500, vyw501), app(ty_[], bca), bcb) -> new_lt(vyw490, vyw500, bca) 30.83/14.37 new_compare24(vyw113, vyw114, vyw115, vyw116, False, cdf, app(app(ty_@2, cef), ceg)) -> new_ltEs3(vyw114, vyw116, cef, ceg) 30.83/14.37 new_compare20(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(app(ty_Either, db), dc))) -> new_ltEs2(vyw490, vyw500, db, dc) 30.83/14.37 new_ltEs2(Left(vyw490), Left(vyw500), app(app(app(ty_@3, hh), baa), bab), hf) -> new_ltEs1(vyw490, vyw500, hh, baa, bab) 30.83/14.37 new_compare23(vyw78, vyw79, False, ceh, app(app(ty_Either, cff), cfg)) -> new_ltEs2(vyw78, vyw79, cff, cfg) 30.83/14.37 new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(app(app(ty_@3, eb), ec), ed), dg, dh) -> new_lt1(vyw490, vyw500, eb, ec, ed) 30.83/14.37 new_compare24(vyw113, vyw114, vyw115, vyw116, False, app(app(app(ty_@3, ccg), cch), cda), cce) -> new_lt1(vyw113, vyw115, ccg, cch, cda) 30.83/14.37 new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(app(ty_@2, eg), eh)), dg), dh)) -> new_lt3(vyw490, vyw500, eg, eh) 30.83/14.37 new_lt(:(vyw40, vyw41), :(vyw300, vyw301), ca) -> new_compare(vyw41, vyw301, ca) 30.83/14.37 new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fa), app(app(ty_@2, gb), gc)), dh)) -> new_lt3(vyw491, vyw501, gb, gc) 30.83/14.37 new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(app(app(ty_@3, bhg), bhh), caa), bgc, bfb) -> new_lt1(vyw100, vyw103, bhg, bhh, caa) 30.83/14.37 new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, beh, bgc, app(ty_[], bgd)) -> new_ltEs(vyw102, vyw105, bgd) 30.83/14.37 new_ltEs3(@2(vyw490, vyw491), @2(vyw500, vyw501), app(app(app(ty_@3, bcd), bce), bcf), bcb) -> new_lt1(vyw490, vyw500, bcd, bce, bcf) 30.83/14.37 new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fa), dg), app(app(ty_@2, hc), hd))) -> new_ltEs3(vyw492, vyw502, hc, hd) 30.83/14.37 new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fa, dg, app(app(ty_Either, ha), hb)) -> new_ltEs2(vyw492, vyw502, ha, hb) 30.83/14.37 new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fa), dg), app(ty_Maybe, ge))) -> new_ltEs0(vyw492, vyw502, ge) 30.83/14.37 new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(app(ty_Either, ee), ef)), dg), dh)) -> new_lt2(vyw490, vyw500, ee, ef) 30.83/14.37 new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(ty_Maybe, ea)), dg), dh)) -> new_lt0(vyw490, vyw500, ea) 30.83/14.37 new_ltEs3(@2(vyw490, vyw491), @2(vyw500, vyw501), bdc, app(app(ty_Either, bea), beb)) -> new_ltEs2(vyw491, vyw501, bea, beb) 30.83/14.37 new_compare20(Right(vyw490), Right(vyw500), False, app(app(ty_Either, bag), app(ty_Maybe, bba))) -> new_ltEs0(vyw490, vyw500, bba) 30.83/14.37 new_ltEs0(Just(vyw490), Just(vyw500), app(ty_[], cd)) -> new_ltEs(vyw490, vyw500, cd) 30.83/14.37 new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, bdc), app(ty_[], bdd))) -> new_ltEs(vyw491, vyw501, bdd) 30.83/14.37 new_compare22(vyw71, vyw72, False, app(app(app(ty_@3, cbc), cbd), cbe), cba) -> new_ltEs1(vyw71, vyw72, cbc, cbd, cbe) 30.83/14.37 new_compare2(Left(vyw40), Left(vyw300), caf, cag) -> new_compare22(vyw40, vyw300, new_esEs8(vyw40, vyw300, caf), caf, cag) 30.83/14.37 new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, bdc), app(app(ty_@2, bec), bed))) -> new_ltEs3(vyw491, vyw501, bec, bed) 30.83/14.37 new_ltEs3(@2(vyw490, vyw491), @2(vyw500, vyw501), bdc, app(ty_[], bdd)) -> new_ltEs(vyw491, vyw501, bdd) 30.83/14.37 new_compare23(vyw78, vyw79, False, ceh, app(ty_Maybe, cfb)) -> new_ltEs0(vyw78, vyw79, cfb) 30.83/14.37 new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fa, app(app(ty_@2, gb), gc), dh) -> new_lt3(vyw491, vyw501, gb, gc) 30.83/14.37 new_compare20(Right(vyw490), Right(vyw500), False, app(app(ty_Either, bag), app(app(ty_@2, bbg), bbh))) -> new_ltEs3(vyw490, vyw500, bbg, bbh) 30.83/14.37 new_compare23(vyw78, vyw79, False, ceh, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs1(vyw78, vyw79, cfc, cfd, cfe) 30.83/14.37 new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(app(ty_Either, bcg), bch)), bcb)) -> new_lt2(vyw490, vyw500, bcg, bch) 30.83/14.37 new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fa, dg, app(app(ty_@2, hc), hd)) -> new_ltEs3(vyw492, vyw502, hc, hd) 30.83/14.37 new_compare22(vyw71, vyw72, False, app(ty_Maybe, cbb), cba) -> new_ltEs0(vyw71, vyw72, cbb) 30.83/14.37 new_compare22(vyw71, vyw72, False, app(app(ty_@2, cbh), cca), cba) -> new_ltEs3(vyw71, vyw72, cbh, cca) 30.83/14.37 new_compare24(vyw113, vyw114, vyw115, vyw116, False, app(app(ty_@2, cdd), cde), cce) -> new_lt3(vyw113, vyw115, cdd, cde) 30.83/14.37 new_compare20(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(app(ty_@2, dd), de))) -> new_ltEs3(vyw490, vyw500, dd, de) 30.83/14.37 new_compare20(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(app(ty_Either, bac), bad)), hf)) -> new_ltEs2(vyw490, vyw500, bac, bad) 30.83/14.37 new_primCompAux(vyw40, vyw300, vyw39, app(app(ty_Either, be), bf)) -> new_compare2(vyw40, vyw300, be, bf) 30.83/14.37 new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fa, dg, app(ty_[], gd)) -> new_ltEs(vyw492, vyw502, gd) 30.83/14.37 new_compare24(vyw113, vyw114, vyw115, vyw116, False, cdf, app(app(app(ty_@3, cea), ceb), cec)) -> new_ltEs1(vyw114, vyw116, cea, ceb, cec) 30.83/14.37 new_ltEs3(@2(vyw490, vyw491), @2(vyw500, vyw501), app(ty_Maybe, bcc), bcb) -> new_lt0(vyw490, vyw500, bcc) 30.83/14.37 new_ltEs3(@2(vyw490, vyw491), @2(vyw500, vyw501), app(app(ty_Either, bcg), bch), bcb) -> new_lt2(vyw490, vyw500, bcg, bch) 30.83/14.37 new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fa), dg), app(ty_[], gd))) -> new_ltEs(vyw492, vyw502, gd) 30.83/14.37 new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, bdc), app(ty_Maybe, bde))) -> new_ltEs0(vyw491, vyw501, bde) 30.83/14.37 new_compare1(@3(vyw40, vyw41, vyw42), @3(vyw300, vyw301, vyw302), bee, bef, beg) -> new_compare21(vyw40, vyw41, vyw42, vyw300, vyw301, vyw302, new_asAs(new_esEs5(vyw40, vyw300, bee), new_asAs(new_esEs6(vyw41, vyw301, bef), new_esEs7(vyw42, vyw302, beg))), bee, bef, beg) 30.83/14.37 new_compare20(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(app(ty_@2, bae), baf)), hf)) -> new_ltEs3(vyw490, vyw500, bae, baf) 30.83/14.37 new_ltEs0(Just(vyw490), Just(vyw500), app(app(ty_@2, dd), de)) -> new_ltEs3(vyw490, vyw500, dd, de) 30.83/14.37 new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, beh, app(app(ty_@2, bga), bgb), bfb) -> new_lt3(vyw101, vyw104, bga, bgb) 30.83/14.37 new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(ty_[], bhe), bgc, bfb) -> new_lt(vyw100, vyw103, bhe) 30.83/14.37 new_lt0(Just(vyw40), Just(vyw300), cb) -> new_compare20(vyw40, vyw300, new_esEs4(vyw40, vyw300, cb), cb) 30.83/14.37 new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fa), app(ty_Maybe, fc)), dh)) -> new_lt0(vyw491, vyw501, fc) 30.83/14.37 new_ltEs2(Right(vyw490), Right(vyw500), bag, app(app(ty_Either, bbe), bbf)) -> new_ltEs2(vyw490, vyw500, bbe, bbf) 30.83/14.37 new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, beh, bgc, app(app(ty_@2, bhc), bhd)) -> new_ltEs3(vyw102, vyw105, bhc, bhd) 30.83/14.37 new_primCompAux(vyw40, vyw300, vyw39, app(ty_[], h)) -> new_compare(vyw40, vyw300, h) 30.83/14.37 new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(ty_Maybe, ea), dg, dh) -> new_lt0(vyw490, vyw500, ea) 30.83/14.37 new_lt1(@3(vyw40, vyw41, vyw42), @3(vyw300, vyw301, vyw302), bee, bef, beg) -> new_compare21(vyw40, vyw41, vyw42, vyw300, vyw301, vyw302, new_asAs(new_esEs5(vyw40, vyw300, bee), new_asAs(new_esEs6(vyw41, vyw301, bef), new_esEs7(vyw42, vyw302, beg))), bee, bef, beg) 30.83/14.37 new_compare23(vyw78, vyw79, False, ceh, app(ty_[], cfa)) -> new_ltEs(vyw78, vyw79, cfa) 30.83/14.37 new_compare22(vyw71, vyw72, False, app(ty_[], cah), cba) -> new_ltEs(vyw71, vyw72, cah) 30.83/14.37 new_ltEs2(Left(vyw490), Left(vyw500), app(app(ty_@2, bae), baf), hf) -> new_ltEs3(vyw490, vyw500, bae, baf) 30.83/14.37 new_ltEs2(Right(vyw490), Right(vyw500), bag, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs1(vyw490, vyw500, bbb, bbc, bbd) 30.83/14.37 new_ltEs2(Left(vyw490), Left(vyw500), app(ty_Maybe, hg), hf) -> new_ltEs0(vyw490, vyw500, hg) 30.83/14.37 new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, beh, app(ty_Maybe, bfc), bfb) -> new_lt0(vyw101, vyw104, bfc) 30.83/14.37 new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(ty_Maybe, bcc)), bcb)) -> new_lt0(vyw490, vyw500, bcc) 30.83/14.37 new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fa, dg, app(app(app(ty_@3, gf), gg), gh)) -> new_ltEs1(vyw492, vyw502, gf, gg, gh) 30.83/14.37 new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, beh, app(app(ty_Either, bfg), bfh), bfb) -> new_lt2(vyw101, vyw104, bfg, bfh) 30.83/14.37 new_compare3(@2(vyw40, vyw41), @2(vyw300, vyw301), ccb, ccc) -> new_compare24(vyw40, vyw41, vyw300, vyw301, new_asAs(new_esEs10(vyw40, vyw300, ccb), new_esEs11(vyw41, vyw301, ccc)), ccb, ccc) 30.83/14.37 new_lt2(Right(vyw40), Right(vyw300), caf, cag) -> new_compare23(vyw40, vyw300, new_esEs9(vyw40, vyw300, cag), caf, cag) 30.83/14.37 new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fa), dg), app(app(app(ty_@3, gf), gg), gh))) -> new_ltEs1(vyw492, vyw502, gf, gg, gh) 30.83/14.37 new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(app(ty_@2, eg), eh), dg, dh) -> new_lt3(vyw490, vyw500, eg, eh) 30.83/14.37 new_compare(:(vyw40, vyw41), :(vyw300, vyw301), ca) -> new_compare(vyw41, vyw301, ca) 30.83/14.37 new_compare20(Right(vyw490), Right(vyw500), False, app(app(ty_Either, bag), app(app(app(ty_@3, bbb), bbc), bbd))) -> new_ltEs1(vyw490, vyw500, bbb, bbc, bbd) 30.83/14.37 new_ltEs3(@2(vyw490, vyw491), @2(vyw500, vyw501), bdc, app(ty_Maybe, bde)) -> new_ltEs0(vyw491, vyw501, bde) 30.83/14.37 new_compare0(Just(vyw40), Just(vyw300), cb) -> new_compare20(vyw40, vyw300, new_esEs4(vyw40, vyw300, cb), cb) 30.83/14.37 new_compare20(Right(vyw490), Right(vyw500), False, app(app(ty_Either, bag), app(ty_[], bah))) -> new_ltEs(vyw490, vyw500, bah) 30.83/14.37 new_ltEs2(Left(vyw490), Left(vyw500), app(app(ty_Either, bac), bad), hf) -> new_ltEs2(vyw490, vyw500, bac, bad) 30.83/14.37 new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(ty_[], df), dg, dh) -> new_lt(vyw490, vyw500, df) 30.83/14.37 new_compare24(vyw113, vyw114, vyw115, vyw116, False, cdf, app(ty_Maybe, cdh)) -> new_ltEs0(vyw114, vyw116, cdh) 30.83/14.37 new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fa), app(app(ty_Either, fh), ga)), dh)) -> new_lt2(vyw491, vyw501, fh, ga) 30.83/14.37 new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, beh, app(app(app(ty_@3, bfd), bfe), bff), bfb) -> new_lt1(vyw101, vyw104, bfd, bfe, bff) 30.83/14.37 new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, beh, app(ty_[], bfa), bfb) -> new_lt(vyw101, vyw104, bfa) 30.83/14.37 new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fa, app(ty_Maybe, fc), dh) -> new_lt0(vyw491, vyw501, fc) 30.83/14.37 new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(app(ty_@2, cad), cae), bgc, bfb) -> new_lt3(vyw100, vyw103, cad, cae) 30.83/14.37 new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fa, dg, app(ty_Maybe, ge)) -> new_ltEs0(vyw492, vyw502, ge) 30.83/14.37 new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fa, app(app(ty_Either, fh), ga), dh) -> new_lt2(vyw491, vyw501, fh, ga) 30.83/14.37 new_ltEs2(Right(vyw490), Right(vyw500), bag, app(ty_[], bah)) -> new_ltEs(vyw490, vyw500, bah) 30.83/14.37 new_primCompAux(vyw40, vyw300, vyw39, app(app(app(ty_@3, bb), bc), bd)) -> new_compare1(vyw40, vyw300, bb, bc, bd) 30.83/14.37 new_compare(:(vyw40, vyw41), :(vyw300, vyw301), ca) -> new_primCompAux(vyw40, vyw300, new_compare4(vyw41, vyw301, ca), ca) 30.83/14.37 new_compare22(vyw71, vyw72, False, app(app(ty_Either, cbf), cbg), cba) -> new_ltEs2(vyw71, vyw72, cbf, cbg) 30.83/14.37 new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(app(ty_@2, bda), bdb)), bcb)) -> new_lt3(vyw490, vyw500, bda, bdb) 30.83/14.37 30.83/14.37 The TRS R consists of the following rules: 30.83/14.37 30.83/14.37 new_esEs30(vyw401, vyw3001, app(app(ty_@2, ehe), ehf)) -> new_esEs19(vyw401, vyw3001, ehe, ehf) 30.83/14.37 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.83/14.37 new_ltEs17(LT, EQ) -> True 30.83/14.37 new_primCmpInt(Neg(Succ(vyw400)), Pos(vyw300)) -> LT 30.83/14.37 new_primPlusNat0(Zero, Zero) -> Zero 30.83/14.37 new_esEs7(vyw42, vyw302, ty_Char) -> new_esEs18(vyw42, vyw302) 30.83/14.37 new_ltEs19(vyw71, vyw72, ty_Double) -> new_ltEs4(vyw71, vyw72) 30.83/14.37 new_esEs7(vyw42, vyw302, ty_@0) -> new_esEs20(vyw42, vyw302) 30.83/14.37 new_pePe(True, vyw192) -> True 30.83/14.37 new_esEs34(vyw490, vyw500, ty_Char) -> new_esEs18(vyw490, vyw500) 30.83/14.37 new_esEs5(vyw40, vyw300, ty_Integer) -> new_esEs24(vyw40, vyw300) 30.83/14.37 new_esEs5(vyw40, vyw300, ty_Int) -> new_esEs15(vyw40, vyw300) 30.83/14.37 new_esEs32(vyw491, vyw501, ty_Integer) -> new_esEs24(vyw491, vyw501) 30.83/14.37 new_lt21(vyw491, vyw501, ty_Ordering) -> new_lt19(vyw491, vyw501) 30.83/14.37 new_ltEs23(vyw49, vyw50, app(ty_Maybe, dah)) -> new_ltEs6(vyw49, vyw50, dah) 30.83/14.37 new_esEs34(vyw490, vyw500, ty_@0) -> new_esEs20(vyw490, vyw500) 30.83/14.37 new_lt4(vyw4, vyw30) -> new_esEs12(new_compare8(vyw4, vyw30)) 30.83/14.37 new_ltEs18(vyw102, vyw105, ty_Bool) -> new_ltEs5(vyw102, vyw105) 30.83/14.37 new_compare112(vyw129, vyw130, True, fag) -> LT 30.83/14.37 new_esEs40(vyw113, vyw115, ty_@0) -> new_esEs20(vyw113, vyw115) 30.83/14.37 new_lt11(vyw100, vyw103, ty_Float) -> new_lt7(vyw100, vyw103) 30.83/14.37 new_ltEs19(vyw71, vyw72, app(app(ty_Either, cbf), cbg)) -> new_ltEs15(vyw71, vyw72, cbf, cbg) 30.83/14.37 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.83/14.37 new_esEs40(vyw113, vyw115, ty_Char) -> new_esEs18(vyw113, vyw115) 30.83/14.37 new_primCmpInt(Pos(Zero), Neg(Succ(vyw3000))) -> GT 30.83/14.37 new_lt20(vyw490, vyw500, app(app(ty_Either, ee), ef)) -> new_lt17(vyw490, vyw500, ee, ef) 30.83/14.37 new_lt21(vyw491, vyw501, ty_Double) -> new_lt14(vyw491, vyw501) 30.83/14.37 new_lt22(vyw490, vyw500, ty_Bool) -> new_lt18(vyw490, vyw500) 30.83/14.37 new_esEs11(vyw41, vyw301, ty_Double) -> new_esEs23(vyw41, vyw301) 30.83/14.37 new_esEs9(vyw40, vyw300, ty_Bool) -> new_esEs25(vyw40, vyw300) 30.83/14.37 new_esEs28(vyw101, vyw104, ty_Char) -> new_esEs18(vyw101, vyw104) 30.83/14.37 new_esEs29(vyw400, vyw3000, app(ty_Ratio, egf)) -> new_esEs26(vyw400, vyw3000, egf) 30.83/14.37 new_esEs36(vyw401, vyw3001, ty_Bool) -> new_esEs25(vyw401, vyw3001) 30.83/14.37 new_ltEs22(vyw491, vyw501, app(ty_Ratio, fch)) -> new_ltEs11(vyw491, vyw501, fch) 30.83/14.37 new_compare32(vyw40, vyw300, app(ty_Ratio, fac)) -> new_compare10(vyw40, vyw300, fac) 30.83/14.37 new_esEs32(vyw491, vyw501, ty_Int) -> new_esEs15(vyw491, vyw501) 30.83/14.37 new_esEs37(vyw402, vyw3002, app(ty_Maybe, fgc)) -> new_esEs22(vyw402, vyw3002, fgc) 30.83/14.37 new_primCmpInt(Neg(Succ(vyw400)), Neg(vyw300)) -> new_primCmpNat0(vyw300, Succ(vyw400)) 30.83/14.37 new_lt21(vyw491, vyw501, ty_Char) -> new_lt4(vyw491, vyw501) 30.83/14.37 new_esEs13(Left(vyw400), Left(vyw3000), app(ty_Ratio, chb), cge) -> new_esEs26(vyw400, vyw3000, chb) 30.83/14.37 new_ltEs23(vyw49, vyw50, app(app(ty_@2, bdc), bcb)) -> new_ltEs16(vyw49, vyw50, bdc, bcb) 30.83/14.37 new_lt21(vyw491, vyw501, app(app(app(ty_@3, fd), ff), fg)) -> new_lt16(vyw491, vyw501, fd, ff, fg) 30.83/14.37 new_lt11(vyw100, vyw103, app(app(app(ty_@3, bhg), bhh), caa)) -> new_lt16(vyw100, vyw103, bhg, bhh, caa) 30.83/14.37 new_esEs4(vyw40, vyw300, app(app(app(ty_@3, dee), def), deg)) -> new_esEs14(vyw40, vyw300, dee, def, deg) 30.83/14.37 new_lt23(vyw113, vyw115, app(ty_Maybe, ccf)) -> new_lt15(vyw113, vyw115, ccf) 30.83/14.37 new_esEs27(vyw100, vyw103, app(ty_Maybe, bhf)) -> new_esEs22(vyw100, vyw103, bhf) 30.83/14.37 new_lt11(vyw100, vyw103, ty_Double) -> new_lt14(vyw100, vyw103) 30.83/14.37 new_ltEs8(vyw49, vyw50) -> new_fsEs(new_compare6(vyw49, vyw50)) 30.83/14.37 new_primMulNat0(Succ(vyw30000), Succ(vyw4100)) -> new_primPlusNat1(new_primMulNat0(vyw30000, Succ(vyw4100)), vyw4100) 30.83/14.37 new_compare4(:(vyw40, vyw41), :(vyw300, vyw301), ca) -> new_primCompAux0(vyw40, vyw300, new_compare4(vyw41, vyw301, ca), ca) 30.83/14.37 new_esEs31(vyw490, vyw500, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs14(vyw490, vyw500, eb, ec, ed) 30.83/14.37 new_lt20(vyw490, vyw500, ty_Int) -> new_lt13(vyw490, vyw500) 30.83/14.37 new_esEs13(Right(vyw400), Right(vyw3000), che, ty_Char) -> new_esEs18(vyw400, vyw3000) 30.83/14.37 new_lt23(vyw113, vyw115, ty_@0) -> new_lt8(vyw113, vyw115) 30.83/14.37 new_esEs6(vyw41, vyw301, app(ty_[], edf)) -> new_esEs17(vyw41, vyw301, edf) 30.83/14.37 new_ltEs21(vyw78, vyw79, ty_Float) -> new_ltEs14(vyw78, vyw79) 30.83/14.37 new_esEs9(vyw40, vyw300, ty_Double) -> new_esEs23(vyw40, vyw300) 30.83/14.37 new_ltEs15(Right(vyw490), Right(vyw500), bag, app(ty_[], bah)) -> new_ltEs7(vyw490, vyw500, bah) 30.83/14.37 new_compare32(vyw40, vyw300, app(app(ty_@2, bg), bh)) -> new_compare13(vyw40, vyw300, bg, bh) 30.83/14.37 new_lt11(vyw100, vyw103, ty_Ordering) -> new_lt19(vyw100, vyw103) 30.83/14.37 new_esEs10(vyw40, vyw300, ty_Ordering) -> new_esEs16(vyw40, vyw300) 30.83/14.37 new_esEs36(vyw401, vyw3001, ty_Double) -> new_esEs23(vyw401, vyw3001) 30.83/14.37 new_esEs13(Right(vyw400), Right(vyw3000), che, ty_Float) -> new_esEs21(vyw400, vyw3000) 30.83/14.37 new_esEs28(vyw101, vyw104, ty_@0) -> new_esEs20(vyw101, vyw104) 30.83/14.37 new_esEs13(Left(vyw400), Left(vyw3000), ty_Double, cge) -> new_esEs23(vyw400, vyw3000) 30.83/14.37 new_ltEs14(vyw49, vyw50) -> new_fsEs(new_compare11(vyw49, vyw50)) 30.83/14.37 new_ltEs23(vyw49, vyw50, ty_Char) -> new_ltEs9(vyw49, vyw50) 30.83/14.37 new_ltEs21(vyw78, vyw79, ty_Ordering) -> new_ltEs17(vyw78, vyw79) 30.83/14.37 new_ltEs20(vyw492, vyw502, ty_Double) -> new_ltEs4(vyw492, vyw502) 30.83/14.37 new_ltEs24(vyw114, vyw116, ty_Bool) -> new_ltEs5(vyw114, vyw116) 30.83/14.37 new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False 30.83/14.37 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 30.83/14.37 new_ltEs21(vyw78, vyw79, ty_@0) -> new_ltEs13(vyw78, vyw79) 30.83/14.37 new_ltEs6(Just(vyw490), Just(vyw500), ty_Bool) -> new_ltEs5(vyw490, vyw500) 30.83/14.37 new_esEs33(vyw400, vyw3000, app(ty_[], fbh)) -> new_esEs17(vyw400, vyw3000, fbh) 30.83/14.37 new_lt10(vyw101, vyw104, app(app(ty_Either, bfg), bfh)) -> new_lt17(vyw101, vyw104, bfg, bfh) 30.83/14.37 new_lt22(vyw490, vyw500, ty_Integer) -> new_lt5(vyw490, vyw500) 30.83/14.37 new_esEs13(Left(vyw400), Left(vyw3000), ty_Int, cge) -> new_esEs15(vyw400, vyw3000) 30.83/14.37 new_compare31(True, False) -> GT 30.83/14.37 new_esEs27(vyw100, vyw103, app(ty_[], bhe)) -> new_esEs17(vyw100, vyw103, bhe) 30.83/14.37 new_esEs29(vyw400, vyw3000, app(app(ty_@2, egc), egd)) -> new_esEs19(vyw400, vyw3000, egc, egd) 30.83/14.37 new_esEs15(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) 30.83/14.37 new_ltEs15(Left(vyw490), Left(vyw500), app(app(ty_Either, bac), bad), hf) -> new_ltEs15(vyw490, vyw500, bac, bad) 30.83/14.37 new_compare5(Double(vyw40, Pos(vyw410)), Double(vyw300, Pos(vyw3010))) -> new_compare6(new_sr(vyw40, Pos(vyw3010)), new_sr(Pos(vyw410), vyw300)) 30.83/14.37 new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) 30.83/14.37 new_esEs28(vyw101, vyw104, ty_Float) -> new_esEs21(vyw101, vyw104) 30.83/14.37 new_lt7(vyw4, vyw30) -> new_esEs12(new_compare11(vyw4, vyw30)) 30.83/14.37 new_ltEs20(vyw492, vyw502, ty_Integer) -> new_ltEs10(vyw492, vyw502) 30.83/14.37 new_compare17(vyw180, vyw181, vyw182, vyw183, False, vyw185, dhh, eaa) -> new_compare18(vyw180, vyw181, vyw182, vyw183, vyw185, dhh, eaa) 30.83/14.37 new_compare25(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, True, beh, bgc, bfb) -> EQ 30.83/14.37 new_esEs28(vyw101, vyw104, app(app(ty_Either, bfg), bfh)) -> new_esEs13(vyw101, vyw104, bfg, bfh) 30.83/14.37 new_lt16(vyw4, vyw30, bee, bef, beg) -> new_esEs12(new_compare30(vyw4, vyw30, bee, bef, beg)) 30.83/14.37 new_esEs35(vyw400, vyw3000, ty_Ordering) -> new_esEs16(vyw400, vyw3000) 30.83/14.37 new_esEs29(vyw400, vyw3000, ty_Ordering) -> new_esEs16(vyw400, vyw3000) 30.83/14.37 new_ltEs15(Left(vyw490), Left(vyw500), ty_Bool, hf) -> new_ltEs5(vyw490, vyw500) 30.83/14.37 new_esEs16(EQ, GT) -> False 30.83/14.37 new_esEs16(GT, EQ) -> False 30.83/14.37 new_ltEs17(LT, GT) -> True 30.83/14.37 new_esEs11(vyw41, vyw301, ty_Int) -> new_esEs15(vyw41, vyw301) 30.83/14.37 new_not(True) -> False 30.83/14.37 new_esEs8(vyw40, vyw300, ty_Ordering) -> new_esEs16(vyw40, vyw300) 30.83/14.37 new_primCompAux0(vyw40, vyw300, vyw39, ca) -> new_primCompAux00(vyw39, new_compare32(vyw40, vyw300, ca)) 30.83/14.37 new_esEs9(vyw40, vyw300, ty_Integer) -> new_esEs24(vyw40, vyw300) 30.83/14.37 new_primCompAux00(vyw43, LT) -> LT 30.83/14.37 new_primCmpNat0(Zero, Zero) -> EQ 30.83/14.37 new_lt10(vyw101, vyw104, ty_Int) -> new_lt13(vyw101, vyw104) 30.83/14.37 new_lt22(vyw490, vyw500, ty_Float) -> new_lt7(vyw490, vyw500) 30.83/14.37 new_compare10(:%(vyw40, vyw41), :%(vyw300, vyw301), ty_Int) -> new_compare6(new_sr(vyw40, vyw301), new_sr(vyw300, vyw41)) 30.83/14.37 new_esEs22(Nothing, Just(vyw3000), dce) -> False 30.83/14.37 new_esEs22(Just(vyw400), Nothing, dce) -> False 30.83/14.37 new_ltEs15(Right(vyw490), Right(vyw500), bag, ty_@0) -> new_ltEs13(vyw490, vyw500) 30.83/14.37 new_esEs8(vyw40, vyw300, app(app(ty_@2, dbg), dbh)) -> new_esEs19(vyw40, vyw300, dbg, dbh) 30.83/14.37 new_esEs22(Nothing, Nothing, dce) -> True 30.83/14.37 new_esEs20(@0, @0) -> True 30.83/14.37 new_lt11(vyw100, vyw103, ty_Char) -> new_lt4(vyw100, vyw103) 30.83/14.37 new_lt19(vyw4, vyw30) -> new_esEs12(new_compare7(vyw4, vyw30)) 30.83/14.37 new_esEs9(vyw40, vyw300, ty_Int) -> new_esEs15(vyw40, vyw300) 30.83/14.37 new_lt11(vyw100, vyw103, ty_Bool) -> new_lt18(vyw100, vyw103) 30.83/14.37 new_lt23(vyw113, vyw115, app(app(ty_@2, cdd), cde)) -> new_lt9(vyw113, vyw115, cdd, cde) 30.83/14.37 new_ltEs17(EQ, GT) -> True 30.83/14.37 new_esEs25(False, False) -> True 30.83/14.37 new_ltEs19(vyw71, vyw72, ty_Integer) -> new_ltEs10(vyw71, vyw72) 30.83/14.37 new_compare11(Float(vyw40, Neg(vyw410)), Float(vyw300, Neg(vyw3010))) -> new_compare6(new_sr(vyw40, Neg(vyw3010)), new_sr(Neg(vyw410), vyw300)) 30.83/14.37 new_ltEs6(Just(vyw490), Just(vyw500), app(app(ty_@2, dd), de)) -> new_ltEs16(vyw490, vyw500, dd, de) 30.83/14.37 new_esEs30(vyw401, vyw3001, ty_Ordering) -> new_esEs16(vyw401, vyw3001) 30.83/14.37 new_esEs32(vyw491, vyw501, app(ty_Maybe, fc)) -> new_esEs22(vyw491, vyw501, fc) 30.83/14.37 new_esEs13(Left(vyw400), Left(vyw3000), app(app(ty_Either, chc), chd), cge) -> new_esEs13(vyw400, vyw3000, chc, chd) 30.83/14.37 new_esEs37(vyw402, vyw3002, ty_Int) -> new_esEs15(vyw402, vyw3002) 30.83/14.37 new_esEs35(vyw400, vyw3000, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs14(vyw400, vyw3000, fda, fdb, fdc) 30.83/14.37 new_esEs11(vyw41, vyw301, ty_Integer) -> new_esEs24(vyw41, vyw301) 30.83/14.37 new_esEs7(vyw42, vyw302, app(ty_[], eeh)) -> new_esEs17(vyw42, vyw302, eeh) 30.83/14.37 new_esEs13(Right(vyw400), Right(vyw3000), che, ty_@0) -> new_esEs20(vyw400, vyw3000) 30.83/14.37 new_primEqNat0(Succ(vyw4000), Zero) -> False 30.83/14.37 new_primEqNat0(Zero, Succ(vyw30000)) -> False 30.83/14.37 new_esEs18(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) 30.83/14.37 new_compare32(vyw40, vyw300, ty_Double) -> new_compare5(vyw40, vyw300) 30.83/14.37 new_esEs31(vyw490, vyw500, app(ty_Ratio, fah)) -> new_esEs26(vyw490, vyw500, fah) 30.83/14.37 new_compare18(vyw180, vyw181, vyw182, vyw183, False, dhh, eaa) -> GT 30.83/14.37 new_esEs22(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs15(vyw400, vyw3000) 30.83/14.37 new_ltEs6(Just(vyw490), Just(vyw500), app(ty_Maybe, ce)) -> new_ltEs6(vyw490, vyw500, ce) 30.83/14.37 new_ltEs22(vyw491, vyw501, ty_Char) -> new_ltEs9(vyw491, vyw501) 30.83/14.37 new_lt11(vyw100, vyw103, ty_Integer) -> new_lt5(vyw100, vyw103) 30.83/14.37 new_esEs5(vyw40, vyw300, ty_Bool) -> new_esEs25(vyw40, vyw300) 30.83/14.37 new_ltEs15(Right(vyw490), Right(vyw500), bag, ty_Ordering) -> new_ltEs17(vyw490, vyw500) 30.83/14.37 new_compare7(EQ, EQ) -> EQ 30.83/14.37 new_esEs29(vyw400, vyw3000, app(app(app(ty_@3, efg), efh), ega)) -> new_esEs14(vyw400, vyw3000, efg, efh, ega) 30.83/14.37 new_ltEs17(LT, LT) -> True 30.83/14.37 new_compare13(@2(vyw40, vyw41), @2(vyw300, vyw301), ccb, ccc) -> new_compare27(vyw40, vyw41, vyw300, vyw301, new_asAs(new_esEs10(vyw40, vyw300, ccb), new_esEs11(vyw41, vyw301, ccc)), ccb, ccc) 30.83/14.37 new_primCompAux00(vyw43, GT) -> GT 30.83/14.37 new_esEs16(LT, EQ) -> False 30.83/14.37 new_esEs16(EQ, LT) -> False 30.83/14.37 new_ltEs24(vyw114, vyw116, ty_Double) -> new_ltEs4(vyw114, vyw116) 30.83/14.37 new_esEs13(Right(vyw400), Right(vyw3000), che, app(ty_Ratio, dae)) -> new_esEs26(vyw400, vyw3000, dae) 30.83/14.37 new_esEs22(Just(vyw400), Just(vyw3000), app(ty_Maybe, ddd)) -> new_esEs22(vyw400, vyw3000, ddd) 30.83/14.37 new_esEs30(vyw401, vyw3001, app(ty_Ratio, ehh)) -> new_esEs26(vyw401, vyw3001, ehh) 30.83/14.37 new_ltEs24(vyw114, vyw116, ty_Integer) -> new_ltEs10(vyw114, vyw116) 30.83/14.37 new_esEs33(vyw400, vyw3000, app(ty_Maybe, fcc)) -> new_esEs22(vyw400, vyw3000, fcc) 30.83/14.37 new_lt22(vyw490, vyw500, ty_Double) -> new_lt14(vyw490, vyw500) 30.83/14.37 new_esEs35(vyw400, vyw3000, app(ty_Ratio, fdh)) -> new_esEs26(vyw400, vyw3000, fdh) 30.83/14.37 new_esEs27(vyw100, vyw103, ty_Int) -> new_esEs15(vyw100, vyw103) 30.83/14.37 new_compare15(vyw143, vyw144, True, dec, ded) -> LT 30.83/14.37 new_compare5(Double(vyw40, Neg(vyw410)), Double(vyw300, Neg(vyw3010))) -> new_compare6(new_sr(vyw40, Neg(vyw3010)), new_sr(Neg(vyw410), vyw300)) 30.83/14.37 new_ltEs16(@2(vyw490, vyw491), @2(vyw500, vyw501), bdc, bcb) -> new_pePe(new_lt22(vyw490, vyw500, bdc), new_asAs(new_esEs34(vyw490, vyw500, bdc), new_ltEs22(vyw491, vyw501, bcb))) 30.83/14.37 new_esEs33(vyw400, vyw3000, ty_Int) -> new_esEs15(vyw400, vyw3000) 30.83/14.37 new_esEs25(False, True) -> False 30.83/14.37 new_esEs25(True, False) -> False 30.83/14.37 new_primCmpInt(Pos(Succ(vyw400)), Neg(vyw300)) -> GT 30.83/14.37 new_esEs6(vyw41, vyw301, ty_Float) -> new_esEs21(vyw41, vyw301) 30.83/14.37 new_esEs6(vyw41, vyw301, app(app(ty_Either, eec), eed)) -> new_esEs13(vyw41, vyw301, eec, eed) 30.83/14.37 new_ltEs4(vyw49, vyw50) -> new_fsEs(new_compare5(vyw49, vyw50)) 30.83/14.37 new_esEs11(vyw41, vyw301, ty_Bool) -> new_esEs25(vyw41, vyw301) 30.83/14.37 new_lt22(vyw490, vyw500, app(app(app(ty_@3, bcd), bce), bcf)) -> new_lt16(vyw490, vyw500, bcd, bce, bcf) 30.83/14.37 new_esEs4(vyw40, vyw300, ty_Bool) -> new_esEs25(vyw40, vyw300) 30.83/14.37 new_lt23(vyw113, vyw115, app(ty_Ratio, fgh)) -> new_lt6(vyw113, vyw115, fgh) 30.83/14.37 new_esEs36(vyw401, vyw3001, app(app(app(ty_@3, fec), fed), fee)) -> new_esEs14(vyw401, vyw3001, fec, fed, fee) 30.83/14.37 new_compare32(vyw40, vyw300, ty_Int) -> new_compare6(vyw40, vyw300) 30.83/14.37 new_ltEs19(vyw71, vyw72, ty_Float) -> new_ltEs14(vyw71, vyw72) 30.83/14.37 new_lt10(vyw101, vyw104, ty_Double) -> new_lt14(vyw101, vyw104) 30.83/14.37 new_ltEs5(False, True) -> True 30.83/14.37 new_lt10(vyw101, vyw104, app(app(app(ty_@3, bfd), bfe), bff)) -> new_lt16(vyw101, vyw104, bfd, bfe, bff) 30.83/14.37 new_compare110(vyw150, vyw151, True, eda, edb) -> LT 30.83/14.37 new_ltEs20(vyw492, vyw502, app(app(app(ty_@3, gf), gg), gh)) -> new_ltEs12(vyw492, vyw502, gf, gg, gh) 30.83/14.37 new_esEs37(vyw402, vyw3002, app(ty_[], ffh)) -> new_esEs17(vyw402, vyw3002, ffh) 30.83/14.37 new_esEs7(vyw42, vyw302, ty_Ordering) -> new_esEs16(vyw42, vyw302) 30.83/14.37 new_ltEs6(Just(vyw490), Just(vyw500), ty_Integer) -> new_ltEs10(vyw490, vyw500) 30.83/14.37 new_ltEs18(vyw102, vyw105, ty_Integer) -> new_ltEs10(vyw102, vyw105) 30.83/14.37 new_ltEs20(vyw492, vyw502, ty_Float) -> new_ltEs14(vyw492, vyw502) 30.83/14.37 new_esEs8(vyw40, vyw300, ty_@0) -> new_esEs20(vyw40, vyw300) 30.83/14.37 new_lt10(vyw101, vyw104, ty_Char) -> new_lt4(vyw101, vyw104) 30.83/14.37 new_ltEs9(vyw49, vyw50) -> new_fsEs(new_compare8(vyw49, vyw50)) 30.83/14.37 new_esEs7(vyw42, vyw302, app(app(ty_@2, efa), efb)) -> new_esEs19(vyw42, vyw302, efa, efb) 30.83/14.37 new_ltEs15(Left(vyw490), Left(vyw500), ty_Char, hf) -> new_ltEs9(vyw490, vyw500) 30.83/14.37 new_esEs31(vyw490, vyw500, app(app(ty_@2, eg), eh)) -> new_esEs19(vyw490, vyw500, eg, eh) 30.83/14.37 new_compare7(GT, GT) -> EQ 30.83/14.37 new_esEs13(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, cgb), cgc), cgd), cge) -> new_esEs14(vyw400, vyw3000, cgb, cgc, cgd) 30.83/14.37 new_primCmpNat0(Zero, Succ(vyw3000)) -> LT 30.83/14.37 new_compare28(vyw71, vyw72, False, ebe, cba) -> new_compare15(vyw71, vyw72, new_ltEs19(vyw71, vyw72, ebe), ebe, cba) 30.83/14.37 new_ltEs23(vyw49, vyw50, ty_Bool) -> new_ltEs5(vyw49, vyw50) 30.83/14.37 new_ltEs15(Right(vyw490), Right(vyw500), bag, ty_Int) -> new_ltEs8(vyw490, vyw500) 30.83/14.37 new_lt23(vyw113, vyw115, app(ty_[], ccd)) -> new_lt12(vyw113, vyw115, ccd) 30.83/14.37 new_ltEs22(vyw491, vyw501, ty_Int) -> new_ltEs8(vyw491, vyw501) 30.83/14.37 new_esEs30(vyw401, vyw3001, app(app(ty_Either, faa), fab)) -> new_esEs13(vyw401, vyw3001, faa, fab) 30.83/14.37 new_esEs22(Just(vyw400), Just(vyw3000), app(ty_[], dda)) -> new_esEs17(vyw400, vyw3000, dda) 30.83/14.37 new_ltEs19(vyw71, vyw72, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs12(vyw71, vyw72, cbc, cbd, cbe) 30.83/14.37 new_esEs5(vyw40, vyw300, ty_Double) -> new_esEs23(vyw40, vyw300) 30.83/14.37 new_ltEs22(vyw491, vyw501, ty_@0) -> new_ltEs13(vyw491, vyw501) 30.83/14.37 new_esEs31(vyw490, vyw500, ty_Ordering) -> new_esEs16(vyw490, vyw500) 30.83/14.37 new_ltEs15(Right(vyw490), Left(vyw500), bag, hf) -> False 30.83/14.37 new_compare11(Float(vyw40, Pos(vyw410)), Float(vyw300, Pos(vyw3010))) -> new_compare6(new_sr(vyw40, Pos(vyw3010)), new_sr(Pos(vyw410), vyw300)) 30.83/14.37 new_primCmpNat0(Succ(vyw400), Zero) -> GT 30.83/14.37 new_esEs33(vyw400, vyw3000, ty_Double) -> new_esEs23(vyw400, vyw3000) 30.83/14.37 new_compare16(Just(vyw40), Nothing, cb) -> GT 30.83/14.37 new_compare19(Right(vyw40), Right(vyw300), caf, cag) -> new_compare29(vyw40, vyw300, new_esEs9(vyw40, vyw300, cag), caf, cag) 30.83/14.37 new_esEs13(Right(vyw400), Right(vyw3000), che, app(ty_[], daa)) -> new_esEs17(vyw400, vyw3000, daa) 30.83/14.37 new_pePe(False, vyw192) -> vyw192 30.83/14.37 new_esEs31(vyw490, vyw500, ty_Integer) -> new_esEs24(vyw490, vyw500) 30.83/14.37 new_esEs10(vyw40, vyw300, ty_Double) -> new_esEs23(vyw40, vyw300) 30.83/14.37 new_ltEs23(vyw49, vyw50, ty_Int) -> new_ltEs8(vyw49, vyw50) 30.83/14.37 new_lt10(vyw101, vyw104, app(ty_Ratio, dea)) -> new_lt6(vyw101, vyw104, dea) 30.83/14.37 new_lt8(vyw4, vyw30) -> new_esEs12(new_compare12(vyw4, vyw30)) 30.83/14.37 new_lt15(vyw4, vyw30, cb) -> new_esEs12(new_compare16(vyw4, vyw30, cb)) 30.83/14.37 new_ltEs23(vyw49, vyw50, app(ty_Ratio, eab)) -> new_ltEs11(vyw49, vyw50, eab) 30.83/14.37 new_esEs8(vyw40, vyw300, ty_Char) -> new_esEs18(vyw40, vyw300) 30.83/14.37 new_esEs21(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs15(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 30.83/14.37 new_lt22(vyw490, vyw500, ty_Char) -> new_lt4(vyw490, vyw500) 30.83/14.37 new_lt10(vyw101, vyw104, app(ty_[], bfa)) -> new_lt12(vyw101, vyw104, bfa) 30.83/14.37 new_lt20(vyw490, vyw500, ty_@0) -> new_lt8(vyw490, vyw500) 30.83/14.37 new_lt23(vyw113, vyw115, ty_Bool) -> new_lt18(vyw113, vyw115) 30.83/14.37 new_ltEs24(vyw114, vyw116, app(app(ty_@2, cef), ceg)) -> new_ltEs16(vyw114, vyw116, cef, ceg) 30.83/14.37 new_lt10(vyw101, vyw104, app(app(ty_@2, bga), bgb)) -> new_lt9(vyw101, vyw104, bga, bgb) 30.83/14.37 new_esEs28(vyw101, vyw104, app(ty_Maybe, bfc)) -> new_esEs22(vyw101, vyw104, bfc) 30.83/14.37 new_lt5(vyw4, vyw30) -> new_esEs12(new_compare9(vyw4, vyw30)) 30.83/14.37 new_esEs22(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs14(vyw400, vyw3000, dcf, dcg, dch) 30.83/14.37 new_ltEs15(Right(vyw490), Right(vyw500), bag, ty_Integer) -> new_ltEs10(vyw490, vyw500) 30.83/14.37 new_esEs6(vyw41, vyw301, ty_Double) -> new_esEs23(vyw41, vyw301) 30.83/14.37 new_compare31(False, False) -> EQ 30.83/14.37 new_ltEs19(vyw71, vyw72, ty_@0) -> new_ltEs13(vyw71, vyw72) 30.83/14.37 new_lt22(vyw490, vyw500, app(ty_Maybe, bcc)) -> new_lt15(vyw490, vyw500, bcc) 30.83/14.37 new_compare27(vyw113, vyw114, vyw115, vyw116, False, cdf, cce) -> new_compare17(vyw113, vyw114, vyw115, vyw116, new_lt23(vyw113, vyw115, cdf), new_asAs(new_esEs40(vyw113, vyw115, cdf), new_ltEs24(vyw114, vyw116, cce)), cdf, cce) 30.83/14.37 new_esEs28(vyw101, vyw104, ty_Ordering) -> new_esEs16(vyw101, vyw104) 30.83/14.37 new_esEs30(vyw401, vyw3001, app(app(app(ty_@3, eha), ehb), ehc)) -> new_esEs14(vyw401, vyw3001, eha, ehb, ehc) 30.83/14.37 new_esEs29(vyw400, vyw3000, ty_Bool) -> new_esEs25(vyw400, vyw3000) 30.83/14.37 new_esEs33(vyw400, vyw3000, ty_Char) -> new_esEs18(vyw400, vyw3000) 30.83/14.37 new_ltEs18(vyw102, vyw105, ty_Double) -> new_ltEs4(vyw102, vyw105) 30.83/14.37 new_ltEs10(vyw49, vyw50) -> new_fsEs(new_compare9(vyw49, vyw50)) 30.83/14.37 new_esEs36(vyw401, vyw3001, app(ty_Ratio, ffb)) -> new_esEs26(vyw401, vyw3001, ffb) 30.83/14.37 new_esEs6(vyw41, vyw301, ty_Char) -> new_esEs18(vyw41, vyw301) 30.83/14.37 new_esEs17([], [], deh) -> True 30.83/14.37 new_esEs22(Just(vyw400), Just(vyw3000), app(app(ty_Either, ddf), ddg)) -> new_esEs13(vyw400, vyw3000, ddf, ddg) 30.83/14.37 new_compare16(Nothing, Nothing, cb) -> EQ 30.83/14.37 new_ltEs15(Left(vyw490), Left(vyw500), app(ty_Maybe, hg), hf) -> new_ltEs6(vyw490, vyw500, hg) 30.83/14.37 new_esEs27(vyw100, vyw103, ty_@0) -> new_esEs20(vyw100, vyw103) 30.83/14.37 new_esEs10(vyw40, vyw300, ty_Char) -> new_esEs18(vyw40, vyw300) 30.83/14.37 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 30.83/14.37 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 30.83/14.37 new_esEs6(vyw41, vyw301, ty_@0) -> new_esEs20(vyw41, vyw301) 30.83/14.37 new_ltEs18(vyw102, vyw105, app(ty_Maybe, bge)) -> new_ltEs6(vyw102, vyw105, bge) 30.83/14.37 new_compare7(EQ, GT) -> LT 30.83/14.37 new_esEs30(vyw401, vyw3001, app(ty_[], ehd)) -> new_esEs17(vyw401, vyw3001, ehd) 30.83/14.37 new_esEs5(vyw40, vyw300, app(app(ty_Either, ecg), ech)) -> new_esEs13(vyw40, vyw300, ecg, ech) 30.83/14.37 new_ltEs22(vyw491, vyw501, ty_Float) -> new_ltEs14(vyw491, vyw501) 30.83/14.37 new_esEs13(Right(vyw400), Right(vyw3000), che, ty_Ordering) -> new_esEs16(vyw400, vyw3000) 30.83/14.37 new_ltEs20(vyw492, vyw502, ty_@0) -> new_ltEs13(vyw492, vyw502) 30.83/14.37 new_ltEs15(Right(vyw490), Right(vyw500), bag, app(app(ty_Either, bbe), bbf)) -> new_ltEs15(vyw490, vyw500, bbe, bbf) 30.83/14.37 new_compare14(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, True, vyw172, fad, fae, faf) -> new_compare111(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, True, fad, fae, faf) 30.83/14.37 new_esEs31(vyw490, vyw500, ty_@0) -> new_esEs20(vyw490, vyw500) 30.83/14.37 new_esEs10(vyw40, vyw300, ty_Integer) -> new_esEs24(vyw40, vyw300) 30.83/14.37 new_ltEs18(vyw102, vyw105, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_ltEs12(vyw102, vyw105, bgf, bgg, bgh) 30.83/14.37 new_compare32(vyw40, vyw300, app(ty_[], h)) -> new_compare4(vyw40, vyw300, h) 30.83/14.37 new_esEs31(vyw490, vyw500, ty_Double) -> new_esEs23(vyw490, vyw500) 30.83/14.37 new_esEs28(vyw101, vyw104, app(ty_Ratio, dea)) -> new_esEs26(vyw101, vyw104, dea) 30.83/14.37 new_esEs30(vyw401, vyw3001, ty_Bool) -> new_esEs25(vyw401, vyw3001) 30.83/14.37 new_ltEs22(vyw491, vyw501, ty_Ordering) -> new_ltEs17(vyw491, vyw501) 30.83/14.37 new_esEs29(vyw400, vyw3000, ty_Char) -> new_esEs18(vyw400, vyw3000) 30.83/14.37 new_esEs8(vyw40, vyw300, ty_Bool) -> new_esEs25(vyw40, vyw300) 30.83/14.37 new_compare32(vyw40, vyw300, app(ty_Maybe, ba)) -> new_compare16(vyw40, vyw300, ba) 30.83/14.37 new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 30.83/14.37 new_compare32(vyw40, vyw300, ty_Ordering) -> new_compare7(vyw40, vyw300) 30.83/14.37 new_esEs4(vyw40, vyw300, ty_@0) -> new_esEs20(vyw40, vyw300) 30.83/14.37 new_esEs32(vyw491, vyw501, ty_Float) -> new_esEs21(vyw491, vyw501) 30.83/14.37 new_esEs37(vyw402, vyw3002, app(app(ty_Either, fge), fgf)) -> new_esEs13(vyw402, vyw3002, fge, fgf) 30.83/14.37 new_esEs40(vyw113, vyw115, app(ty_Maybe, ccf)) -> new_esEs22(vyw113, vyw115, ccf) 30.83/14.37 new_esEs7(vyw42, vyw302, app(ty_Maybe, efc)) -> new_esEs22(vyw42, vyw302, efc) 30.83/14.37 new_primCmpInt(Neg(Zero), Pos(Succ(vyw3000))) -> LT 30.83/14.37 new_esEs13(Right(vyw400), Right(vyw3000), che, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs14(vyw400, vyw3000, chf, chg, chh) 30.83/14.37 new_primMulInt(Pos(vyw3000), Pos(vyw410)) -> Pos(new_primMulNat0(vyw3000, vyw410)) 30.83/14.37 new_esEs4(vyw40, vyw300, app(ty_Ratio, dfc)) -> new_esEs26(vyw40, vyw300, dfc) 30.83/14.37 new_ltEs21(vyw78, vyw79, app(app(ty_Either, cff), cfg)) -> new_ltEs15(vyw78, vyw79, cff, cfg) 30.83/14.37 new_lt14(vyw4, vyw30) -> new_esEs12(new_compare5(vyw4, vyw30)) 30.83/14.37 new_esEs5(vyw40, vyw300, app(app(app(ty_@3, ebg), ebh), eca)) -> new_esEs14(vyw40, vyw300, ebg, ebh, eca) 30.83/14.37 new_ltEs15(Left(vyw490), Right(vyw500), bag, hf) -> True 30.83/14.37 new_compare19(Right(vyw40), Left(vyw300), caf, cag) -> GT 30.83/14.37 new_ltEs7(vyw49, vyw50, cc) -> new_fsEs(new_compare4(vyw49, vyw50, cc)) 30.83/14.37 new_esEs10(vyw40, vyw300, ty_Bool) -> new_esEs25(vyw40, vyw300) 30.83/14.37 new_compare7(LT, LT) -> EQ 30.83/14.37 new_primMulNat0(Succ(vyw30000), Zero) -> Zero 30.83/14.37 new_primMulNat0(Zero, Succ(vyw4100)) -> Zero 30.83/14.37 new_esEs40(vyw113, vyw115, app(app(ty_Either, cdb), cdc)) -> new_esEs13(vyw113, vyw115, cdb, cdc) 30.83/14.37 new_esEs33(vyw400, vyw3000, ty_Integer) -> new_esEs24(vyw400, vyw3000) 30.83/14.37 new_esEs7(vyw42, vyw302, ty_Float) -> new_esEs21(vyw42, vyw302) 30.83/14.37 new_lt10(vyw101, vyw104, ty_Float) -> new_lt7(vyw101, vyw104) 30.83/14.37 new_ltEs6(Just(vyw490), Just(vyw500), ty_Float) -> new_ltEs14(vyw490, vyw500) 30.83/14.37 new_compare10(:%(vyw40, vyw41), :%(vyw300, vyw301), ty_Integer) -> new_compare9(new_sr0(vyw40, vyw301), new_sr0(vyw300, vyw41)) 30.83/14.37 new_esEs6(vyw41, vyw301, ty_Integer) -> new_esEs24(vyw41, vyw301) 30.83/14.37 new_esEs37(vyw402, vyw3002, app(app(app(ty_@3, ffe), fff), ffg)) -> new_esEs14(vyw402, vyw3002, ffe, fff, ffg) 30.83/14.37 new_ltEs15(Left(vyw490), Left(vyw500), app(app(app(ty_@3, hh), baa), bab), hf) -> new_ltEs12(vyw490, vyw500, hh, baa, bab) 30.83/14.37 new_ltEs18(vyw102, vyw105, app(app(ty_Either, bha), bhb)) -> new_ltEs15(vyw102, vyw105, bha, bhb) 30.83/14.37 new_compare26(vyw49, vyw50, True, fgg) -> EQ 30.83/14.37 new_primPlusNat1(Succ(vyw1930), vyw4100) -> Succ(Succ(new_primPlusNat0(vyw1930, vyw4100))) 30.83/14.37 new_compare19(Left(vyw40), Left(vyw300), caf, cag) -> new_compare28(vyw40, vyw300, new_esEs8(vyw40, vyw300, caf), caf, cag) 30.83/14.37 new_ltEs24(vyw114, vyw116, ty_Float) -> new_ltEs14(vyw114, vyw116) 30.83/14.37 new_ltEs5(True, False) -> False 30.83/14.37 new_ltEs6(Just(vyw490), Just(vyw500), ty_Int) -> new_ltEs8(vyw490, vyw500) 30.83/14.37 new_esEs36(vyw401, vyw3001, ty_Int) -> new_esEs15(vyw401, vyw3001) 30.83/14.37 new_esEs11(vyw41, vyw301, app(app(ty_@2, dhb), dhc)) -> new_esEs19(vyw41, vyw301, dhb, dhc) 30.83/14.37 new_esEs11(vyw41, vyw301, ty_Float) -> new_esEs21(vyw41, vyw301) 30.83/14.37 new_esEs6(vyw41, vyw301, ty_Bool) -> new_esEs25(vyw41, vyw301) 30.83/14.37 new_primPlusNat0(Succ(vyw19300), Zero) -> Succ(vyw19300) 30.83/14.37 new_primPlusNat0(Zero, Succ(vyw41000)) -> Succ(vyw41000) 30.83/14.37 new_esEs28(vyw101, vyw104, app(ty_[], bfa)) -> new_esEs17(vyw101, vyw104, bfa) 30.83/14.37 new_esEs31(vyw490, vyw500, app(ty_Maybe, ea)) -> new_esEs22(vyw490, vyw500, ea) 30.83/14.37 new_ltEs15(Left(vyw490), Left(vyw500), app(app(ty_@2, bae), baf), hf) -> new_ltEs16(vyw490, vyw500, bae, baf) 30.83/14.37 new_esEs35(vyw400, vyw3000, app(app(ty_@2, fde), fdf)) -> new_esEs19(vyw400, vyw3000, fde, fdf) 30.83/14.37 new_esEs34(vyw490, vyw500, ty_Float) -> new_esEs21(vyw490, vyw500) 30.83/14.37 new_esEs8(vyw40, vyw300, ty_Float) -> new_esEs21(vyw40, vyw300) 30.83/14.37 new_primPlusNat1(Zero, vyw4100) -> Succ(vyw4100) 30.83/14.37 new_esEs5(vyw40, vyw300, ty_Ordering) -> new_esEs16(vyw40, vyw300) 30.83/14.37 new_lt21(vyw491, vyw501, app(ty_Ratio, fba)) -> new_lt6(vyw491, vyw501, fba) 30.83/14.37 new_ltEs15(Right(vyw490), Right(vyw500), bag, ty_Double) -> new_ltEs4(vyw490, vyw500) 30.83/14.37 new_esEs40(vyw113, vyw115, app(ty_Ratio, fgh)) -> new_esEs26(vyw113, vyw115, fgh) 30.83/14.37 new_esEs30(vyw401, vyw3001, app(ty_Maybe, ehg)) -> new_esEs22(vyw401, vyw3001, ehg) 30.83/14.37 new_esEs27(vyw100, vyw103, app(app(ty_Either, cab), cac)) -> new_esEs13(vyw100, vyw103, cab, cac) 30.83/14.37 new_esEs5(vyw40, vyw300, app(ty_Maybe, ece)) -> new_esEs22(vyw40, vyw300, ece) 30.83/14.37 new_esEs16(LT, GT) -> False 30.83/14.37 new_esEs16(GT, LT) -> False 30.83/14.37 new_ltEs6(Nothing, Just(vyw500), dah) -> True 30.83/14.37 new_compare32(vyw40, vyw300, ty_@0) -> new_compare12(vyw40, vyw300) 30.83/14.37 new_esEs28(vyw101, vyw104, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs14(vyw101, vyw104, bfd, bfe, bff) 30.83/14.37 new_esEs8(vyw40, vyw300, ty_Integer) -> new_esEs24(vyw40, vyw300) 30.83/14.37 new_esEs10(vyw40, vyw300, app(app(ty_@2, dfh), dga)) -> new_esEs19(vyw40, vyw300, dfh, dga) 30.83/14.37 new_esEs29(vyw400, vyw3000, app(ty_[], egb)) -> new_esEs17(vyw400, vyw3000, egb) 30.83/14.37 new_esEs19(@2(vyw400, vyw401), @2(vyw3000, vyw3001), dfa, dfb) -> new_asAs(new_esEs29(vyw400, vyw3000, dfa), new_esEs30(vyw401, vyw3001, dfb)) 30.83/14.37 new_esEs40(vyw113, vyw115, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs14(vyw113, vyw115, ccg, cch, cda) 30.83/14.37 new_lt21(vyw491, vyw501, ty_Float) -> new_lt7(vyw491, vyw501) 30.83/14.37 new_lt20(vyw490, vyw500, app(ty_Ratio, fah)) -> new_lt6(vyw490, vyw500, fah) 30.83/14.37 new_esEs30(vyw401, vyw3001, ty_@0) -> new_esEs20(vyw401, vyw3001) 30.83/14.37 new_esEs33(vyw400, vyw3000, app(app(ty_@2, fca), fcb)) -> new_esEs19(vyw400, vyw3000, fca, fcb) 30.83/14.37 new_esEs12(LT) -> True 30.83/14.37 new_esEs9(vyw40, vyw300, app(app(ty_@2, eag), eah)) -> new_esEs19(vyw40, vyw300, eag, eah) 30.83/14.37 new_esEs9(vyw40, vyw300, ty_Float) -> new_esEs21(vyw40, vyw300) 30.83/14.37 new_esEs30(vyw401, vyw3001, ty_Char) -> new_esEs18(vyw401, vyw3001) 30.83/14.37 new_esEs32(vyw491, vyw501, ty_Bool) -> new_esEs25(vyw491, vyw501) 30.83/14.37 new_compare31(True, True) -> EQ 30.83/14.37 new_lt9(vyw4, vyw30, ccb, ccc) -> new_esEs12(new_compare13(vyw4, vyw30, ccb, ccc)) 30.83/14.37 new_esEs6(vyw41, vyw301, app(ty_Maybe, eea)) -> new_esEs22(vyw41, vyw301, eea) 30.83/14.37 new_esEs13(Right(vyw400), Right(vyw3000), che, app(ty_Maybe, dad)) -> new_esEs22(vyw400, vyw3000, dad) 30.83/14.37 new_lt21(vyw491, vyw501, app(ty_[], fb)) -> new_lt12(vyw491, vyw501, fb) 30.83/14.37 new_esEs13(Left(vyw400), Left(vyw3000), ty_Integer, cge) -> new_esEs24(vyw400, vyw3000) 30.83/14.37 new_esEs40(vyw113, vyw115, app(ty_[], ccd)) -> new_esEs17(vyw113, vyw115, ccd) 30.83/14.37 new_lt20(vyw490, vyw500, ty_Float) -> new_lt7(vyw490, vyw500) 30.83/14.37 new_compare16(Just(vyw40), Just(vyw300), cb) -> new_compare26(vyw40, vyw300, new_esEs4(vyw40, vyw300, cb), cb) 30.83/14.37 new_esEs7(vyw42, vyw302, ty_Integer) -> new_esEs24(vyw42, vyw302) 30.83/14.37 new_ltEs19(vyw71, vyw72, ty_Ordering) -> new_ltEs17(vyw71, vyw72) 30.83/14.37 new_ltEs21(vyw78, vyw79, app(ty_Ratio, fbd)) -> new_ltEs11(vyw78, vyw79, fbd) 30.83/14.37 new_ltEs15(Right(vyw490), Right(vyw500), bag, app(ty_Ratio, fhc)) -> new_ltEs11(vyw490, vyw500, fhc) 30.83/14.37 new_lt20(vyw490, vyw500, app(app(ty_@2, eg), eh)) -> new_lt9(vyw490, vyw500, eg, eh) 30.83/14.37 new_compare111(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, True, fad, fae, faf) -> LT 30.83/14.37 new_primMulInt(Neg(vyw3000), Neg(vyw410)) -> Pos(new_primMulNat0(vyw3000, vyw410)) 30.83/14.37 new_esEs40(vyw113, vyw115, ty_Ordering) -> new_esEs16(vyw113, vyw115) 30.83/14.37 new_ltEs15(Left(vyw490), Left(vyw500), app(ty_[], he), hf) -> new_ltEs7(vyw490, vyw500, he) 30.83/14.37 new_primCmpInt(Pos(Zero), Pos(Succ(vyw3000))) -> new_primCmpNat0(Zero, Succ(vyw3000)) 30.83/14.37 new_ltEs15(Right(vyw490), Right(vyw500), bag, app(app(ty_@2, bbg), bbh)) -> new_ltEs16(vyw490, vyw500, bbg, bbh) 30.83/14.37 new_esEs27(vyw100, vyw103, app(ty_Ratio, ddh)) -> new_esEs26(vyw100, vyw103, ddh) 30.83/14.37 new_esEs31(vyw490, vyw500, ty_Bool) -> new_esEs25(vyw490, vyw500) 30.83/14.37 new_esEs8(vyw40, vyw300, ty_Double) -> new_esEs23(vyw40, vyw300) 30.83/14.37 new_ltEs22(vyw491, vyw501, app(app(ty_@2, bec), bed)) -> new_ltEs16(vyw491, vyw501, bec, bed) 30.83/14.37 new_esEs13(Left(vyw400), Left(vyw3000), ty_Bool, cge) -> new_esEs25(vyw400, vyw3000) 30.83/14.37 new_lt20(vyw490, vyw500, app(ty_[], df)) -> new_lt12(vyw490, vyw500, df) 30.83/14.37 new_compare9(Integer(vyw40), Integer(vyw300)) -> new_primCmpInt(vyw40, vyw300) 30.83/14.37 new_esEs7(vyw42, vyw302, ty_Bool) -> new_esEs25(vyw42, vyw302) 30.83/14.37 new_esEs32(vyw491, vyw501, ty_Double) -> new_esEs23(vyw491, vyw501) 30.83/14.37 new_ltEs18(vyw102, vyw105, ty_Char) -> new_ltEs9(vyw102, vyw105) 30.83/14.37 new_esEs33(vyw400, vyw3000, ty_Float) -> new_esEs21(vyw400, vyw3000) 30.83/14.37 new_esEs5(vyw40, vyw300, app(ty_[], ecb)) -> new_esEs17(vyw40, vyw300, ecb) 30.83/14.37 new_esEs31(vyw490, vyw500, ty_Char) -> new_esEs18(vyw490, vyw500) 30.83/14.37 new_esEs35(vyw400, vyw3000, ty_Int) -> new_esEs15(vyw400, vyw3000) 30.83/14.37 new_compare4([], :(vyw300, vyw301), ca) -> LT 30.83/14.37 new_esEs5(vyw40, vyw300, ty_@0) -> new_esEs20(vyw40, vyw300) 30.83/14.37 new_ltEs17(EQ, EQ) -> True 30.83/14.37 new_esEs29(vyw400, vyw3000, app(ty_Maybe, ege)) -> new_esEs22(vyw400, vyw3000, ege) 30.83/14.37 new_ltEs20(vyw492, vyw502, ty_Ordering) -> new_ltEs17(vyw492, vyw502) 30.83/14.37 new_esEs34(vyw490, vyw500, app(app(ty_@2, bda), bdb)) -> new_esEs19(vyw490, vyw500, bda, bdb) 30.83/14.37 new_esEs29(vyw400, vyw3000, ty_@0) -> new_esEs20(vyw400, vyw3000) 30.83/14.37 new_esEs10(vyw40, vyw300, ty_Float) -> new_esEs21(vyw40, vyw300) 30.83/14.37 new_compare6(vyw4, vyw30) -> new_primCmpInt(vyw4, vyw30) 30.83/14.37 new_esEs4(vyw40, vyw300, ty_Ordering) -> new_esEs16(vyw40, vyw300) 30.83/14.37 new_ltEs20(vyw492, vyw502, app(app(ty_Either, ha), hb)) -> new_ltEs15(vyw492, vyw502, ha, hb) 30.83/14.37 new_esEs27(vyw100, vyw103, app(app(app(ty_@3, bhg), bhh), caa)) -> new_esEs14(vyw100, vyw103, bhg, bhh, caa) 30.83/14.37 new_esEs25(True, True) -> True 30.83/14.37 new_ltEs19(vyw71, vyw72, ty_Char) -> new_ltEs9(vyw71, vyw72) 30.83/14.37 new_ltEs17(GT, LT) -> False 30.83/14.37 new_esEs37(vyw402, vyw3002, app(ty_Ratio, fgd)) -> new_esEs26(vyw402, vyw3002, fgd) 30.83/14.37 new_ltEs17(EQ, LT) -> False 30.83/14.37 new_lt21(vyw491, vyw501, ty_@0) -> new_lt8(vyw491, vyw501) 30.83/14.37 new_compare12(@0, @0) -> EQ 30.83/14.37 new_primMulInt(Pos(vyw3000), Neg(vyw410)) -> Neg(new_primMulNat0(vyw3000, vyw410)) 30.83/14.37 new_primMulInt(Neg(vyw3000), Pos(vyw410)) -> Neg(new_primMulNat0(vyw3000, vyw410)) 30.83/14.37 new_esEs4(vyw40, vyw300, app(ty_[], deh)) -> new_esEs17(vyw40, vyw300, deh) 30.83/14.37 new_esEs12(GT) -> False 30.83/14.37 new_esEs40(vyw113, vyw115, ty_Double) -> new_esEs23(vyw113, vyw115) 30.83/14.37 new_esEs12(EQ) -> False 30.83/14.37 new_esEs22(Just(vyw400), Just(vyw3000), app(ty_Ratio, dde)) -> new_esEs26(vyw400, vyw3000, dde) 30.83/14.37 new_compare11(Float(vyw40, Pos(vyw410)), Float(vyw300, Neg(vyw3010))) -> new_compare6(new_sr(vyw40, Pos(vyw3010)), new_sr(Neg(vyw410), vyw300)) 30.83/14.37 new_compare11(Float(vyw40, Neg(vyw410)), Float(vyw300, Pos(vyw3010))) -> new_compare6(new_sr(vyw40, Neg(vyw3010)), new_sr(Pos(vyw410), vyw300)) 30.83/14.37 new_ltEs23(vyw49, vyw50, ty_Float) -> new_ltEs14(vyw49, vyw50) 30.83/14.37 new_esEs11(vyw41, vyw301, ty_Char) -> new_esEs18(vyw41, vyw301) 30.83/14.37 new_ltEs6(Just(vyw490), Just(vyw500), app(ty_[], cd)) -> new_ltEs7(vyw490, vyw500, cd) 30.83/14.37 new_esEs31(vyw490, vyw500, app(ty_[], df)) -> new_esEs17(vyw490, vyw500, df) 30.83/14.37 new_esEs13(Left(vyw400), Left(vyw3000), ty_Char, cge) -> new_esEs18(vyw400, vyw3000) 30.83/14.37 new_esEs4(vyw40, vyw300, app(app(ty_Either, che), cge)) -> new_esEs13(vyw40, vyw300, che, cge) 30.83/14.37 new_esEs37(vyw402, vyw3002, ty_Ordering) -> new_esEs16(vyw402, vyw3002) 30.83/14.37 new_ltEs24(vyw114, vyw116, ty_Int) -> new_ltEs8(vyw114, vyw116) 30.83/14.37 new_esEs4(vyw40, vyw300, ty_Float) -> new_esEs21(vyw40, vyw300) 30.83/14.37 new_esEs30(vyw401, vyw3001, ty_Integer) -> new_esEs24(vyw401, vyw3001) 30.83/14.37 new_esEs31(vyw490, vyw500, app(app(ty_Either, ee), ef)) -> new_esEs13(vyw490, vyw500, ee, ef) 30.83/14.37 new_sr0(Integer(vyw3000), Integer(vyw410)) -> Integer(new_primMulInt(vyw3000, vyw410)) 30.83/14.37 new_esEs34(vyw490, vyw500, ty_Double) -> new_esEs23(vyw490, vyw500) 30.83/14.37 new_ltEs5(False, False) -> True 30.83/14.37 new_esEs22(Just(vyw400), Just(vyw3000), app(app(ty_@2, ddb), ddc)) -> new_esEs19(vyw400, vyw3000, ddb, ddc) 30.83/14.37 new_lt11(vyw100, vyw103, app(ty_Ratio, ddh)) -> new_lt6(vyw100, vyw103, ddh) 30.83/14.37 new_esEs40(vyw113, vyw115, ty_Integer) -> new_esEs24(vyw113, vyw115) 30.83/14.37 new_esEs31(vyw490, vyw500, ty_Float) -> new_esEs21(vyw490, vyw500) 30.83/14.37 new_compare7(EQ, LT) -> GT 30.83/14.37 new_esEs7(vyw42, vyw302, ty_Double) -> new_esEs23(vyw42, vyw302) 30.83/14.37 new_compare7(GT, LT) -> GT 30.83/14.37 new_esEs16(GT, GT) -> True 30.83/14.37 new_esEs28(vyw101, vyw104, ty_Double) -> new_esEs23(vyw101, vyw104) 30.83/14.37 new_ltEs18(vyw102, vyw105, ty_@0) -> new_ltEs13(vyw102, vyw105) 30.83/14.37 new_ltEs22(vyw491, vyw501, ty_Integer) -> new_ltEs10(vyw491, vyw501) 30.83/14.37 new_ltEs6(Just(vyw490), Just(vyw500), ty_@0) -> new_ltEs13(vyw490, vyw500) 30.83/14.37 new_lt11(vyw100, vyw103, app(ty_[], bhe)) -> new_lt12(vyw100, vyw103, bhe) 30.83/14.37 new_esEs27(vyw100, vyw103, ty_Ordering) -> new_esEs16(vyw100, vyw103) 30.83/14.37 new_esEs5(vyw40, vyw300, ty_Char) -> new_esEs18(vyw40, vyw300) 30.83/14.37 new_ltEs21(vyw78, vyw79, app(ty_Maybe, cfb)) -> new_ltEs6(vyw78, vyw79, cfb) 30.83/14.37 new_esEs13(Left(vyw400), Right(vyw3000), che, cge) -> False 30.83/14.37 new_esEs13(Right(vyw400), Left(vyw3000), che, cge) -> False 30.83/14.37 new_esEs9(vyw40, vyw300, ty_@0) -> new_esEs20(vyw40, vyw300) 30.83/14.37 new_compare30(@3(vyw40, vyw41, vyw42), @3(vyw300, vyw301, vyw302), bee, bef, beg) -> new_compare25(vyw40, vyw41, vyw42, vyw300, vyw301, vyw302, new_asAs(new_esEs5(vyw40, vyw300, bee), new_asAs(new_esEs6(vyw41, vyw301, bef), new_esEs7(vyw42, vyw302, beg))), bee, bef, beg) 30.83/14.37 new_lt13(vyw4, vyw30) -> new_esEs12(new_compare6(vyw4, vyw30)) 30.83/14.37 new_ltEs18(vyw102, vyw105, ty_Int) -> new_ltEs8(vyw102, vyw105) 30.83/14.37 new_esEs32(vyw491, vyw501, app(app(ty_@2, gb), gc)) -> new_esEs19(vyw491, vyw501, gb, gc) 30.83/14.37 new_esEs32(vyw491, vyw501, ty_Char) -> new_esEs18(vyw491, vyw501) 30.83/14.37 new_esEs34(vyw490, vyw500, ty_Int) -> new_esEs15(vyw490, vyw500) 30.83/14.37 new_asAs(True, vyw138) -> vyw138 30.83/14.37 new_esEs7(vyw42, vyw302, ty_Int) -> new_esEs15(vyw42, vyw302) 30.83/14.37 new_lt22(vyw490, vyw500, app(app(ty_Either, bcg), bch)) -> new_lt17(vyw490, vyw500, bcg, bch) 30.83/14.37 new_esEs5(vyw40, vyw300, app(app(ty_@2, ecc), ecd)) -> new_esEs19(vyw40, vyw300, ecc, ecd) 30.83/14.37 new_esEs39(vyw401, vyw3001, ty_Integer) -> new_esEs24(vyw401, vyw3001) 30.83/14.37 new_esEs22(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs16(vyw400, vyw3000) 30.83/14.37 new_esEs39(vyw401, vyw3001, ty_Int) -> new_esEs15(vyw401, vyw3001) 30.83/14.37 new_esEs10(vyw40, vyw300, app(ty_[], dfg)) -> new_esEs17(vyw40, vyw300, dfg) 30.83/14.37 new_ltEs15(Left(vyw490), Left(vyw500), ty_Float, hf) -> new_ltEs14(vyw490, vyw500) 30.83/14.37 new_esEs36(vyw401, vyw3001, ty_@0) -> new_esEs20(vyw401, vyw3001) 30.83/14.37 new_compare7(GT, EQ) -> GT 30.83/14.37 new_esEs11(vyw41, vyw301, ty_@0) -> new_esEs20(vyw41, vyw301) 30.83/14.37 new_ltEs6(Just(vyw490), Just(vyw500), ty_Ordering) -> new_ltEs17(vyw490, vyw500) 30.83/14.37 new_ltEs18(vyw102, vyw105, ty_Ordering) -> new_ltEs17(vyw102, vyw105) 30.83/14.37 new_ltEs20(vyw492, vyw502, ty_Char) -> new_ltEs9(vyw492, vyw502) 30.83/14.37 new_lt23(vyw113, vyw115, ty_Double) -> new_lt14(vyw113, vyw115) 30.83/14.37 new_lt11(vyw100, vyw103, app(ty_Maybe, bhf)) -> new_lt15(vyw100, vyw103, bhf) 30.83/14.37 new_esEs28(vyw101, vyw104, ty_Int) -> new_esEs15(vyw101, vyw104) 30.83/14.37 new_esEs13(Left(vyw400), Left(vyw3000), ty_@0, cge) -> new_esEs20(vyw400, vyw3000) 30.83/14.37 new_esEs13(Left(vyw400), Left(vyw3000), app(ty_Maybe, cha), cge) -> new_esEs22(vyw400, vyw3000, cha) 30.83/14.37 new_lt21(vyw491, vyw501, app(app(ty_@2, gb), gc)) -> new_lt9(vyw491, vyw501, gb, gc) 30.83/14.37 new_ltEs20(vyw492, vyw502, app(ty_Ratio, fbb)) -> new_ltEs11(vyw492, vyw502, fbb) 30.83/14.37 new_compare32(vyw40, vyw300, app(app(app(ty_@3, bb), bc), bd)) -> new_compare30(vyw40, vyw300, bb, bc, bd) 30.83/14.37 new_ltEs23(vyw49, vyw50, ty_Double) -> new_ltEs4(vyw49, vyw50) 30.83/14.37 new_ltEs15(Left(vyw490), Left(vyw500), ty_Ordering, hf) -> new_ltEs17(vyw490, vyw500) 30.83/14.37 new_lt23(vyw113, vyw115, app(app(app(ty_@3, ccg), cch), cda)) -> new_lt16(vyw113, vyw115, ccg, cch, cda) 30.83/14.37 new_compare32(vyw40, vyw300, ty_Integer) -> new_compare9(vyw40, vyw300) 30.83/14.37 new_esEs40(vyw113, vyw115, ty_Int) -> new_esEs15(vyw113, vyw115) 30.83/14.37 new_primCmpInt(Pos(Succ(vyw400)), Pos(vyw300)) -> new_primCmpNat0(Succ(vyw400), vyw300) 30.83/14.37 new_esEs9(vyw40, vyw300, app(ty_[], eaf)) -> new_esEs17(vyw40, vyw300, eaf) 30.83/14.37 new_lt22(vyw490, vyw500, app(ty_Ratio, fcg)) -> new_lt6(vyw490, vyw500, fcg) 30.83/14.37 new_ltEs21(vyw78, vyw79, app(app(ty_@2, cfh), cga)) -> new_ltEs16(vyw78, vyw79, cfh, cga) 30.83/14.37 new_lt22(vyw490, vyw500, ty_Int) -> new_lt13(vyw490, vyw500) 30.83/14.37 new_compare8(Char(vyw40), Char(vyw300)) -> new_primCmpNat0(vyw40, vyw300) 30.83/14.37 new_compare29(vyw78, vyw79, False, ceh, fbc) -> new_compare110(vyw78, vyw79, new_ltEs21(vyw78, vyw79, fbc), ceh, fbc) 30.83/14.37 new_lt23(vyw113, vyw115, ty_Char) -> new_lt4(vyw113, vyw115) 30.83/14.37 new_compare17(vyw180, vyw181, vyw182, vyw183, True, vyw185, dhh, eaa) -> new_compare18(vyw180, vyw181, vyw182, vyw183, True, dhh, eaa) 30.83/14.37 new_compare32(vyw40, vyw300, ty_Float) -> new_compare11(vyw40, vyw300) 30.83/14.37 new_primCompAux00(vyw43, EQ) -> vyw43 30.83/14.37 new_lt11(vyw100, vyw103, ty_@0) -> new_lt8(vyw100, vyw103) 30.83/14.37 new_compare32(vyw40, vyw300, ty_Bool) -> new_compare31(vyw40, vyw300) 30.83/14.37 new_esEs36(vyw401, vyw3001, app(ty_[], fef)) -> new_esEs17(vyw401, vyw3001, fef) 30.83/14.37 new_sr(vyw300, vyw41) -> new_primMulInt(vyw300, vyw41) 30.83/14.37 new_compare7(LT, GT) -> LT 30.83/14.37 new_compare18(vyw180, vyw181, vyw182, vyw183, True, dhh, eaa) -> LT 30.83/14.37 new_esEs4(vyw40, vyw300, app(ty_Maybe, dce)) -> new_esEs22(vyw40, vyw300, dce) 30.83/14.37 new_compare19(Left(vyw40), Right(vyw300), caf, cag) -> LT 30.83/14.37 new_esEs29(vyw400, vyw3000, ty_Integer) -> new_esEs24(vyw400, vyw3000) 30.83/14.37 new_compare7(LT, EQ) -> LT 30.83/14.37 new_lt10(vyw101, vyw104, app(ty_Maybe, bfc)) -> new_lt15(vyw101, vyw104, bfc) 30.83/14.37 new_esEs8(vyw40, vyw300, app(ty_[], dbf)) -> new_esEs17(vyw40, vyw300, dbf) 30.83/14.37 new_compare4(:(vyw40, vyw41), [], ca) -> GT 30.83/14.37 new_ltEs6(Just(vyw490), Just(vyw500), app(ty_Ratio, dba)) -> new_ltEs11(vyw490, vyw500, dba) 30.83/14.37 new_primMulNat0(Zero, Zero) -> Zero 30.83/14.37 new_esEs40(vyw113, vyw115, ty_Bool) -> new_esEs25(vyw113, vyw115) 30.83/14.37 new_esEs6(vyw41, vyw301, app(ty_Ratio, eeb)) -> new_esEs26(vyw41, vyw301, eeb) 30.83/14.37 new_ltEs21(vyw78, vyw79, ty_Char) -> new_ltEs9(vyw78, vyw79) 30.83/14.37 new_lt22(vyw490, vyw500, app(app(ty_@2, bda), bdb)) -> new_lt9(vyw490, vyw500, bda, bdb) 30.83/14.37 new_esEs33(vyw400, vyw3000, ty_Bool) -> new_esEs25(vyw400, vyw3000) 30.83/14.37 new_ltEs24(vyw114, vyw116, ty_Ordering) -> new_ltEs17(vyw114, vyw116) 30.83/14.37 new_ltEs23(vyw49, vyw50, ty_@0) -> new_ltEs13(vyw49, vyw50) 30.83/14.37 new_lt22(vyw490, vyw500, app(ty_[], bca)) -> new_lt12(vyw490, vyw500, bca) 30.83/14.37 new_esEs35(vyw400, vyw3000, app(app(ty_Either, fea), feb)) -> new_esEs13(vyw400, vyw3000, fea, feb) 30.83/14.37 new_esEs13(Left(vyw400), Left(vyw3000), ty_Float, cge) -> new_esEs21(vyw400, vyw3000) 30.83/14.37 new_ltEs22(vyw491, vyw501, ty_Bool) -> new_ltEs5(vyw491, vyw501) 30.83/14.37 new_lt23(vyw113, vyw115, ty_Float) -> new_lt7(vyw113, vyw115) 30.83/14.37 new_compare26(vyw49, vyw50, False, fgg) -> new_compare112(vyw49, vyw50, new_ltEs23(vyw49, vyw50, fgg), fgg) 30.83/14.37 new_esEs22(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs20(vyw400, vyw3000) 30.83/14.37 new_esEs32(vyw491, vyw501, ty_Ordering) -> new_esEs16(vyw491, vyw501) 30.83/14.37 new_lt10(vyw101, vyw104, ty_@0) -> new_lt8(vyw101, vyw104) 30.83/14.37 new_ltEs20(vyw492, vyw502, app(app(ty_@2, hc), hd)) -> new_ltEs16(vyw492, vyw502, hc, hd) 30.83/14.37 new_esEs7(vyw42, vyw302, app(app(app(ty_@3, eee), eef), eeg)) -> new_esEs14(vyw42, vyw302, eee, eef, eeg) 30.83/14.37 new_ltEs23(vyw49, vyw50, app(app(ty_Either, bag), hf)) -> new_ltEs15(vyw49, vyw50, bag, hf) 30.83/14.37 new_esEs26(:%(vyw400, vyw401), :%(vyw3000, vyw3001), dfc) -> new_asAs(new_esEs38(vyw400, vyw3000, dfc), new_esEs39(vyw401, vyw3001, dfc)) 30.83/14.37 new_esEs36(vyw401, vyw3001, app(app(ty_@2, feg), feh)) -> new_esEs19(vyw401, vyw3001, feg, feh) 30.83/14.37 new_esEs28(vyw101, vyw104, ty_Integer) -> new_esEs24(vyw101, vyw104) 30.83/14.37 new_ltEs20(vyw492, vyw502, app(ty_Maybe, ge)) -> new_ltEs6(vyw492, vyw502, ge) 30.83/14.37 new_esEs36(vyw401, vyw3001, app(app(ty_Either, ffc), ffd)) -> new_esEs13(vyw401, vyw3001, ffc, ffd) 30.83/14.37 new_ltEs24(vyw114, vyw116, app(ty_[], cdg)) -> new_ltEs7(vyw114, vyw116, cdg) 30.83/14.37 new_esEs13(Left(vyw400), Left(vyw3000), app(app(ty_@2, cgg), cgh), cge) -> new_esEs19(vyw400, vyw3000, cgg, cgh) 30.83/14.37 new_ltEs19(vyw71, vyw72, app(ty_Ratio, ebf)) -> new_ltEs11(vyw71, vyw72, ebf) 30.83/14.37 new_esEs29(vyw400, vyw3000, ty_Float) -> new_esEs21(vyw400, vyw3000) 30.83/14.37 new_esEs35(vyw400, vyw3000, ty_Integer) -> new_esEs24(vyw400, vyw3000) 30.83/14.37 new_ltEs15(Right(vyw490), Right(vyw500), bag, ty_Bool) -> new_ltEs5(vyw490, vyw500) 30.83/14.37 new_esEs13(Right(vyw400), Right(vyw3000), che, ty_Int) -> new_esEs15(vyw400, vyw3000) 30.83/14.37 new_esEs35(vyw400, vyw3000, ty_Float) -> new_esEs21(vyw400, vyw3000) 30.83/14.37 new_esEs6(vyw41, vyw301, app(app(ty_@2, edg), edh)) -> new_esEs19(vyw41, vyw301, edg, edh) 30.83/14.37 new_ltEs15(Right(vyw490), Right(vyw500), bag, ty_Char) -> new_ltEs9(vyw490, vyw500) 30.83/14.37 new_esEs5(vyw40, vyw300, app(ty_Ratio, ecf)) -> new_esEs26(vyw40, vyw300, ecf) 30.83/14.37 new_esEs30(vyw401, vyw3001, ty_Double) -> new_esEs23(vyw401, vyw3001) 30.83/14.37 new_esEs37(vyw402, vyw3002, ty_@0) -> new_esEs20(vyw402, vyw3002) 30.83/14.37 new_compare5(Double(vyw40, Pos(vyw410)), Double(vyw300, Neg(vyw3010))) -> new_compare6(new_sr(vyw40, Pos(vyw3010)), new_sr(Neg(vyw410), vyw300)) 30.83/14.37 new_compare5(Double(vyw40, Neg(vyw410)), Double(vyw300, Pos(vyw3010))) -> new_compare6(new_sr(vyw40, Neg(vyw3010)), new_sr(Pos(vyw410), vyw300)) 30.83/14.37 new_esEs6(vyw41, vyw301, ty_Ordering) -> new_esEs16(vyw41, vyw301) 30.83/14.37 new_ltEs22(vyw491, vyw501, app(app(ty_Either, bea), beb)) -> new_ltEs15(vyw491, vyw501, bea, beb) 30.83/14.37 new_esEs37(vyw402, vyw3002, app(app(ty_@2, fga), fgb)) -> new_esEs19(vyw402, vyw3002, fga, fgb) 30.83/14.37 new_ltEs15(Left(vyw490), Left(vyw500), ty_Int, hf) -> new_ltEs8(vyw490, vyw500) 30.83/14.37 new_esEs10(vyw40, vyw300, ty_Int) -> new_esEs15(vyw40, vyw300) 30.83/14.37 new_esEs28(vyw101, vyw104, ty_Bool) -> new_esEs25(vyw101, vyw104) 30.83/14.37 new_ltEs19(vyw71, vyw72, app(app(ty_@2, cbh), cca)) -> new_ltEs16(vyw71, vyw72, cbh, cca) 30.83/14.37 new_lt23(vyw113, vyw115, ty_Ordering) -> new_lt19(vyw113, vyw115) 30.83/14.37 new_compare111(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, False, fad, fae, faf) -> GT 30.83/14.37 new_ltEs18(vyw102, vyw105, app(ty_[], bgd)) -> new_ltEs7(vyw102, vyw105, bgd) 30.83/14.37 new_ltEs18(vyw102, vyw105, app(ty_Ratio, deb)) -> new_ltEs11(vyw102, vyw105, deb) 30.83/14.37 new_ltEs19(vyw71, vyw72, app(ty_Maybe, cbb)) -> new_ltEs6(vyw71, vyw72, cbb) 30.83/14.37 new_esEs10(vyw40, vyw300, app(ty_Maybe, dgb)) -> new_esEs22(vyw40, vyw300, dgb) 30.83/14.37 new_esEs34(vyw490, vyw500, ty_Integer) -> new_esEs24(vyw490, vyw500) 30.83/14.37 new_compare27(vyw113, vyw114, vyw115, vyw116, True, cdf, cce) -> EQ 30.83/14.37 new_esEs29(vyw400, vyw3000, ty_Double) -> new_esEs23(vyw400, vyw3000) 30.83/14.37 new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False 30.83/14.37 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 30.83/14.37 new_esEs35(vyw400, vyw3000, ty_Double) -> new_esEs23(vyw400, vyw3000) 30.83/14.37 new_esEs13(Right(vyw400), Right(vyw3000), che, app(app(ty_@2, dab), dac)) -> new_esEs19(vyw400, vyw3000, dab, dac) 30.83/14.37 new_esEs36(vyw401, vyw3001, ty_Float) -> new_esEs21(vyw401, vyw3001) 30.83/14.37 new_esEs29(vyw400, vyw3000, app(app(ty_Either, egg), egh)) -> new_esEs13(vyw400, vyw3000, egg, egh) 30.83/14.37 new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 30.83/14.37 new_ltEs15(Left(vyw490), Left(vyw500), ty_@0, hf) -> new_ltEs13(vyw490, vyw500) 30.83/14.37 new_esEs8(vyw40, vyw300, ty_Int) -> new_esEs15(vyw40, vyw300) 30.83/14.37 new_esEs6(vyw41, vyw301, app(app(app(ty_@3, edc), edd), ede)) -> new_esEs14(vyw41, vyw301, edc, edd, ede) 30.83/14.37 new_ltEs11(vyw49, vyw50, eab) -> new_fsEs(new_compare10(vyw49, vyw50, eab)) 30.83/14.37 new_esEs4(vyw40, vyw300, ty_Char) -> new_esEs18(vyw40, vyw300) 30.83/14.37 new_esEs32(vyw491, vyw501, ty_@0) -> new_esEs20(vyw491, vyw501) 30.83/14.37 new_esEs13(Left(vyw400), Left(vyw3000), ty_Ordering, cge) -> new_esEs16(vyw400, vyw3000) 30.83/14.37 new_ltEs6(Nothing, Nothing, dah) -> True 30.83/14.37 new_ltEs24(vyw114, vyw116, app(ty_Ratio, fha)) -> new_ltEs11(vyw114, vyw116, fha) 30.83/14.37 new_ltEs23(vyw49, vyw50, ty_Ordering) -> new_ltEs17(vyw49, vyw50) 30.83/14.37 new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False 30.83/14.37 new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False 30.83/14.37 new_compare32(vyw40, vyw300, ty_Char) -> new_compare8(vyw40, vyw300) 30.83/14.37 new_esEs34(vyw490, vyw500, ty_Bool) -> new_esEs25(vyw490, vyw500) 30.83/14.37 new_esEs14(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), dee, def, deg) -> new_asAs(new_esEs35(vyw400, vyw3000, dee), new_asAs(new_esEs36(vyw401, vyw3001, def), new_esEs37(vyw402, vyw3002, deg))) 30.83/14.37 new_lt23(vyw113, vyw115, ty_Integer) -> new_lt5(vyw113, vyw115) 30.83/14.37 new_lt21(vyw491, vyw501, app(ty_Maybe, fc)) -> new_lt15(vyw491, vyw501, fc) 30.83/14.37 new_esEs9(vyw40, vyw300, ty_Char) -> new_esEs18(vyw40, vyw300) 30.83/14.37 new_ltEs6(Just(vyw490), Nothing, dah) -> False 30.83/14.37 new_primCmpInt(Neg(Zero), Neg(Succ(vyw3000))) -> new_primCmpNat0(Succ(vyw3000), Zero) 30.83/14.37 new_esEs8(vyw40, vyw300, app(ty_Maybe, dca)) -> new_esEs22(vyw40, vyw300, dca) 30.83/14.37 new_lt23(vyw113, vyw115, app(app(ty_Either, cdb), cdc)) -> new_lt17(vyw113, vyw115, cdb, cdc) 30.83/14.37 new_esEs32(vyw491, vyw501, app(ty_[], fb)) -> new_esEs17(vyw491, vyw501, fb) 30.83/14.37 new_compare4([], [], ca) -> EQ 30.83/14.37 new_lt11(vyw100, vyw103, app(app(ty_@2, cad), cae)) -> new_lt9(vyw100, vyw103, cad, cae) 30.83/14.37 new_esEs16(EQ, EQ) -> True 30.83/14.37 new_esEs17(:(vyw400, vyw401), :(vyw3000, vyw3001), deh) -> new_asAs(new_esEs33(vyw400, vyw3000, deh), new_esEs17(vyw401, vyw3001, deh)) 30.83/14.37 new_esEs38(vyw400, vyw3000, ty_Int) -> new_esEs15(vyw400, vyw3000) 30.83/14.37 new_ltEs15(Right(vyw490), Right(vyw500), bag, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs12(vyw490, vyw500, bbb, bbc, bbd) 30.83/14.37 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.83/14.37 new_ltEs6(Just(vyw490), Just(vyw500), app(app(app(ty_@3, cf), cg), da)) -> new_ltEs12(vyw490, vyw500, cf, cg, da) 30.83/14.37 new_esEs9(vyw40, vyw300, ty_Ordering) -> new_esEs16(vyw40, vyw300) 30.83/14.37 new_esEs27(vyw100, vyw103, ty_Char) -> new_esEs18(vyw100, vyw103) 30.83/14.37 new_ltEs19(vyw71, vyw72, ty_Bool) -> new_ltEs5(vyw71, vyw72) 30.83/14.37 new_esEs36(vyw401, vyw3001, ty_Ordering) -> new_esEs16(vyw401, vyw3001) 30.83/14.37 new_esEs9(vyw40, vyw300, app(ty_Maybe, eba)) -> new_esEs22(vyw40, vyw300, eba) 30.83/14.37 new_esEs31(vyw490, vyw500, ty_Int) -> new_esEs15(vyw490, vyw500) 30.83/14.37 new_esEs30(vyw401, vyw3001, ty_Float) -> new_esEs21(vyw401, vyw3001) 30.83/14.37 new_esEs37(vyw402, vyw3002, ty_Bool) -> new_esEs25(vyw402, vyw3002) 30.83/14.37 new_esEs36(vyw401, vyw3001, app(ty_Maybe, ffa)) -> new_esEs22(vyw401, vyw3001, ffa) 30.83/14.37 new_esEs22(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs25(vyw400, vyw3000) 30.83/14.37 new_compare32(vyw40, vyw300, app(app(ty_Either, be), bf)) -> new_compare19(vyw40, vyw300, be, bf) 30.83/14.37 new_lt20(vyw490, vyw500, ty_Double) -> new_lt14(vyw490, vyw500) 30.83/14.37 new_ltEs21(vyw78, vyw79, ty_Integer) -> new_ltEs10(vyw78, vyw79) 30.83/14.37 new_esEs27(vyw100, vyw103, ty_Double) -> new_esEs23(vyw100, vyw103) 30.83/14.37 new_lt21(vyw491, vyw501, ty_Int) -> new_lt13(vyw491, vyw501) 30.83/14.37 new_lt22(vyw490, vyw500, ty_@0) -> new_lt8(vyw490, vyw500) 30.83/14.37 new_ltEs6(Just(vyw490), Just(vyw500), ty_Double) -> new_ltEs4(vyw490, vyw500) 30.83/14.37 new_lt23(vyw113, vyw115, ty_Int) -> new_lt13(vyw113, vyw115) 30.83/14.37 new_ltEs19(vyw71, vyw72, app(ty_[], cah)) -> new_ltEs7(vyw71, vyw72, cah) 30.83/14.37 new_lt20(vyw490, vyw500, app(app(app(ty_@3, eb), ec), ed)) -> new_lt16(vyw490, vyw500, eb, ec, ed) 30.83/14.37 new_ltEs15(Left(vyw490), Left(vyw500), ty_Integer, hf) -> new_ltEs10(vyw490, vyw500) 30.83/14.37 new_ltEs23(vyw49, vyw50, ty_Integer) -> new_ltEs10(vyw49, vyw50) 30.83/14.37 new_not(False) -> True 30.83/14.37 new_esEs22(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs21(vyw400, vyw3000) 30.83/14.37 new_esEs6(vyw41, vyw301, ty_Int) -> new_esEs15(vyw41, vyw301) 30.83/14.37 new_ltEs15(Right(vyw490), Right(vyw500), bag, app(ty_Maybe, bba)) -> new_ltEs6(vyw490, vyw500, bba) 30.83/14.37 new_esEs9(vyw40, vyw300, app(ty_Ratio, ebb)) -> new_esEs26(vyw40, vyw300, ebb) 30.83/14.37 new_lt20(vyw490, vyw500, ty_Ordering) -> new_lt19(vyw490, vyw500) 30.83/14.37 new_ltEs24(vyw114, vyw116, app(ty_Maybe, cdh)) -> new_ltEs6(vyw114, vyw116, cdh) 30.83/14.37 new_esEs16(LT, LT) -> True 30.83/14.37 new_esEs4(vyw40, vyw300, ty_Integer) -> new_esEs24(vyw40, vyw300) 30.83/14.37 new_fsEs(vyw187) -> new_not(new_esEs16(vyw187, GT)) 30.83/14.37 new_compare31(False, True) -> LT 30.83/14.37 new_lt21(vyw491, vyw501, app(app(ty_Either, fh), ga)) -> new_lt17(vyw491, vyw501, fh, ga) 30.83/14.37 new_esEs33(vyw400, vyw3000, ty_@0) -> new_esEs20(vyw400, vyw3000) 30.83/14.37 new_primPlusNat0(Succ(vyw19300), Succ(vyw41000)) -> Succ(Succ(new_primPlusNat0(vyw19300, vyw41000))) 30.83/14.37 new_lt11(vyw100, vyw103, app(app(ty_Either, cab), cac)) -> new_lt17(vyw100, vyw103, cab, cac) 30.83/14.37 new_esEs10(vyw40, vyw300, ty_@0) -> new_esEs20(vyw40, vyw300) 30.83/14.37 new_lt21(vyw491, vyw501, ty_Bool) -> new_lt18(vyw491, vyw501) 30.83/14.37 new_esEs4(vyw40, vyw300, ty_Double) -> new_esEs23(vyw40, vyw300) 30.83/14.37 new_esEs35(vyw400, vyw3000, ty_Bool) -> new_esEs25(vyw400, vyw3000) 30.83/14.37 new_ltEs20(vyw492, vyw502, app(ty_[], gd)) -> new_ltEs7(vyw492, vyw502, gd) 30.83/14.37 new_esEs37(vyw402, vyw3002, ty_Float) -> new_esEs21(vyw402, vyw3002) 30.83/14.37 new_esEs32(vyw491, vyw501, app(app(ty_Either, fh), ga)) -> new_esEs13(vyw491, vyw501, fh, ga) 30.83/14.37 new_esEs5(vyw40, vyw300, ty_Float) -> new_esEs21(vyw40, vyw300) 30.83/14.37 new_esEs38(vyw400, vyw3000, ty_Integer) -> new_esEs24(vyw400, vyw3000) 30.83/14.37 new_lt12(vyw4, vyw30, ca) -> new_esEs12(new_compare4(vyw4, vyw30, ca)) 30.83/14.37 new_ltEs13(vyw49, vyw50) -> new_fsEs(new_compare12(vyw49, vyw50)) 30.83/14.37 new_lt10(vyw101, vyw104, ty_Integer) -> new_lt5(vyw101, vyw104) 30.83/14.37 new_esEs40(vyw113, vyw115, ty_Float) -> new_esEs21(vyw113, vyw115) 30.83/14.37 new_ltEs21(vyw78, vyw79, ty_Int) -> new_ltEs8(vyw78, vyw79) 30.83/14.37 new_lt6(vyw4, vyw30, dbb) -> new_esEs12(new_compare10(vyw4, vyw30, dbb)) 30.83/14.37 new_ltEs18(vyw102, vyw105, app(app(ty_@2, bhc), bhd)) -> new_ltEs16(vyw102, vyw105, bhc, bhd) 30.83/14.37 new_lt20(vyw490, vyw500, ty_Char) -> new_lt4(vyw490, vyw500) 30.83/14.37 new_esEs32(vyw491, vyw501, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs14(vyw491, vyw501, fd, ff, fg) 30.83/14.37 new_esEs11(vyw41, vyw301, app(ty_Ratio, dhe)) -> new_esEs26(vyw41, vyw301, dhe) 30.83/14.37 new_lt20(vyw490, vyw500, app(ty_Maybe, ea)) -> new_lt15(vyw490, vyw500, ea) 30.83/14.37 new_esEs13(Left(vyw400), Left(vyw3000), app(ty_[], cgf), cge) -> new_esEs17(vyw400, vyw3000, cgf) 30.83/14.37 new_compare25(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, beh, bgc, bfb) -> new_compare14(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, new_lt11(vyw100, vyw103, beh), new_asAs(new_esEs27(vyw100, vyw103, beh), new_pePe(new_lt10(vyw101, vyw104, bgc), new_asAs(new_esEs28(vyw101, vyw104, bgc), new_ltEs18(vyw102, vyw105, bfb)))), beh, bgc, bfb) 30.83/14.37 new_lt22(vyw490, vyw500, ty_Ordering) -> new_lt19(vyw490, vyw500) 30.83/14.37 new_ltEs24(vyw114, vyw116, app(app(app(ty_@3, cea), ceb), cec)) -> new_ltEs12(vyw114, vyw116, cea, ceb, cec) 30.83/14.37 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.83/14.37 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.83/14.37 new_esEs27(vyw100, vyw103, ty_Bool) -> new_esEs25(vyw100, vyw103) 30.83/14.37 new_esEs35(vyw400, vyw3000, ty_Char) -> new_esEs18(vyw400, vyw3000) 30.83/14.37 new_esEs11(vyw41, vyw301, app(ty_Maybe, dhd)) -> new_esEs22(vyw41, vyw301, dhd) 30.83/14.37 new_esEs7(vyw42, vyw302, app(ty_Ratio, efd)) -> new_esEs26(vyw42, vyw302, efd) 30.83/14.37 new_esEs34(vyw490, vyw500, app(ty_Maybe, bcc)) -> new_esEs22(vyw490, vyw500, bcc) 30.83/14.37 new_ltEs5(True, True) -> True 30.83/14.37 new_esEs34(vyw490, vyw500, app(ty_Ratio, fcg)) -> new_esEs26(vyw490, vyw500, fcg) 30.83/14.37 new_esEs22(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs18(vyw400, vyw3000) 30.83/14.37 new_esEs24(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) 30.83/14.37 new_ltEs23(vyw49, vyw50, app(ty_[], cc)) -> new_ltEs7(vyw49, vyw50, cc) 30.83/14.37 new_esEs13(Right(vyw400), Right(vyw3000), che, app(app(ty_Either, daf), dag)) -> new_esEs13(vyw400, vyw3000, daf, dag) 30.83/14.37 new_esEs7(vyw42, vyw302, app(app(ty_Either, efe), eff)) -> new_esEs13(vyw42, vyw302, efe, eff) 30.83/14.37 new_ltEs21(vyw78, vyw79, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs12(vyw78, vyw79, cfc, cfd, cfe) 30.83/14.37 new_esEs34(vyw490, vyw500, app(app(ty_Either, bcg), bch)) -> new_esEs13(vyw490, vyw500, bcg, bch) 30.83/14.37 new_ltEs18(vyw102, vyw105, ty_Float) -> new_ltEs14(vyw102, vyw105) 30.83/14.37 new_ltEs17(GT, EQ) -> False 30.83/14.37 new_esEs27(vyw100, vyw103, ty_Integer) -> new_esEs24(vyw100, vyw103) 30.83/14.37 new_esEs4(vyw40, vyw300, ty_Int) -> new_esEs15(vyw40, vyw300) 30.83/14.37 new_lt18(vyw4, vyw30) -> new_esEs12(new_compare31(vyw4, vyw30)) 30.83/14.37 new_ltEs6(Just(vyw490), Just(vyw500), app(app(ty_Either, db), dc)) -> new_ltEs15(vyw490, vyw500, db, dc) 30.83/14.37 new_ltEs24(vyw114, vyw116, app(app(ty_Either, ced), cee)) -> new_ltEs15(vyw114, vyw116, ced, cee) 30.83/14.37 new_lt10(vyw101, vyw104, ty_Bool) -> new_lt18(vyw101, vyw104) 30.83/14.37 new_ltEs12(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fa, dg, dh) -> new_pePe(new_lt20(vyw490, vyw500, fa), new_asAs(new_esEs31(vyw490, vyw500, fa), new_pePe(new_lt21(vyw491, vyw501, dg), new_asAs(new_esEs32(vyw491, vyw501, dg), new_ltEs20(vyw492, vyw502, dh))))) 30.83/14.37 new_esEs34(vyw490, vyw500, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs14(vyw490, vyw500, bcd, bce, bcf) 30.83/14.37 new_compare14(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, False, vyw172, fad, fae, faf) -> new_compare111(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, vyw172, fad, fae, faf) 30.83/14.37 new_esEs35(vyw400, vyw3000, app(ty_[], fdd)) -> new_esEs17(vyw400, vyw3000, fdd) 30.83/14.37 new_esEs22(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs23(vyw400, vyw3000) 30.83/14.37 new_esEs11(vyw41, vyw301, app(app(ty_Either, dhf), dhg)) -> new_esEs13(vyw41, vyw301, dhf, dhg) 30.83/14.37 new_ltEs23(vyw49, vyw50, app(app(app(ty_@3, fa), dg), dh)) -> new_ltEs12(vyw49, vyw50, fa, dg, dh) 30.83/14.37 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.83/14.37 new_esEs27(vyw100, vyw103, ty_Float) -> new_esEs21(vyw100, vyw103) 30.83/14.37 new_ltEs22(vyw491, vyw501, ty_Double) -> new_ltEs4(vyw491, vyw501) 30.83/14.37 new_ltEs22(vyw491, vyw501, app(ty_[], bdd)) -> new_ltEs7(vyw491, vyw501, bdd) 30.83/14.37 new_esEs28(vyw101, vyw104, app(app(ty_@2, bga), bgb)) -> new_esEs19(vyw101, vyw104, bga, bgb) 30.83/14.37 new_esEs10(vyw40, vyw300, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs14(vyw40, vyw300, dfd, dfe, dff) 30.83/14.37 new_esEs32(vyw491, vyw501, app(ty_Ratio, fba)) -> new_esEs26(vyw491, vyw501, fba) 30.83/14.37 new_esEs36(vyw401, vyw3001, ty_Integer) -> new_esEs24(vyw401, vyw3001) 30.83/14.37 new_esEs29(vyw400, vyw3000, ty_Int) -> new_esEs15(vyw400, vyw3000) 30.83/14.37 new_esEs33(vyw400, vyw3000, app(ty_Ratio, fcd)) -> new_esEs26(vyw400, vyw3000, fcd) 30.83/14.37 new_esEs11(vyw41, vyw301, app(app(app(ty_@3, dgf), dgg), dgh)) -> new_esEs14(vyw41, vyw301, dgf, dgg, dgh) 30.83/14.37 new_esEs23(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs15(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 30.83/14.37 new_compare29(vyw78, vyw79, True, ceh, fbc) -> EQ 30.83/14.37 new_esEs8(vyw40, vyw300, app(app(ty_Either, dcc), dcd)) -> new_esEs13(vyw40, vyw300, dcc, dcd) 30.83/14.37 new_ltEs22(vyw491, vyw501, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_ltEs12(vyw491, vyw501, bdf, bdg, bdh) 30.83/14.37 new_primCmpNat0(Succ(vyw400), Succ(vyw3000)) -> new_primCmpNat0(vyw400, vyw3000) 30.83/14.37 new_lt20(vyw490, vyw500, ty_Integer) -> new_lt5(vyw490, vyw500) 30.83/14.37 new_lt17(vyw4, vyw30, caf, cag) -> new_esEs12(new_compare19(vyw4, vyw30, caf, cag)) 30.83/14.37 new_lt10(vyw101, vyw104, ty_Ordering) -> new_lt19(vyw101, vyw104) 30.83/14.37 new_esEs13(Right(vyw400), Right(vyw3000), che, ty_Double) -> new_esEs23(vyw400, vyw3000) 30.83/14.37 new_lt11(vyw100, vyw103, ty_Int) -> new_lt13(vyw100, vyw103) 30.83/14.37 new_esEs9(vyw40, vyw300, app(app(ty_Either, ebc), ebd)) -> new_esEs13(vyw40, vyw300, ebc, ebd) 30.83/14.37 new_esEs37(vyw402, vyw3002, ty_Double) -> new_esEs23(vyw402, vyw3002) 30.83/14.37 new_ltEs21(vyw78, vyw79, app(ty_[], cfa)) -> new_ltEs7(vyw78, vyw79, cfa) 30.83/14.37 new_esEs27(vyw100, vyw103, app(app(ty_@2, cad), cae)) -> new_esEs19(vyw100, vyw103, cad, cae) 30.83/14.37 new_compare15(vyw143, vyw144, False, dec, ded) -> GT 30.83/14.37 new_ltEs21(vyw78, vyw79, ty_Double) -> new_ltEs4(vyw78, vyw79) 30.83/14.37 new_esEs33(vyw400, vyw3000, ty_Ordering) -> new_esEs16(vyw400, vyw3000) 30.83/14.37 new_esEs37(vyw402, vyw3002, ty_Char) -> new_esEs18(vyw402, vyw3002) 30.83/14.37 new_ltEs20(vyw492, vyw502, ty_Int) -> new_ltEs8(vyw492, vyw502) 30.83/14.37 new_esEs11(vyw41, vyw301, app(ty_[], dha)) -> new_esEs17(vyw41, vyw301, dha) 30.83/14.37 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.83/14.37 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.83/14.37 new_ltEs21(vyw78, vyw79, ty_Bool) -> new_ltEs5(vyw78, vyw79) 30.83/14.37 new_ltEs24(vyw114, vyw116, ty_@0) -> new_ltEs13(vyw114, vyw116) 30.83/14.37 new_ltEs17(GT, GT) -> True 30.83/14.37 new_esEs34(vyw490, vyw500, app(ty_[], bca)) -> new_esEs17(vyw490, vyw500, bca) 30.83/14.37 new_esEs8(vyw40, vyw300, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs14(vyw40, vyw300, dbc, dbd, dbe) 30.83/14.37 new_lt21(vyw491, vyw501, ty_Integer) -> new_lt5(vyw491, vyw501) 30.83/14.37 new_esEs8(vyw40, vyw300, app(ty_Ratio, dcb)) -> new_esEs26(vyw40, vyw300, dcb) 30.83/14.37 new_compare110(vyw150, vyw151, False, eda, edb) -> GT 30.83/14.37 new_primEqNat0(Zero, Zero) -> True 30.83/14.37 new_ltEs24(vyw114, vyw116, ty_Char) -> new_ltEs9(vyw114, vyw116) 30.83/14.37 new_esEs36(vyw401, vyw3001, ty_Char) -> new_esEs18(vyw401, vyw3001) 30.83/14.37 new_compare16(Nothing, Just(vyw300), cb) -> LT 30.83/14.37 new_esEs22(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs24(vyw400, vyw3000) 30.83/14.37 new_esEs9(vyw40, vyw300, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs14(vyw40, vyw300, eac, ead, eae) 30.83/14.37 new_esEs34(vyw490, vyw500, ty_Ordering) -> new_esEs16(vyw490, vyw500) 30.83/14.37 new_ltEs15(Right(vyw490), Right(vyw500), bag, ty_Float) -> new_ltEs14(vyw490, vyw500) 30.83/14.37 new_esEs17(:(vyw400, vyw401), [], deh) -> False 30.83/14.37 new_esEs17([], :(vyw3000, vyw3001), deh) -> False 30.83/14.37 new_asAs(False, vyw138) -> False 30.83/14.37 new_ltEs20(vyw492, vyw502, ty_Bool) -> new_ltEs5(vyw492, vyw502) 30.83/14.37 new_ltEs15(Left(vyw490), Left(vyw500), app(ty_Ratio, fhb), hf) -> new_ltEs11(vyw490, vyw500, fhb) 30.83/14.37 new_ltEs15(Left(vyw490), Left(vyw500), ty_Double, hf) -> new_ltEs4(vyw490, vyw500) 30.83/14.37 new_lt20(vyw490, vyw500, ty_Bool) -> new_lt18(vyw490, vyw500) 30.83/14.37 new_compare28(vyw71, vyw72, True, ebe, cba) -> EQ 30.83/14.37 new_esEs10(vyw40, vyw300, app(ty_Ratio, dgc)) -> new_esEs26(vyw40, vyw300, dgc) 30.83/14.37 new_ltEs19(vyw71, vyw72, ty_Int) -> new_ltEs8(vyw71, vyw72) 30.83/14.37 new_ltEs6(Just(vyw490), Just(vyw500), ty_Char) -> new_ltEs9(vyw490, vyw500) 30.83/14.37 new_esEs10(vyw40, vyw300, app(app(ty_Either, dgd), dge)) -> new_esEs13(vyw40, vyw300, dgd, dge) 30.83/14.37 new_esEs4(vyw40, vyw300, app(app(ty_@2, dfa), dfb)) -> new_esEs19(vyw40, vyw300, dfa, dfb) 30.83/14.37 new_esEs33(vyw400, vyw3000, app(app(ty_Either, fce), fcf)) -> new_esEs13(vyw400, vyw3000, fce, fcf) 30.83/14.37 new_ltEs22(vyw491, vyw501, app(ty_Maybe, bde)) -> new_ltEs6(vyw491, vyw501, bde) 30.83/14.37 new_esEs13(Right(vyw400), Right(vyw3000), che, ty_Bool) -> new_esEs25(vyw400, vyw3000) 30.83/14.37 new_esEs30(vyw401, vyw3001, ty_Int) -> new_esEs15(vyw401, vyw3001) 30.83/14.37 new_esEs37(vyw402, vyw3002, ty_Integer) -> new_esEs24(vyw402, vyw3002) 30.83/14.37 new_esEs11(vyw41, vyw301, ty_Ordering) -> new_esEs16(vyw41, vyw301) 30.83/14.37 new_compare112(vyw129, vyw130, False, fag) -> GT 30.83/14.37 new_esEs40(vyw113, vyw115, app(app(ty_@2, cdd), cde)) -> new_esEs19(vyw113, vyw115, cdd, cde) 30.83/14.37 new_esEs13(Right(vyw400), Right(vyw3000), che, ty_Integer) -> new_esEs24(vyw400, vyw3000) 30.83/14.37 new_esEs35(vyw400, vyw3000, app(ty_Maybe, fdg)) -> new_esEs22(vyw400, vyw3000, fdg) 30.83/14.37 new_esEs35(vyw400, vyw3000, ty_@0) -> new_esEs20(vyw400, vyw3000) 30.83/14.37 new_esEs33(vyw400, vyw3000, app(app(app(ty_@3, fbe), fbf), fbg)) -> new_esEs14(vyw400, vyw3000, fbe, fbf, fbg) 30.83/14.37 30.83/14.37 The set Q consists of the following terms: 30.83/14.37 30.83/14.37 new_ltEs16(@2(x0, x1), @2(x2, x3), x4, x5) 30.83/14.37 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs13(Right(x0), Right(x1), x2, ty_Bool) 30.83/14.37 new_ltEs23(x0, x1, ty_Char) 30.83/14.37 new_esEs22(Nothing, Just(x0), x1) 30.83/14.37 new_ltEs15(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.83/14.37 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_lt5(x0, x1) 30.83/14.37 new_compare32(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_esEs35(x0, x1, ty_Float) 30.83/14.37 new_compare32(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_esEs31(x0, x1, ty_Int) 30.83/14.37 new_ltEs17(EQ, EQ) 30.83/14.37 new_lt16(x0, x1, x2, x3, x4) 30.83/14.37 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_ltEs15(Right(x0), Left(x1), x2, x3) 30.83/14.37 new_ltEs15(Left(x0), Right(x1), x2, x3) 30.83/14.37 new_esEs36(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_esEs5(x0, x1, ty_@0) 30.83/14.37 new_esEs7(x0, x1, app(ty_[], x2)) 30.83/14.37 new_esEs11(x0, x1, app(ty_[], x2)) 30.83/14.37 new_primMulInt(Pos(x0), Pos(x1)) 30.83/14.37 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_compare4(:(x0, x1), :(x2, x3), x4) 30.83/14.37 new_esEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.83/14.37 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.83/14.37 new_primMulInt(Pos(x0), Neg(x1)) 30.83/14.37 new_primMulInt(Neg(x0), Pos(x1)) 30.83/14.37 new_esEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.83/14.37 new_lt7(x0, x1) 30.83/14.37 new_esEs7(x0, x1, ty_Integer) 30.83/14.37 new_esEs31(x0, x1, ty_Char) 30.83/14.37 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.83/14.37 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.83/14.37 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_esEs6(x0, x1, ty_Bool) 30.83/14.37 new_ltEs22(x0, x1, ty_Float) 30.83/14.37 new_esEs29(x0, x1, ty_Integer) 30.83/14.37 new_esEs34(x0, x1, ty_Float) 30.83/14.37 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_esEs32(x0, x1, ty_Char) 30.83/14.37 new_lt21(x0, x1, app(ty_[], x2)) 30.83/14.37 new_esEs9(x0, x1, ty_Char) 30.83/14.37 new_lt11(x0, x1, ty_Ordering) 30.83/14.37 new_esEs30(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_primCompAux00(x0, EQ) 30.83/14.37 new_esEs6(x0, x1, ty_Integer) 30.83/14.37 new_esEs39(x0, x1, ty_Int) 30.83/14.37 new_ltEs15(Right(x0), Right(x1), x2, ty_Char) 30.83/14.37 new_esEs5(x0, x1, ty_Bool) 30.83/14.37 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_lt10(x0, x1, ty_Int) 30.83/14.37 new_compare11(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.83/14.37 new_esEs20(@0, @0) 30.83/14.37 new_lt10(x0, x1, ty_Ordering) 30.83/14.37 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_lt13(x0, x1) 30.83/14.37 new_esEs34(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_primEqInt(Pos(Zero), Pos(Zero)) 30.83/14.37 new_esEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.83/14.37 new_ltEs6(Just(x0), Just(x1), ty_Integer) 30.83/14.37 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.83/14.37 new_asAs(False, x0) 30.83/14.37 new_esEs9(x0, x1, ty_@0) 30.83/14.37 new_esEs40(x0, x1, ty_Char) 30.83/14.37 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_lt23(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_esEs36(x0, x1, ty_Float) 30.83/14.37 new_ltEs20(x0, x1, ty_Char) 30.83/14.37 new_esEs22(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.83/14.37 new_esEs6(x0, x1, ty_@0) 30.83/14.37 new_esEs17(:(x0, x1), :(x2, x3), x4) 30.83/14.37 new_ltEs19(x0, x1, ty_Float) 30.83/14.37 new_compare25(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 30.83/14.37 new_ltEs5(False, True) 30.83/14.37 new_ltEs15(Right(x0), Right(x1), x2, ty_Int) 30.83/14.37 new_ltEs5(True, False) 30.83/14.37 new_esEs13(Right(x0), Right(x1), x2, ty_@0) 30.83/14.37 new_esEs10(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs16(EQ, EQ) 30.83/14.37 new_lt12(x0, x1, x2) 30.83/14.37 new_esEs35(x0, x1, app(ty_[], x2)) 30.83/14.37 new_esEs40(x0, x1, ty_Bool) 30.83/14.37 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_esEs32(x0, x1, ty_Bool) 30.83/14.37 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_compare26(x0, x1, True, x2) 30.83/14.37 new_esEs5(x0, x1, ty_Char) 30.83/14.37 new_ltEs20(x0, x1, ty_@0) 30.83/14.37 new_primEqInt(Neg(Zero), Neg(Zero)) 30.83/14.37 new_lt21(x0, x1, ty_Ordering) 30.83/14.37 new_lt11(x0, x1, ty_Double) 30.83/14.37 new_lt17(x0, x1, x2, x3) 30.83/14.37 new_ltEs20(x0, x1, ty_Int) 30.83/14.37 new_ltEs15(Right(x0), Right(x1), x2, ty_@0) 30.83/14.37 new_esEs29(x0, x1, ty_@0) 30.83/14.37 new_esEs13(Right(x0), Right(x1), x2, ty_Integer) 30.83/14.37 new_compare11(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.83/14.37 new_primCmpNat0(Succ(x0), Succ(x1)) 30.83/14.37 new_esEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.83/14.37 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_compare29(x0, x1, True, x2, x3) 30.83/14.37 new_esEs35(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_esEs7(x0, x1, ty_@0) 30.83/14.37 new_lt11(x0, x1, ty_Char) 30.83/14.37 new_compare32(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs22(Just(x0), Just(x1), app(ty_[], x2)) 30.83/14.37 new_compare32(x0, x1, app(ty_[], x2)) 30.83/14.37 new_lt19(x0, x1) 30.83/14.37 new_esEs27(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_esEs40(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_esEs22(Just(x0), Just(x1), ty_Ordering) 30.83/14.37 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.83/14.37 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.83/14.37 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_ltEs21(x0, x1, ty_Double) 30.83/14.37 new_esEs5(x0, x1, ty_Int) 30.83/14.37 new_ltEs6(Just(x0), Just(x1), ty_Float) 30.83/14.37 new_compare17(x0, x1, x2, x3, False, x4, x5, x6) 30.83/14.37 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.83/14.37 new_primCmpNat0(Zero, Succ(x0)) 30.83/14.37 new_ltEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.83/14.37 new_primPlusNat1(Zero, x0) 30.83/14.37 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_esEs9(x0, x1, ty_Int) 30.83/14.37 new_lt11(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_esEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.83/14.37 new_compare4([], :(x0, x1), x2) 30.83/14.37 new_lt11(x0, x1, ty_Int) 30.83/14.37 new_esEs9(x0, x1, ty_Double) 30.83/14.37 new_compare32(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_esEs30(x0, x1, ty_Float) 30.83/14.37 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_ltEs15(Right(x0), Right(x1), x2, ty_Double) 30.83/14.37 new_esEs7(x0, x1, ty_Float) 30.83/14.37 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs40(x0, x1, ty_Int) 30.83/14.37 new_esEs31(x0, x1, ty_Double) 30.83/14.37 new_ltEs21(x0, x1, ty_Int) 30.83/14.37 new_compare4([], [], x0) 30.83/14.37 new_lt21(x0, x1, ty_Double) 30.83/14.37 new_esEs13(Left(x0), Left(x1), ty_Float, x2) 30.83/14.37 new_ltEs15(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.83/14.37 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_primPlusNat1(Succ(x0), x1) 30.83/14.37 new_primEqInt(Pos(Zero), Neg(Zero)) 30.83/14.37 new_primEqInt(Neg(Zero), Pos(Zero)) 30.83/14.37 new_compare16(Just(x0), Nothing, x1) 30.83/14.37 new_ltEs15(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.83/14.37 new_ltEs20(x0, x1, app(ty_[], x2)) 30.83/14.37 new_primMulInt(Neg(x0), Neg(x1)) 30.83/14.37 new_esEs11(x0, x1, ty_Double) 30.83/14.37 new_ltEs24(x0, x1, ty_Ordering) 30.83/14.37 new_esEs27(x0, x1, ty_Float) 30.83/14.37 new_esEs37(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_esEs32(x0, x1, ty_Integer) 30.83/14.37 new_esEs40(x0, x1, ty_@0) 30.83/14.37 new_lt22(x0, x1, ty_Ordering) 30.83/14.37 new_esEs6(x0, x1, app(ty_[], x2)) 30.83/14.37 new_compare32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.83/14.37 new_lt11(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_esEs8(x0, x1, ty_Float) 30.83/14.37 new_esEs29(x0, x1, ty_Bool) 30.83/14.37 new_esEs30(x0, x1, app(ty_[], x2)) 30.83/14.37 new_esEs9(x0, x1, ty_Bool) 30.83/14.37 new_lt6(x0, x1, x2) 30.83/14.37 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_ltEs23(x0, x1, ty_Ordering) 30.83/14.37 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_compare31(False, False) 30.83/14.37 new_esEs6(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_esEs37(x0, x1, app(ty_[], x2)) 30.83/14.37 new_esEs33(x0, x1, ty_Float) 30.83/14.37 new_ltEs15(Right(x0), Right(x1), x2, ty_Bool) 30.83/14.37 new_esEs32(x0, x1, ty_Ordering) 30.83/14.37 new_esEs31(x0, x1, ty_@0) 30.83/14.37 new_esEs34(x0, x1, app(ty_[], x2)) 30.83/14.37 new_compare8(Char(x0), Char(x1)) 30.83/14.37 new_compare28(x0, x1, True, x2, x3) 30.83/14.37 new_esEs4(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_primCompAux00(x0, LT) 30.83/14.37 new_esEs10(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_esEs7(x0, x1, ty_Char) 30.83/14.37 new_esEs13(Left(x0), Right(x1), x2, x3) 30.83/14.37 new_esEs13(Right(x0), Left(x1), x2, x3) 30.83/14.37 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_ltEs15(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.83/14.37 new_esEs28(x0, x1, ty_Double) 30.83/14.37 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_esEs6(x0, x1, ty_Ordering) 30.83/14.37 new_esEs11(x0, x1, ty_Ordering) 30.83/14.37 new_esEs16(LT, GT) 30.83/14.37 new_esEs16(GT, LT) 30.83/14.37 new_ltEs15(Left(x0), Left(x1), ty_Ordering, x2) 30.83/14.37 new_esEs13(Right(x0), Right(x1), x2, ty_Ordering) 30.83/14.37 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs35(x0, x1, ty_Bool) 30.83/14.37 new_lt15(x0, x1, x2) 30.83/14.37 new_ltEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_ltEs19(x0, x1, ty_Integer) 30.83/14.37 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs34(x0, x1, ty_Integer) 30.83/14.37 new_lt11(x0, x1, ty_Bool) 30.83/14.37 new_ltEs9(x0, x1) 30.83/14.37 new_ltEs15(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.83/14.37 new_esEs28(x0, x1, ty_Ordering) 30.83/14.37 new_esEs34(x0, x1, ty_Bool) 30.83/14.37 new_ltEs22(x0, x1, ty_Integer) 30.83/14.37 new_ltEs18(x0, x1, ty_Float) 30.83/14.37 new_esEs32(x0, x1, app(ty_[], x2)) 30.83/14.37 new_lt20(x0, x1, ty_Char) 30.83/14.37 new_ltEs6(Just(x0), Just(x1), ty_Char) 30.83/14.37 new_ltEs4(x0, x1) 30.83/14.37 new_esEs31(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_lt11(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs5(x0, x1, app(ty_[], x2)) 30.83/14.37 new_lt21(x0, x1, ty_Char) 30.83/14.37 new_ltEs13(x0, x1) 30.83/14.37 new_esEs36(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_compare6(x0, x1) 30.83/14.37 new_esEs4(x0, x1, ty_Double) 30.83/14.37 new_compare32(x0, x1, ty_Ordering) 30.83/14.37 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_lt23(x0, x1, ty_Float) 30.83/14.37 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_esEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.83/14.37 new_esEs12(GT) 30.83/14.37 new_esEs22(Just(x0), Nothing, x1) 30.83/14.37 new_ltEs24(x0, x1, ty_Bool) 30.83/14.37 new_esEs5(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_lt20(x0, x1, ty_Ordering) 30.83/14.37 new_esEs13(Left(x0), Left(x1), ty_Bool, x2) 30.83/14.37 new_compare110(x0, x1, True, x2, x3) 30.83/14.37 new_esEs13(Right(x0), Right(x1), x2, ty_Int) 30.83/14.37 new_esEs29(x0, x1, ty_Double) 30.83/14.37 new_ltEs6(Just(x0), Just(x1), ty_Int) 30.83/14.37 new_compare14(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 30.83/14.37 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_esEs35(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_esEs32(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_lt22(x0, x1, ty_Double) 30.83/14.37 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_ltEs22(x0, x1, ty_@0) 30.83/14.37 new_esEs9(x0, x1, ty_Integer) 30.83/14.37 new_compare7(EQ, GT) 30.83/14.37 new_compare7(GT, EQ) 30.83/14.37 new_ltEs21(x0, x1, app(ty_[], x2)) 30.83/14.37 new_esEs6(x0, x1, ty_Double) 30.83/14.37 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_ltEs15(Right(x0), Right(x1), x2, ty_Float) 30.83/14.37 new_esEs5(x0, x1, ty_Double) 30.83/14.37 new_lt23(x0, x1, ty_Int) 30.83/14.37 new_lt21(x0, x1, ty_Int) 30.83/14.37 new_esEs22(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.83/14.37 new_ltEs18(x0, x1, ty_Int) 30.83/14.37 new_esEs27(x0, x1, app(ty_[], x2)) 30.83/14.37 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_compare32(x0, x1, ty_Float) 30.83/14.37 new_esEs7(x0, x1, ty_Ordering) 30.83/14.37 new_esEs4(x0, x1, app(ty_[], x2)) 30.83/14.37 new_compare18(x0, x1, x2, x3, True, x4, x5) 30.83/14.37 new_esEs9(x0, x1, ty_Ordering) 30.83/14.37 new_primEqNat0(Zero, Succ(x0)) 30.83/14.37 new_esEs35(x0, x1, ty_Integer) 30.83/14.37 new_lt20(x0, x1, ty_Int) 30.83/14.37 new_esEs25(False, False) 30.83/14.37 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_esEs39(x0, x1, ty_Integer) 30.83/14.37 new_esEs13(Right(x0), Right(x1), x2, ty_Float) 30.83/14.37 new_esEs29(x0, x1, ty_Ordering) 30.83/14.37 new_compare15(x0, x1, False, x2, x3) 30.83/14.37 new_esEs27(x0, x1, ty_Double) 30.83/14.37 new_ltEs19(x0, x1, ty_@0) 30.83/14.37 new_compare19(Right(x0), Right(x1), x2, x3) 30.83/14.37 new_esEs7(x0, x1, ty_Int) 30.83/14.37 new_ltEs19(x0, x1, app(ty_[], x2)) 30.83/14.37 new_ltEs17(LT, LT) 30.83/14.37 new_ltEs23(x0, x1, ty_Double) 30.83/14.37 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.83/14.37 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_ltEs24(x0, x1, ty_Int) 30.83/14.37 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_lt22(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_ltEs6(Just(x0), Just(x1), ty_Ordering) 30.83/14.37 new_compare13(@2(x0, x1), @2(x2, x3), x4, x5) 30.83/14.37 new_esEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.83/14.37 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs35(x0, x1, ty_Char) 30.83/14.37 new_compare112(x0, x1, True, x2) 30.83/14.37 new_esEs22(Just(x0), Just(x1), ty_Double) 30.83/14.37 new_ltEs21(x0, x1, ty_Ordering) 30.83/14.37 new_compare28(x0, x1, False, x2, x3) 30.83/14.37 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.83/14.37 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.83/14.37 new_lt21(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_esEs40(x0, x1, ty_Ordering) 30.83/14.37 new_lt11(x0, x1, ty_Integer) 30.83/14.37 new_lt10(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_compare27(x0, x1, x2, x3, True, x4, x5) 30.83/14.37 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_ltEs6(Just(x0), Just(x1), ty_Bool) 30.83/14.37 new_ltEs20(x0, x1, ty_Double) 30.83/14.37 new_lt21(x0, x1, ty_Float) 30.83/14.37 new_esEs22(Just(x0), Just(x1), ty_@0) 30.83/14.37 new_esEs26(:%(x0, x1), :%(x2, x3), x4) 30.83/14.37 new_esEs8(x0, x1, ty_Ordering) 30.83/14.37 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_lt10(x0, x1, ty_@0) 30.83/14.37 new_esEs13(Right(x0), Right(x1), x2, ty_Char) 30.83/14.37 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_esEs8(x0, x1, ty_Bool) 30.83/14.37 new_esEs7(x0, x1, ty_Bool) 30.83/14.37 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_esEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.83/14.37 new_compare4(:(x0, x1), [], x2) 30.83/14.37 new_lt22(x0, x1, app(ty_[], x2)) 30.83/14.37 new_compare32(x0, x1, ty_Int) 30.83/14.37 new_ltEs5(True, True) 30.83/14.37 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_compare10(:%(x0, x1), :%(x2, x3), ty_Integer) 30.83/14.37 new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_primPlusNat0(Succ(x0), Zero) 30.83/14.37 new_esEs16(EQ, GT) 30.83/14.37 new_esEs16(GT, EQ) 30.83/14.37 new_esEs37(x0, x1, ty_@0) 30.83/14.37 new_esEs32(x0, x1, ty_Double) 30.83/14.37 new_lt9(x0, x1, x2, x3) 30.83/14.37 new_esEs11(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_ltEs17(GT, GT) 30.83/14.37 new_pePe(True, x0) 30.83/14.37 new_esEs36(x0, x1, app(ty_[], x2)) 30.83/14.37 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_esEs7(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_ltEs24(x0, x1, ty_Float) 30.83/14.37 new_esEs35(x0, x1, ty_Int) 30.83/14.37 new_esEs40(x0, x1, app(ty_[], x2)) 30.83/14.37 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_lt10(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_compare32(x0, x1, ty_Bool) 30.83/14.37 new_lt22(x0, x1, ty_@0) 30.83/14.37 new_ltEs24(x0, x1, ty_Char) 30.83/14.37 new_lt10(x0, x1, ty_Double) 30.83/14.37 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_esEs31(x0, x1, app(ty_[], x2)) 30.83/14.37 new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.83/14.37 new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.83/14.37 new_esEs8(x0, x1, ty_Integer) 30.83/14.37 new_esEs13(Left(x0), Left(x1), ty_Ordering, x2) 30.83/14.37 new_lt20(x0, x1, ty_Bool) 30.83/14.37 new_esEs11(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_esEs37(x0, x1, ty_Double) 30.83/14.37 new_esEs34(x0, x1, ty_Ordering) 30.83/14.37 new_esEs10(x0, x1, ty_Double) 30.83/14.37 new_esEs18(Char(x0), Char(x1)) 30.83/14.37 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_esEs7(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_compare32(x0, x1, ty_Char) 30.83/14.37 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs13(Left(x0), Left(x1), ty_Integer, x2) 30.83/14.37 new_ltEs23(x0, x1, ty_@0) 30.83/14.37 new_esEs32(x0, x1, ty_@0) 30.83/14.37 new_ltEs17(LT, EQ) 30.83/14.37 new_ltEs17(EQ, LT) 30.83/14.37 new_esEs40(x0, x1, ty_Integer) 30.83/14.37 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.83/14.37 new_lt4(x0, x1) 30.83/14.37 new_lt20(x0, x1, ty_Integer) 30.83/14.37 new_esEs13(Left(x0), Left(x1), ty_Int, x2) 30.83/14.37 new_compare7(GT, LT) 30.83/14.37 new_compare7(LT, GT) 30.83/14.37 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_esEs33(x0, x1, ty_Ordering) 30.83/14.37 new_esEs29(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_esEs17([], :(x0, x1), x2) 30.83/14.37 new_esEs28(x0, x1, app(ty_[], x2)) 30.83/14.37 new_esEs4(x0, x1, ty_@0) 30.83/14.37 new_esEs36(x0, x1, ty_Int) 30.83/14.37 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_ltEs23(x0, x1, app(ty_[], x2)) 30.83/14.37 new_esEs35(x0, x1, ty_Double) 30.83/14.37 new_esEs40(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_ltEs18(x0, x1, ty_@0) 30.83/14.37 new_esEs10(x0, x1, ty_@0) 30.83/14.37 new_ltEs19(x0, x1, ty_Int) 30.83/14.37 new_esEs28(x0, x1, ty_@0) 30.83/14.37 new_esEs25(False, True) 30.83/14.37 new_esEs25(True, False) 30.83/14.37 new_lt11(x0, x1, ty_Float) 30.83/14.37 new_lt23(x0, x1, ty_@0) 30.83/14.37 new_ltEs6(Nothing, Just(x0), x1) 30.83/14.37 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_esEs11(x0, x1, ty_Bool) 30.83/14.37 new_compare9(Integer(x0), Integer(x1)) 30.83/14.37 new_esEs33(x0, x1, ty_Double) 30.83/14.37 new_primEqNat0(Succ(x0), Succ(x1)) 30.83/14.37 new_ltEs15(Left(x0), Left(x1), ty_@0, x2) 30.83/14.37 new_esEs5(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_primMulNat0(Zero, Zero) 30.83/14.37 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_ltEs22(x0, x1, ty_Ordering) 30.83/14.37 new_esEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.83/14.37 new_lt23(x0, x1, ty_Bool) 30.83/14.37 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_compare16(Just(x0), Just(x1), x2) 30.83/14.37 new_compare32(x0, x1, ty_@0) 30.83/14.37 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_esEs11(x0, x1, ty_Integer) 30.83/14.37 new_esEs35(x0, x1, ty_Ordering) 30.83/14.37 new_compare19(Right(x0), Left(x1), x2, x3) 30.83/14.37 new_esEs10(x0, x1, ty_Bool) 30.83/14.37 new_compare19(Left(x0), Right(x1), x2, x3) 30.83/14.37 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_esEs36(x0, x1, ty_Ordering) 30.83/14.37 new_esEs8(x0, x1, ty_@0) 30.83/14.37 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.83/14.37 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.83/14.37 new_esEs28(x0, x1, ty_Bool) 30.83/14.37 new_ltEs19(x0, x1, ty_Double) 30.83/14.37 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_ltEs18(x0, x1, ty_Bool) 30.83/14.37 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_ltEs15(Left(x0), Left(x1), ty_Bool, x2) 30.83/14.37 new_esEs27(x0, x1, ty_Char) 30.83/14.37 new_esEs8(x0, x1, ty_Char) 30.83/14.37 new_esEs27(x0, x1, ty_@0) 30.83/14.37 new_ltEs19(x0, x1, ty_Char) 30.83/14.37 new_ltEs22(x0, x1, app(ty_[], x2)) 30.83/14.37 new_ltEs22(x0, x1, ty_Char) 30.83/14.37 new_esEs29(x0, x1, app(ty_[], x2)) 30.83/14.37 new_esEs8(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_ltEs15(Left(x0), Left(x1), ty_Integer, x2) 30.83/14.37 new_esEs21(Float(x0, x1), Float(x2, x3)) 30.83/14.37 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.83/14.37 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.83/14.37 new_lt8(x0, x1) 30.83/14.37 new_lt20(x0, x1, app(ty_[], x2)) 30.83/14.37 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_esEs13(Left(x0), Left(x1), ty_Char, x2) 30.83/14.37 new_esEs13(Left(x0), Left(x1), ty_Double, x2) 30.83/14.37 new_primCmpNat0(Succ(x0), Zero) 30.83/14.37 new_ltEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.83/14.37 new_primCompAux0(x0, x1, x2, x3) 30.83/14.37 new_lt21(x0, x1, ty_Integer) 30.83/14.37 new_ltEs19(x0, x1, ty_Ordering) 30.83/14.37 new_compare31(True, False) 30.83/14.37 new_compare31(False, True) 30.83/14.37 new_ltEs22(x0, x1, ty_Int) 30.83/14.37 new_primMulNat0(Zero, Succ(x0)) 30.83/14.37 new_ltEs11(x0, x1, x2) 30.83/14.37 new_esEs4(x0, x1, ty_Bool) 30.83/14.37 new_ltEs15(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.83/14.37 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.37 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_ltEs18(x0, x1, ty_Char) 30.83/14.37 new_lt10(x0, x1, ty_Float) 30.83/14.37 new_ltEs22(x0, x1, ty_Double) 30.83/14.37 new_lt11(x0, x1, app(ty_[], x2)) 30.83/14.37 new_sr(x0, x1) 30.83/14.37 new_primPlusNat0(Succ(x0), Succ(x1)) 30.83/14.37 new_esEs23(Double(x0, x1), Double(x2, x3)) 30.83/14.37 new_lt20(x0, x1, ty_@0) 30.83/14.37 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.37 new_lt22(x0, x1, ty_Bool) 30.83/14.37 new_ltEs21(x0, x1, ty_Float) 30.83/14.37 new_primPlusNat0(Zero, Zero) 30.83/14.37 new_ltEs21(x0, x1, ty_Integer) 30.83/14.37 new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.83/14.37 new_compare27(x0, x1, x2, x3, False, x4, x5) 30.83/14.37 new_esEs37(x0, x1, ty_Ordering) 30.83/14.37 new_compare32(x0, x1, ty_Integer) 30.83/14.37 new_lt10(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_not(True) 30.83/14.37 new_ltEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_ltEs18(x0, x1, ty_Integer) 30.83/14.37 new_esEs22(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.83/14.37 new_esEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.83/14.37 new_esEs34(x0, x1, app(ty_Ratio, x2)) 30.83/14.37 new_esEs28(x0, x1, ty_Char) 30.83/14.37 new_esEs30(x0, x1, ty_Bool) 30.83/14.38 new_primEqNat0(Succ(x0), Zero) 30.83/14.38 new_ltEs21(x0, x1, ty_Bool) 30.83/14.38 new_ltEs15(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.83/14.38 new_lt23(x0, x1, ty_Char) 30.83/14.38 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.83/14.38 new_esEs4(x0, x1, ty_Integer) 30.83/14.38 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.38 new_esEs8(x0, x1, ty_Int) 30.83/14.38 new_compare29(x0, x1, False, x2, x3) 30.83/14.38 new_ltEs7(x0, x1, x2) 30.83/14.38 new_esEs27(x0, x1, ty_Int) 30.83/14.38 new_esEs36(x0, x1, ty_@0) 30.83/14.38 new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 30.83/14.38 new_esEs27(x0, x1, app(ty_Maybe, x2)) 30.83/14.38 new_esEs30(x0, x1, ty_Double) 30.83/14.38 new_ltEs21(x0, x1, ty_@0) 30.83/14.38 new_esEs8(x0, x1, app(ty_[], x2)) 30.83/14.38 new_esEs10(x0, x1, app(ty_[], x2)) 30.83/14.38 new_ltEs20(x0, x1, ty_Float) 30.83/14.38 new_lt20(x0, x1, ty_Float) 30.83/14.38 new_esEs15(x0, x1) 30.83/14.38 new_esEs33(x0, x1, ty_Char) 30.83/14.38 new_esEs28(x0, x1, ty_Integer) 30.83/14.38 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.38 new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.83/14.38 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.38 new_ltEs24(x0, x1, ty_Integer) 30.83/14.38 new_esEs10(x0, x1, ty_Integer) 30.83/14.38 new_esEs6(x0, x1, app(ty_Ratio, x2)) 30.83/14.38 new_lt14(x0, x1) 30.83/14.38 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.38 new_esEs22(Nothing, Nothing, x0) 30.83/14.38 new_lt23(x0, x1, ty_Integer) 30.83/14.38 new_ltEs15(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.83/14.38 new_esEs34(x0, x1, ty_Char) 30.83/14.38 new_pePe(False, x0) 30.83/14.38 new_asAs(True, x0) 30.83/14.38 new_compare14(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 30.83/14.38 new_esEs11(x0, x1, ty_@0) 30.83/14.38 new_esEs34(x0, x1, ty_@0) 30.83/14.38 new_esEs36(x0, x1, ty_Bool) 30.83/14.38 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 30.83/14.38 new_ltEs5(False, False) 30.83/14.38 new_lt21(x0, x1, app(ty_Maybe, x2)) 30.83/14.38 new_ltEs15(Left(x0), Left(x1), ty_Int, x2) 30.83/14.38 new_esEs33(x0, x1, ty_Int) 30.83/14.38 new_compare110(x0, x1, False, x2, x3) 30.83/14.38 new_esEs22(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.83/14.38 new_esEs31(x0, x1, ty_Float) 30.83/14.38 new_ltEs19(x0, x1, ty_Bool) 30.83/14.38 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.38 new_compare19(Left(x0), Left(x1), x2, x3) 30.83/14.38 new_esEs33(x0, x1, ty_@0) 30.83/14.38 new_esEs11(x0, x1, ty_Char) 30.83/14.38 new_esEs34(x0, x1, ty_Double) 30.83/14.38 new_esEs8(x0, x1, app(ty_Ratio, x2)) 30.83/14.38 new_esEs13(Left(x0), Left(x1), ty_@0, x2) 30.83/14.38 new_compare15(x0, x1, True, x2, x3) 30.83/14.38 new_esEs30(x0, x1, ty_Char) 30.83/14.38 new_esEs10(x0, x1, ty_Ordering) 30.83/14.38 new_esEs40(x0, x1, ty_Float) 30.83/14.38 new_ltEs14(x0, x1) 30.83/14.38 new_compare10(:%(x0, x1), :%(x2, x3), ty_Int) 30.83/14.38 new_compare18(x0, x1, x2, x3, False, x4, x5) 30.83/14.38 new_esEs36(x0, x1, ty_Char) 30.83/14.38 new_esEs30(x0, x1, ty_@0) 30.83/14.38 new_ltEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.83/14.38 new_esEs31(x0, x1, app(ty_Ratio, x2)) 30.83/14.38 new_lt21(x0, x1, ty_Bool) 30.83/14.38 new_esEs30(x0, x1, app(ty_Ratio, x2)) 30.83/14.38 new_lt22(x0, x1, ty_Integer) 30.83/14.38 new_ltEs15(Left(x0), Left(x1), ty_Char, x2) 30.83/14.38 new_esEs36(x0, x1, ty_Double) 30.83/14.38 new_esEs4(x0, x1, ty_Ordering) 30.83/14.38 new_esEs37(x0, x1, app(ty_Ratio, x2)) 30.83/14.38 new_primMulNat0(Succ(x0), Zero) 30.83/14.38 new_compare12(@0, @0) 30.83/14.38 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.38 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.83/14.38 new_esEs34(x0, x1, ty_Int) 30.83/14.38 new_esEs11(x0, x1, ty_Int) 30.83/14.38 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 30.83/14.38 new_esEs30(x0, x1, ty_Int) 30.83/14.38 new_esEs31(x0, x1, ty_Integer) 30.83/14.38 new_lt11(x0, x1, ty_@0) 30.83/14.38 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.38 new_compare30(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.83/14.38 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.38 new_lt10(x0, x1, ty_Integer) 30.83/14.38 new_lt23(x0, x1, app(ty_[], x2)) 30.83/14.38 new_ltEs15(Left(x0), Left(x1), ty_Float, x2) 30.83/14.38 new_lt22(x0, x1, ty_Int) 30.83/14.38 new_esEs29(x0, x1, ty_Int) 30.83/14.38 new_compare16(Nothing, Nothing, x0) 30.83/14.38 new_esEs28(x0, x1, ty_Float) 30.83/14.38 new_esEs9(x0, x1, app(ty_[], x2)) 30.83/14.38 new_ltEs15(Left(x0), Left(x1), ty_Double, x2) 30.83/14.38 new_ltEs10(x0, x1) 30.83/14.38 new_esEs13(Right(x0), Right(x1), x2, ty_Double) 30.83/14.38 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.38 new_esEs36(x0, x1, ty_Integer) 30.83/14.38 new_esEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.83/14.38 new_lt23(x0, x1, ty_Double) 30.83/14.38 new_ltEs21(x0, x1, ty_Char) 30.83/14.38 new_ltEs17(LT, GT) 30.83/14.38 new_ltEs17(GT, LT) 30.83/14.38 new_esEs10(x0, x1, ty_Float) 30.83/14.38 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.38 new_ltEs22(x0, x1, ty_Bool) 30.83/14.38 new_ltEs6(Just(x0), Nothing, x1) 30.83/14.38 new_esEs25(True, True) 30.83/14.38 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.38 new_primMulNat0(Succ(x0), Succ(x1)) 30.83/14.38 new_esEs5(x0, x1, ty_Float) 30.83/14.38 new_esEs29(x0, x1, ty_Char) 30.83/14.38 new_ltEs23(x0, x1, ty_Integer) 30.83/14.38 new_fsEs(x0) 30.83/14.38 new_lt22(x0, x1, ty_Char) 30.83/14.38 new_primPlusNat0(Zero, Succ(x0)) 30.83/14.38 new_esEs35(x0, x1, ty_@0) 30.83/14.38 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.38 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.38 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.38 new_esEs11(x0, x1, ty_Float) 30.83/14.38 new_esEs4(x0, x1, app(ty_Maybe, x2)) 30.83/14.38 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.38 new_esEs6(x0, x1, ty_Float) 30.83/14.38 new_esEs37(x0, x1, ty_Integer) 30.83/14.38 new_esEs29(x0, x1, ty_Float) 30.83/14.38 new_ltEs20(x0, x1, ty_Integer) 30.83/14.38 new_esEs5(x0, x1, ty_Ordering) 30.83/14.38 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 30.83/14.38 new_esEs22(Just(x0), Just(x1), ty_Integer) 30.83/14.38 new_esEs28(x0, x1, ty_Int) 30.83/14.38 new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.83/14.38 new_compare16(Nothing, Just(x0), x1) 30.83/14.38 new_ltEs6(Nothing, Nothing, x0) 30.83/14.38 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.38 new_lt23(x0, x1, ty_Ordering) 30.83/14.38 new_ltEs6(Just(x0), Just(x1), app(ty_[], x2)) 30.83/14.38 new_ltEs15(Right(x0), Right(x1), x2, ty_Integer) 30.83/14.38 new_esEs6(x0, x1, ty_Char) 30.83/14.38 new_esEs24(Integer(x0), Integer(x1)) 30.83/14.38 new_ltEs18(x0, x1, ty_Ordering) 30.83/14.38 new_ltEs15(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.83/14.38 new_esEs31(x0, x1, ty_Bool) 30.83/14.38 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.83/14.38 new_esEs40(x0, x1, ty_Double) 30.83/14.38 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.38 new_ltEs18(x0, x1, app(ty_[], x2)) 30.83/14.38 new_ltEs18(x0, x1, ty_Double) 30.83/14.38 new_esEs17([], [], x0) 30.83/14.38 new_esEs29(x0, x1, app(ty_Maybe, x2)) 30.83/14.38 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.38 new_ltEs6(Just(x0), Just(x1), ty_@0) 30.83/14.38 new_esEs6(x0, x1, ty_Int) 30.83/14.38 new_esEs12(EQ) 30.83/14.38 new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.38 new_esEs9(x0, x1, ty_Float) 30.83/14.38 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.38 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.38 new_ltEs15(Right(x0), Right(x1), x2, ty_Ordering) 30.83/14.38 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 30.83/14.38 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.38 new_lt22(x0, x1, app(ty_Maybe, x2)) 30.83/14.38 new_ltEs15(Left(x0), Left(x1), app(ty_[], x2), x3) 30.83/14.38 new_esEs13(Left(x0), Left(x1), app(ty_[], x2), x3) 30.83/14.38 new_compare7(EQ, EQ) 30.83/14.38 new_esEs22(Just(x0), Just(x1), ty_Float) 30.83/14.38 new_ltEs8(x0, x1) 30.83/14.38 new_lt10(x0, x1, app(ty_[], x2)) 30.83/14.38 new_esEs9(x0, x1, app(ty_Maybe, x2)) 30.83/14.38 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.83/14.38 new_lt21(x0, x1, ty_@0) 30.83/14.38 new_esEs8(x0, x1, ty_Double) 30.83/14.38 new_esEs33(x0, x1, ty_Bool) 30.83/14.38 new_esEs30(x0, x1, ty_Ordering) 30.83/14.38 new_esEs5(x0, x1, ty_Integer) 30.83/14.38 new_primEqNat0(Zero, Zero) 30.83/14.38 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.38 new_esEs22(Just(x0), Just(x1), ty_Bool) 30.83/14.38 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.38 new_esEs38(x0, x1, ty_Integer) 30.83/14.38 new_ltEs23(x0, x1, ty_Float) 30.83/14.38 new_lt11(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.38 new_esEs17(:(x0, x1), [], x2) 30.83/14.38 new_ltEs20(x0, x1, ty_Ordering) 30.83/14.38 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.83/14.38 new_esEs37(x0, x1, ty_Bool) 30.83/14.38 new_not(False) 30.83/14.38 new_compare112(x0, x1, False, x2) 30.83/14.38 new_esEs33(x0, x1, app(ty_Maybe, x2)) 30.83/14.38 new_ltEs23(x0, x1, ty_Bool) 30.83/14.38 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 30.83/14.38 new_esEs16(LT, LT) 30.83/14.38 new_lt10(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.38 new_esEs10(x0, x1, ty_Char) 30.83/14.38 new_compare7(EQ, LT) 30.83/14.38 new_esEs7(x0, x1, ty_Double) 30.83/14.38 new_compare7(LT, EQ) 30.83/14.38 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.83/14.38 new_ltEs20(x0, x1, ty_Bool) 30.83/14.38 new_esEs37(x0, x1, ty_Float) 30.83/14.38 new_compare31(True, True) 30.83/14.38 new_esEs4(x0, x1, ty_Int) 30.83/14.38 new_esEs12(LT) 30.83/14.38 new_compare7(GT, GT) 30.83/14.38 new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.83/14.38 new_esEs27(x0, x1, ty_Ordering) 30.83/14.38 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.38 new_lt20(x0, x1, ty_Double) 30.83/14.38 new_esEs27(x0, x1, ty_Integer) 30.83/14.38 new_esEs22(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.83/14.38 new_esEs27(x0, x1, ty_Bool) 30.83/14.38 new_ltEs17(EQ, GT) 30.83/14.38 new_ltEs17(GT, EQ) 30.83/14.38 new_compare7(LT, LT) 30.83/14.38 new_esEs38(x0, x1, ty_Int) 30.83/14.38 new_esEs9(x0, x1, app(ty_Ratio, x2)) 30.83/14.38 new_esEs32(x0, x1, app(ty_Ratio, x2)) 30.83/14.38 new_esEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.83/14.38 new_esEs4(x0, x1, ty_Char) 30.83/14.38 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.38 new_ltEs6(Just(x0), Just(x1), ty_Double) 30.83/14.38 new_esEs22(Just(x0), Just(x1), ty_Int) 30.83/14.38 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 30.83/14.38 new_compare17(x0, x1, x2, x3, True, x4, x5, x6) 30.83/14.38 new_esEs33(x0, x1, ty_Integer) 30.83/14.38 new_esEs30(x0, x1, ty_Integer) 30.83/14.38 new_ltEs24(x0, x1, ty_Double) 30.83/14.38 new_lt23(x0, x1, app(ty_Ratio, x2)) 30.83/14.38 new_lt10(x0, x1, ty_Bool) 30.83/14.38 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.83/14.38 new_lt22(x0, x1, ty_Float) 30.83/14.38 new_compare11(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.83/14.38 new_compare11(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.83/14.38 new_esEs37(x0, x1, ty_Int) 30.83/14.38 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.38 new_esEs33(x0, x1, app(ty_[], x2)) 30.83/14.38 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.83/14.38 new_esEs32(x0, x1, ty_Int) 30.83/14.38 new_lt10(x0, x1, ty_Char) 30.83/14.38 new_esEs32(x0, x1, ty_Float) 30.83/14.38 new_esEs4(x0, x1, ty_Float) 30.83/14.38 new_ltEs24(x0, x1, app(ty_[], x2)) 30.83/14.38 new_esEs22(Just(x0), Just(x1), ty_Char) 30.83/14.38 new_primCompAux00(x0, GT) 30.83/14.38 new_compare32(x0, x1, ty_Double) 30.83/14.38 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.83/14.38 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.83/14.38 new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) 30.83/14.38 new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 30.83/14.38 new_ltEs24(x0, x1, ty_@0) 30.83/14.38 new_esEs16(LT, EQ) 30.83/14.38 new_esEs16(EQ, LT) 30.83/14.38 new_esEs10(x0, x1, ty_Int) 30.83/14.38 new_sr0(Integer(x0), Integer(x1)) 30.83/14.38 new_esEs33(x0, x1, app(ty_Ratio, x2)) 30.83/14.38 new_ltEs23(x0, x1, ty_Int) 30.83/14.38 new_compare26(x0, x1, False, x2) 30.83/14.38 new_primCmpNat0(Zero, Zero) 30.83/14.38 new_compare25(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 30.83/14.38 new_lt18(x0, x1) 30.83/14.38 new_esEs16(GT, GT) 30.83/14.38 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.83/14.38 new_esEs31(x0, x1, ty_Ordering) 30.83/14.38 new_esEs37(x0, x1, ty_Char) 30.83/14.38 30.83/14.38 We have to consider all minimal (P,Q,R)-chains. 30.83/14.38 ---------------------------------------- 30.83/14.38 30.83/14.38 (24) QDPSizeChangeProof (EQUIVALENT) 30.83/14.38 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. 30.83/14.38 30.83/14.38 From the DPs we obtained the following set of size-change graphs: 30.83/14.38 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fa, dg, app(ty_[], gd)) -> new_ltEs(vyw492, vyw502, gd) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fa, dg, app(ty_Maybe, ge)) -> new_ltEs0(vyw492, vyw502, ge) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_lt0(Just(vyw40), Just(vyw300), cb) -> new_compare20(vyw40, vyw300, new_esEs4(vyw40, vyw300, cb), cb) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare0(Just(vyw40), Just(vyw300), cb) -> new_compare20(vyw40, vyw300, new_esEs4(vyw40, vyw300, cb), cb) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs3(@2(vyw490, vyw491), @2(vyw500, vyw501), bdc, app(ty_[], bdd)) -> new_ltEs(vyw491, vyw501, bdd) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fa, dg, app(app(ty_Either, ha), hb)) -> new_ltEs2(vyw492, vyw502, ha, hb) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs3(@2(vyw490, vyw491), @2(vyw500, vyw501), app(ty_[], bca), bcb) -> new_lt(vyw490, vyw500, bca) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs3(@2(vyw490, vyw491), @2(vyw500, vyw501), bdc, app(ty_Maybe, bde)) -> new_ltEs0(vyw491, vyw501, bde) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs3(@2(vyw490, vyw491), @2(vyw500, vyw501), bdc, app(app(ty_Either, bea), beb)) -> new_ltEs2(vyw491, vyw501, bea, beb) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs(vyw49, vyw50, cc) -> new_compare(vyw49, vyw50, cc) 30.83/14.38 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs0(Just(vyw490), Just(vyw500), app(ty_[], cd)) -> new_ltEs(vyw490, vyw500, cd) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs0(Just(vyw490), Just(vyw500), app(ty_Maybe, ce)) -> new_ltEs0(vyw490, vyw500, ce) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs0(Just(vyw490), Just(vyw500), app(app(ty_Either, db), dc)) -> new_ltEs2(vyw490, vyw500, db, dc) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fa, dg, app(app(app(ty_@3, gf), gg), gh)) -> new_ltEs1(vyw492, vyw502, gf, gg, gh) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_lt1(@3(vyw40, vyw41, vyw42), @3(vyw300, vyw301, vyw302), bee, bef, beg) -> new_compare21(vyw40, vyw41, vyw42, vyw300, vyw301, vyw302, new_asAs(new_esEs5(vyw40, vyw300, bee), new_asAs(new_esEs6(vyw41, vyw301, bef), new_esEs7(vyw42, vyw302, beg))), bee, bef, beg) 30.83/14.38 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare1(@3(vyw40, vyw41, vyw42), @3(vyw300, vyw301, vyw302), bee, bef, beg) -> new_compare21(vyw40, vyw41, vyw42, vyw300, vyw301, vyw302, new_asAs(new_esEs5(vyw40, vyw300, bee), new_asAs(new_esEs6(vyw41, vyw301, bef), new_esEs7(vyw42, vyw302, beg))), bee, bef, beg) 30.83/14.38 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs3(@2(vyw490, vyw491), @2(vyw500, vyw501), bdc, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_ltEs1(vyw491, vyw501, bdf, bdg, bdh) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs0(Just(vyw490), Just(vyw500), app(app(app(ty_@3, cf), cg), da)) -> new_ltEs1(vyw490, vyw500, cf, cg, da) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs0(Just(vyw490), Just(vyw500), app(app(ty_@2, dd), de)) -> new_ltEs3(vyw490, vyw500, dd, de) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare22(vyw71, vyw72, False, app(ty_[], cah), cba) -> new_ltEs(vyw71, vyw72, cah) 30.83/14.38 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare22(vyw71, vyw72, False, app(ty_Maybe, cbb), cba) -> new_ltEs0(vyw71, vyw72, cbb) 30.83/14.38 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs3(@2(vyw490, vyw491), @2(vyw500, vyw501), app(app(ty_Either, bcg), bch), bcb) -> new_lt2(vyw490, vyw500, bcg, bch) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare22(vyw71, vyw72, False, app(app(ty_Either, cbf), cbg), cba) -> new_ltEs2(vyw71, vyw72, cbf, cbg) 30.83/14.38 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare22(vyw71, vyw72, False, app(app(app(ty_@3, cbc), cbd), cbe), cba) -> new_ltEs1(vyw71, vyw72, cbc, cbd, cbe) 30.83/14.38 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare22(vyw71, vyw72, False, app(app(ty_@2, cbh), cca), cba) -> new_ltEs3(vyw71, vyw72, cbh, cca) 30.83/14.38 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fa, dg, app(app(ty_@2, hc), hd)) -> new_ltEs3(vyw492, vyw502, hc, hd) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs3(@2(vyw490, vyw491), @2(vyw500, vyw501), bdc, app(app(ty_@2, bec), bed)) -> new_ltEs3(vyw491, vyw501, bec, bed) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_lt3(@2(vyw40, vyw41), @2(vyw300, vyw301), ccb, ccc) -> new_compare24(vyw40, vyw41, vyw300, vyw301, new_asAs(new_esEs10(vyw40, vyw300, ccb), new_esEs11(vyw41, vyw301, ccc)), ccb, ccc) 30.83/14.38 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare3(@2(vyw40, vyw41), @2(vyw300, vyw301), ccb, ccc) -> new_compare24(vyw40, vyw41, vyw300, vyw301, new_asAs(new_esEs10(vyw40, vyw300, ccb), new_esEs11(vyw41, vyw301, ccc)), ccb, ccc) 30.83/14.38 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare24(vyw113, vyw114, vyw115, vyw116, False, cdf, app(ty_[], cdg)) -> new_ltEs(vyw114, vyw116, cdg) 30.83/14.38 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare24(vyw113, vyw114, vyw115, vyw116, False, app(ty_[], ccd), cce) -> new_lt(vyw113, vyw115, ccd) 30.83/14.38 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare24(vyw113, vyw114, vyw115, vyw116, False, cdf, app(ty_Maybe, cdh)) -> new_ltEs0(vyw114, vyw116, cdh) 30.83/14.38 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs3(@2(vyw490, vyw491), @2(vyw500, vyw501), app(app(ty_@2, bda), bdb), bcb) -> new_lt3(vyw490, vyw500, bda, bdb) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare24(vyw113, vyw114, vyw115, vyw116, False, cdf, app(app(ty_Either, ced), cee)) -> new_ltEs2(vyw114, vyw116, ced, cee) 30.83/14.38 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare24(vyw113, vyw114, vyw115, vyw116, False, cdf, app(app(app(ty_@3, cea), ceb), cec)) -> new_ltEs1(vyw114, vyw116, cea, ceb, cec) 30.83/14.38 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare24(vyw113, vyw114, vyw115, vyw116, False, app(app(ty_Either, cdb), cdc), cce) -> new_lt2(vyw113, vyw115, cdb, cdc) 30.83/14.38 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare24(vyw113, vyw114, vyw115, vyw116, False, cdf, app(app(ty_@2, cef), ceg)) -> new_ltEs3(vyw114, vyw116, cef, ceg) 30.83/14.38 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare24(vyw113, vyw114, vyw115, vyw116, False, app(app(ty_@2, cdd), cde), cce) -> new_lt3(vyw113, vyw115, cdd, cde) 30.83/14.38 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare23(vyw78, vyw79, False, ceh, app(ty_[], cfa)) -> new_ltEs(vyw78, vyw79, cfa) 30.83/14.38 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_primCompAux(vyw40, vyw300, vyw39, app(app(ty_Either, be), bf)) -> new_compare2(vyw40, vyw300, be, bf) 30.83/14.38 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare23(vyw78, vyw79, False, ceh, app(ty_Maybe, cfb)) -> new_ltEs0(vyw78, vyw79, cfb) 30.83/14.38 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare23(vyw78, vyw79, False, ceh, app(app(ty_Either, cff), cfg)) -> new_ltEs2(vyw78, vyw79, cff, cfg) 30.83/14.38 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare23(vyw78, vyw79, False, ceh, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs1(vyw78, vyw79, cfc, cfd, cfe) 30.83/14.38 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare23(vyw78, vyw79, False, ceh, app(app(ty_@2, cfh), cga)) -> new_ltEs3(vyw78, vyw79, cfh, cga) 30.83/14.38 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare(:(vyw40, vyw41), :(vyw300, vyw301), ca) -> new_primCompAux(vyw40, vyw300, new_compare4(vyw41, vyw301, ca), ca) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare(:(vyw40, vyw41), :(vyw300, vyw301), ca) -> new_compare(vyw41, vyw301, ca) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_lt(:(vyw40, vyw41), :(vyw300, vyw301), ca) -> new_primCompAux(vyw40, vyw300, new_compare4(vyw41, vyw301, ca), ca) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_lt(:(vyw40, vyw41), :(vyw300, vyw301), ca) -> new_compare(vyw41, vyw301, ca) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_lt2(Right(vyw40), Right(vyw300), caf, cag) -> new_compare23(vyw40, vyw300, new_esEs9(vyw40, vyw300, cag), caf, cag) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_lt2(Left(vyw40), Left(vyw300), caf, cag) -> new_compare22(vyw40, vyw300, new_esEs8(vyw40, vyw300, caf), caf, cag) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare2(Right(vyw40), Right(vyw300), caf, cag) -> new_compare23(vyw40, vyw300, new_esEs9(vyw40, vyw300, cag), caf, cag) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare2(Left(vyw40), Left(vyw300), caf, cag) -> new_compare22(vyw40, vyw300, new_esEs8(vyw40, vyw300, caf), caf, cag) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, beh, bgc, app(ty_[], bgd)) -> new_ltEs(vyw102, vyw105, bgd) 30.83/14.38 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_primCompAux(vyw40, vyw300, vyw39, app(app(app(ty_@3, bb), bc), bd)) -> new_compare1(vyw40, vyw300, bb, bc, bd) 30.83/14.38 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, beh, bgc, app(ty_Maybe, bge)) -> new_ltEs0(vyw102, vyw105, bge) 30.83/14.38 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, beh, bgc, app(app(ty_Either, bha), bhb)) -> new_ltEs2(vyw102, vyw105, bha, bhb) 30.83/14.38 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, beh, bgc, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_ltEs1(vyw102, vyw105, bgf, bgg, bgh) 30.83/14.38 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, beh, bgc, app(app(ty_@2, bhc), bhd)) -> new_ltEs3(vyw102, vyw105, bhc, bhd) 30.83/14.38 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs3(@2(vyw490, vyw491), @2(vyw500, vyw501), app(ty_Maybe, bcc), bcb) -> new_lt0(vyw490, vyw500, bcc) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs3(@2(vyw490, vyw491), @2(vyw500, vyw501), app(app(app(ty_@3, bcd), bce), bcf), bcb) -> new_lt1(vyw490, vyw500, bcd, bce, bcf) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare24(vyw113, vyw114, vyw115, vyw116, False, app(ty_Maybe, ccf), cce) -> new_lt0(vyw113, vyw115, ccf) 30.83/14.38 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare24(vyw113, vyw114, vyw115, vyw116, False, app(app(app(ty_@3, ccg), cch), cda), cce) -> new_lt1(vyw113, vyw115, ccg, cch, cda) 30.83/14.38 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(vyw49, vyw50, False, app(ty_[], cc)) -> new_compare(vyw49, vyw50, cc) 30.83/14.38 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_primCompAux(vyw40, vyw300, vyw39, app(app(ty_@2, bg), bh)) -> new_compare3(vyw40, vyw300, bg, bh) 30.83/14.38 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_primCompAux(vyw40, vyw300, vyw39, app(ty_[], h)) -> new_compare(vyw40, vyw300, h) 30.83/14.38 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_primCompAux(vyw40, vyw300, vyw39, app(ty_Maybe, ba)) -> new_compare0(vyw40, vyw300, ba) 30.83/14.38 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs2(Left(vyw490), Left(vyw500), app(ty_[], he), hf) -> new_ltEs(vyw490, vyw500, he) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs2(Right(vyw490), Right(vyw500), bag, app(ty_[], bah)) -> new_ltEs(vyw490, vyw500, bah) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(ty_[], cd))) -> new_ltEs(vyw490, vyw500, cd) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(ty_[], he)), hf)) -> new_ltEs(vyw490, vyw500, he) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, bdc), app(ty_[], bdd))) -> new_ltEs(vyw491, vyw501, bdd) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fa), dg), app(ty_[], gd))) -> new_ltEs(vyw492, vyw502, gd) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(Right(vyw490), Right(vyw500), False, app(app(ty_Either, bag), app(ty_[], bah))) -> new_ltEs(vyw490, vyw500, bah) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fa, app(ty_[], fb), dh) -> new_lt(vyw491, vyw501, fb) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(ty_[], df), dg, dh) -> new_lt(vyw490, vyw500, df) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(app(ty_Either, ee), ef), dg, dh) -> new_lt2(vyw490, vyw500, ee, ef) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fa, app(app(ty_Either, fh), ga), dh) -> new_lt2(vyw491, vyw501, fh, ga) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fa, app(app(ty_@2, gb), gc), dh) -> new_lt3(vyw491, vyw501, gb, gc) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(app(ty_@2, eg), eh), dg, dh) -> new_lt3(vyw490, vyw500, eg, eh) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(ty_Maybe, ea), dg, dh) -> new_lt0(vyw490, vyw500, ea) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fa, app(ty_Maybe, fc), dh) -> new_lt0(vyw491, vyw501, fc) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), fa, app(app(app(ty_@3, fd), ff), fg), dh) -> new_lt1(vyw491, vyw501, fd, ff, fg) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs1(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), app(app(app(ty_@3, eb), ec), ed), dg, dh) -> new_lt1(vyw490, vyw500, eb, ec, ed) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(ty_[], bhe), bgc, bfb) -> new_lt(vyw100, vyw103, bhe) 30.83/14.38 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, beh, app(ty_[], bfa), bfb) -> new_lt(vyw101, vyw104, bfa) 30.83/14.38 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(ty_[], bca)), bcb)) -> new_lt(vyw490, vyw500, bca) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(ty_[], df)), dg), dh)) -> new_lt(vyw490, vyw500, df) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fa), app(ty_[], fb)), dh)) -> new_lt(vyw491, vyw501, fb) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs2(Right(vyw490), Right(vyw500), bag, app(ty_Maybe, bba)) -> new_ltEs0(vyw490, vyw500, bba) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs2(Left(vyw490), Left(vyw500), app(ty_Maybe, hg), hf) -> new_ltEs0(vyw490, vyw500, hg) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs2(Right(vyw490), Right(vyw500), bag, app(app(ty_Either, bbe), bbf)) -> new_ltEs2(vyw490, vyw500, bbe, bbf) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs2(Left(vyw490), Left(vyw500), app(app(ty_Either, bac), bad), hf) -> new_ltEs2(vyw490, vyw500, bac, bad) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs2(Left(vyw490), Left(vyw500), app(app(app(ty_@3, hh), baa), bab), hf) -> new_ltEs1(vyw490, vyw500, hh, baa, bab) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs2(Right(vyw490), Right(vyw500), bag, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs1(vyw490, vyw500, bbb, bbc, bbd) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs2(Right(vyw490), Right(vyw500), bag, app(app(ty_@2, bbg), bbh)) -> new_ltEs3(vyw490, vyw500, bbg, bbh) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_ltEs2(Left(vyw490), Left(vyw500), app(app(ty_@2, bae), baf), hf) -> new_ltEs3(vyw490, vyw500, bae, baf) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(ty_Maybe, ce))) -> new_ltEs0(vyw490, vyw500, ce) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(ty_Maybe, hg)), hf)) -> new_ltEs0(vyw490, vyw500, hg) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fa), dg), app(ty_Maybe, ge))) -> new_ltEs0(vyw492, vyw502, ge) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(Right(vyw490), Right(vyw500), False, app(app(ty_Either, bag), app(ty_Maybe, bba))) -> new_ltEs0(vyw490, vyw500, bba) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, bdc), app(ty_Maybe, bde))) -> new_ltEs0(vyw491, vyw501, bde) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(Right(vyw490), Right(vyw500), False, app(app(ty_Either, bag), app(app(ty_Either, bbe), bbf))) -> new_ltEs2(vyw490, vyw500, bbe, bbf) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, bdc), app(app(ty_Either, bea), beb))) -> new_ltEs2(vyw491, vyw501, bea, beb) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fa), dg), app(app(ty_Either, ha), hb))) -> new_ltEs2(vyw492, vyw502, ha, hb) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(app(ty_Either, db), dc))) -> new_ltEs2(vyw490, vyw500, db, dc) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(app(ty_Either, bac), bad)), hf)) -> new_ltEs2(vyw490, vyw500, bac, bad) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(app(app(ty_@3, hh), baa), bab)), hf)) -> new_ltEs1(vyw490, vyw500, hh, baa, bab) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, bdc), app(app(app(ty_@3, bdf), bdg), bdh))) -> new_ltEs1(vyw491, vyw501, bdf, bdg, bdh) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(app(app(ty_@3, cf), cg), da))) -> new_ltEs1(vyw490, vyw500, cf, cg, da) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fa), dg), app(app(app(ty_@3, gf), gg), gh))) -> new_ltEs1(vyw492, vyw502, gf, gg, gh) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(Right(vyw490), Right(vyw500), False, app(app(ty_Either, bag), app(app(app(ty_@3, bbb), bbc), bbd))) -> new_ltEs1(vyw490, vyw500, bbb, bbc, bbd) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(app(ty_Either, cab), cac), bgc, bfb) -> new_lt2(vyw100, vyw103, cab, cac) 30.83/14.38 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, beh, app(app(ty_Either, bfg), bfh), bfb) -> new_lt2(vyw101, vyw104, bfg, bfh) 30.83/14.38 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(app(ty_Either, ee), ef)), dg), dh)) -> new_lt2(vyw490, vyw500, ee, ef) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(app(ty_Either, bcg), bch)), bcb)) -> new_lt2(vyw490, vyw500, bcg, bch) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fa), app(app(ty_Either, fh), ga)), dh)) -> new_lt2(vyw491, vyw501, fh, ga) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fa), dg), app(app(ty_@2, hc), hd))) -> new_ltEs3(vyw492, vyw502, hc, hd) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, bdc), app(app(ty_@2, bec), bed))) -> new_ltEs3(vyw491, vyw501, bec, bed) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(Right(vyw490), Right(vyw500), False, app(app(ty_Either, bag), app(app(ty_@2, bbg), bbh))) -> new_ltEs3(vyw490, vyw500, bbg, bbh) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(Just(vyw490), Just(vyw500), False, app(ty_Maybe, app(app(ty_@2, dd), de))) -> new_ltEs3(vyw490, vyw500, dd, de) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(Left(vyw490), Left(vyw500), False, app(app(ty_Either, app(app(ty_@2, bae), baf)), hf)) -> new_ltEs3(vyw490, vyw500, bae, baf) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, beh, app(app(ty_@2, bga), bgb), bfb) -> new_lt3(vyw101, vyw104, bga, bgb) 30.83/14.38 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(app(ty_@2, cad), cae), bgc, bfb) -> new_lt3(vyw100, vyw103, cad, cae) 30.83/14.38 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(app(ty_@2, eg), eh)), dg), dh)) -> new_lt3(vyw490, vyw500, eg, eh) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fa), app(app(ty_@2, gb), gc)), dh)) -> new_lt3(vyw491, vyw501, gb, gc) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(app(ty_@2, bda), bdb)), bcb)) -> new_lt3(vyw490, vyw500, bda, bdb) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(ty_Maybe, bhf), bgc, bfb) -> new_lt0(vyw100, vyw103, bhf) 30.83/14.38 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, beh, app(ty_Maybe, bfc), bfb) -> new_lt0(vyw101, vyw104, bfc) 30.83/14.38 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(app(app(ty_@3, bhg), bhh), caa), bgc, bfb) -> new_lt1(vyw100, vyw103, bhg, bhh, caa) 30.83/14.38 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare21(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, beh, app(app(app(ty_@3, bfd), bfe), bff), bfb) -> new_lt1(vyw101, vyw104, bfd, bfe, bff) 30.83/14.38 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(ty_Maybe, ea)), dg), dh)) -> new_lt0(vyw490, vyw500, ea) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fa), app(ty_Maybe, fc)), dh)) -> new_lt0(vyw491, vyw501, fc) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(ty_Maybe, bcc)), bcb)) -> new_lt0(vyw490, vyw500, bcc) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, fa), app(app(app(ty_@3, fd), ff), fg)), dh)) -> new_lt1(vyw491, vyw501, fd, ff, fg) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@3(vyw490, vyw491, vyw492), @3(vyw500, vyw501, vyw502), False, app(app(app(ty_@3, app(app(app(ty_@3, eb), ec), ed)), dg), dh)) -> new_lt1(vyw490, vyw500, eb, ec, ed) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_compare20(@2(vyw490, vyw491), @2(vyw500, vyw501), False, app(app(ty_@2, app(app(app(ty_@3, bcd), bce), bcf)), bcb)) -> new_lt1(vyw490, vyw500, bcd, bce, bcf) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.83/14.38 30.83/14.38 30.83/14.38 ---------------------------------------- 30.83/14.38 30.83/14.38 (25) 30.83/14.38 YES 30.83/14.38 30.83/14.38 ---------------------------------------- 30.83/14.38 30.83/14.38 (26) 30.83/14.38 Obligation: 30.83/14.38 Q DP problem: 30.83/14.38 The TRS P consists of the following rules: 30.83/14.38 30.83/14.38 new_primMulNat(Succ(vyw30000), Succ(vyw4100)) -> new_primMulNat(vyw30000, Succ(vyw4100)) 30.83/14.38 30.83/14.38 R is empty. 30.83/14.38 Q is empty. 30.83/14.38 We have to consider all minimal (P,Q,R)-chains. 30.83/14.38 ---------------------------------------- 30.83/14.38 30.83/14.38 (27) QDPSizeChangeProof (EQUIVALENT) 30.83/14.38 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. 30.83/14.38 30.83/14.38 From the DPs we obtained the following set of size-change graphs: 30.83/14.38 *new_primMulNat(Succ(vyw30000), Succ(vyw4100)) -> new_primMulNat(vyw30000, Succ(vyw4100)) 30.83/14.38 The graph contains the following edges 1 > 1, 2 >= 2 30.83/14.38 30.83/14.38 30.83/14.38 ---------------------------------------- 30.83/14.38 30.83/14.38 (28) 30.83/14.38 YES 30.83/14.38 30.83/14.38 ---------------------------------------- 30.83/14.38 30.83/14.38 (29) 30.83/14.38 Obligation: 30.83/14.38 Q DP problem: 30.83/14.38 The TRS P consists of the following rules: 30.83/14.38 30.83/14.38 new_esEs2(Just(vyw400), Just(vyw3000), app(app(ty_@2, bbb), bbc)) -> new_esEs1(vyw400, vyw3000, bbb, bbc) 30.83/14.38 new_esEs3(Left(vyw400), Left(vyw3000), app(app(ty_Either, bcg), bch), bcb) -> new_esEs3(vyw400, vyw3000, bcg, bch) 30.83/14.38 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_@2, bf), bg), bc, bd) -> new_esEs1(vyw400, vyw3000, bf, bg) 30.83/14.38 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, app(ty_[], cg), bd) -> new_esEs0(vyw401, vyw3001, cg) 30.83/14.38 new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), hd, app(app(app(ty_@3, he), hf), hg)) -> new_esEs(vyw401, vyw3001, he, hf, hg) 30.83/14.38 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(ty_[], ea)) -> new_esEs0(vyw402, vyw3002, ea) 30.83/14.38 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_esEs(vyw402, vyw3002, df, dg, dh) 30.83/14.38 new_esEs3(Right(vyw400), Right(vyw3000), bda, app(ty_[], bde)) -> new_esEs0(vyw400, vyw3000, bde) 30.83/14.38 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(app(ty_@2, eb), ec)) -> new_esEs1(vyw402, vyw3002, eb, ec) 30.83/14.38 new_esEs2(Just(vyw400), Just(vyw3000), app(ty_[], bba)) -> new_esEs0(vyw400, vyw3000, bba) 30.83/14.38 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_Maybe, bh), bc, bd) -> new_esEs2(vyw400, vyw3000, bh) 30.83/14.38 new_esEs2(Just(vyw400), Just(vyw3000), app(ty_Maybe, bbd)) -> new_esEs2(vyw400, vyw3000, bbd) 30.83/14.38 new_esEs3(Left(vyw400), Left(vyw3000), app(app(ty_@2, bcd), bce), bcb) -> new_esEs1(vyw400, vyw3000, bcd, bce) 30.83/14.38 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_Either, ca), cb), bc, bd) -> new_esEs3(vyw400, vyw3000, ca, cb) 30.83/14.38 new_esEs0(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_[], fb)) -> new_esEs0(vyw400, vyw3000, fb) 30.83/14.38 new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), hd, app(ty_Maybe, bac)) -> new_esEs2(vyw401, vyw3001, bac) 30.83/14.38 new_esEs3(Right(vyw400), Right(vyw3000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(vyw400, vyw3000, bea, beb) 30.83/14.38 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_esEs(vyw401, vyw3001, cd, ce, cf) 30.83/14.38 new_esEs3(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, bbg), bbh), bca), bcb) -> new_esEs(vyw400, vyw3000, bbg, bbh, bca) 30.83/14.38 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, app(app(ty_Either, dd), de), bd) -> new_esEs3(vyw401, vyw3001, dd, de) 30.83/14.38 new_esEs0(:(vyw400, vyw401), :(vyw3000, vyw3001), ga) -> new_esEs0(vyw401, vyw3001, ga) 30.83/14.38 new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_Maybe, ha), ge) -> new_esEs2(vyw400, vyw3000, ha) 30.83/14.38 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, app(app(ty_@2, da), db), bd) -> new_esEs1(vyw401, vyw3001, da, db) 30.83/14.38 new_esEs2(Just(vyw400), Just(vyw3000), app(app(ty_Either, bbe), bbf)) -> new_esEs3(vyw400, vyw3000, bbe, bbf) 30.83/14.38 new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), hd, app(ty_[], hh)) -> new_esEs0(vyw401, vyw3001, hh) 30.83/14.38 new_esEs3(Left(vyw400), Left(vyw3000), app(ty_[], bcc), bcb) -> new_esEs0(vyw400, vyw3000, bcc) 30.83/14.38 new_esEs0(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_Maybe, ff)) -> new_esEs2(vyw400, vyw3000, ff) 30.83/14.38 new_esEs3(Right(vyw400), Right(vyw3000), bda, app(app(ty_@2, bdf), bdg)) -> new_esEs1(vyw400, vyw3000, bdf, bdg) 30.83/14.38 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(app(ty_Either, ee), ef)) -> new_esEs3(vyw402, vyw3002, ee, ef) 30.83/14.38 new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_[], gf), ge) -> new_esEs0(vyw400, vyw3000, gf) 30.83/14.38 new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_Either, hb), hc), ge) -> new_esEs3(vyw400, vyw3000, hb, hc) 30.83/14.38 new_esEs3(Left(vyw400), Left(vyw3000), app(ty_Maybe, bcf), bcb) -> new_esEs2(vyw400, vyw3000, bcf) 30.83/14.38 new_esEs3(Right(vyw400), Right(vyw3000), bda, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs(vyw400, vyw3000, bdb, bdc, bdd) 30.83/14.38 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_esEs(vyw400, vyw3000, h, ba, bb) 30.83/14.38 new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(app(ty_@3, gb), gc), gd), ge) -> new_esEs(vyw400, vyw3000, gb, gc, gd) 30.83/14.38 new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_@2, gg), gh), ge) -> new_esEs1(vyw400, vyw3000, gg, gh) 30.83/14.38 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, app(ty_Maybe, dc), bd) -> new_esEs2(vyw401, vyw3001, dc) 30.83/14.38 new_esEs0(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(app(ty_@3, eg), eh), fa)) -> new_esEs(vyw400, vyw3000, eg, eh, fa) 30.83/14.38 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(ty_Maybe, ed)) -> new_esEs2(vyw402, vyw3002, ed) 30.83/14.38 new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), hd, app(app(ty_@2, baa), bab)) -> new_esEs1(vyw401, vyw3001, baa, bab) 30.83/14.38 new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), hd, app(app(ty_Either, bad), bae)) -> new_esEs3(vyw401, vyw3001, bad, bae) 30.83/14.38 new_esEs2(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, baf), bag), bah)) -> new_esEs(vyw400, vyw3000, baf, bag, bah) 30.83/14.38 new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_[], be), bc, bd) -> new_esEs0(vyw400, vyw3000, be) 30.83/14.38 new_esEs0(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_Either, fg), fh)) -> new_esEs3(vyw400, vyw3000, fg, fh) 30.83/14.38 new_esEs0(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_@2, fc), fd)) -> new_esEs1(vyw400, vyw3000, fc, fd) 30.83/14.38 new_esEs3(Right(vyw400), Right(vyw3000), bda, app(ty_Maybe, bdh)) -> new_esEs2(vyw400, vyw3000, bdh) 30.83/14.38 30.83/14.38 R is empty. 30.83/14.38 Q is empty. 30.83/14.38 We have to consider all minimal (P,Q,R)-chains. 30.83/14.38 ---------------------------------------- 30.83/14.38 30.83/14.38 (30) QDPSizeChangeProof (EQUIVALENT) 30.83/14.38 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. 30.83/14.38 30.83/14.38 From the DPs we obtained the following set of size-change graphs: 30.83/14.38 *new_esEs0(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_Maybe, ff)) -> new_esEs2(vyw400, vyw3000, ff) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs0(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_Either, fg), fh)) -> new_esEs3(vyw400, vyw3000, fg, fh) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs0(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(app(ty_@3, eg), eh), fa)) -> new_esEs(vyw400, vyw3000, eg, eh, fa) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs2(Just(vyw400), Just(vyw3000), app(ty_Maybe, bbd)) -> new_esEs2(vyw400, vyw3000, bbd) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs2(Just(vyw400), Just(vyw3000), app(app(ty_Either, bbe), bbf)) -> new_esEs3(vyw400, vyw3000, bbe, bbf) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs2(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, baf), bag), bah)) -> new_esEs(vyw400, vyw3000, baf, bag, bah) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs0(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_@2, fc), fd)) -> new_esEs1(vyw400, vyw3000, fc, fd) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs2(Just(vyw400), Just(vyw3000), app(app(ty_@2, bbb), bbc)) -> new_esEs1(vyw400, vyw3000, bbb, bbc) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs2(Just(vyw400), Just(vyw3000), app(ty_[], bba)) -> new_esEs0(vyw400, vyw3000, bba) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), hd, app(ty_Maybe, bac)) -> new_esEs2(vyw401, vyw3001, bac) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_Maybe, ha), ge) -> new_esEs2(vyw400, vyw3000, ha) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_Either, hb), hc), ge) -> new_esEs3(vyw400, vyw3000, hb, hc) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), hd, app(app(ty_Either, bad), bae)) -> new_esEs3(vyw401, vyw3001, bad, bae) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), hd, app(app(app(ty_@3, he), hf), hg)) -> new_esEs(vyw401, vyw3001, he, hf, hg) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(app(ty_@3, gb), gc), gd), ge) -> new_esEs(vyw400, vyw3000, gb, gc, gd) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_@2, gg), gh), ge) -> new_esEs1(vyw400, vyw3000, gg, gh) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), hd, app(app(ty_@2, baa), bab)) -> new_esEs1(vyw401, vyw3001, baa, bab) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), hd, app(ty_[], hh)) -> new_esEs0(vyw401, vyw3001, hh) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs1(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_[], gf), ge) -> new_esEs0(vyw400, vyw3000, gf) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs3(Left(vyw400), Left(vyw3000), app(ty_Maybe, bcf), bcb) -> new_esEs2(vyw400, vyw3000, bcf) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs3(Right(vyw400), Right(vyw3000), bda, app(ty_Maybe, bdh)) -> new_esEs2(vyw400, vyw3000, bdh) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_Maybe, bh), bc, bd) -> new_esEs2(vyw400, vyw3000, bh) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, app(ty_Maybe, dc), bd) -> new_esEs2(vyw401, vyw3001, dc) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(ty_Maybe, ed)) -> new_esEs2(vyw402, vyw3002, ed) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs3(Left(vyw400), Left(vyw3000), app(app(ty_Either, bcg), bch), bcb) -> new_esEs3(vyw400, vyw3000, bcg, bch) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs3(Right(vyw400), Right(vyw3000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(vyw400, vyw3000, bea, beb) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs3(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, bbg), bbh), bca), bcb) -> new_esEs(vyw400, vyw3000, bbg, bbh, bca) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs3(Right(vyw400), Right(vyw3000), bda, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs(vyw400, vyw3000, bdb, bdc, bdd) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs3(Left(vyw400), Left(vyw3000), app(app(ty_@2, bcd), bce), bcb) -> new_esEs1(vyw400, vyw3000, bcd, bce) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs3(Right(vyw400), Right(vyw3000), bda, app(app(ty_@2, bdf), bdg)) -> new_esEs1(vyw400, vyw3000, bdf, bdg) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs3(Right(vyw400), Right(vyw3000), bda, app(ty_[], bde)) -> new_esEs0(vyw400, vyw3000, bde) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs3(Left(vyw400), Left(vyw3000), app(ty_[], bcc), bcb) -> new_esEs0(vyw400, vyw3000, bcc) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_Either, ca), cb), bc, bd) -> new_esEs3(vyw400, vyw3000, ca, cb) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, app(app(ty_Either, dd), de), bd) -> new_esEs3(vyw401, vyw3001, dd, de) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(app(ty_Either, ee), ef)) -> new_esEs3(vyw402, vyw3002, ee, ef) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_esEs(vyw402, vyw3002, df, dg, dh) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_esEs(vyw401, vyw3001, cd, ce, cf) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_esEs(vyw400, vyw3000, h, ba, bb) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs0(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_[], fb)) -> new_esEs0(vyw400, vyw3000, fb) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs0(:(vyw400, vyw401), :(vyw3000, vyw3001), ga) -> new_esEs0(vyw401, vyw3001, ga) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_@2, bf), bg), bc, bd) -> new_esEs1(vyw400, vyw3000, bf, bg) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(app(ty_@2, eb), ec)) -> new_esEs1(vyw402, vyw3002, eb, ec) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, app(app(ty_@2, da), db), bd) -> new_esEs1(vyw401, vyw3001, da, db) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, app(ty_[], cg), bd) -> new_esEs0(vyw401, vyw3001, cg) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cc, bc, app(ty_[], ea)) -> new_esEs0(vyw402, vyw3002, ea) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 30.83/14.38 30.83/14.38 30.83/14.38 *new_esEs(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_[], be), bc, bd) -> new_esEs0(vyw400, vyw3000, be) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.83/14.38 30.83/14.38 30.83/14.38 ---------------------------------------- 30.83/14.38 30.83/14.38 (31) 30.83/14.38 YES 30.83/14.38 30.83/14.38 ---------------------------------------- 30.83/14.38 30.83/14.38 (32) 30.83/14.38 Obligation: 30.83/14.38 Q DP problem: 30.83/14.38 The TRS P consists of the following rules: 30.83/14.38 30.83/14.38 new_primEqNat(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat(vyw4000, vyw30000) 30.83/14.38 30.83/14.38 R is empty. 30.83/14.38 Q is empty. 30.83/14.38 We have to consider all minimal (P,Q,R)-chains. 30.83/14.38 ---------------------------------------- 30.83/14.38 30.83/14.38 (33) QDPSizeChangeProof (EQUIVALENT) 30.83/14.38 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. 30.83/14.38 30.83/14.38 From the DPs we obtained the following set of size-change graphs: 30.83/14.38 *new_primEqNat(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat(vyw4000, vyw30000) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2 30.83/14.38 30.83/14.38 30.83/14.38 ---------------------------------------- 30.83/14.38 30.83/14.38 (34) 30.83/14.38 YES 30.83/14.38 30.83/14.38 ---------------------------------------- 30.83/14.38 30.83/14.38 (35) 30.83/14.38 Obligation: 30.83/14.38 Q DP problem: 30.83/14.38 The TRS P consists of the following rules: 30.83/14.38 30.83/14.38 new_primPlusNat(Succ(vyw19300), Succ(vyw41000)) -> new_primPlusNat(vyw19300, vyw41000) 30.83/14.38 30.83/14.38 R is empty. 30.83/14.38 Q is empty. 30.83/14.38 We have to consider all minimal (P,Q,R)-chains. 30.83/14.38 ---------------------------------------- 30.83/14.38 30.83/14.38 (36) QDPSizeChangeProof (EQUIVALENT) 30.83/14.38 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. 30.83/14.38 30.83/14.38 From the DPs we obtained the following set of size-change graphs: 30.83/14.38 *new_primPlusNat(Succ(vyw19300), Succ(vyw41000)) -> new_primPlusNat(vyw19300, vyw41000) 30.83/14.38 The graph contains the following edges 1 > 1, 2 > 2 30.83/14.38 30.83/14.38 30.83/14.38 ---------------------------------------- 30.83/14.38 30.83/14.38 (37) 30.83/14.38 YES 30.95/14.43 EOF