19.11/7.40 YES 21.40/8.10 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 21.40/8.10 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 21.40/8.10 21.40/8.10 21.40/8.10 H-Termination with start terms of the given HASKELL could be proven: 21.40/8.10 21.40/8.10 (0) HASKELL 21.40/8.10 (1) LR [EQUIVALENT, 0 ms] 21.40/8.10 (2) HASKELL 21.40/8.10 (3) CR [EQUIVALENT, 0 ms] 21.40/8.10 (4) HASKELL 21.40/8.10 (5) IFR [EQUIVALENT, 0 ms] 21.40/8.10 (6) HASKELL 21.40/8.10 (7) BR [EQUIVALENT, 7 ms] 21.40/8.10 (8) HASKELL 21.40/8.10 (9) COR [EQUIVALENT, 0 ms] 21.40/8.10 (10) HASKELL 21.40/8.10 (11) LetRed [EQUIVALENT, 5 ms] 21.40/8.10 (12) HASKELL 21.40/8.10 (13) NumRed [SOUND, 0 ms] 21.40/8.10 (14) HASKELL 21.40/8.10 (15) Narrow [SOUND, 0 ms] 21.40/8.10 (16) AND 21.40/8.10 (17) QDP 21.40/8.10 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 21.40/8.10 (19) YES 21.40/8.10 (20) QDP 21.40/8.10 (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] 21.40/8.10 (22) YES 21.40/8.10 (23) QDP 21.40/8.10 (24) DependencyGraphProof [EQUIVALENT, 0 ms] 21.40/8.10 (25) QDP 21.40/8.10 (26) QDPSizeChangeProof [EQUIVALENT, 218 ms] 21.40/8.10 (27) YES 21.40/8.10 (28) QDP 21.40/8.10 (29) QDPSizeChangeProof [EQUIVALENT, 0 ms] 21.40/8.10 (30) YES 21.40/8.10 (31) QDP 21.40/8.10 (32) DependencyGraphProof [EQUIVALENT, 0 ms] 21.40/8.10 (33) AND 21.40/8.10 (34) QDP 21.40/8.10 (35) QDPSizeChangeProof [EQUIVALENT, 0 ms] 21.40/8.10 (36) YES 21.40/8.10 (37) QDP 21.40/8.10 (38) QDPSizeChangeProof [EQUIVALENT, 0 ms] 21.40/8.10 (39) YES 21.40/8.10 (40) QDP 21.40/8.10 (41) QDPSizeChangeProof [EQUIVALENT, 0 ms] 21.40/8.10 (42) YES 21.40/8.10 (43) QDP 21.40/8.10 (44) QDPSizeChangeProof [EQUIVALENT, 0 ms] 21.40/8.10 (45) YES 21.40/8.10 (46) QDP 21.40/8.10 (47) QDPSizeChangeProof [EQUIVALENT, 0 ms] 21.40/8.10 (48) YES 21.40/8.10 (49) QDP 21.40/8.10 (50) QDPSizeChangeProof [EQUIVALENT, 0 ms] 21.40/8.10 (51) YES 21.40/8.10 21.40/8.10 21.40/8.10 ---------------------------------------- 21.40/8.10 21.40/8.10 (0) 21.40/8.10 Obligation: 21.40/8.10 mainModule Main 21.40/8.10 module FiniteMap where { 21.40/8.10 import qualified Main; 21.40/8.10 import qualified Maybe; 21.40/8.10 import qualified Prelude; 21.40/8.10 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 21.40/8.10 21.40/8.10 instance (Eq a, Eq b) => Eq FiniteMap a b where { 21.40/8.10 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 21.40/8.10 } 21.40/8.10 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 21.40/8.10 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 21.40/8.10 add fmap (key,elt) = addToFM_C combiner fmap key elt; 21.40/8.10 }; 21.40/8.10 21.40/8.10 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 21.40/8.10 addToFM_C combiner EmptyFM key elt = unitFM key elt; 21.40/8.10 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r 21.40/8.10 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 21.40/8.10 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 21.40/8.10 21.40/8.10 emptyFM :: FiniteMap b a; 21.40/8.10 emptyFM = EmptyFM; 21.40/8.10 21.40/8.10 findMax :: FiniteMap b a -> (b,a); 21.40/8.10 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 21.40/8.10 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 21.40/8.10 21.40/8.10 findMin :: FiniteMap a b -> (a,b); 21.40/8.10 findMin (Branch key elt _ EmptyFM _) = (key,elt); 21.40/8.10 findMin (Branch key elt _ fm_l _) = findMin fm_l; 21.40/8.10 21.40/8.10 fmToList :: FiniteMap a b -> [(a,b)]; 21.40/8.10 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 21.40/8.10 21.40/8.10 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 21.40/8.10 foldFM k z EmptyFM = z; 21.40/8.10 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 21.40/8.10 21.40/8.10 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 21.40/8.10 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 21.40/8.10 | size_r > sIZE_RATIO * size_l = case fm_R of { 21.40/8.10 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 21.40/8.10 | otherwise -> double_L fm_L fm_R; 21.40/8.10 } 21.40/8.10 | size_l > sIZE_RATIO * size_r = case fm_L of { 21.40/8.10 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 21.40/8.10 | otherwise -> double_R fm_L fm_R; 21.40/8.10 } 21.40/8.10 | otherwise = mkBranch 2 key elt fm_L fm_R where { 21.40/8.10 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 21.40/8.10 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 21.40/8.10 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 21.40/8.10 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 21.40/8.10 size_l = sizeFM fm_L; 21.40/8.10 size_r = sizeFM fm_R; 21.40/8.10 }; 21.40/8.10 21.40/8.10 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 21.40/8.10 mkBranch which key elt fm_l fm_r = let { 21.40/8.10 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 21.40/8.10 } in result where { 21.40/8.10 balance_ok = True; 21.40/8.10 left_ok = case fm_l of { 21.40/8.10 EmptyFM-> True; 21.40/8.10 Branch left_key _ _ _ _-> let { 21.40/8.10 biggest_left_key = fst (findMax fm_l); 21.40/8.10 } in biggest_left_key < key; 21.40/8.10 } ; 21.40/8.10 left_size = sizeFM fm_l; 21.40/8.10 right_ok = case fm_r of { 21.40/8.10 EmptyFM-> True; 21.40/8.10 Branch right_key _ _ _ _-> let { 21.40/8.10 smallest_right_key = fst (findMin fm_r); 21.40/8.10 } in key < smallest_right_key; 21.40/8.10 } ; 21.40/8.10 right_size = sizeFM fm_r; 21.40/8.10 unbox :: Int -> Int; 21.40/8.10 unbox x = x; 21.40/8.10 }; 21.40/8.10 21.40/8.10 sIZE_RATIO :: Int; 21.76/8.10 sIZE_RATIO = 5; 21.76/8.10 21.76/8.10 sizeFM :: FiniteMap b a -> Int; 21.76/8.10 sizeFM EmptyFM = 0; 21.76/8.10 sizeFM (Branch _ _ size _ _) = size; 21.76/8.10 21.76/8.10 unitFM :: a -> b -> FiniteMap a b; 21.76/8.10 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 21.76/8.10 21.76/8.10 } 21.76/8.10 module Maybe where { 21.76/8.10 import qualified FiniteMap; 21.76/8.10 import qualified Main; 21.76/8.10 import qualified Prelude; 21.76/8.10 } 21.76/8.10 module Main where { 21.76/8.10 import qualified FiniteMap; 21.76/8.10 import qualified Maybe; 21.76/8.10 import qualified Prelude; 21.76/8.10 } 21.76/8.10 21.76/8.10 ---------------------------------------- 21.76/8.10 21.76/8.10 (1) LR (EQUIVALENT) 21.76/8.10 Lambda Reductions: 21.76/8.10 The following Lambda expression 21.76/8.10 "\keyeltrest->(key,elt) : rest" 21.76/8.10 is transformed to 21.76/8.10 "fmToList0 key elt rest = (key,elt) : rest; 21.76/8.10 " 21.76/8.10 21.76/8.10 ---------------------------------------- 21.76/8.10 21.76/8.10 (2) 21.76/8.10 Obligation: 21.76/8.10 mainModule Main 21.76/8.10 module FiniteMap where { 21.76/8.10 import qualified Main; 21.76/8.10 import qualified Maybe; 21.76/8.10 import qualified Prelude; 21.76/8.10 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 21.76/8.10 21.76/8.10 instance (Eq a, Eq b) => Eq FiniteMap a b where { 21.76/8.10 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 21.76/8.10 } 21.76/8.10 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 21.76/8.11 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 21.76/8.11 add fmap (key,elt) = addToFM_C combiner fmap key elt; 21.76/8.11 }; 21.76/8.11 21.76/8.11 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 21.76/8.11 addToFM_C combiner EmptyFM key elt = unitFM key elt; 21.76/8.11 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r 21.76/8.11 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 21.76/8.11 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 21.76/8.11 21.76/8.11 emptyFM :: FiniteMap b a; 21.76/8.11 emptyFM = EmptyFM; 21.76/8.11 21.76/8.11 findMax :: FiniteMap b a -> (b,a); 21.76/8.11 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 21.76/8.11 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 21.76/8.11 21.76/8.11 findMin :: FiniteMap a b -> (a,b); 21.76/8.11 findMin (Branch key elt _ EmptyFM _) = (key,elt); 21.76/8.11 findMin (Branch key elt _ fm_l _) = findMin fm_l; 21.76/8.11 21.76/8.11 fmToList :: FiniteMap b a -> [(b,a)]; 21.76/8.11 fmToList fm = foldFM fmToList0 [] fm; 21.76/8.11 21.76/8.11 fmToList0 key elt rest = (key,elt) : rest; 21.76/8.11 21.76/8.11 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 21.76/8.11 foldFM k z EmptyFM = z; 21.76/8.11 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 21.76/8.11 21.76/8.11 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 21.76/8.11 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 21.76/8.11 | size_r > sIZE_RATIO * size_l = case fm_R of { 21.76/8.11 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 21.76/8.11 | otherwise -> double_L fm_L fm_R; 21.76/8.11 } 21.76/8.11 | size_l > sIZE_RATIO * size_r = case fm_L of { 21.76/8.11 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 21.76/8.11 | otherwise -> double_R fm_L fm_R; 21.76/8.11 } 21.76/8.11 | otherwise = mkBranch 2 key elt fm_L fm_R where { 21.76/8.11 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 22.14/8.26 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 22.14/8.26 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 22.14/8.26 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 22.14/8.26 size_l = sizeFM fm_L; 22.14/8.26 size_r = sizeFM fm_R; 22.14/8.26 }; 22.14/8.26 22.14/8.26 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 22.14/8.26 mkBranch which key elt fm_l fm_r = let { 22.14/8.26 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 22.14/8.26 } in result where { 22.14/8.26 balance_ok = True; 22.14/8.26 left_ok = case fm_l of { 22.14/8.26 EmptyFM-> True; 22.14/8.26 Branch left_key _ _ _ _-> let { 22.14/8.26 biggest_left_key = fst (findMax fm_l); 22.14/8.26 } in biggest_left_key < key; 22.14/8.26 } ; 22.14/8.26 left_size = sizeFM fm_l; 22.14/8.26 right_ok = case fm_r of { 22.14/8.26 EmptyFM-> True; 22.14/8.26 Branch right_key _ _ _ _-> let { 22.14/8.26 smallest_right_key = fst (findMin fm_r); 22.14/8.26 } in key < smallest_right_key; 22.14/8.26 } ; 22.14/8.26 right_size = sizeFM fm_r; 22.14/8.26 unbox :: Int -> Int; 22.14/8.26 unbox x = x; 22.14/8.26 }; 22.14/8.26 22.14/8.26 sIZE_RATIO :: Int; 22.14/8.26 sIZE_RATIO = 5; 22.14/8.26 22.14/8.26 sizeFM :: FiniteMap b a -> Int; 22.14/8.26 sizeFM EmptyFM = 0; 22.14/8.26 sizeFM (Branch _ _ size _ _) = size; 22.14/8.26 22.14/8.26 unitFM :: b -> a -> FiniteMap b a; 22.14/8.26 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 22.14/8.26 22.14/8.26 } 22.14/8.26 module Maybe where { 22.14/8.26 import qualified FiniteMap; 22.14/8.26 import qualified Main; 22.14/8.26 import qualified Prelude; 22.14/8.26 } 22.14/8.26 module Main where { 22.14/8.26 import qualified FiniteMap; 22.14/8.26 import qualified Maybe; 22.14/8.26 import qualified Prelude; 22.14/8.26 } 22.14/8.26 22.14/8.26 ---------------------------------------- 22.14/8.26 22.14/8.26 (3) CR (EQUIVALENT) 22.14/8.26 Case Reductions: 22.14/8.26 The following Case expression 22.14/8.26 "case compare x y of { 22.14/8.26 EQ -> o; 22.14/8.26 LT -> LT; 22.14/8.26 GT -> GT} 22.14/8.26 " 22.14/8.26 is transformed to 22.14/8.26 "primCompAux0 o EQ = o; 22.14/8.26 primCompAux0 o LT = LT; 22.14/8.26 primCompAux0 o GT = GT; 22.14/8.26 " 22.14/8.26 The following Case expression 22.14/8.26 "case fm_r of { 22.14/8.26 EmptyFM -> True; 22.14/8.26 Branch right_key _ _ _ _ -> let { 22.14/8.26 smallest_right_key = fst (findMin fm_r); 22.14/8.26 } in key < smallest_right_key} 22.14/8.26 " 22.14/8.26 is transformed to 22.14/8.26 "right_ok0 fm_r key EmptyFM = True; 22.14/8.26 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 22.14/8.26 smallest_right_key = fst (findMin fm_r); 22.14/8.26 } in key < smallest_right_key; 22.14/8.26 " 22.14/8.26 The following Case expression 22.14/8.26 "case fm_l of { 22.14/8.26 EmptyFM -> True; 22.14/8.26 Branch left_key _ _ _ _ -> let { 22.14/8.26 biggest_left_key = fst (findMax fm_l); 22.14/8.26 } in biggest_left_key < key} 22.14/8.26 " 22.14/8.26 is transformed to 22.14/8.26 "left_ok0 fm_l key EmptyFM = True; 22.14/8.26 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 22.14/8.26 biggest_left_key = fst (findMax fm_l); 22.14/8.26 } in biggest_left_key < key; 22.14/8.26 " 22.14/8.26 The following Case expression 22.14/8.26 "case fm_R of { 22.14/8.26 Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} 22.14/8.26 " 22.14/8.26 is transformed to 22.14/8.26 "mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; 22.14/8.26 " 22.14/8.26 The following Case expression 22.14/8.26 "case fm_L of { 22.14/8.26 Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} 22.14/8.26 " 22.14/8.26 is transformed to 22.14/8.26 "mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; 22.14/8.26 " 22.14/8.26 22.14/8.26 ---------------------------------------- 22.14/8.26 22.14/8.26 (4) 22.14/8.26 Obligation: 22.14/8.26 mainModule Main 22.14/8.26 module FiniteMap where { 22.14/8.26 import qualified Main; 22.14/8.26 import qualified Maybe; 22.14/8.26 import qualified Prelude; 22.14/8.26 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 22.14/8.26 22.14/8.26 instance (Eq a, Eq b) => Eq FiniteMap b a where { 22.14/8.26 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 22.14/8.26 } 22.14/8.26 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 22.14/8.26 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 22.14/8.26 add fmap (key,elt) = addToFM_C combiner fmap key elt; 22.14/8.26 }; 22.14/8.26 22.14/8.26 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 22.14/8.26 addToFM_C combiner EmptyFM key elt = unitFM key elt; 22.14/8.26 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r 22.14/8.26 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 22.14/8.26 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 22.14/8.26 22.14/8.26 emptyFM :: FiniteMap a b; 22.14/8.26 emptyFM = EmptyFM; 22.14/8.26 22.14/8.26 findMax :: FiniteMap a b -> (a,b); 22.14/8.26 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 22.14/8.26 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 22.14/8.26 22.14/8.26 findMin :: FiniteMap b a -> (b,a); 22.14/8.26 findMin (Branch key elt _ EmptyFM _) = (key,elt); 22.14/8.26 findMin (Branch key elt _ fm_l _) = findMin fm_l; 22.14/8.26 22.14/8.26 fmToList :: FiniteMap a b -> [(a,b)]; 22.14/8.26 fmToList fm = foldFM fmToList0 [] fm; 22.14/8.26 22.14/8.26 fmToList0 key elt rest = (key,elt) : rest; 22.14/8.26 22.14/8.26 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 22.14/8.26 foldFM k z EmptyFM = z; 22.14/8.26 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 22.14/8.26 22.14/8.26 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 22.14/8.26 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 22.14/8.26 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 22.14/8.26 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 22.14/8.26 | otherwise = mkBranch 2 key elt fm_L fm_R where { 22.14/8.26 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 22.14/8.26 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 22.14/8.26 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 22.14/8.26 | otherwise = double_L fm_L fm_R; 22.14/8.26 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 22.14/8.26 | otherwise = double_R fm_L fm_R; 22.14/8.26 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 22.14/8.26 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 22.14/8.26 size_l = sizeFM fm_L; 22.14/8.26 size_r = sizeFM fm_R; 22.14/8.26 }; 22.14/8.26 22.14/8.26 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 22.14/8.26 mkBranch which key elt fm_l fm_r = let { 22.14/8.26 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 22.14/8.26 } in result where { 22.14/8.26 balance_ok = True; 22.14/8.26 left_ok = left_ok0 fm_l key fm_l; 22.14/8.26 left_ok0 fm_l key EmptyFM = True; 22.14/8.26 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 22.14/8.26 biggest_left_key = fst (findMax fm_l); 22.14/8.26 } in biggest_left_key < key; 22.14/8.26 left_size = sizeFM fm_l; 22.14/8.26 right_ok = right_ok0 fm_r key fm_r; 22.14/8.26 right_ok0 fm_r key EmptyFM = True; 22.14/8.26 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 22.14/8.26 smallest_right_key = fst (findMin fm_r); 22.14/8.26 } in key < smallest_right_key; 22.14/8.26 right_size = sizeFM fm_r; 22.14/8.26 unbox :: Int -> Int; 22.14/8.26 unbox x = x; 22.14/8.26 }; 22.14/8.26 22.14/8.26 sIZE_RATIO :: Int; 22.14/8.26 sIZE_RATIO = 5; 22.14/8.26 22.14/8.26 sizeFM :: FiniteMap a b -> Int; 22.14/8.26 sizeFM EmptyFM = 0; 22.14/8.26 sizeFM (Branch _ _ size _ _) = size; 22.14/8.26 22.14/8.26 unitFM :: a -> b -> FiniteMap a b; 22.14/8.26 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 22.14/8.26 22.14/8.26 } 22.14/8.26 module Maybe where { 22.14/8.26 import qualified FiniteMap; 22.14/8.26 import qualified Main; 22.14/8.26 import qualified Prelude; 22.14/8.26 } 22.14/8.26 module Main where { 22.14/8.26 import qualified FiniteMap; 22.14/8.26 import qualified Maybe; 22.14/8.26 import qualified Prelude; 22.14/8.26 } 22.14/8.26 22.14/8.26 ---------------------------------------- 22.14/8.26 22.14/8.26 (5) IFR (EQUIVALENT) 22.14/8.26 If Reductions: 22.14/8.26 The following If expression 22.14/8.26 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 22.14/8.26 is transformed to 22.14/8.26 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 22.14/8.26 primDivNatS0 x y False = Zero; 22.14/8.26 " 22.14/8.26 The following If expression 22.14/8.26 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 22.14/8.26 is transformed to 22.14/8.26 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 22.14/8.26 primModNatS0 x y False = Succ x; 22.14/8.26 " 22.14/8.26 22.14/8.26 ---------------------------------------- 22.14/8.26 22.14/8.26 (6) 22.14/8.26 Obligation: 22.14/8.26 mainModule Main 22.14/8.26 module FiniteMap where { 22.14/8.26 import qualified Main; 22.14/8.26 import qualified Maybe; 22.14/8.26 import qualified Prelude; 22.14/8.26 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 22.14/8.26 22.14/8.26 instance (Eq a, Eq b) => Eq FiniteMap a b where { 22.14/8.26 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 22.14/8.26 } 22.14/8.26 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 22.14/8.26 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 22.14/8.26 add fmap (key,elt) = addToFM_C combiner fmap key elt; 22.14/8.26 }; 22.14/8.26 22.14/8.26 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 22.14/8.26 addToFM_C combiner EmptyFM key elt = unitFM key elt; 22.14/8.26 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r 22.14/8.26 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 22.14/8.26 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 22.14/8.26 22.14/8.26 emptyFM :: FiniteMap b a; 22.14/8.26 emptyFM = EmptyFM; 22.14/8.26 22.14/8.26 findMax :: FiniteMap a b -> (a,b); 22.14/8.26 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 22.14/8.26 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 22.14/8.26 22.14/8.26 findMin :: FiniteMap a b -> (a,b); 22.14/8.26 findMin (Branch key elt _ EmptyFM _) = (key,elt); 22.14/8.26 findMin (Branch key elt _ fm_l _) = findMin fm_l; 22.14/8.26 22.14/8.26 fmToList :: FiniteMap a b -> [(a,b)]; 22.14/8.26 fmToList fm = foldFM fmToList0 [] fm; 22.14/8.26 22.14/8.26 fmToList0 key elt rest = (key,elt) : rest; 22.14/8.26 22.14/8.26 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 22.14/8.26 foldFM k z EmptyFM = z; 22.14/8.26 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 22.14/8.26 22.14/8.26 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 22.14/8.26 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 22.14/8.26 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 22.14/8.26 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 22.14/8.26 | otherwise = mkBranch 2 key elt fm_L fm_R where { 22.14/8.26 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 22.14/8.26 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 22.14/8.26 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 22.14/8.26 | otherwise = double_L fm_L fm_R; 22.14/8.26 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 22.14/8.26 | otherwise = double_R fm_L fm_R; 22.14/8.26 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 22.14/8.26 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 22.14/8.26 size_l = sizeFM fm_L; 22.14/8.26 size_r = sizeFM fm_R; 22.14/8.26 }; 22.14/8.26 22.14/8.26 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 22.14/8.26 mkBranch which key elt fm_l fm_r = let { 22.14/8.26 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 22.14/8.26 } in result where { 22.14/8.26 balance_ok = True; 22.14/8.26 left_ok = left_ok0 fm_l key fm_l; 22.14/8.26 left_ok0 fm_l key EmptyFM = True; 22.14/8.26 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 22.14/8.26 biggest_left_key = fst (findMax fm_l); 22.14/8.26 } in biggest_left_key < key; 22.14/8.26 left_size = sizeFM fm_l; 22.14/8.26 right_ok = right_ok0 fm_r key fm_r; 22.14/8.26 right_ok0 fm_r key EmptyFM = True; 22.14/8.26 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 22.14/8.26 smallest_right_key = fst (findMin fm_r); 22.14/8.26 } in key < smallest_right_key; 22.14/8.26 right_size = sizeFM fm_r; 22.14/8.26 unbox :: Int -> Int; 22.14/8.26 unbox x = x; 22.14/8.26 }; 22.14/8.26 22.14/8.26 sIZE_RATIO :: Int; 22.14/8.26 sIZE_RATIO = 5; 22.14/8.26 22.14/8.26 sizeFM :: FiniteMap b a -> Int; 22.14/8.26 sizeFM EmptyFM = 0; 22.14/8.26 sizeFM (Branch _ _ size _ _) = size; 22.14/8.26 22.14/8.26 unitFM :: a -> b -> FiniteMap a b; 22.14/8.26 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 22.14/8.26 22.14/8.26 } 22.14/8.26 module Maybe where { 22.14/8.26 import qualified FiniteMap; 22.14/8.26 import qualified Main; 22.14/8.26 import qualified Prelude; 22.14/8.26 } 22.14/8.26 module Main where { 22.14/8.26 import qualified FiniteMap; 22.14/8.26 import qualified Maybe; 22.14/8.26 import qualified Prelude; 22.14/8.26 } 22.14/8.26 22.14/8.26 ---------------------------------------- 22.14/8.26 22.14/8.26 (7) BR (EQUIVALENT) 22.14/8.26 Replaced joker patterns by fresh variables and removed binding patterns. 22.14/8.26 ---------------------------------------- 22.14/8.26 22.14/8.26 (8) 22.14/8.26 Obligation: 22.14/8.26 mainModule Main 22.14/8.26 module FiniteMap where { 22.14/8.26 import qualified Main; 22.14/8.26 import qualified Maybe; 22.14/8.26 import qualified Prelude; 22.14/8.26 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 22.14/8.26 22.14/8.26 instance (Eq a, Eq b) => Eq FiniteMap a b where { 22.14/8.27 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 22.14/8.27 } 22.14/8.27 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 22.14/8.27 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 22.14/8.27 add fmap (key,elt) = addToFM_C combiner fmap key elt; 22.14/8.27 }; 22.14/8.27 22.14/8.27 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 22.14/8.27 addToFM_C combiner EmptyFM key elt = unitFM key elt; 22.14/8.27 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r 22.14/8.27 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 22.14/8.27 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 22.14/8.27 22.14/8.27 emptyFM :: FiniteMap a b; 22.14/8.27 emptyFM = EmptyFM; 22.14/8.27 22.14/8.27 findMax :: FiniteMap a b -> (a,b); 22.14/8.27 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 22.14/8.27 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 22.14/8.27 22.14/8.27 findMin :: FiniteMap b a -> (b,a); 22.14/8.27 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 22.14/8.27 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 22.14/8.27 22.14/8.27 fmToList :: FiniteMap b a -> [(b,a)]; 22.14/8.27 fmToList fm = foldFM fmToList0 [] fm; 22.14/8.27 22.14/8.27 fmToList0 key elt rest = (key,elt) : rest; 22.14/8.27 22.14/8.27 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 22.14/8.27 foldFM k z EmptyFM = z; 22.14/8.27 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 22.14/8.27 22.14/8.27 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 22.14/8.27 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 22.14/8.27 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 22.14/8.27 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 22.14/8.27 | otherwise = mkBranch 2 key elt fm_L fm_R where { 22.14/8.27 double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 22.14/8.27 double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 22.14/8.27 mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 22.14/8.27 | otherwise = double_L fm_L fm_R; 22.14/8.27 mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 22.14/8.27 | otherwise = double_R fm_L fm_R; 22.14/8.27 single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 22.14/8.27 single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 22.14/8.27 size_l = sizeFM fm_L; 22.14/8.27 size_r = sizeFM fm_R; 22.14/8.27 }; 22.14/8.27 22.14/8.27 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 22.14/8.27 mkBranch which key elt fm_l fm_r = let { 22.14/8.27 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 22.14/8.27 } in result where { 22.14/8.27 balance_ok = True; 22.14/8.27 left_ok = left_ok0 fm_l key fm_l; 22.14/8.27 left_ok0 fm_l key EmptyFM = True; 22.14/8.27 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 22.14/8.27 biggest_left_key = fst (findMax fm_l); 22.14/8.27 } in biggest_left_key < key; 22.14/8.27 left_size = sizeFM fm_l; 22.14/8.27 right_ok = right_ok0 fm_r key fm_r; 22.14/8.27 right_ok0 fm_r key EmptyFM = True; 22.14/8.27 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 22.14/8.27 smallest_right_key = fst (findMin fm_r); 22.14/8.27 } in key < smallest_right_key; 22.14/8.27 right_size = sizeFM fm_r; 22.14/8.27 unbox :: Int -> Int; 22.14/8.27 unbox x = x; 22.14/8.27 }; 22.14/8.27 22.14/8.27 sIZE_RATIO :: Int; 22.14/8.27 sIZE_RATIO = 5; 22.14/8.27 22.14/8.27 sizeFM :: FiniteMap a b -> Int; 22.14/8.27 sizeFM EmptyFM = 0; 22.14/8.27 sizeFM (Branch vyu vyv size vyw vyx) = size; 22.14/8.27 22.14/8.27 unitFM :: b -> a -> FiniteMap b a; 22.14/8.27 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 22.14/8.27 22.14/8.27 } 22.14/8.27 module Maybe where { 22.14/8.27 import qualified FiniteMap; 22.14/8.27 import qualified Main; 22.14/8.27 import qualified Prelude; 22.14/8.27 } 22.14/8.27 module Main where { 22.14/8.27 import qualified FiniteMap; 22.14/8.27 import qualified Maybe; 22.14/8.27 import qualified Prelude; 22.14/8.27 } 22.14/8.27 22.14/8.27 ---------------------------------------- 22.14/8.27 22.14/8.27 (9) COR (EQUIVALENT) 22.14/8.27 Cond Reductions: 22.14/8.27 The following Function with conditions 22.14/8.27 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 22.54/8.34 " 22.54/8.34 is transformed to 22.54/8.34 "compare x y = compare3 x y; 22.54/8.34 " 22.54/8.34 "compare2 x y True = EQ; 22.54/8.34 compare2 x y False = compare1 x y (x <= y); 22.54/8.34 " 22.54/8.34 "compare1 x y True = LT; 22.54/8.34 compare1 x y False = compare0 x y otherwise; 22.54/8.34 " 22.54/8.34 "compare0 x y True = GT; 22.54/8.34 " 22.54/8.34 "compare3 x y = compare2 x y (x == y); 22.54/8.34 " 22.54/8.34 The following Function with conditions 22.54/8.34 "absReal x|x >= 0x|otherwise`negate` x; 22.54/8.34 " 22.54/8.34 is transformed to 22.54/8.34 "absReal x = absReal2 x; 22.54/8.34 " 22.54/8.34 "absReal0 x True = `negate` x; 22.54/8.34 " 22.54/8.34 "absReal1 x True = x; 22.54/8.34 absReal1 x False = absReal0 x otherwise; 22.54/8.34 " 22.54/8.34 "absReal2 x = absReal1 x (x >= 0); 22.54/8.34 " 22.54/8.34 The following Function with conditions 22.54/8.34 "gcd' x 0 = x; 22.54/8.34 gcd' x y = gcd' y (x `rem` y); 22.54/8.34 " 22.54/8.34 is transformed to 22.54/8.34 "gcd' x vzw = gcd'2 x vzw; 22.54/8.34 gcd' x y = gcd'0 x y; 22.54/8.34 " 22.54/8.34 "gcd'0 x y = gcd' y (x `rem` y); 22.54/8.34 " 22.54/8.34 "gcd'1 True x vzw = x; 22.54/8.34 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 22.54/8.34 " 22.54/8.34 "gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 22.54/8.34 gcd'2 wuu wuv = gcd'0 wuu wuv; 22.54/8.34 " 22.54/8.34 The following Function with conditions 22.54/8.34 "gcd 0 0 = error []; 22.54/8.34 gcd x y = gcd' (abs x) (abs y) where { 22.54/8.34 gcd' x 0 = x; 22.54/8.34 gcd' x y = gcd' y (x `rem` y); 22.54/8.34 } 22.54/8.34 ; 22.54/8.34 " 22.54/8.34 is transformed to 22.54/8.34 "gcd wuw wux = gcd3 wuw wux; 22.54/8.34 gcd x y = gcd0 x y; 22.54/8.34 " 22.54/8.34 "gcd0 x y = gcd' (abs x) (abs y) where { 22.54/8.34 gcd' x vzw = gcd'2 x vzw; 22.54/8.34 gcd' x y = gcd'0 x y; 22.54/8.34 ; 22.54/8.34 gcd'0 x y = gcd' y (x `rem` y); 22.54/8.34 ; 22.54/8.34 gcd'1 True x vzw = x; 22.54/8.34 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 22.54/8.34 ; 22.54/8.34 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 22.54/8.34 gcd'2 wuu wuv = gcd'0 wuu wuv; 22.54/8.34 } 22.54/8.34 ; 22.54/8.34 " 22.54/8.34 "gcd1 True wuw wux = error []; 22.54/8.34 gcd1 wuy wuz wvu = gcd0 wuz wvu; 22.54/8.34 " 22.54/8.34 "gcd2 True wuw wux = gcd1 (wux == 0) wuw wux; 22.54/8.34 gcd2 wvv wvw wvx = gcd0 wvw wvx; 22.54/8.34 " 22.54/8.34 "gcd3 wuw wux = gcd2 (wuw == 0) wuw wux; 22.54/8.34 gcd3 wvy wvz = gcd0 wvy wvz; 22.54/8.34 " 22.54/8.34 The following Function with conditions 22.54/8.34 "undefined |Falseundefined; 22.54/8.34 " 22.54/8.34 is transformed to 22.54/8.34 "undefined = undefined1; 22.54/8.34 " 22.54/8.34 "undefined0 True = undefined; 22.54/8.34 " 22.54/8.34 "undefined1 = undefined0 False; 22.54/8.34 " 22.54/8.34 The following Function with conditions 22.54/8.34 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 22.54/8.34 d = gcd x y; 22.54/8.34 } 22.54/8.34 ; 22.54/8.34 " 22.54/8.34 is transformed to 22.54/8.34 "reduce x y = reduce2 x y; 22.54/8.34 " 22.54/8.34 "reduce2 x y = reduce1 x y (y == 0) where { 22.54/8.34 d = gcd x y; 22.54/8.34 ; 22.54/8.34 reduce0 x y True = x `quot` d :% (y `quot` d); 22.54/8.34 ; 22.54/8.34 reduce1 x y True = error []; 22.54/8.34 reduce1 x y False = reduce0 x y otherwise; 22.54/8.34 } 22.54/8.34 ; 22.54/8.34 " 22.54/8.34 The following Function with conditions 22.54/8.34 "addToFM_C combiner EmptyFM key elt = unitFM key elt; 22.54/8.34 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt|new_key < keymkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r|new_key > keymkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt)|otherwiseBranch new_key (combiner elt new_elt) size fm_l fm_r; 22.54/8.34 " 22.54/8.34 is transformed to 22.54/8.34 "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 22.54/8.34 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; 22.54/8.34 " 22.54/8.34 "addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; 22.54/8.34 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); 22.54/8.34 " 22.54/8.34 "addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; 22.54/8.34 " 22.54/8.34 "addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); 22.54/8.34 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; 22.54/8.34 " 22.54/8.34 "addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); 22.54/8.34 " 22.54/8.34 "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 22.54/8.34 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 22.54/8.34 " 22.54/8.34 The following Function with conditions 22.54/8.34 "mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; 22.54/8.34 " 22.54/8.34 is transformed to 22.54/8.34 "mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 22.54/8.34 " 22.54/8.34 "mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 22.54/8.34 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 22.54/8.34 " 22.54/8.34 "mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 22.54/8.34 " 22.54/8.34 "mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 22.54/8.34 " 22.54/8.34 The following Function with conditions 22.54/8.34 "mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; 22.54/8.34 " 22.54/8.34 is transformed to 22.54/8.34 "mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 22.54/8.34 " 22.54/8.34 "mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 22.54/8.34 " 22.54/8.34 "mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 22.54/8.34 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 22.54/8.34 " 22.54/8.34 "mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 22.54/8.34 " 22.54/8.34 The following Function with conditions 22.54/8.34 "mkBalBranch key elt fm_L fm_R|size_l + size_r < 2mkBranch 1 key elt fm_L fm_R|size_r > sIZE_RATIO * size_lmkBalBranch0 fm_L fm_R fm_R|size_l > sIZE_RATIO * size_rmkBalBranch1 fm_L fm_R fm_L|otherwisemkBranch 2 key elt fm_L fm_R where { 22.54/8.34 double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 22.54/8.34 ; 22.54/8.34 double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 22.54/8.34 ; 22.54/8.34 mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; 22.54/8.34 ; 22.54/8.34 mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; 22.54/8.34 ; 22.54/8.34 single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 22.54/8.34 ; 22.54/8.34 single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 22.54/8.34 ; 22.54/8.34 size_l = sizeFM fm_L; 22.54/8.34 ; 22.54/8.34 size_r = sizeFM fm_R; 22.54/8.34 } 22.54/8.34 ; 22.54/8.34 " 22.54/8.34 is transformed to 22.54/8.34 "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 22.54/8.34 " 22.54/8.34 "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 22.54/8.34 double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 22.54/8.34 ; 22.54/8.34 double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 22.54/8.34 ; 22.54/8.34 mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 22.54/8.34 ; 22.54/8.34 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 22.54/8.34 ; 22.54/8.34 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 22.54/8.34 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 22.54/8.34 ; 22.54/8.34 mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 22.54/8.34 ; 22.54/8.34 mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 22.54/8.34 ; 22.54/8.34 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 22.54/8.34 ; 22.54/8.34 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 22.54/8.34 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 22.54/8.34 ; 22.54/8.34 mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 22.54/8.34 ; 22.54/8.34 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 22.54/8.34 ; 22.54/8.34 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 22.54/8.34 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 22.54/8.34 ; 22.54/8.34 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 22.54/8.34 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 22.54/8.34 ; 22.54/8.34 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 22.54/8.34 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 22.54/8.34 ; 22.54/8.34 single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 22.54/8.34 ; 22.54/8.34 single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 22.54/8.34 ; 22.54/8.34 size_l = sizeFM fm_L; 22.54/8.34 ; 22.54/8.34 size_r = sizeFM fm_R; 22.54/8.34 } 22.54/8.34 ; 22.54/8.34 " 22.54/8.34 22.54/8.34 ---------------------------------------- 22.54/8.34 22.54/8.34 (10) 22.54/8.34 Obligation: 22.54/8.34 mainModule Main 22.54/8.34 module FiniteMap where { 22.54/8.34 import qualified Main; 22.54/8.34 import qualified Maybe; 22.54/8.34 import qualified Prelude; 22.54/8.34 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 22.54/8.34 22.54/8.34 instance (Eq a, Eq b) => Eq FiniteMap a b where { 22.54/8.34 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 22.54/8.34 } 22.54/8.34 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 22.54/8.34 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 22.54/8.34 add fmap (key,elt) = addToFM_C combiner fmap key elt; 22.54/8.34 }; 22.54/8.34 22.54/8.34 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 22.54/8.34 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 22.54/8.34 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; 22.54/8.34 22.54/8.34 addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; 22.54/8.34 22.54/8.34 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); 22.54/8.34 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; 22.54/8.34 22.54/8.34 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; 22.54/8.34 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); 22.54/8.34 22.54/8.34 addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); 22.54/8.34 22.54/8.34 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 22.54/8.34 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 22.54/8.34 22.54/8.34 emptyFM :: FiniteMap b a; 22.54/8.34 emptyFM = EmptyFM; 22.54/8.34 22.54/8.34 findMax :: FiniteMap a b -> (a,b); 22.54/8.34 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 22.54/8.34 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 22.54/8.34 22.54/8.34 findMin :: FiniteMap b a -> (b,a); 22.54/8.34 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 22.54/8.34 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 22.54/8.34 22.54/8.34 fmToList :: FiniteMap a b -> [(a,b)]; 22.54/8.34 fmToList fm = foldFM fmToList0 [] fm; 22.54/8.34 22.54/8.34 fmToList0 key elt rest = (key,elt) : rest; 22.54/8.34 22.54/8.34 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 22.54/8.34 foldFM k z EmptyFM = z; 22.54/8.34 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 22.54/8.34 22.54/8.34 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 22.54/8.34 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 22.54/8.34 22.54/8.34 mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 22.54/8.34 double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 22.54/8.34 double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 22.54/8.34 mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 22.54/8.34 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 22.54/8.34 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 22.54/8.34 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 22.54/8.34 mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 22.54/8.34 mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 22.54/8.34 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 22.54/8.34 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 22.54/8.34 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 22.54/8.34 mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 22.54/8.34 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 22.54/8.34 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 22.54/8.34 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 22.54/8.34 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 22.54/8.34 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 22.54/8.34 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 22.54/8.34 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 22.54/8.34 single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 22.54/8.34 single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 22.54/8.34 size_l = sizeFM fm_L; 22.54/8.34 size_r = sizeFM fm_R; 22.54/8.34 }; 22.54/8.34 22.54/8.34 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 22.54/8.34 mkBranch which key elt fm_l fm_r = let { 22.54/8.34 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 22.54/8.34 } in result where { 22.54/8.34 balance_ok = True; 22.54/8.34 left_ok = left_ok0 fm_l key fm_l; 22.54/8.34 left_ok0 fm_l key EmptyFM = True; 22.54/8.34 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 22.54/8.34 biggest_left_key = fst (findMax fm_l); 22.54/8.34 } in biggest_left_key < key; 22.54/8.34 left_size = sizeFM fm_l; 22.54/8.34 right_ok = right_ok0 fm_r key fm_r; 22.54/8.34 right_ok0 fm_r key EmptyFM = True; 22.54/8.34 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 22.54/8.34 smallest_right_key = fst (findMin fm_r); 22.54/8.34 } in key < smallest_right_key; 22.54/8.34 right_size = sizeFM fm_r; 22.54/8.34 unbox :: Int -> Int; 22.54/8.34 unbox x = x; 22.54/8.34 }; 22.54/8.34 22.54/8.34 sIZE_RATIO :: Int; 22.54/8.34 sIZE_RATIO = 5; 22.54/8.34 22.54/8.34 sizeFM :: FiniteMap b a -> Int; 22.54/8.34 sizeFM EmptyFM = 0; 22.54/8.34 sizeFM (Branch vyu vyv size vyw vyx) = size; 22.54/8.34 22.54/8.34 unitFM :: a -> b -> FiniteMap a b; 22.54/8.34 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 22.54/8.34 22.54/8.34 } 22.54/8.34 module Maybe where { 22.54/8.34 import qualified FiniteMap; 22.54/8.34 import qualified Main; 22.54/8.34 import qualified Prelude; 22.54/8.34 } 22.54/8.34 module Main where { 22.54/8.34 import qualified FiniteMap; 22.54/8.34 import qualified Maybe; 22.54/8.34 import qualified Prelude; 22.54/8.34 } 22.54/8.34 22.54/8.34 ---------------------------------------- 22.54/8.34 22.54/8.34 (11) LetRed (EQUIVALENT) 22.54/8.34 Let/Where Reductions: 22.54/8.34 The bindings of the following Let/Where expression 22.54/8.34 "gcd' (abs x) (abs y) where { 22.54/8.34 gcd' x vzw = gcd'2 x vzw; 22.54/8.34 gcd' x y = gcd'0 x y; 22.54/8.34 ; 22.54/8.34 gcd'0 x y = gcd' y (x `rem` y); 22.54/8.34 ; 22.54/8.34 gcd'1 True x vzw = x; 22.54/8.34 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 22.54/8.34 ; 22.54/8.34 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 22.54/8.34 gcd'2 wuu wuv = gcd'0 wuu wuv; 22.54/8.34 } 22.54/8.34 " 22.54/8.34 are unpacked to the following functions on top level 22.54/8.34 "gcd0Gcd'1 True x vzw = x; 22.54/8.34 gcd0Gcd'1 vzx vzy vzz = gcd0Gcd'0 vzy vzz; 22.54/8.34 " 22.54/8.34 "gcd0Gcd'2 x vzw = gcd0Gcd'1 (vzw == 0) x vzw; 22.54/8.34 gcd0Gcd'2 wuu wuv = gcd0Gcd'0 wuu wuv; 22.54/8.34 " 22.54/8.34 "gcd0Gcd' x vzw = gcd0Gcd'2 x vzw; 22.54/8.34 gcd0Gcd' x y = gcd0Gcd'0 x y; 22.54/8.34 " 22.54/8.34 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 22.54/8.34 " 22.54/8.34 The bindings of the following Let/Where expression 22.54/8.34 "reduce1 x y (y == 0) where { 22.54/8.34 d = gcd x y; 22.54/8.34 ; 22.54/8.34 reduce0 x y True = x `quot` d :% (y `quot` d); 22.54/8.34 ; 22.54/8.34 reduce1 x y True = error []; 22.54/8.34 reduce1 x y False = reduce0 x y otherwise; 22.54/8.34 } 22.54/8.34 " 22.54/8.34 are unpacked to the following functions on top level 22.54/8.34 "reduce2Reduce0 wxw wxx x y True = x `quot` reduce2D wxw wxx :% (y `quot` reduce2D wxw wxx); 22.54/8.34 " 22.54/8.34 "reduce2D wxw wxx = gcd wxw wxx; 22.54/8.34 " 22.54/8.34 "reduce2Reduce1 wxw wxx x y True = error []; 22.54/8.34 reduce2Reduce1 wxw wxx x y False = reduce2Reduce0 wxw wxx x y otherwise; 22.54/8.34 " 22.54/8.34 The bindings of the following Let/Where expression 22.54/8.34 "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 22.54/8.34 double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 22.54/8.40 ; 22.54/8.40 double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 22.54/8.40 ; 22.54/8.40 mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 22.54/8.40 ; 22.54/8.40 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 22.54/8.40 ; 22.54/8.40 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 22.54/8.40 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 22.54/8.40 ; 22.54/8.40 mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 22.54/8.40 ; 22.54/8.40 mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 22.54/8.40 ; 22.54/8.40 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 22.54/8.40 ; 22.54/8.40 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 22.54/8.40 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 22.54/8.40 ; 22.54/8.40 mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 22.54/8.40 ; 22.54/8.40 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 22.54/8.40 ; 22.54/8.40 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 22.54/8.40 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 22.54/8.40 ; 22.54/8.40 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 22.54/8.40 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 22.54/8.40 ; 22.54/8.40 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 22.54/8.40 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 22.54/8.40 ; 22.54/8.40 single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 22.54/8.40 ; 22.54/8.40 single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 22.54/8.40 ; 22.54/8.40 size_l = sizeFM fm_L; 22.54/8.40 ; 22.54/8.40 size_r = sizeFM fm_R; 22.54/8.40 } 22.54/8.40 " 22.54/8.40 are unpacked to the following functions on top level 22.54/8.40 "mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; 22.54/8.40 " 22.54/8.40 "mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wxy wxz fm_lr fm_r); 22.54/8.40 " 22.54/8.40 "mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 22.54/8.40 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 22.54/8.40 " 22.54/8.40 "mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyu; 22.54/8.40 " 22.54/8.40 "mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 22.54/8.40 " 22.54/8.40 "mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; 22.54/8.40 mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 22.54/8.40 " 22.54/8.40 "mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyv; 22.54/8.40 " 22.54/8.40 "mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 22.54/8.40 " 22.54/8.40 "mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 22.54/8.40 " 22.54/8.40 "mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 22.54/8.40 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); 22.54/8.40 " 22.54/8.40 "mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wxy wxz fm_l fm_rl) fm_rr; 22.54/8.40 " 22.54/8.40 "mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 22.54/8.40 " 22.54/8.40 "mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; 22.54/8.40 " 22.54/8.40 "mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wxy wxz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 22.54/8.40 " 22.54/8.40 "mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 22.54/8.40 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); 22.54/8.40 " 22.54/8.40 "mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; 22.54/8.40 mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 22.54/8.40 " 22.54/8.40 "mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wxy wxz fm_lrr fm_r); 22.54/8.40 " 22.54/8.40 "mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 22.54/8.40 " 22.54/8.40 The bindings of the following Let/Where expression 22.54/8.40 "foldl add fm key_elt_pairs where { 22.54/8.40 add fmap (key,elt) = addToFM_C combiner fmap key elt; 22.54/8.40 } 22.54/8.40 " 22.54/8.40 are unpacked to the following functions on top level 22.54/8.40 "addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 22.54/8.40 " 22.54/8.40 The bindings of the following Let/Where expression 22.54/8.40 "let { 22.54/8.40 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 22.54/8.40 } in result where { 22.54/8.40 balance_ok = True; 22.54/8.40 ; 22.54/8.40 left_ok = left_ok0 fm_l key fm_l; 22.54/8.40 ; 22.54/8.40 left_ok0 fm_l key EmptyFM = True; 22.54/8.40 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 22.54/8.40 biggest_left_key = fst (findMax fm_l); 22.54/8.40 } in biggest_left_key < key; 22.54/8.40 ; 22.54/8.40 left_size = sizeFM fm_l; 22.54/8.40 ; 22.54/8.40 right_ok = right_ok0 fm_r key fm_r; 22.54/8.40 ; 22.54/8.40 right_ok0 fm_r key EmptyFM = True; 22.54/8.40 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 22.54/8.40 smallest_right_key = fst (findMin fm_r); 22.54/8.40 } in key < smallest_right_key; 22.54/8.40 ; 22.54/8.40 right_size = sizeFM fm_r; 22.54/8.40 ; 22.54/8.40 unbox x = x; 22.54/8.40 } 22.54/8.40 " 22.54/8.40 are unpacked to the following functions on top level 22.54/8.40 "mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 22.54/8.40 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 22.54/8.40 " 22.54/8.40 "mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; 22.54/8.40 " 22.54/8.40 "mkBranchBalance_ok wyx wyy wyz = True; 22.54/8.40 " 22.54/8.40 "mkBranchUnbox wyx wyy wyz x = x; 22.54/8.40 " 22.54/8.40 "mkBranchRight_size wyx wyy wyz = sizeFM wyx; 22.54/8.40 " 22.54/8.40 "mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 22.54/8.40 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 22.54/8.40 " 22.54/8.40 "mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; 22.54/8.40 " 22.54/8.40 "mkBranchLeft_size wyx wyy wyz = sizeFM wyz; 22.54/8.40 " 22.54/8.40 The bindings of the following Let/Where expression 22.54/8.40 "let { 22.54/8.40 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 22.54/8.40 } in result" 22.54/8.40 are unpacked to the following functions on top level 22.54/8.40 "mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; 22.54/8.40 " 22.54/8.40 The bindings of the following Let/Where expression 22.54/8.40 "let { 22.54/8.40 biggest_left_key = fst (findMax fm_l); 22.54/8.40 } in biggest_left_key < key" 22.54/8.40 are unpacked to the following functions on top level 22.54/8.40 "mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 22.54/8.40 " 22.54/8.40 The bindings of the following Let/Where expression 22.54/8.40 "let { 22.54/8.40 smallest_right_key = fst (findMin fm_r); 22.54/8.40 } in key < smallest_right_key" 22.54/8.40 are unpacked to the following functions on top level 22.90/8.40 "mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 22.90/8.40 " 22.90/8.40 22.90/8.40 ---------------------------------------- 22.90/8.40 22.90/8.40 (12) 22.90/8.40 Obligation: 22.90/8.40 mainModule Main 22.90/8.40 module FiniteMap where { 22.90/8.40 import qualified Main; 22.90/8.40 import qualified Maybe; 22.90/8.40 import qualified Prelude; 22.90/8.40 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 22.90/8.40 22.90/8.40 instance (Eq a, Eq b) => Eq FiniteMap b a where { 22.90/8.40 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 22.90/8.40 } 22.90/8.40 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 22.90/8.40 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 22.90/8.40 22.90/8.40 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 22.90/8.40 22.90/8.40 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 22.90/8.40 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 22.90/8.40 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; 22.90/8.40 22.90/8.40 addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; 22.90/8.40 22.90/8.40 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); 22.90/8.40 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; 22.90/8.40 22.90/8.40 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; 22.90/8.40 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); 22.90/8.40 22.90/8.40 addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); 22.90/8.40 22.90/8.40 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 22.90/8.40 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 22.90/8.40 22.90/8.40 emptyFM :: FiniteMap a b; 22.90/8.40 emptyFM = EmptyFM; 22.90/8.40 22.90/8.40 findMax :: FiniteMap a b -> (a,b); 22.90/8.40 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 22.90/8.40 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 22.90/8.40 22.90/8.40 findMin :: FiniteMap b a -> (b,a); 22.90/8.40 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 22.90/8.40 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 22.90/8.40 22.90/8.40 fmToList :: FiniteMap a b -> [(a,b)]; 22.90/8.40 fmToList fm = foldFM fmToList0 [] fm; 22.90/8.40 22.90/8.40 fmToList0 key elt rest = (key,elt) : rest; 22.90/8.40 22.90/8.40 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 22.90/8.40 foldFM k z EmptyFM = z; 22.90/8.40 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 22.90/8.40 22.90/8.40 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 22.90/8.40 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 22.90/8.40 22.90/8.40 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_R fm_L key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_R fm_L + mkBalBranch6Size_r key elt fm_R fm_L < 2); 22.90/8.40 22.90/8.40 mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wxy wxz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 22.90/8.40 22.90/8.40 mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wxy wxz fm_lrr fm_r); 22.90/8.40 22.90/8.40 mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 22.90/8.40 22.90/8.40 mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; 22.90/8.40 22.90/8.40 mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; 22.90/8.40 mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 22.90/8.40 22.90/8.40 mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 22.90/8.40 22.90/8.40 mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 22.90/8.40 22.90/8.40 mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; 22.90/8.40 22.90/8.40 mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; 22.90/8.40 mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 22.90/8.40 22.90/8.40 mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 22.90/8.40 22.90/8.40 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 22.90/8.40 22.90/8.40 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 22.90/8.40 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 22.90/8.40 22.90/8.40 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 22.90/8.40 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); 22.90/8.40 22.90/8.40 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 22.90/8.40 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); 22.90/8.40 22.90/8.40 mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wxy wxz fm_l fm_rl) fm_rr; 22.90/8.40 22.90/8.40 mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wxy wxz fm_lr fm_r); 22.90/8.40 22.90/8.40 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyv; 22.90/8.40 22.90/8.40 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyu; 22.90/8.40 22.90/8.40 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 22.90/8.40 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 22.90/8.40 22.90/8.40 mkBranchBalance_ok wyx wyy wyz = True; 22.90/8.40 22.90/8.40 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; 22.90/8.40 22.90/8.40 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 22.90/8.40 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 22.90/8.40 22.90/8.40 mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 22.90/8.40 22.90/8.40 mkBranchLeft_size wyx wyy wyz = sizeFM wyz; 22.90/8.40 22.90/8.40 mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; 22.90/8.40 22.90/8.40 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; 22.90/8.40 22.90/8.40 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 22.90/8.40 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 22.90/8.40 22.90/8.40 mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 22.90/8.40 22.90/8.40 mkBranchRight_size wyx wyy wyz = sizeFM wyx; 22.90/8.40 22.90/8.40 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 22.90/8.40 mkBranchUnbox wyx wyy wyz x = x; 22.90/8.40 22.90/8.40 sIZE_RATIO :: Int; 22.90/8.40 sIZE_RATIO = 5; 22.90/8.40 22.90/8.40 sizeFM :: FiniteMap a b -> Int; 22.90/8.40 sizeFM EmptyFM = 0; 22.90/8.40 sizeFM (Branch vyu vyv size vyw vyx) = size; 22.90/8.40 22.90/8.40 unitFM :: a -> b -> FiniteMap a b; 22.90/8.40 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 22.90/8.40 22.90/8.40 } 22.90/8.40 module Maybe where { 22.90/8.40 import qualified FiniteMap; 22.90/8.40 import qualified Main; 22.90/8.40 import qualified Prelude; 22.90/8.40 } 22.90/8.40 module Main where { 22.90/8.40 import qualified FiniteMap; 22.90/8.40 import qualified Maybe; 22.90/8.40 import qualified Prelude; 22.90/8.40 } 22.90/8.40 22.90/8.40 ---------------------------------------- 22.90/8.40 22.90/8.40 (13) NumRed (SOUND) 22.90/8.40 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 22.90/8.40 ---------------------------------------- 22.90/8.40 22.90/8.40 (14) 22.90/8.40 Obligation: 22.90/8.40 mainModule Main 22.90/8.40 module FiniteMap where { 22.90/8.40 import qualified Main; 22.90/8.40 import qualified Maybe; 22.90/8.40 import qualified Prelude; 22.90/8.40 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 22.90/8.40 22.90/8.40 instance (Eq a, Eq b) => Eq FiniteMap a b where { 22.90/8.40 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 22.90/8.40 } 22.90/8.40 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 22.90/8.40 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 22.90/8.40 22.90/8.40 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 22.90/8.40 22.90/8.40 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 22.90/8.40 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 22.90/8.40 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; 22.90/8.40 22.90/8.40 addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; 22.90/8.40 22.90/8.40 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); 22.90/8.40 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; 22.90/8.40 22.90/8.40 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; 22.90/8.40 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); 22.90/8.40 22.90/8.40 addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); 22.90/8.40 22.90/8.40 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 22.90/8.40 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 22.90/8.40 22.90/8.40 emptyFM :: FiniteMap a b; 22.90/8.40 emptyFM = EmptyFM; 22.90/8.40 22.90/8.40 findMax :: FiniteMap a b -> (a,b); 22.90/8.40 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 22.90/8.40 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 22.90/8.40 22.90/8.40 findMin :: FiniteMap a b -> (a,b); 22.90/8.40 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 22.90/8.40 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 22.90/8.40 22.90/8.40 fmToList :: FiniteMap b a -> [(b,a)]; 22.90/8.40 fmToList fm = foldFM fmToList0 [] fm; 22.90/8.40 22.90/8.40 fmToList0 key elt rest = (key,elt) : rest; 22.90/8.40 22.90/8.40 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 22.90/8.40 foldFM k z EmptyFM = z; 22.90/8.40 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 22.90/8.40 22.90/8.40 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 22.90/8.40 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 22.90/8.40 22.90/8.40 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_R fm_L key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_R fm_L + mkBalBranch6Size_r key elt fm_R fm_L < Pos (Succ (Succ Zero))); 22.90/8.40 22.90/8.40 mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) key_rl elt_rl (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) wxy wxz fm_l fm_rll) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) key_r elt_r fm_rlr fm_rr); 22.90/8.40 22.90/8.40 mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) key_lr elt_lr (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) key_l elt_l fm_ll fm_lrl) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) wxy wxz fm_lrr fm_r); 22.90/8.40 22.90/8.40 mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 22.90/8.40 22.90/8.40 mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; 22.90/8.40 22.90/8.40 mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; 22.90/8.40 mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 22.90/8.40 22.90/8.40 mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < Pos (Succ (Succ Zero)) * sizeFM fm_rr); 22.90/8.40 22.90/8.40 mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 22.90/8.40 22.90/8.40 mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; 22.90/8.40 22.90/8.40 mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; 22.90/8.40 mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 22.90/8.40 22.90/8.40 mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < Pos (Succ (Succ Zero)) * sizeFM fm_ll); 22.90/8.40 22.90/8.40 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; 22.90/8.40 22.90/8.40 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 22.90/8.40 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 22.90/8.40 22.90/8.40 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 22.90/8.40 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); 22.90/8.40 22.90/8.40 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 22.90/8.40 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); 22.90/8.40 22.90/8.40 mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch (Pos (Succ (Succ (Succ Zero)))) key_r elt_r (mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) wxy wxz fm_l fm_rl) fm_rr; 22.90/8.40 22.90/8.40 mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) key_l elt_l fm_ll (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) wxy wxz fm_lr fm_r); 22.90/8.40 22.90/8.40 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyv; 22.90/8.40 22.90/8.40 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyu; 22.90/8.40 22.90/8.40 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 22.90/8.40 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 22.90/8.40 22.90/8.40 mkBranchBalance_ok wyx wyy wyz = True; 22.90/8.40 22.90/8.40 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; 22.90/8.40 22.90/8.40 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 22.90/8.40 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 22.90/8.40 22.90/8.40 mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 22.90/8.40 22.90/8.40 mkBranchLeft_size wyx wyy wyz = sizeFM wyz; 22.90/8.40 22.90/8.40 mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (Pos (Succ Zero) + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; 22.90/8.40 22.90/8.40 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; 22.90/8.40 22.90/8.40 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 22.90/8.40 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 22.90/8.40 22.90/8.40 mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 22.90/8.40 22.90/8.40 mkBranchRight_size wyx wyy wyz = sizeFM wyx; 22.90/8.40 22.90/8.40 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 22.90/8.40 mkBranchUnbox wyx wyy wyz x = x; 22.90/8.40 22.90/8.40 sIZE_RATIO :: Int; 22.90/8.40 sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); 22.90/8.40 22.90/8.40 sizeFM :: FiniteMap b a -> Int; 22.90/8.40 sizeFM EmptyFM = Pos Zero; 22.90/8.40 sizeFM (Branch vyu vyv size vyw vyx) = size; 22.90/8.40 22.90/8.40 unitFM :: b -> a -> FiniteMap b a; 22.90/8.40 unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; 22.90/8.40 22.90/8.40 } 22.90/8.40 module Maybe where { 22.90/8.40 import qualified FiniteMap; 22.90/8.40 import qualified Main; 22.90/8.40 import qualified Prelude; 22.90/8.40 } 22.90/8.40 module Main where { 22.90/8.40 import qualified FiniteMap; 22.90/8.40 import qualified Maybe; 22.90/8.40 import qualified Prelude; 22.90/8.40 } 22.90/8.40 22.90/8.40 ---------------------------------------- 22.90/8.40 22.90/8.40 (15) Narrow (SOUND) 22.90/8.40 Haskell To QDPs 22.90/8.40 22.90/8.40 digraph dp_graph { 22.90/8.40 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.addListToFM_C",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 22.90/8.40 3[label="FiniteMap.addListToFM_C xuu3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 22.90/8.40 4[label="FiniteMap.addListToFM_C xuu3 xuu4",fontsize=16,color="grey",shape="box"];4 -> 5[label="",style="dashed", color="grey", weight=3]; 22.90/8.40 5[label="FiniteMap.addListToFM_C xuu3 xuu4 xuu5",fontsize=16,color="black",shape="triangle"];5 -> 6[label="",style="solid", color="black", weight=3]; 22.90/8.40 6[label="foldl (FiniteMap.addListToFM_CAdd xuu3) xuu4 xuu5",fontsize=16,color="burlywood",shape="triangle"];3688[label="xuu5/xuu50 : xuu51",fontsize=10,color="white",style="solid",shape="box"];6 -> 3688[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3688 -> 7[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3689[label="xuu5/[]",fontsize=10,color="white",style="solid",shape="box"];6 -> 3689[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3689 -> 8[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 7[label="foldl (FiniteMap.addListToFM_CAdd xuu3) xuu4 (xuu50 : xuu51)",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 22.90/8.40 8[label="foldl (FiniteMap.addListToFM_CAdd xuu3) xuu4 []",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 22.90/8.40 9 -> 6[label="",style="dashed", color="red", weight=0]; 22.90/8.40 9[label="foldl (FiniteMap.addListToFM_CAdd xuu3) (FiniteMap.addListToFM_CAdd xuu3 xuu4 xuu50) xuu51",fontsize=16,color="magenta"];9 -> 11[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 9 -> 12[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 10[label="xuu4",fontsize=16,color="green",shape="box"];11[label="FiniteMap.addListToFM_CAdd xuu3 xuu4 xuu50",fontsize=16,color="burlywood",shape="box"];3690[label="xuu50/(xuu500,xuu501)",fontsize=10,color="white",style="solid",shape="box"];11 -> 3690[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3690 -> 13[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 12[label="xuu51",fontsize=16,color="green",shape="box"];13[label="FiniteMap.addListToFM_CAdd xuu3 xuu4 (xuu500,xuu501)",fontsize=16,color="black",shape="box"];13 -> 14[label="",style="solid", color="black", weight=3]; 22.90/8.40 14[label="FiniteMap.addToFM_C xuu3 xuu4 xuu500 xuu501",fontsize=16,color="burlywood",shape="triangle"];3691[label="xuu4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];14 -> 3691[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3691 -> 15[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3692[label="xuu4/FiniteMap.Branch xuu40 xuu41 xuu42 xuu43 xuu44",fontsize=10,color="white",style="solid",shape="box"];14 -> 3692[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3692 -> 16[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 15[label="FiniteMap.addToFM_C xuu3 FiniteMap.EmptyFM xuu500 xuu501",fontsize=16,color="black",shape="box"];15 -> 17[label="",style="solid", color="black", weight=3]; 22.90/8.40 16[label="FiniteMap.addToFM_C xuu3 (FiniteMap.Branch xuu40 xuu41 xuu42 xuu43 xuu44) xuu500 xuu501",fontsize=16,color="black",shape="box"];16 -> 18[label="",style="solid", color="black", weight=3]; 22.90/8.40 17[label="FiniteMap.addToFM_C4 xuu3 FiniteMap.EmptyFM xuu500 xuu501",fontsize=16,color="black",shape="box"];17 -> 19[label="",style="solid", color="black", weight=3]; 22.90/8.40 18[label="FiniteMap.addToFM_C3 xuu3 (FiniteMap.Branch xuu40 xuu41 xuu42 xuu43 xuu44) xuu500 xuu501",fontsize=16,color="black",shape="box"];18 -> 20[label="",style="solid", color="black", weight=3]; 22.90/8.40 19[label="FiniteMap.unitFM xuu500 xuu501",fontsize=16,color="black",shape="box"];19 -> 21[label="",style="solid", color="black", weight=3]; 22.90/8.40 20[label="FiniteMap.addToFM_C2 xuu3 xuu40 xuu41 xuu42 xuu43 xuu44 xuu500 xuu501 (xuu500 < xuu40)",fontsize=16,color="black",shape="box"];20 -> 22[label="",style="solid", color="black", weight=3]; 22.90/8.40 21[label="FiniteMap.Branch xuu500 xuu501 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];21 -> 23[label="",style="dashed", color="green", weight=3]; 22.90/8.40 21 -> 24[label="",style="dashed", color="green", weight=3]; 22.90/8.40 22[label="FiniteMap.addToFM_C2 xuu3 xuu40 xuu41 xuu42 xuu43 xuu44 xuu500 xuu501 (compare xuu500 xuu40 == LT)",fontsize=16,color="burlywood",shape="box"];3693[label="xuu500/xuu5000 : xuu5001",fontsize=10,color="white",style="solid",shape="box"];22 -> 3693[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3693 -> 25[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3694[label="xuu500/[]",fontsize=10,color="white",style="solid",shape="box"];22 -> 3694[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3694 -> 26[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 23[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];23 -> 27[label="",style="solid", color="black", weight=3]; 22.90/8.40 24 -> 23[label="",style="dashed", color="red", weight=0]; 22.90/8.40 24[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];25[label="FiniteMap.addToFM_C2 xuu3 xuu40 xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 (compare (xuu5000 : xuu5001) xuu40 == LT)",fontsize=16,color="burlywood",shape="box"];3695[label="xuu40/xuu400 : xuu401",fontsize=10,color="white",style="solid",shape="box"];25 -> 3695[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3695 -> 28[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3696[label="xuu40/[]",fontsize=10,color="white",style="solid",shape="box"];25 -> 3696[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3696 -> 29[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 26[label="FiniteMap.addToFM_C2 xuu3 xuu40 xuu41 xuu42 xuu43 xuu44 [] xuu501 (compare [] xuu40 == LT)",fontsize=16,color="burlywood",shape="box"];3697[label="xuu40/xuu400 : xuu401",fontsize=10,color="white",style="solid",shape="box"];26 -> 3697[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3697 -> 30[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3698[label="xuu40/[]",fontsize=10,color="white",style="solid",shape="box"];26 -> 3698[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3698 -> 31[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 27[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];28[label="FiniteMap.addToFM_C2 xuu3 (xuu400 : xuu401) xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 (compare (xuu5000 : xuu5001) (xuu400 : xuu401) == LT)",fontsize=16,color="black",shape="box"];28 -> 32[label="",style="solid", color="black", weight=3]; 22.90/8.40 29[label="FiniteMap.addToFM_C2 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 (compare (xuu5000 : xuu5001) [] == LT)",fontsize=16,color="black",shape="box"];29 -> 33[label="",style="solid", color="black", weight=3]; 22.90/8.40 30[label="FiniteMap.addToFM_C2 xuu3 (xuu400 : xuu401) xuu41 xuu42 xuu43 xuu44 [] xuu501 (compare [] (xuu400 : xuu401) == LT)",fontsize=16,color="black",shape="box"];30 -> 34[label="",style="solid", color="black", weight=3]; 22.90/8.40 31[label="FiniteMap.addToFM_C2 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 (compare [] [] == LT)",fontsize=16,color="black",shape="box"];31 -> 35[label="",style="solid", color="black", weight=3]; 22.90/8.40 32 -> 120[label="",style="dashed", color="red", weight=0]; 22.90/8.40 32[label="FiniteMap.addToFM_C2 xuu3 (xuu400 : xuu401) xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 (primCompAux xuu5000 xuu400 (compare xuu5001 xuu401) == LT)",fontsize=16,color="magenta"];32 -> 121[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 32 -> 122[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 32 -> 123[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 32 -> 124[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 32 -> 125[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 32 -> 126[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 32 -> 127[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 32 -> 128[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 32 -> 129[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 32 -> 130[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 32 -> 131[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 33[label="FiniteMap.addToFM_C2 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 (GT == LT)",fontsize=16,color="black",shape="box"];33 -> 37[label="",style="solid", color="black", weight=3]; 22.90/8.40 34[label="FiniteMap.addToFM_C2 xuu3 (xuu400 : xuu401) xuu41 xuu42 xuu43 xuu44 [] xuu501 (LT == LT)",fontsize=16,color="black",shape="box"];34 -> 38[label="",style="solid", color="black", weight=3]; 22.90/8.40 35[label="FiniteMap.addToFM_C2 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 (EQ == LT)",fontsize=16,color="black",shape="box"];35 -> 39[label="",style="solid", color="black", weight=3]; 22.90/8.40 121[label="xuu5001",fontsize=16,color="green",shape="box"];122[label="xuu501",fontsize=16,color="green",shape="box"];123[label="xuu401",fontsize=16,color="green",shape="box"];124[label="xuu42",fontsize=16,color="green",shape="box"];125[label="xuu43",fontsize=16,color="green",shape="box"];126[label="xuu44",fontsize=16,color="green",shape="box"];127[label="xuu3",fontsize=16,color="green",shape="box"];128[label="xuu41",fontsize=16,color="green",shape="box"];129[label="xuu400",fontsize=16,color="green",shape="box"];130[label="primCompAux xuu5000 xuu400 (compare xuu5001 xuu401)",fontsize=16,color="black",shape="triangle"];130 -> 147[label="",style="solid", color="black", weight=3]; 22.90/8.40 131[label="xuu5000",fontsize=16,color="green",shape="box"];120[label="FiniteMap.addToFM_C2 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (xuu32 == LT)",fontsize=16,color="burlywood",shape="triangle"];3699[label="xuu32/LT",fontsize=10,color="white",style="solid",shape="box"];120 -> 3699[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3699 -> 148[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3700[label="xuu32/EQ",fontsize=10,color="white",style="solid",shape="box"];120 -> 3700[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3700 -> 149[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3701[label="xuu32/GT",fontsize=10,color="white",style="solid",shape="box"];120 -> 3701[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3701 -> 150[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 37[label="FiniteMap.addToFM_C2 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 False",fontsize=16,color="black",shape="box"];37 -> 52[label="",style="solid", color="black", weight=3]; 22.90/8.40 38[label="FiniteMap.addToFM_C2 xuu3 (xuu400 : xuu401) xuu41 xuu42 xuu43 xuu44 [] xuu501 True",fontsize=16,color="black",shape="box"];38 -> 53[label="",style="solid", color="black", weight=3]; 22.90/8.40 39[label="FiniteMap.addToFM_C2 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 False",fontsize=16,color="black",shape="box"];39 -> 54[label="",style="solid", color="black", weight=3]; 22.90/8.40 147 -> 160[label="",style="dashed", color="red", weight=0]; 22.90/8.40 147[label="primCompAux0 (compare xuu5001 xuu401) (compare xuu5000 xuu400)",fontsize=16,color="magenta"];147 -> 161[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 147 -> 162[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 147 -> 163[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 148[label="FiniteMap.addToFM_C2 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (LT == LT)",fontsize=16,color="black",shape="box"];148 -> 164[label="",style="solid", color="black", weight=3]; 22.90/8.40 149[label="FiniteMap.addToFM_C2 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (EQ == LT)",fontsize=16,color="black",shape="box"];149 -> 165[label="",style="solid", color="black", weight=3]; 22.90/8.40 150[label="FiniteMap.addToFM_C2 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (GT == LT)",fontsize=16,color="black",shape="box"];150 -> 166[label="",style="solid", color="black", weight=3]; 22.90/8.40 52[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 (xuu5000 : xuu5001 > [])",fontsize=16,color="black",shape="box"];52 -> 72[label="",style="solid", color="black", weight=3]; 22.90/8.40 53 -> 73[label="",style="dashed", color="red", weight=0]; 22.90/8.40 53[label="FiniteMap.mkBalBranch (xuu400 : xuu401) xuu41 (FiniteMap.addToFM_C xuu3 xuu43 [] xuu501) xuu44",fontsize=16,color="magenta"];53 -> 74[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 54[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 ([] > [])",fontsize=16,color="black",shape="box"];54 -> 75[label="",style="solid", color="black", weight=3]; 22.90/8.40 161[label="compare xuu5000 xuu400",fontsize=16,color="blue",shape="box"];3702[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3702[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3702 -> 167[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3703[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3703[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3703 -> 168[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3704[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3704[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3704 -> 169[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3705[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3705[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3705 -> 170[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3706[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3706[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3706 -> 171[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3707[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3707[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3707 -> 172[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3708[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3708[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3708 -> 173[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3709[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3709[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3709 -> 174[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3710[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3710[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3710 -> 175[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3711[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3711[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3711 -> 176[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3712[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3712[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3712 -> 177[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3713[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3713[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3713 -> 178[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3714[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3714[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3714 -> 179[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3715[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3715[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3715 -> 180[label="",style="solid", color="blue", weight=3]; 22.90/8.40 162[label="xuu401",fontsize=16,color="green",shape="box"];163[label="xuu5001",fontsize=16,color="green",shape="box"];160[label="primCompAux0 (compare xuu37 xuu38) xuu39",fontsize=16,color="burlywood",shape="triangle"];3716[label="xuu39/LT",fontsize=10,color="white",style="solid",shape="box"];160 -> 3716[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3716 -> 181[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3717[label="xuu39/EQ",fontsize=10,color="white",style="solid",shape="box"];160 -> 3717[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3717 -> 182[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3718[label="xuu39/GT",fontsize=10,color="white",style="solid",shape="box"];160 -> 3718[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3718 -> 183[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 164[label="FiniteMap.addToFM_C2 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 True",fontsize=16,color="black",shape="box"];164 -> 191[label="",style="solid", color="black", weight=3]; 22.90/8.40 165[label="FiniteMap.addToFM_C2 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 False",fontsize=16,color="black",shape="triangle"];165 -> 192[label="",style="solid", color="black", weight=3]; 22.90/8.40 166 -> 165[label="",style="dashed", color="red", weight=0]; 22.90/8.40 166[label="FiniteMap.addToFM_C2 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 False",fontsize=16,color="magenta"];72 -> 94[label="",style="dashed", color="red", weight=0]; 22.90/8.40 72[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 (compare (xuu5000 : xuu5001) [] == GT)",fontsize=16,color="magenta"];72 -> 95[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 74 -> 14[label="",style="dashed", color="red", weight=0]; 22.90/8.40 74[label="FiniteMap.addToFM_C xuu3 xuu43 [] xuu501",fontsize=16,color="magenta"];74 -> 96[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 74 -> 97[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 73[label="FiniteMap.mkBalBranch (xuu400 : xuu401) xuu41 xuu29 xuu44",fontsize=16,color="black",shape="triangle"];73 -> 98[label="",style="solid", color="black", weight=3]; 22.90/8.40 75 -> 99[label="",style="dashed", color="red", weight=0]; 22.90/8.40 75[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 (compare [] [] == GT)",fontsize=16,color="magenta"];75 -> 100[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 167[label="compare xuu5000 xuu400",fontsize=16,color="burlywood",shape="triangle"];3719[label="xuu5000/xuu50000 :% xuu50001",fontsize=10,color="white",style="solid",shape="box"];167 -> 3719[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3719 -> 193[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 168[label="compare xuu5000 xuu400",fontsize=16,color="black",shape="triangle"];168 -> 194[label="",style="solid", color="black", weight=3]; 22.90/8.40 169[label="compare xuu5000 xuu400",fontsize=16,color="black",shape="triangle"];169 -> 195[label="",style="solid", color="black", weight=3]; 22.90/8.40 170[label="compare xuu5000 xuu400",fontsize=16,color="black",shape="triangle"];170 -> 196[label="",style="solid", color="black", weight=3]; 22.90/8.40 171[label="compare xuu5000 xuu400",fontsize=16,color="burlywood",shape="triangle"];3720[label="xuu5000/Integer xuu50000",fontsize=10,color="white",style="solid",shape="box"];171 -> 3720[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3720 -> 197[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 172[label="compare xuu5000 xuu400",fontsize=16,color="black",shape="triangle"];172 -> 198[label="",style="solid", color="black", weight=3]; 22.90/8.40 173[label="compare xuu5000 xuu400",fontsize=16,color="black",shape="triangle"];173 -> 199[label="",style="solid", color="black", weight=3]; 22.90/8.40 174[label="compare xuu5000 xuu400",fontsize=16,color="black",shape="triangle"];174 -> 200[label="",style="solid", color="black", weight=3]; 22.90/8.40 175[label="compare xuu5000 xuu400",fontsize=16,color="black",shape="triangle"];175 -> 201[label="",style="solid", color="black", weight=3]; 22.90/8.40 176[label="compare xuu5000 xuu400",fontsize=16,color="burlywood",shape="triangle"];3721[label="xuu5000/xuu50000 : xuu50001",fontsize=10,color="white",style="solid",shape="box"];176 -> 3721[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3721 -> 202[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3722[label="xuu5000/[]",fontsize=10,color="white",style="solid",shape="box"];176 -> 3722[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3722 -> 203[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 177[label="compare xuu5000 xuu400",fontsize=16,color="burlywood",shape="triangle"];3723[label="xuu5000/()",fontsize=10,color="white",style="solid",shape="box"];177 -> 3723[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3723 -> 204[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 178[label="compare xuu5000 xuu400",fontsize=16,color="black",shape="triangle"];178 -> 205[label="",style="solid", color="black", weight=3]; 22.90/8.40 179[label="compare xuu5000 xuu400",fontsize=16,color="black",shape="triangle"];179 -> 206[label="",style="solid", color="black", weight=3]; 22.90/8.40 180[label="compare xuu5000 xuu400",fontsize=16,color="black",shape="triangle"];180 -> 207[label="",style="solid", color="black", weight=3]; 22.90/8.40 181[label="primCompAux0 (compare xuu37 xuu38) LT",fontsize=16,color="black",shape="box"];181 -> 208[label="",style="solid", color="black", weight=3]; 22.90/8.40 182[label="primCompAux0 (compare xuu37 xuu38) EQ",fontsize=16,color="black",shape="box"];182 -> 209[label="",style="solid", color="black", weight=3]; 22.90/8.40 183[label="primCompAux0 (compare xuu37 xuu38) GT",fontsize=16,color="black",shape="box"];183 -> 210[label="",style="solid", color="black", weight=3]; 22.90/8.40 191 -> 73[label="",style="dashed", color="red", weight=0]; 22.90/8.40 191[label="FiniteMap.mkBalBranch (xuu19 : xuu20) xuu21 (FiniteMap.addToFM_C xuu18 xuu23 (xuu25 : xuu26) xuu27) xuu24",fontsize=16,color="magenta"];191 -> 215[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 191 -> 216[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 191 -> 217[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 191 -> 218[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 191 -> 219[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 192[label="FiniteMap.addToFM_C1 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (xuu25 : xuu26 > xuu19 : xuu20)",fontsize=16,color="black",shape="box"];192 -> 220[label="",style="solid", color="black", weight=3]; 22.90/8.40 95[label="compare (xuu5000 : xuu5001) []",fontsize=16,color="black",shape="box"];95 -> 151[label="",style="solid", color="black", weight=3]; 22.90/8.40 94[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 (xuu30 == GT)",fontsize=16,color="burlywood",shape="triangle"];3724[label="xuu30/LT",fontsize=10,color="white",style="solid",shape="box"];94 -> 3724[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3724 -> 152[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3725[label="xuu30/EQ",fontsize=10,color="white",style="solid",shape="box"];94 -> 3725[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3725 -> 153[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3726[label="xuu30/GT",fontsize=10,color="white",style="solid",shape="box"];94 -> 3726[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3726 -> 154[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 96[label="xuu43",fontsize=16,color="green",shape="box"];97[label="[]",fontsize=16,color="green",shape="box"];98[label="FiniteMap.mkBalBranch6 (xuu400 : xuu401) xuu41 xuu29 xuu44",fontsize=16,color="black",shape="box"];98 -> 155[label="",style="solid", color="black", weight=3]; 22.90/8.40 100[label="compare [] []",fontsize=16,color="black",shape="box"];100 -> 156[label="",style="solid", color="black", weight=3]; 22.90/8.40 99[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 (xuu31 == GT)",fontsize=16,color="burlywood",shape="triangle"];3727[label="xuu31/LT",fontsize=10,color="white",style="solid",shape="box"];99 -> 3727[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3727 -> 157[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3728[label="xuu31/EQ",fontsize=10,color="white",style="solid",shape="box"];99 -> 3728[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3728 -> 158[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3729[label="xuu31/GT",fontsize=10,color="white",style="solid",shape="box"];99 -> 3729[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3729 -> 159[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 193[label="compare (xuu50000 :% xuu50001) xuu400",fontsize=16,color="burlywood",shape="box"];3730[label="xuu400/xuu4000 :% xuu4001",fontsize=10,color="white",style="solid",shape="box"];193 -> 3730[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3730 -> 221[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 194[label="compare3 xuu5000 xuu400",fontsize=16,color="black",shape="box"];194 -> 222[label="",style="solid", color="black", weight=3]; 22.90/8.40 195[label="compare3 xuu5000 xuu400",fontsize=16,color="black",shape="box"];195 -> 223[label="",style="solid", color="black", weight=3]; 22.90/8.40 196[label="compare3 xuu5000 xuu400",fontsize=16,color="black",shape="box"];196 -> 224[label="",style="solid", color="black", weight=3]; 22.90/8.40 197[label="compare (Integer xuu50000) xuu400",fontsize=16,color="burlywood",shape="box"];3731[label="xuu400/Integer xuu4000",fontsize=10,color="white",style="solid",shape="box"];197 -> 3731[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3731 -> 225[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 198[label="primCmpChar xuu5000 xuu400",fontsize=16,color="burlywood",shape="box"];3732[label="xuu5000/Char xuu50000",fontsize=10,color="white",style="solid",shape="box"];198 -> 3732[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3732 -> 226[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 199[label="compare3 xuu5000 xuu400",fontsize=16,color="black",shape="box"];199 -> 227[label="",style="solid", color="black", weight=3]; 22.90/8.40 200[label="primCmpInt xuu5000 xuu400",fontsize=16,color="burlywood",shape="triangle"];3733[label="xuu5000/Pos xuu50000",fontsize=10,color="white",style="solid",shape="box"];200 -> 3733[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3733 -> 228[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3734[label="xuu5000/Neg xuu50000",fontsize=10,color="white",style="solid",shape="box"];200 -> 3734[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3734 -> 229[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 201[label="compare3 xuu5000 xuu400",fontsize=16,color="black",shape="box"];201 -> 230[label="",style="solid", color="black", weight=3]; 22.90/8.40 202[label="compare (xuu50000 : xuu50001) xuu400",fontsize=16,color="burlywood",shape="box"];3735[label="xuu400/xuu4000 : xuu4001",fontsize=10,color="white",style="solid",shape="box"];202 -> 3735[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3735 -> 231[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3736[label="xuu400/[]",fontsize=10,color="white",style="solid",shape="box"];202 -> 3736[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3736 -> 232[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 203[label="compare [] xuu400",fontsize=16,color="burlywood",shape="box"];3737[label="xuu400/xuu4000 : xuu4001",fontsize=10,color="white",style="solid",shape="box"];203 -> 3737[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3737 -> 233[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3738[label="xuu400/[]",fontsize=10,color="white",style="solid",shape="box"];203 -> 3738[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3738 -> 234[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 204[label="compare () xuu400",fontsize=16,color="burlywood",shape="box"];3739[label="xuu400/()",fontsize=10,color="white",style="solid",shape="box"];204 -> 3739[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3739 -> 235[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 205[label="primCmpDouble xuu5000 xuu400",fontsize=16,color="burlywood",shape="box"];3740[label="xuu5000/Double xuu50000 xuu50001",fontsize=10,color="white",style="solid",shape="box"];205 -> 3740[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3740 -> 236[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 206[label="primCmpFloat xuu5000 xuu400",fontsize=16,color="burlywood",shape="box"];3741[label="xuu5000/Float xuu50000 xuu50001",fontsize=10,color="white",style="solid",shape="box"];206 -> 3741[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3741 -> 237[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 207[label="compare3 xuu5000 xuu400",fontsize=16,color="black",shape="box"];207 -> 238[label="",style="solid", color="black", weight=3]; 22.90/8.40 208[label="LT",fontsize=16,color="green",shape="box"];209[label="compare xuu37 xuu38",fontsize=16,color="blue",shape="box"];3742[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3742[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3742 -> 239[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3743[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3743[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3743 -> 240[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3744[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3744[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3744 -> 241[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3745[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3745[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3745 -> 242[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3746[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3746[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3746 -> 243[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3747[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3747[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3747 -> 244[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3748[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3748[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3748 -> 245[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3749[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3749[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3749 -> 246[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3750[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3750[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3750 -> 247[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3751[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3751[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3751 -> 248[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3752[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3752[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3752 -> 249[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3753[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3753[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3753 -> 250[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3754[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3754[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3754 -> 251[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3755[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3755[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3755 -> 252[label="",style="solid", color="blue", weight=3]; 22.90/8.40 210[label="GT",fontsize=16,color="green",shape="box"];215[label="xuu20",fontsize=16,color="green",shape="box"];216[label="xuu24",fontsize=16,color="green",shape="box"];217[label="xuu19",fontsize=16,color="green",shape="box"];218 -> 14[label="",style="dashed", color="red", weight=0]; 22.90/8.40 218[label="FiniteMap.addToFM_C xuu18 xuu23 (xuu25 : xuu26) xuu27",fontsize=16,color="magenta"];218 -> 259[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 218 -> 260[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 218 -> 261[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 218 -> 262[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 219[label="xuu21",fontsize=16,color="green",shape="box"];220 -> 263[label="",style="dashed", color="red", weight=0]; 22.90/8.40 220[label="FiniteMap.addToFM_C1 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (compare (xuu25 : xuu26) (xuu19 : xuu20) == GT)",fontsize=16,color="magenta"];220 -> 264[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 151[label="GT",fontsize=16,color="green",shape="box"];152[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 (LT == GT)",fontsize=16,color="black",shape="box"];152 -> 184[label="",style="solid", color="black", weight=3]; 22.90/8.40 153[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 (EQ == GT)",fontsize=16,color="black",shape="box"];153 -> 185[label="",style="solid", color="black", weight=3]; 22.90/8.40 154[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 (GT == GT)",fontsize=16,color="black",shape="box"];154 -> 186[label="",style="solid", color="black", weight=3]; 22.90/8.40 155[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 (FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29 + FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29 < Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];155 -> 187[label="",style="solid", color="black", weight=3]; 22.90/8.40 156[label="EQ",fontsize=16,color="green",shape="box"];157[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 (LT == GT)",fontsize=16,color="black",shape="box"];157 -> 188[label="",style="solid", color="black", weight=3]; 22.90/8.40 158[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 (EQ == GT)",fontsize=16,color="black",shape="box"];158 -> 189[label="",style="solid", color="black", weight=3]; 22.90/8.40 159[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 (GT == GT)",fontsize=16,color="black",shape="box"];159 -> 190[label="",style="solid", color="black", weight=3]; 22.90/8.40 221[label="compare (xuu50000 :% xuu50001) (xuu4000 :% xuu4001)",fontsize=16,color="black",shape="box"];221 -> 265[label="",style="solid", color="black", weight=3]; 22.90/8.40 222[label="compare2 xuu5000 xuu400 (xuu5000 == xuu400)",fontsize=16,color="burlywood",shape="box"];3756[label="xuu5000/(xuu50000,xuu50001)",fontsize=10,color="white",style="solid",shape="box"];222 -> 3756[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3756 -> 266[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 223[label="compare2 xuu5000 xuu400 (xuu5000 == xuu400)",fontsize=16,color="burlywood",shape="box"];3757[label="xuu5000/Nothing",fontsize=10,color="white",style="solid",shape="box"];223 -> 3757[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3757 -> 267[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3758[label="xuu5000/Just xuu50000",fontsize=10,color="white",style="solid",shape="box"];223 -> 3758[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3758 -> 268[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 224[label="compare2 xuu5000 xuu400 (xuu5000 == xuu400)",fontsize=16,color="burlywood",shape="box"];3759[label="xuu5000/(xuu50000,xuu50001,xuu50002)",fontsize=10,color="white",style="solid",shape="box"];224 -> 3759[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3759 -> 269[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 225[label="compare (Integer xuu50000) (Integer xuu4000)",fontsize=16,color="black",shape="box"];225 -> 270[label="",style="solid", color="black", weight=3]; 22.90/8.40 226[label="primCmpChar (Char xuu50000) xuu400",fontsize=16,color="burlywood",shape="box"];3760[label="xuu400/Char xuu4000",fontsize=10,color="white",style="solid",shape="box"];226 -> 3760[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3760 -> 271[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 227[label="compare2 xuu5000 xuu400 (xuu5000 == xuu400)",fontsize=16,color="burlywood",shape="box"];3761[label="xuu5000/LT",fontsize=10,color="white",style="solid",shape="box"];227 -> 3761[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3761 -> 272[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3762[label="xuu5000/EQ",fontsize=10,color="white",style="solid",shape="box"];227 -> 3762[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3762 -> 273[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3763[label="xuu5000/GT",fontsize=10,color="white",style="solid",shape="box"];227 -> 3763[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3763 -> 274[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 228[label="primCmpInt (Pos xuu50000) xuu400",fontsize=16,color="burlywood",shape="box"];3764[label="xuu50000/Succ xuu500000",fontsize=10,color="white",style="solid",shape="box"];228 -> 3764[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3764 -> 275[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3765[label="xuu50000/Zero",fontsize=10,color="white",style="solid",shape="box"];228 -> 3765[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3765 -> 276[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 229[label="primCmpInt (Neg xuu50000) xuu400",fontsize=16,color="burlywood",shape="box"];3766[label="xuu50000/Succ xuu500000",fontsize=10,color="white",style="solid",shape="box"];229 -> 3766[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3766 -> 277[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3767[label="xuu50000/Zero",fontsize=10,color="white",style="solid",shape="box"];229 -> 3767[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3767 -> 278[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 230[label="compare2 xuu5000 xuu400 (xuu5000 == xuu400)",fontsize=16,color="burlywood",shape="box"];3768[label="xuu5000/False",fontsize=10,color="white",style="solid",shape="box"];230 -> 3768[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3768 -> 279[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3769[label="xuu5000/True",fontsize=10,color="white",style="solid",shape="box"];230 -> 3769[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3769 -> 280[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 231[label="compare (xuu50000 : xuu50001) (xuu4000 : xuu4001)",fontsize=16,color="black",shape="box"];231 -> 281[label="",style="solid", color="black", weight=3]; 22.90/8.40 232[label="compare (xuu50000 : xuu50001) []",fontsize=16,color="black",shape="box"];232 -> 282[label="",style="solid", color="black", weight=3]; 22.90/8.40 233[label="compare [] (xuu4000 : xuu4001)",fontsize=16,color="black",shape="box"];233 -> 283[label="",style="solid", color="black", weight=3]; 22.90/8.40 234[label="compare [] []",fontsize=16,color="black",shape="box"];234 -> 284[label="",style="solid", color="black", weight=3]; 22.90/8.40 235[label="compare () ()",fontsize=16,color="black",shape="box"];235 -> 285[label="",style="solid", color="black", weight=3]; 22.90/8.40 236[label="primCmpDouble (Double xuu50000 xuu50001) xuu400",fontsize=16,color="burlywood",shape="box"];3770[label="xuu50001/Pos xuu500010",fontsize=10,color="white",style="solid",shape="box"];236 -> 3770[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3770 -> 286[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3771[label="xuu50001/Neg xuu500010",fontsize=10,color="white",style="solid",shape="box"];236 -> 3771[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3771 -> 287[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 237[label="primCmpFloat (Float xuu50000 xuu50001) xuu400",fontsize=16,color="burlywood",shape="box"];3772[label="xuu50001/Pos xuu500010",fontsize=10,color="white",style="solid",shape="box"];237 -> 3772[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3772 -> 288[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3773[label="xuu50001/Neg xuu500010",fontsize=10,color="white",style="solid",shape="box"];237 -> 3773[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3773 -> 289[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 238[label="compare2 xuu5000 xuu400 (xuu5000 == xuu400)",fontsize=16,color="burlywood",shape="box"];3774[label="xuu5000/Left xuu50000",fontsize=10,color="white",style="solid",shape="box"];238 -> 3774[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3774 -> 290[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3775[label="xuu5000/Right xuu50000",fontsize=10,color="white",style="solid",shape="box"];238 -> 3775[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3775 -> 291[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 239 -> 167[label="",style="dashed", color="red", weight=0]; 22.90/8.40 239[label="compare xuu37 xuu38",fontsize=16,color="magenta"];239 -> 292[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 239 -> 293[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 240 -> 168[label="",style="dashed", color="red", weight=0]; 22.90/8.40 240[label="compare xuu37 xuu38",fontsize=16,color="magenta"];240 -> 294[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 240 -> 295[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 241 -> 169[label="",style="dashed", color="red", weight=0]; 22.90/8.40 241[label="compare xuu37 xuu38",fontsize=16,color="magenta"];241 -> 296[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 241 -> 297[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 242 -> 170[label="",style="dashed", color="red", weight=0]; 22.90/8.40 242[label="compare xuu37 xuu38",fontsize=16,color="magenta"];242 -> 298[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 242 -> 299[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 243 -> 171[label="",style="dashed", color="red", weight=0]; 22.90/8.40 243[label="compare xuu37 xuu38",fontsize=16,color="magenta"];243 -> 300[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 243 -> 301[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 244 -> 172[label="",style="dashed", color="red", weight=0]; 22.90/8.40 244[label="compare xuu37 xuu38",fontsize=16,color="magenta"];244 -> 302[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 244 -> 303[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 245 -> 173[label="",style="dashed", color="red", weight=0]; 22.90/8.40 245[label="compare xuu37 xuu38",fontsize=16,color="magenta"];245 -> 304[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 245 -> 305[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 246 -> 174[label="",style="dashed", color="red", weight=0]; 22.90/8.40 246[label="compare xuu37 xuu38",fontsize=16,color="magenta"];246 -> 306[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 246 -> 307[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 247 -> 175[label="",style="dashed", color="red", weight=0]; 22.90/8.40 247[label="compare xuu37 xuu38",fontsize=16,color="magenta"];247 -> 308[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 247 -> 309[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 248 -> 176[label="",style="dashed", color="red", weight=0]; 22.90/8.40 248[label="compare xuu37 xuu38",fontsize=16,color="magenta"];248 -> 310[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 248 -> 311[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 249 -> 177[label="",style="dashed", color="red", weight=0]; 22.90/8.40 249[label="compare xuu37 xuu38",fontsize=16,color="magenta"];249 -> 312[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 249 -> 313[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 250 -> 178[label="",style="dashed", color="red", weight=0]; 22.90/8.40 250[label="compare xuu37 xuu38",fontsize=16,color="magenta"];250 -> 314[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 250 -> 315[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 251 -> 179[label="",style="dashed", color="red", weight=0]; 22.90/8.40 251[label="compare xuu37 xuu38",fontsize=16,color="magenta"];251 -> 316[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 251 -> 317[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 252 -> 180[label="",style="dashed", color="red", weight=0]; 22.90/8.40 252[label="compare xuu37 xuu38",fontsize=16,color="magenta"];252 -> 318[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 252 -> 319[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 259[label="xuu23",fontsize=16,color="green",shape="box"];260[label="xuu18",fontsize=16,color="green",shape="box"];261[label="xuu25 : xuu26",fontsize=16,color="green",shape="box"];262[label="xuu27",fontsize=16,color="green",shape="box"];264 -> 176[label="",style="dashed", color="red", weight=0]; 22.90/8.40 264[label="compare (xuu25 : xuu26) (xuu19 : xuu20)",fontsize=16,color="magenta"];264 -> 320[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 264 -> 321[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 263[label="FiniteMap.addToFM_C1 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (xuu42 == GT)",fontsize=16,color="burlywood",shape="triangle"];3776[label="xuu42/LT",fontsize=10,color="white",style="solid",shape="box"];263 -> 3776[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3776 -> 322[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3777[label="xuu42/EQ",fontsize=10,color="white",style="solid",shape="box"];263 -> 3777[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3777 -> 323[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3778[label="xuu42/GT",fontsize=10,color="white",style="solid",shape="box"];263 -> 3778[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3778 -> 324[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 184[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 False",fontsize=16,color="black",shape="triangle"];184 -> 211[label="",style="solid", color="black", weight=3]; 22.90/8.40 185 -> 184[label="",style="dashed", color="red", weight=0]; 22.90/8.40 185[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 False",fontsize=16,color="magenta"];186[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 True",fontsize=16,color="black",shape="box"];186 -> 212[label="",style="solid", color="black", weight=3]; 22.90/8.40 187 -> 213[label="",style="dashed", color="red", weight=0]; 22.90/8.40 187[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 (compare (FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29 + FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29) (Pos (Succ (Succ Zero))) == LT)",fontsize=16,color="magenta"];187 -> 214[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 188[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 False",fontsize=16,color="black",shape="triangle"];188 -> 253[label="",style="solid", color="black", weight=3]; 22.90/8.40 189 -> 188[label="",style="dashed", color="red", weight=0]; 22.90/8.40 189[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 False",fontsize=16,color="magenta"];190[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 True",fontsize=16,color="black",shape="box"];190 -> 254[label="",style="solid", color="black", weight=3]; 22.90/8.40 265[label="compare (xuu50000 * xuu4001) (xuu4000 * xuu50001)",fontsize=16,color="blue",shape="box"];3779[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];265 -> 3779[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3779 -> 337[label="",style="solid", color="blue", weight=3]; 22.90/8.40 3780[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];265 -> 3780[label="",style="solid", color="blue", weight=9]; 22.90/8.40 3780 -> 338[label="",style="solid", color="blue", weight=3]; 22.90/8.40 266[label="compare2 (xuu50000,xuu50001) xuu400 ((xuu50000,xuu50001) == xuu400)",fontsize=16,color="burlywood",shape="box"];3781[label="xuu400/(xuu4000,xuu4001)",fontsize=10,color="white",style="solid",shape="box"];266 -> 3781[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3781 -> 339[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 267[label="compare2 Nothing xuu400 (Nothing == xuu400)",fontsize=16,color="burlywood",shape="box"];3782[label="xuu400/Nothing",fontsize=10,color="white",style="solid",shape="box"];267 -> 3782[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3782 -> 340[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3783[label="xuu400/Just xuu4000",fontsize=10,color="white",style="solid",shape="box"];267 -> 3783[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3783 -> 341[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 268[label="compare2 (Just xuu50000) xuu400 (Just xuu50000 == xuu400)",fontsize=16,color="burlywood",shape="box"];3784[label="xuu400/Nothing",fontsize=10,color="white",style="solid",shape="box"];268 -> 3784[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3784 -> 342[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3785[label="xuu400/Just xuu4000",fontsize=10,color="white",style="solid",shape="box"];268 -> 3785[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3785 -> 343[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 269[label="compare2 (xuu50000,xuu50001,xuu50002) xuu400 ((xuu50000,xuu50001,xuu50002) == xuu400)",fontsize=16,color="burlywood",shape="box"];3786[label="xuu400/(xuu4000,xuu4001,xuu4002)",fontsize=10,color="white",style="solid",shape="box"];269 -> 3786[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3786 -> 344[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 270 -> 200[label="",style="dashed", color="red", weight=0]; 22.90/8.40 270[label="primCmpInt xuu50000 xuu4000",fontsize=16,color="magenta"];270 -> 345[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 270 -> 346[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 271[label="primCmpChar (Char xuu50000) (Char xuu4000)",fontsize=16,color="black",shape="box"];271 -> 347[label="",style="solid", color="black", weight=3]; 22.90/8.40 272[label="compare2 LT xuu400 (LT == xuu400)",fontsize=16,color="burlywood",shape="box"];3787[label="xuu400/LT",fontsize=10,color="white",style="solid",shape="box"];272 -> 3787[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3787 -> 348[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3788[label="xuu400/EQ",fontsize=10,color="white",style="solid",shape="box"];272 -> 3788[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3788 -> 349[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3789[label="xuu400/GT",fontsize=10,color="white",style="solid",shape="box"];272 -> 3789[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3789 -> 350[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 273[label="compare2 EQ xuu400 (EQ == xuu400)",fontsize=16,color="burlywood",shape="box"];3790[label="xuu400/LT",fontsize=10,color="white",style="solid",shape="box"];273 -> 3790[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3790 -> 351[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3791[label="xuu400/EQ",fontsize=10,color="white",style="solid",shape="box"];273 -> 3791[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3791 -> 352[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3792[label="xuu400/GT",fontsize=10,color="white",style="solid",shape="box"];273 -> 3792[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3792 -> 353[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 274[label="compare2 GT xuu400 (GT == xuu400)",fontsize=16,color="burlywood",shape="box"];3793[label="xuu400/LT",fontsize=10,color="white",style="solid",shape="box"];274 -> 3793[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3793 -> 354[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3794[label="xuu400/EQ",fontsize=10,color="white",style="solid",shape="box"];274 -> 3794[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3794 -> 355[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3795[label="xuu400/GT",fontsize=10,color="white",style="solid",shape="box"];274 -> 3795[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3795 -> 356[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 275[label="primCmpInt (Pos (Succ xuu500000)) xuu400",fontsize=16,color="burlywood",shape="box"];3796[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];275 -> 3796[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3796 -> 357[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3797[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];275 -> 3797[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3797 -> 358[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 276[label="primCmpInt (Pos Zero) xuu400",fontsize=16,color="burlywood",shape="box"];3798[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];276 -> 3798[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3798 -> 359[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3799[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];276 -> 3799[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3799 -> 360[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 277[label="primCmpInt (Neg (Succ xuu500000)) xuu400",fontsize=16,color="burlywood",shape="box"];3800[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];277 -> 3800[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3800 -> 361[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3801[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];277 -> 3801[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3801 -> 362[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 278[label="primCmpInt (Neg Zero) xuu400",fontsize=16,color="burlywood",shape="box"];3802[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];278 -> 3802[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3802 -> 363[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3803[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];278 -> 3803[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3803 -> 364[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 279[label="compare2 False xuu400 (False == xuu400)",fontsize=16,color="burlywood",shape="box"];3804[label="xuu400/False",fontsize=10,color="white",style="solid",shape="box"];279 -> 3804[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3804 -> 365[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3805[label="xuu400/True",fontsize=10,color="white",style="solid",shape="box"];279 -> 3805[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3805 -> 366[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 280[label="compare2 True xuu400 (True == xuu400)",fontsize=16,color="burlywood",shape="box"];3806[label="xuu400/False",fontsize=10,color="white",style="solid",shape="box"];280 -> 3806[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3806 -> 367[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 3807[label="xuu400/True",fontsize=10,color="white",style="solid",shape="box"];280 -> 3807[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3807 -> 368[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 281 -> 130[label="",style="dashed", color="red", weight=0]; 22.90/8.40 281[label="primCompAux xuu50000 xuu4000 (compare xuu50001 xuu4001)",fontsize=16,color="magenta"];281 -> 369[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 281 -> 370[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 281 -> 371[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 281 -> 372[label="",style="dashed", color="magenta", weight=3]; 22.90/8.40 282[label="GT",fontsize=16,color="green",shape="box"];283[label="LT",fontsize=16,color="green",shape="box"];284[label="EQ",fontsize=16,color="green",shape="box"];285[label="EQ",fontsize=16,color="green",shape="box"];286[label="primCmpDouble (Double xuu50000 (Pos xuu500010)) xuu400",fontsize=16,color="burlywood",shape="box"];3808[label="xuu400/Double xuu4000 xuu4001",fontsize=10,color="white",style="solid",shape="box"];286 -> 3808[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3808 -> 373[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 287[label="primCmpDouble (Double xuu50000 (Neg xuu500010)) xuu400",fontsize=16,color="burlywood",shape="box"];3809[label="xuu400/Double xuu4000 xuu4001",fontsize=10,color="white",style="solid",shape="box"];287 -> 3809[label="",style="solid", color="burlywood", weight=9]; 22.90/8.40 3809 -> 374[label="",style="solid", color="burlywood", weight=3]; 22.90/8.40 288[label="primCmpFloat (Float xuu50000 (Pos xuu500010)) xuu400",fontsize=16,color="burlywood",shape="box"];3810[label="xuu400/Float xuu4000 xuu4001",fontsize=10,color="white",style="solid",shape="box"];288 -> 3810[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3810 -> 375[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 289[label="primCmpFloat (Float xuu50000 (Neg xuu500010)) xuu400",fontsize=16,color="burlywood",shape="box"];3811[label="xuu400/Float xuu4000 xuu4001",fontsize=10,color="white",style="solid",shape="box"];289 -> 3811[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3811 -> 376[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 290[label="compare2 (Left xuu50000) xuu400 (Left xuu50000 == xuu400)",fontsize=16,color="burlywood",shape="box"];3812[label="xuu400/Left xuu4000",fontsize=10,color="white",style="solid",shape="box"];290 -> 3812[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3812 -> 377[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3813[label="xuu400/Right xuu4000",fontsize=10,color="white",style="solid",shape="box"];290 -> 3813[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3813 -> 378[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 291[label="compare2 (Right xuu50000) xuu400 (Right xuu50000 == xuu400)",fontsize=16,color="burlywood",shape="box"];3814[label="xuu400/Left xuu4000",fontsize=10,color="white",style="solid",shape="box"];291 -> 3814[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3814 -> 379[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3815[label="xuu400/Right xuu4000",fontsize=10,color="white",style="solid",shape="box"];291 -> 3815[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3815 -> 380[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 292[label="xuu38",fontsize=16,color="green",shape="box"];293[label="xuu37",fontsize=16,color="green",shape="box"];294[label="xuu38",fontsize=16,color="green",shape="box"];295[label="xuu37",fontsize=16,color="green",shape="box"];296[label="xuu38",fontsize=16,color="green",shape="box"];297[label="xuu37",fontsize=16,color="green",shape="box"];298[label="xuu38",fontsize=16,color="green",shape="box"];299[label="xuu37",fontsize=16,color="green",shape="box"];300[label="xuu38",fontsize=16,color="green",shape="box"];301[label="xuu37",fontsize=16,color="green",shape="box"];302[label="xuu38",fontsize=16,color="green",shape="box"];303[label="xuu37",fontsize=16,color="green",shape="box"];304[label="xuu38",fontsize=16,color="green",shape="box"];305[label="xuu37",fontsize=16,color="green",shape="box"];306[label="xuu38",fontsize=16,color="green",shape="box"];307[label="xuu37",fontsize=16,color="green",shape="box"];308[label="xuu38",fontsize=16,color="green",shape="box"];309[label="xuu37",fontsize=16,color="green",shape="box"];310[label="xuu38",fontsize=16,color="green",shape="box"];311[label="xuu37",fontsize=16,color="green",shape="box"];312[label="xuu38",fontsize=16,color="green",shape="box"];313[label="xuu37",fontsize=16,color="green",shape="box"];314[label="xuu38",fontsize=16,color="green",shape="box"];315[label="xuu37",fontsize=16,color="green",shape="box"];316[label="xuu38",fontsize=16,color="green",shape="box"];317[label="xuu37",fontsize=16,color="green",shape="box"];318[label="xuu38",fontsize=16,color="green",shape="box"];319[label="xuu37",fontsize=16,color="green",shape="box"];320[label="xuu19 : xuu20",fontsize=16,color="green",shape="box"];321[label="xuu25 : xuu26",fontsize=16,color="green",shape="box"];322[label="FiniteMap.addToFM_C1 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (LT == GT)",fontsize=16,color="black",shape="box"];322 -> 381[label="",style="solid", color="black", weight=3]; 22.90/8.41 323[label="FiniteMap.addToFM_C1 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (EQ == GT)",fontsize=16,color="black",shape="box"];323 -> 382[label="",style="solid", color="black", weight=3]; 22.90/8.41 324[label="FiniteMap.addToFM_C1 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (GT == GT)",fontsize=16,color="black",shape="box"];324 -> 383[label="",style="solid", color="black", weight=3]; 22.90/8.41 211[label="FiniteMap.addToFM_C0 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 otherwise",fontsize=16,color="black",shape="box"];211 -> 255[label="",style="solid", color="black", weight=3]; 22.90/8.41 212 -> 256[label="",style="dashed", color="red", weight=0]; 22.90/8.41 212[label="FiniteMap.mkBalBranch [] xuu41 xuu43 (FiniteMap.addToFM_C xuu3 xuu44 (xuu5000 : xuu5001) xuu501)",fontsize=16,color="magenta"];212 -> 257[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 214 -> 174[label="",style="dashed", color="red", weight=0]; 22.90/8.41 214[label="compare (FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29 + FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];214 -> 325[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 214 -> 326[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 213[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 (xuu40 == LT)",fontsize=16,color="burlywood",shape="triangle"];3816[label="xuu40/LT",fontsize=10,color="white",style="solid",shape="box"];213 -> 3816[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3816 -> 327[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3817[label="xuu40/EQ",fontsize=10,color="white",style="solid",shape="box"];213 -> 3817[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3817 -> 328[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3818[label="xuu40/GT",fontsize=10,color="white",style="solid",shape="box"];213 -> 3818[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3818 -> 329[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 253[label="FiniteMap.addToFM_C0 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 otherwise",fontsize=16,color="black",shape="box"];253 -> 330[label="",style="solid", color="black", weight=3]; 22.90/8.41 254 -> 256[label="",style="dashed", color="red", weight=0]; 22.90/8.41 254[label="FiniteMap.mkBalBranch [] xuu41 xuu43 (FiniteMap.addToFM_C xuu3 xuu44 [] xuu501)",fontsize=16,color="magenta"];254 -> 258[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 337 -> 171[label="",style="dashed", color="red", weight=0]; 22.90/8.41 337[label="compare (xuu50000 * xuu4001) (xuu4000 * xuu50001)",fontsize=16,color="magenta"];337 -> 391[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 337 -> 392[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 338 -> 174[label="",style="dashed", color="red", weight=0]; 22.90/8.41 338[label="compare (xuu50000 * xuu4001) (xuu4000 * xuu50001)",fontsize=16,color="magenta"];338 -> 393[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 338 -> 394[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 339[label="compare2 (xuu50000,xuu50001) (xuu4000,xuu4001) ((xuu50000,xuu50001) == (xuu4000,xuu4001))",fontsize=16,color="black",shape="box"];339 -> 395[label="",style="solid", color="black", weight=3]; 22.90/8.41 340[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];340 -> 396[label="",style="solid", color="black", weight=3]; 22.90/8.41 341[label="compare2 Nothing (Just xuu4000) (Nothing == Just xuu4000)",fontsize=16,color="black",shape="box"];341 -> 397[label="",style="solid", color="black", weight=3]; 22.90/8.41 342[label="compare2 (Just xuu50000) Nothing (Just xuu50000 == Nothing)",fontsize=16,color="black",shape="box"];342 -> 398[label="",style="solid", color="black", weight=3]; 22.90/8.41 343[label="compare2 (Just xuu50000) (Just xuu4000) (Just xuu50000 == Just xuu4000)",fontsize=16,color="black",shape="box"];343 -> 399[label="",style="solid", color="black", weight=3]; 22.90/8.41 344[label="compare2 (xuu50000,xuu50001,xuu50002) (xuu4000,xuu4001,xuu4002) ((xuu50000,xuu50001,xuu50002) == (xuu4000,xuu4001,xuu4002))",fontsize=16,color="black",shape="box"];344 -> 400[label="",style="solid", color="black", weight=3]; 22.90/8.41 345[label="xuu4000",fontsize=16,color="green",shape="box"];346[label="xuu50000",fontsize=16,color="green",shape="box"];347[label="primCmpNat xuu50000 xuu4000",fontsize=16,color="burlywood",shape="triangle"];3819[label="xuu50000/Succ xuu500000",fontsize=10,color="white",style="solid",shape="box"];347 -> 3819[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3819 -> 401[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3820[label="xuu50000/Zero",fontsize=10,color="white",style="solid",shape="box"];347 -> 3820[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3820 -> 402[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 348[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];348 -> 403[label="",style="solid", color="black", weight=3]; 22.90/8.41 349[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];349 -> 404[label="",style="solid", color="black", weight=3]; 22.90/8.41 350[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];350 -> 405[label="",style="solid", color="black", weight=3]; 22.90/8.41 351[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];351 -> 406[label="",style="solid", color="black", weight=3]; 22.90/8.41 352[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];352 -> 407[label="",style="solid", color="black", weight=3]; 22.90/8.41 353[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];353 -> 408[label="",style="solid", color="black", weight=3]; 22.90/8.41 354[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];354 -> 409[label="",style="solid", color="black", weight=3]; 22.90/8.41 355[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];355 -> 410[label="",style="solid", color="black", weight=3]; 22.90/8.41 356[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];356 -> 411[label="",style="solid", color="black", weight=3]; 22.90/8.41 357[label="primCmpInt (Pos (Succ xuu500000)) (Pos xuu4000)",fontsize=16,color="black",shape="box"];357 -> 412[label="",style="solid", color="black", weight=3]; 22.90/8.41 358[label="primCmpInt (Pos (Succ xuu500000)) (Neg xuu4000)",fontsize=16,color="black",shape="box"];358 -> 413[label="",style="solid", color="black", weight=3]; 22.90/8.41 359[label="primCmpInt (Pos Zero) (Pos xuu4000)",fontsize=16,color="burlywood",shape="box"];3821[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];359 -> 3821[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3821 -> 414[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3822[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];359 -> 3822[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3822 -> 415[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 360[label="primCmpInt (Pos Zero) (Neg xuu4000)",fontsize=16,color="burlywood",shape="box"];3823[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];360 -> 3823[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3823 -> 416[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3824[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];360 -> 3824[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3824 -> 417[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 361[label="primCmpInt (Neg (Succ xuu500000)) (Pos xuu4000)",fontsize=16,color="black",shape="box"];361 -> 418[label="",style="solid", color="black", weight=3]; 22.90/8.41 362[label="primCmpInt (Neg (Succ xuu500000)) (Neg xuu4000)",fontsize=16,color="black",shape="box"];362 -> 419[label="",style="solid", color="black", weight=3]; 22.90/8.41 363[label="primCmpInt (Neg Zero) (Pos xuu4000)",fontsize=16,color="burlywood",shape="box"];3825[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];363 -> 3825[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3825 -> 420[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3826[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];363 -> 3826[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3826 -> 421[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 364[label="primCmpInt (Neg Zero) (Neg xuu4000)",fontsize=16,color="burlywood",shape="box"];3827[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];364 -> 3827[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3827 -> 422[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3828[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];364 -> 3828[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3828 -> 423[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 365[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];365 -> 424[label="",style="solid", color="black", weight=3]; 22.90/8.41 366[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];366 -> 425[label="",style="solid", color="black", weight=3]; 22.90/8.41 367[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];367 -> 426[label="",style="solid", color="black", weight=3]; 22.90/8.41 368[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];368 -> 427[label="",style="solid", color="black", weight=3]; 22.90/8.41 369[label="xuu4001",fontsize=16,color="green",shape="box"];370[label="xuu50001",fontsize=16,color="green",shape="box"];371[label="xuu4000",fontsize=16,color="green",shape="box"];372[label="xuu50000",fontsize=16,color="green",shape="box"];373[label="primCmpDouble (Double xuu50000 (Pos xuu500010)) (Double xuu4000 xuu4001)",fontsize=16,color="burlywood",shape="box"];3829[label="xuu4001/Pos xuu40010",fontsize=10,color="white",style="solid",shape="box"];373 -> 3829[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3829 -> 428[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3830[label="xuu4001/Neg xuu40010",fontsize=10,color="white",style="solid",shape="box"];373 -> 3830[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3830 -> 429[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 374[label="primCmpDouble (Double xuu50000 (Neg xuu500010)) (Double xuu4000 xuu4001)",fontsize=16,color="burlywood",shape="box"];3831[label="xuu4001/Pos xuu40010",fontsize=10,color="white",style="solid",shape="box"];374 -> 3831[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3831 -> 430[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3832[label="xuu4001/Neg xuu40010",fontsize=10,color="white",style="solid",shape="box"];374 -> 3832[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3832 -> 431[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 375[label="primCmpFloat (Float xuu50000 (Pos xuu500010)) (Float xuu4000 xuu4001)",fontsize=16,color="burlywood",shape="box"];3833[label="xuu4001/Pos xuu40010",fontsize=10,color="white",style="solid",shape="box"];375 -> 3833[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3833 -> 432[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3834[label="xuu4001/Neg xuu40010",fontsize=10,color="white",style="solid",shape="box"];375 -> 3834[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3834 -> 433[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 376[label="primCmpFloat (Float xuu50000 (Neg xuu500010)) (Float xuu4000 xuu4001)",fontsize=16,color="burlywood",shape="box"];3835[label="xuu4001/Pos xuu40010",fontsize=10,color="white",style="solid",shape="box"];376 -> 3835[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3835 -> 434[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3836[label="xuu4001/Neg xuu40010",fontsize=10,color="white",style="solid",shape="box"];376 -> 3836[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3836 -> 435[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 377[label="compare2 (Left xuu50000) (Left xuu4000) (Left xuu50000 == Left xuu4000)",fontsize=16,color="black",shape="box"];377 -> 436[label="",style="solid", color="black", weight=3]; 22.90/8.41 378[label="compare2 (Left xuu50000) (Right xuu4000) (Left xuu50000 == Right xuu4000)",fontsize=16,color="black",shape="box"];378 -> 437[label="",style="solid", color="black", weight=3]; 22.90/8.41 379[label="compare2 (Right xuu50000) (Left xuu4000) (Right xuu50000 == Left xuu4000)",fontsize=16,color="black",shape="box"];379 -> 438[label="",style="solid", color="black", weight=3]; 22.90/8.41 380[label="compare2 (Right xuu50000) (Right xuu4000) (Right xuu50000 == Right xuu4000)",fontsize=16,color="black",shape="box"];380 -> 439[label="",style="solid", color="black", weight=3]; 22.90/8.41 381[label="FiniteMap.addToFM_C1 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 False",fontsize=16,color="black",shape="triangle"];381 -> 440[label="",style="solid", color="black", weight=3]; 22.90/8.41 382 -> 381[label="",style="dashed", color="red", weight=0]; 22.90/8.41 382[label="FiniteMap.addToFM_C1 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 False",fontsize=16,color="magenta"];383[label="FiniteMap.addToFM_C1 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 True",fontsize=16,color="black",shape="box"];383 -> 441[label="",style="solid", color="black", weight=3]; 22.90/8.41 255[label="FiniteMap.addToFM_C0 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 True",fontsize=16,color="black",shape="box"];255 -> 331[label="",style="solid", color="black", weight=3]; 22.90/8.41 257 -> 14[label="",style="dashed", color="red", weight=0]; 22.90/8.41 257[label="FiniteMap.addToFM_C xuu3 xuu44 (xuu5000 : xuu5001) xuu501",fontsize=16,color="magenta"];257 -> 332[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 257 -> 333[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 256[label="FiniteMap.mkBalBranch [] xuu41 xuu43 xuu41",fontsize=16,color="black",shape="triangle"];256 -> 334[label="",style="solid", color="black", weight=3]; 22.90/8.41 325[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];326[label="FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29 + FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29",fontsize=16,color="black",shape="box"];326 -> 384[label="",style="solid", color="black", weight=3]; 22.90/8.41 327[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 (LT == LT)",fontsize=16,color="black",shape="box"];327 -> 385[label="",style="solid", color="black", weight=3]; 22.90/8.41 328[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 (EQ == LT)",fontsize=16,color="black",shape="box"];328 -> 386[label="",style="solid", color="black", weight=3]; 22.90/8.41 329[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 (GT == LT)",fontsize=16,color="black",shape="box"];329 -> 387[label="",style="solid", color="black", weight=3]; 22.90/8.41 330[label="FiniteMap.addToFM_C0 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 True",fontsize=16,color="black",shape="box"];330 -> 388[label="",style="solid", color="black", weight=3]; 22.90/8.41 258 -> 14[label="",style="dashed", color="red", weight=0]; 22.90/8.41 258[label="FiniteMap.addToFM_C xuu3 xuu44 [] xuu501",fontsize=16,color="magenta"];258 -> 335[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 258 -> 336[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 391[label="xuu4000 * xuu50001",fontsize=16,color="burlywood",shape="triangle"];3837[label="xuu4000/Integer xuu40000",fontsize=10,color="white",style="solid",shape="box"];391 -> 3837[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3837 -> 449[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 392 -> 391[label="",style="dashed", color="red", weight=0]; 22.90/8.41 392[label="xuu50000 * xuu4001",fontsize=16,color="magenta"];392 -> 450[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 392 -> 451[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 393[label="xuu4000 * xuu50001",fontsize=16,color="black",shape="triangle"];393 -> 452[label="",style="solid", color="black", weight=3]; 22.90/8.41 394 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.41 394[label="xuu50000 * xuu4001",fontsize=16,color="magenta"];394 -> 453[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 394 -> 454[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 395 -> 907[label="",style="dashed", color="red", weight=0]; 22.90/8.41 395[label="compare2 (xuu50000,xuu50001) (xuu4000,xuu4001) (xuu50000 == xuu4000 && xuu50001 == xuu4001)",fontsize=16,color="magenta"];395 -> 908[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 395 -> 909[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 395 -> 910[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 395 -> 911[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 395 -> 912[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 396[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];396 -> 461[label="",style="solid", color="black", weight=3]; 22.90/8.41 397[label="compare2 Nothing (Just xuu4000) False",fontsize=16,color="black",shape="box"];397 -> 462[label="",style="solid", color="black", weight=3]; 22.90/8.41 398[label="compare2 (Just xuu50000) Nothing False",fontsize=16,color="black",shape="box"];398 -> 463[label="",style="solid", color="black", weight=3]; 22.90/8.41 399 -> 464[label="",style="dashed", color="red", weight=0]; 22.90/8.41 399[label="compare2 (Just xuu50000) (Just xuu4000) (xuu50000 == xuu4000)",fontsize=16,color="magenta"];399 -> 465[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 399 -> 466[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 399 -> 467[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 400 -> 953[label="",style="dashed", color="red", weight=0]; 22.90/8.41 400[label="compare2 (xuu50000,xuu50001,xuu50002) (xuu4000,xuu4001,xuu4002) (xuu50000 == xuu4000 && xuu50001 == xuu4001 && xuu50002 == xuu4002)",fontsize=16,color="magenta"];400 -> 954[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 400 -> 955[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 400 -> 956[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 400 -> 957[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 400 -> 958[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 400 -> 959[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 400 -> 960[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 401[label="primCmpNat (Succ xuu500000) xuu4000",fontsize=16,color="burlywood",shape="box"];3838[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];401 -> 3838[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3838 -> 476[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3839[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];401 -> 3839[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3839 -> 477[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 402[label="primCmpNat Zero xuu4000",fontsize=16,color="burlywood",shape="box"];3840[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];402 -> 3840[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3840 -> 478[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3841[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];402 -> 3841[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3841 -> 479[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 403[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];403 -> 480[label="",style="solid", color="black", weight=3]; 22.90/8.41 404[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];404 -> 481[label="",style="solid", color="black", weight=3]; 22.90/8.41 405[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];405 -> 482[label="",style="solid", color="black", weight=3]; 22.90/8.41 406[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];406 -> 483[label="",style="solid", color="black", weight=3]; 22.90/8.41 407[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];407 -> 484[label="",style="solid", color="black", weight=3]; 22.90/8.41 408[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];408 -> 485[label="",style="solid", color="black", weight=3]; 22.90/8.41 409[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];409 -> 486[label="",style="solid", color="black", weight=3]; 22.90/8.41 410[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];410 -> 487[label="",style="solid", color="black", weight=3]; 22.90/8.41 411[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];411 -> 488[label="",style="solid", color="black", weight=3]; 22.90/8.41 412 -> 347[label="",style="dashed", color="red", weight=0]; 22.90/8.41 412[label="primCmpNat (Succ xuu500000) xuu4000",fontsize=16,color="magenta"];412 -> 489[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 412 -> 490[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 413[label="GT",fontsize=16,color="green",shape="box"];414[label="primCmpInt (Pos Zero) (Pos (Succ xuu40000))",fontsize=16,color="black",shape="box"];414 -> 491[label="",style="solid", color="black", weight=3]; 22.90/8.41 415[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];415 -> 492[label="",style="solid", color="black", weight=3]; 22.90/8.41 416[label="primCmpInt (Pos Zero) (Neg (Succ xuu40000))",fontsize=16,color="black",shape="box"];416 -> 493[label="",style="solid", color="black", weight=3]; 22.90/8.41 417[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];417 -> 494[label="",style="solid", color="black", weight=3]; 22.90/8.41 418[label="LT",fontsize=16,color="green",shape="box"];419 -> 347[label="",style="dashed", color="red", weight=0]; 22.90/8.41 419[label="primCmpNat xuu4000 (Succ xuu500000)",fontsize=16,color="magenta"];419 -> 495[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 419 -> 496[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 420[label="primCmpInt (Neg Zero) (Pos (Succ xuu40000))",fontsize=16,color="black",shape="box"];420 -> 497[label="",style="solid", color="black", weight=3]; 22.90/8.41 421[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];421 -> 498[label="",style="solid", color="black", weight=3]; 22.90/8.41 422[label="primCmpInt (Neg Zero) (Neg (Succ xuu40000))",fontsize=16,color="black",shape="box"];422 -> 499[label="",style="solid", color="black", weight=3]; 22.90/8.41 423[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];423 -> 500[label="",style="solid", color="black", weight=3]; 22.90/8.41 424[label="compare2 False False True",fontsize=16,color="black",shape="box"];424 -> 501[label="",style="solid", color="black", weight=3]; 22.90/8.41 425[label="compare2 False True False",fontsize=16,color="black",shape="box"];425 -> 502[label="",style="solid", color="black", weight=3]; 22.90/8.41 426[label="compare2 True False False",fontsize=16,color="black",shape="box"];426 -> 503[label="",style="solid", color="black", weight=3]; 22.90/8.41 427[label="compare2 True True True",fontsize=16,color="black",shape="box"];427 -> 504[label="",style="solid", color="black", weight=3]; 22.90/8.41 428[label="primCmpDouble (Double xuu50000 (Pos xuu500010)) (Double xuu4000 (Pos xuu40010))",fontsize=16,color="black",shape="box"];428 -> 505[label="",style="solid", color="black", weight=3]; 22.90/8.41 429[label="primCmpDouble (Double xuu50000 (Pos xuu500010)) (Double xuu4000 (Neg xuu40010))",fontsize=16,color="black",shape="box"];429 -> 506[label="",style="solid", color="black", weight=3]; 22.90/8.41 430[label="primCmpDouble (Double xuu50000 (Neg xuu500010)) (Double xuu4000 (Pos xuu40010))",fontsize=16,color="black",shape="box"];430 -> 507[label="",style="solid", color="black", weight=3]; 22.90/8.41 431[label="primCmpDouble (Double xuu50000 (Neg xuu500010)) (Double xuu4000 (Neg xuu40010))",fontsize=16,color="black",shape="box"];431 -> 508[label="",style="solid", color="black", weight=3]; 22.90/8.41 432[label="primCmpFloat (Float xuu50000 (Pos xuu500010)) (Float xuu4000 (Pos xuu40010))",fontsize=16,color="black",shape="box"];432 -> 509[label="",style="solid", color="black", weight=3]; 22.90/8.41 433[label="primCmpFloat (Float xuu50000 (Pos xuu500010)) (Float xuu4000 (Neg xuu40010))",fontsize=16,color="black",shape="box"];433 -> 510[label="",style="solid", color="black", weight=3]; 22.90/8.41 434[label="primCmpFloat (Float xuu50000 (Neg xuu500010)) (Float xuu4000 (Pos xuu40010))",fontsize=16,color="black",shape="box"];434 -> 511[label="",style="solid", color="black", weight=3]; 22.90/8.41 435[label="primCmpFloat (Float xuu50000 (Neg xuu500010)) (Float xuu4000 (Neg xuu40010))",fontsize=16,color="black",shape="box"];435 -> 512[label="",style="solid", color="black", weight=3]; 22.90/8.41 436 -> 513[label="",style="dashed", color="red", weight=0]; 22.90/8.41 436[label="compare2 (Left xuu50000) (Left xuu4000) (xuu50000 == xuu4000)",fontsize=16,color="magenta"];436 -> 514[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 436 -> 515[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 436 -> 516[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 437[label="compare2 (Left xuu50000) (Right xuu4000) False",fontsize=16,color="black",shape="box"];437 -> 517[label="",style="solid", color="black", weight=3]; 22.90/8.41 438[label="compare2 (Right xuu50000) (Left xuu4000) False",fontsize=16,color="black",shape="box"];438 -> 518[label="",style="solid", color="black", weight=3]; 22.90/8.41 439 -> 519[label="",style="dashed", color="red", weight=0]; 22.90/8.41 439[label="compare2 (Right xuu50000) (Right xuu4000) (xuu50000 == xuu4000)",fontsize=16,color="magenta"];439 -> 520[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 439 -> 521[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 439 -> 522[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 440[label="FiniteMap.addToFM_C0 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 otherwise",fontsize=16,color="black",shape="box"];440 -> 523[label="",style="solid", color="black", weight=3]; 22.90/8.41 441 -> 73[label="",style="dashed", color="red", weight=0]; 22.90/8.41 441[label="FiniteMap.mkBalBranch (xuu19 : xuu20) xuu21 xuu23 (FiniteMap.addToFM_C xuu18 xuu24 (xuu25 : xuu26) xuu27)",fontsize=16,color="magenta"];441 -> 524[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 441 -> 525[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 441 -> 526[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 441 -> 527[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 441 -> 528[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 331[label="FiniteMap.Branch (xuu5000 : xuu5001) (xuu3 xuu41 xuu501) xuu42 xuu43 xuu44",fontsize=16,color="green",shape="box"];331 -> 389[label="",style="dashed", color="green", weight=3]; 22.90/8.41 332[label="xuu44",fontsize=16,color="green",shape="box"];333[label="xuu5000 : xuu5001",fontsize=16,color="green",shape="box"];334[label="FiniteMap.mkBalBranch6 [] xuu41 xuu43 xuu41",fontsize=16,color="black",shape="box"];334 -> 390[label="",style="solid", color="black", weight=3]; 22.90/8.41 384 -> 2119[label="",style="dashed", color="red", weight=0]; 22.90/8.41 384[label="primPlusInt (FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29) (FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29)",fontsize=16,color="magenta"];384 -> 2120[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 384 -> 2121[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 385[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 True",fontsize=16,color="black",shape="box"];385 -> 443[label="",style="solid", color="black", weight=3]; 22.90/8.41 386[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 False",fontsize=16,color="black",shape="triangle"];386 -> 444[label="",style="solid", color="black", weight=3]; 22.90/8.41 387 -> 386[label="",style="dashed", color="red", weight=0]; 22.90/8.41 387[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 False",fontsize=16,color="magenta"];388[label="FiniteMap.Branch [] (xuu3 xuu41 xuu501) xuu42 xuu43 xuu44",fontsize=16,color="green",shape="box"];388 -> 445[label="",style="dashed", color="green", weight=3]; 22.90/8.41 335[label="xuu44",fontsize=16,color="green",shape="box"];336[label="[]",fontsize=16,color="green",shape="box"];449[label="Integer xuu40000 * xuu50001",fontsize=16,color="burlywood",shape="box"];3842[label="xuu50001/Integer xuu500010",fontsize=10,color="white",style="solid",shape="box"];449 -> 3842[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3842 -> 529[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 450[label="xuu50000",fontsize=16,color="green",shape="box"];451[label="xuu4001",fontsize=16,color="green",shape="box"];452[label="primMulInt xuu4000 xuu50001",fontsize=16,color="burlywood",shape="triangle"];3843[label="xuu4000/Pos xuu40000",fontsize=10,color="white",style="solid",shape="box"];452 -> 3843[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3843 -> 530[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3844[label="xuu4000/Neg xuu40000",fontsize=10,color="white",style="solid",shape="box"];452 -> 3844[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3844 -> 531[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 453[label="xuu50000",fontsize=16,color="green",shape="box"];454[label="xuu4001",fontsize=16,color="green",shape="box"];908[label="xuu50000",fontsize=16,color="green",shape="box"];909[label="xuu50001",fontsize=16,color="green",shape="box"];910[label="xuu4000",fontsize=16,color="green",shape="box"];911[label="xuu4001",fontsize=16,color="green",shape="box"];912 -> 985[label="",style="dashed", color="red", weight=0]; 22.90/8.41 912[label="xuu50000 == xuu4000 && xuu50001 == xuu4001",fontsize=16,color="magenta"];912 -> 986[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 912 -> 987[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 907[label="compare2 (xuu99,xuu100) (xuu101,xuu102) xuu103",fontsize=16,color="burlywood",shape="triangle"];3845[label="xuu103/False",fontsize=10,color="white",style="solid",shape="box"];907 -> 3845[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3845 -> 932[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3846[label="xuu103/True",fontsize=10,color="white",style="solid",shape="box"];907 -> 3846[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3846 -> 933[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 461[label="EQ",fontsize=16,color="green",shape="box"];462[label="compare1 Nothing (Just xuu4000) (Nothing <= Just xuu4000)",fontsize=16,color="black",shape="box"];462 -> 548[label="",style="solid", color="black", weight=3]; 22.90/8.41 463[label="compare1 (Just xuu50000) Nothing (Just xuu50000 <= Nothing)",fontsize=16,color="black",shape="box"];463 -> 549[label="",style="solid", color="black", weight=3]; 22.90/8.41 465[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];3847[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3847[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3847 -> 550[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3848[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3848[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3848 -> 551[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3849[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3849[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3849 -> 552[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3850[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3850[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3850 -> 553[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3851[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3851[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3851 -> 554[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3852[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3852[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3852 -> 555[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3853[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3853[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3853 -> 556[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3854[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3854[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3854 -> 557[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3855[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3855[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3855 -> 558[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3856[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3856[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3856 -> 559[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3857[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3857[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3857 -> 560[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3858[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3858[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3858 -> 561[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3859[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3859[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3859 -> 562[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3860[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3860[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3860 -> 563[label="",style="solid", color="blue", weight=3]; 22.90/8.41 466[label="xuu50000",fontsize=16,color="green",shape="box"];467[label="xuu4000",fontsize=16,color="green",shape="box"];464[label="compare2 (Just xuu58) (Just xuu59) xuu60",fontsize=16,color="burlywood",shape="triangle"];3861[label="xuu60/False",fontsize=10,color="white",style="solid",shape="box"];464 -> 3861[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3861 -> 564[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3862[label="xuu60/True",fontsize=10,color="white",style="solid",shape="box"];464 -> 3862[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3862 -> 565[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 954[label="xuu50000",fontsize=16,color="green",shape="box"];955[label="xuu4000",fontsize=16,color="green",shape="box"];956[label="xuu4001",fontsize=16,color="green",shape="box"];957[label="xuu50002",fontsize=16,color="green",shape="box"];958[label="xuu4002",fontsize=16,color="green",shape="box"];959[label="xuu50001",fontsize=16,color="green",shape="box"];960 -> 985[label="",style="dashed", color="red", weight=0]; 22.90/8.41 960[label="xuu50000 == xuu4000 && xuu50001 == xuu4001 && xuu50002 == xuu4002",fontsize=16,color="magenta"];960 -> 988[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 960 -> 989[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 953[label="compare2 (xuu69,xuu70,xuu71) (xuu72,xuu73,xuu74) xuu111",fontsize=16,color="burlywood",shape="triangle"];3863[label="xuu111/False",fontsize=10,color="white",style="solid",shape="box"];953 -> 3863[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3863 -> 969[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3864[label="xuu111/True",fontsize=10,color="white",style="solid",shape="box"];953 -> 3864[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3864 -> 970[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 476[label="primCmpNat (Succ xuu500000) (Succ xuu40000)",fontsize=16,color="black",shape="box"];476 -> 582[label="",style="solid", color="black", weight=3]; 22.90/8.41 477[label="primCmpNat (Succ xuu500000) Zero",fontsize=16,color="black",shape="box"];477 -> 583[label="",style="solid", color="black", weight=3]; 22.90/8.41 478[label="primCmpNat Zero (Succ xuu40000)",fontsize=16,color="black",shape="box"];478 -> 584[label="",style="solid", color="black", weight=3]; 22.90/8.41 479[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];479 -> 585[label="",style="solid", color="black", weight=3]; 22.90/8.41 480[label="EQ",fontsize=16,color="green",shape="box"];481[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];481 -> 586[label="",style="solid", color="black", weight=3]; 22.90/8.41 482[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];482 -> 587[label="",style="solid", color="black", weight=3]; 22.90/8.41 483[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];483 -> 588[label="",style="solid", color="black", weight=3]; 22.90/8.41 484[label="EQ",fontsize=16,color="green",shape="box"];485[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];485 -> 589[label="",style="solid", color="black", weight=3]; 22.90/8.41 486[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];486 -> 590[label="",style="solid", color="black", weight=3]; 22.90/8.41 487[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];487 -> 591[label="",style="solid", color="black", weight=3]; 22.90/8.41 488[label="EQ",fontsize=16,color="green",shape="box"];489[label="xuu4000",fontsize=16,color="green",shape="box"];490[label="Succ xuu500000",fontsize=16,color="green",shape="box"];491 -> 347[label="",style="dashed", color="red", weight=0]; 22.90/8.41 491[label="primCmpNat Zero (Succ xuu40000)",fontsize=16,color="magenta"];491 -> 592[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 491 -> 593[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 492[label="EQ",fontsize=16,color="green",shape="box"];493[label="GT",fontsize=16,color="green",shape="box"];494[label="EQ",fontsize=16,color="green",shape="box"];495[label="Succ xuu500000",fontsize=16,color="green",shape="box"];496[label="xuu4000",fontsize=16,color="green",shape="box"];497[label="LT",fontsize=16,color="green",shape="box"];498[label="EQ",fontsize=16,color="green",shape="box"];499 -> 347[label="",style="dashed", color="red", weight=0]; 22.90/8.41 499[label="primCmpNat (Succ xuu40000) Zero",fontsize=16,color="magenta"];499 -> 594[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 499 -> 595[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 500[label="EQ",fontsize=16,color="green",shape="box"];501[label="EQ",fontsize=16,color="green",shape="box"];502[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];502 -> 596[label="",style="solid", color="black", weight=3]; 22.90/8.41 503[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];503 -> 597[label="",style="solid", color="black", weight=3]; 22.90/8.41 504[label="EQ",fontsize=16,color="green",shape="box"];505 -> 174[label="",style="dashed", color="red", weight=0]; 22.90/8.41 505[label="compare (xuu50000 * Pos xuu40010) (Pos xuu500010 * xuu4000)",fontsize=16,color="magenta"];505 -> 598[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 505 -> 599[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 506 -> 174[label="",style="dashed", color="red", weight=0]; 22.90/8.41 506[label="compare (xuu50000 * Pos xuu40010) (Neg xuu500010 * xuu4000)",fontsize=16,color="magenta"];506 -> 600[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 506 -> 601[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 507 -> 174[label="",style="dashed", color="red", weight=0]; 22.90/8.41 507[label="compare (xuu50000 * Neg xuu40010) (Pos xuu500010 * xuu4000)",fontsize=16,color="magenta"];507 -> 602[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 507 -> 603[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 508 -> 174[label="",style="dashed", color="red", weight=0]; 22.90/8.41 508[label="compare (xuu50000 * Neg xuu40010) (Neg xuu500010 * xuu4000)",fontsize=16,color="magenta"];508 -> 604[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 508 -> 605[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 509 -> 174[label="",style="dashed", color="red", weight=0]; 22.90/8.41 509[label="compare (xuu50000 * Pos xuu40010) (Pos xuu500010 * xuu4000)",fontsize=16,color="magenta"];509 -> 606[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 509 -> 607[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 510 -> 174[label="",style="dashed", color="red", weight=0]; 22.90/8.41 510[label="compare (xuu50000 * Pos xuu40010) (Neg xuu500010 * xuu4000)",fontsize=16,color="magenta"];510 -> 608[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 510 -> 609[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 511 -> 174[label="",style="dashed", color="red", weight=0]; 22.90/8.41 511[label="compare (xuu50000 * Neg xuu40010) (Pos xuu500010 * xuu4000)",fontsize=16,color="magenta"];511 -> 610[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 511 -> 611[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 512 -> 174[label="",style="dashed", color="red", weight=0]; 22.90/8.41 512[label="compare (xuu50000 * Neg xuu40010) (Neg xuu500010 * xuu4000)",fontsize=16,color="magenta"];512 -> 612[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 512 -> 613[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 514[label="xuu50000",fontsize=16,color="green",shape="box"];515[label="xuu4000",fontsize=16,color="green",shape="box"];516[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];3865[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 3865[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3865 -> 614[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3866[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 3866[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3866 -> 615[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3867[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 3867[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3867 -> 616[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3868[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 3868[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3868 -> 617[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3869[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 3869[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3869 -> 618[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3870[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 3870[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3870 -> 619[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3871[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 3871[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3871 -> 620[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3872[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 3872[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3872 -> 621[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3873[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 3873[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3873 -> 622[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3874[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 3874[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3874 -> 623[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3875[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 3875[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3875 -> 624[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3876[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 3876[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3876 -> 625[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3877[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 3877[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3877 -> 626[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3878[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 3878[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3878 -> 627[label="",style="solid", color="blue", weight=3]; 22.90/8.41 513[label="compare2 (Left xuu80) (Left xuu81) xuu82",fontsize=16,color="burlywood",shape="triangle"];3879[label="xuu82/False",fontsize=10,color="white",style="solid",shape="box"];513 -> 3879[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3879 -> 628[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3880[label="xuu82/True",fontsize=10,color="white",style="solid",shape="box"];513 -> 3880[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3880 -> 629[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 517[label="compare1 (Left xuu50000) (Right xuu4000) (Left xuu50000 <= Right xuu4000)",fontsize=16,color="black",shape="box"];517 -> 630[label="",style="solid", color="black", weight=3]; 22.90/8.41 518[label="compare1 (Right xuu50000) (Left xuu4000) (Right xuu50000 <= Left xuu4000)",fontsize=16,color="black",shape="box"];518 -> 631[label="",style="solid", color="black", weight=3]; 22.90/8.41 520[label="xuu50000",fontsize=16,color="green",shape="box"];521[label="xuu4000",fontsize=16,color="green",shape="box"];522[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];3881[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];522 -> 3881[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3881 -> 632[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3882[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];522 -> 3882[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3882 -> 633[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3883[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];522 -> 3883[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3883 -> 634[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3884[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];522 -> 3884[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3884 -> 635[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3885[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];522 -> 3885[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3885 -> 636[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3886[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];522 -> 3886[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3886 -> 637[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3887[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];522 -> 3887[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3887 -> 638[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3888[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];522 -> 3888[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3888 -> 639[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3889[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];522 -> 3889[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3889 -> 640[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3890[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];522 -> 3890[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3890 -> 641[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3891[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];522 -> 3891[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3891 -> 642[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3892[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];522 -> 3892[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3892 -> 643[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3893[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];522 -> 3893[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3893 -> 644[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3894[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];522 -> 3894[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3894 -> 645[label="",style="solid", color="blue", weight=3]; 22.90/8.41 519[label="compare2 (Right xuu87) (Right xuu88) xuu89",fontsize=16,color="burlywood",shape="triangle"];3895[label="xuu89/False",fontsize=10,color="white",style="solid",shape="box"];519 -> 3895[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3895 -> 646[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3896[label="xuu89/True",fontsize=10,color="white",style="solid",shape="box"];519 -> 3896[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3896 -> 647[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 523[label="FiniteMap.addToFM_C0 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 True",fontsize=16,color="black",shape="box"];523 -> 653[label="",style="solid", color="black", weight=3]; 22.90/8.41 524[label="xuu20",fontsize=16,color="green",shape="box"];525 -> 14[label="",style="dashed", color="red", weight=0]; 22.90/8.41 525[label="FiniteMap.addToFM_C xuu18 xuu24 (xuu25 : xuu26) xuu27",fontsize=16,color="magenta"];525 -> 654[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 525 -> 655[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 525 -> 656[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 525 -> 657[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 526[label="xuu19",fontsize=16,color="green",shape="box"];527[label="xuu23",fontsize=16,color="green",shape="box"];528[label="xuu21",fontsize=16,color="green",shape="box"];389[label="xuu3 xuu41 xuu501",fontsize=16,color="green",shape="box"];389 -> 446[label="",style="dashed", color="green", weight=3]; 22.90/8.41 389 -> 447[label="",style="dashed", color="green", weight=3]; 22.90/8.41 390 -> 853[label="",style="dashed", color="red", weight=0]; 22.90/8.41 390[label="FiniteMap.mkBalBranch6MkBalBranch5 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 (FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43 + FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];390 -> 854[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 2120 -> 1733[label="",style="dashed", color="red", weight=0]; 22.90/8.41 2120[label="FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29",fontsize=16,color="magenta"];2121 -> 1739[label="",style="dashed", color="red", weight=0]; 22.90/8.41 2121[label="FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29",fontsize=16,color="magenta"];2119[label="primPlusInt xuu197 xuu196",fontsize=16,color="burlywood",shape="triangle"];3897[label="xuu197/Pos xuu1970",fontsize=10,color="white",style="solid",shape="box"];2119 -> 3897[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3897 -> 2154[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3898[label="xuu197/Neg xuu1970",fontsize=10,color="white",style="solid",shape="box"];2119 -> 3898[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3898 -> 2155[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 443 -> 3433[label="",style="dashed", color="red", weight=0]; 22.90/8.41 443[label="FiniteMap.mkBranch (Pos (Succ Zero)) (xuu400 : xuu401) xuu41 xuu29 xuu44",fontsize=16,color="magenta"];443 -> 3434[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 443 -> 3435[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 443 -> 3436[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 443 -> 3437[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 443 -> 3438[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 444 -> 1063[label="",style="dashed", color="red", weight=0]; 22.90/8.41 444[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 (FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29)",fontsize=16,color="magenta"];444 -> 1064[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 445[label="xuu3 xuu41 xuu501",fontsize=16,color="green",shape="box"];445 -> 658[label="",style="dashed", color="green", weight=3]; 22.90/8.41 445 -> 659[label="",style="dashed", color="green", weight=3]; 22.90/8.41 529[label="Integer xuu40000 * Integer xuu500010",fontsize=16,color="black",shape="box"];529 -> 660[label="",style="solid", color="black", weight=3]; 22.90/8.41 530[label="primMulInt (Pos xuu40000) xuu50001",fontsize=16,color="burlywood",shape="box"];3899[label="xuu50001/Pos xuu500010",fontsize=10,color="white",style="solid",shape="box"];530 -> 3899[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3899 -> 661[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3900[label="xuu50001/Neg xuu500010",fontsize=10,color="white",style="solid",shape="box"];530 -> 3900[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3900 -> 662[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 531[label="primMulInt (Neg xuu40000) xuu50001",fontsize=16,color="burlywood",shape="box"];3901[label="xuu50001/Pos xuu500010",fontsize=10,color="white",style="solid",shape="box"];531 -> 3901[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3901 -> 663[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3902[label="xuu50001/Neg xuu500010",fontsize=10,color="white",style="solid",shape="box"];531 -> 3902[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3902 -> 664[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 986[label="xuu50001 == xuu4001",fontsize=16,color="blue",shape="box"];3903[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3903[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3903 -> 994[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3904[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3904[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3904 -> 995[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3905[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3905[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3905 -> 996[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3906[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3906[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3906 -> 997[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3907[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3907[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3907 -> 998[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3908[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3908[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3908 -> 999[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3909[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3909[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3909 -> 1000[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3910[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3910[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3910 -> 1001[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3911[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3911[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3911 -> 1002[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3912[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3912[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3912 -> 1003[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3913[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3913[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3913 -> 1004[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3914[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3914[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3914 -> 1005[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3915[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3915[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3915 -> 1006[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3916[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3916[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3916 -> 1007[label="",style="solid", color="blue", weight=3]; 22.90/8.41 987[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];3917[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3917[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3917 -> 1008[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3918[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3918[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3918 -> 1009[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3919[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3919[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3919 -> 1010[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3920[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3920[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3920 -> 1011[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3921[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3921[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3921 -> 1012[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3922[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3922[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3922 -> 1013[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3923[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3923[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3923 -> 1014[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3924[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3924[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3924 -> 1015[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3925[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3925[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3925 -> 1016[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3926[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3926[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3926 -> 1017[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3927[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3927[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3927 -> 1018[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3928[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3928[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3928 -> 1019[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3929[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3929[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3929 -> 1020[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3930[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3930[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3930 -> 1021[label="",style="solid", color="blue", weight=3]; 22.90/8.41 985[label="xuu116 && xuu117",fontsize=16,color="burlywood",shape="triangle"];3931[label="xuu116/False",fontsize=10,color="white",style="solid",shape="box"];985 -> 3931[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3931 -> 1022[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3932[label="xuu116/True",fontsize=10,color="white",style="solid",shape="box"];985 -> 3932[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3932 -> 1023[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 932[label="compare2 (xuu99,xuu100) (xuu101,xuu102) False",fontsize=16,color="black",shape="box"];932 -> 1024[label="",style="solid", color="black", weight=3]; 22.90/8.41 933[label="compare2 (xuu99,xuu100) (xuu101,xuu102) True",fontsize=16,color="black",shape="box"];933 -> 1025[label="",style="solid", color="black", weight=3]; 22.90/8.41 548[label="compare1 Nothing (Just xuu4000) True",fontsize=16,color="black",shape="box"];548 -> 687[label="",style="solid", color="black", weight=3]; 22.90/8.41 549[label="compare1 (Just xuu50000) Nothing False",fontsize=16,color="black",shape="box"];549 -> 688[label="",style="solid", color="black", weight=3]; 22.90/8.41 550 -> 532[label="",style="dashed", color="red", weight=0]; 22.90/8.41 550[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];550 -> 689[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 550 -> 690[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 551 -> 533[label="",style="dashed", color="red", weight=0]; 22.90/8.41 551[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];551 -> 691[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 551 -> 692[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 552 -> 534[label="",style="dashed", color="red", weight=0]; 22.90/8.41 552[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];552 -> 693[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 552 -> 694[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 553 -> 535[label="",style="dashed", color="red", weight=0]; 22.90/8.41 553[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];553 -> 695[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 553 -> 696[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 554 -> 536[label="",style="dashed", color="red", weight=0]; 22.90/8.41 554[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];554 -> 697[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 554 -> 698[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 555 -> 537[label="",style="dashed", color="red", weight=0]; 22.90/8.41 555[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];555 -> 699[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 555 -> 700[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 556 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.41 556[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];556 -> 701[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 556 -> 702[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 557 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.41 557[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];557 -> 703[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 557 -> 704[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 558 -> 540[label="",style="dashed", color="red", weight=0]; 22.90/8.41 558[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];558 -> 705[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 558 -> 706[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 559 -> 541[label="",style="dashed", color="red", weight=0]; 22.90/8.41 559[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];559 -> 707[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 559 -> 708[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 560 -> 542[label="",style="dashed", color="red", weight=0]; 22.90/8.41 560[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];560 -> 709[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 560 -> 710[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 561 -> 543[label="",style="dashed", color="red", weight=0]; 22.90/8.41 561[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];561 -> 711[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 561 -> 712[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 562 -> 544[label="",style="dashed", color="red", weight=0]; 22.90/8.41 562[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];562 -> 713[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 562 -> 714[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 563 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.41 563[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];563 -> 715[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 563 -> 716[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 564[label="compare2 (Just xuu58) (Just xuu59) False",fontsize=16,color="black",shape="box"];564 -> 717[label="",style="solid", color="black", weight=3]; 22.90/8.41 565[label="compare2 (Just xuu58) (Just xuu59) True",fontsize=16,color="black",shape="box"];565 -> 718[label="",style="solid", color="black", weight=3]; 22.90/8.41 988 -> 985[label="",style="dashed", color="red", weight=0]; 22.90/8.41 988[label="xuu50001 == xuu4001 && xuu50002 == xuu4002",fontsize=16,color="magenta"];988 -> 1026[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 988 -> 1027[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 989[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];3933[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 3933[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3933 -> 1028[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3934[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 3934[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3934 -> 1029[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3935[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 3935[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3935 -> 1030[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3936[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 3936[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3936 -> 1031[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3937[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 3937[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3937 -> 1032[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3938[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 3938[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3938 -> 1033[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3939[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 3939[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3939 -> 1034[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3940[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 3940[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3940 -> 1035[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3941[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 3941[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3941 -> 1036[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3942[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 3942[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3942 -> 1037[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3943[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 3943[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3943 -> 1038[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3944[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 3944[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3944 -> 1039[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3945[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 3945[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3945 -> 1040[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3946[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 3946[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3946 -> 1041[label="",style="solid", color="blue", weight=3]; 22.90/8.41 969[label="compare2 (xuu69,xuu70,xuu71) (xuu72,xuu73,xuu74) False",fontsize=16,color="black",shape="box"];969 -> 1042[label="",style="solid", color="black", weight=3]; 22.90/8.41 970[label="compare2 (xuu69,xuu70,xuu71) (xuu72,xuu73,xuu74) True",fontsize=16,color="black",shape="box"];970 -> 1043[label="",style="solid", color="black", weight=3]; 22.90/8.41 582 -> 347[label="",style="dashed", color="red", weight=0]; 22.90/8.41 582[label="primCmpNat xuu500000 xuu40000",fontsize=16,color="magenta"];582 -> 749[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 582 -> 750[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 583[label="GT",fontsize=16,color="green",shape="box"];584[label="LT",fontsize=16,color="green",shape="box"];585[label="EQ",fontsize=16,color="green",shape="box"];586[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];586 -> 751[label="",style="solid", color="black", weight=3]; 22.90/8.41 587[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];587 -> 752[label="",style="solid", color="black", weight=3]; 22.90/8.41 588[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];588 -> 753[label="",style="solid", color="black", weight=3]; 22.90/8.41 589[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];589 -> 754[label="",style="solid", color="black", weight=3]; 22.90/8.41 590[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];590 -> 755[label="",style="solid", color="black", weight=3]; 22.90/8.41 591[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];591 -> 756[label="",style="solid", color="black", weight=3]; 22.90/8.41 592[label="Succ xuu40000",fontsize=16,color="green",shape="box"];593[label="Zero",fontsize=16,color="green",shape="box"];594[label="Zero",fontsize=16,color="green",shape="box"];595[label="Succ xuu40000",fontsize=16,color="green",shape="box"];596[label="compare1 False True True",fontsize=16,color="black",shape="box"];596 -> 757[label="",style="solid", color="black", weight=3]; 22.90/8.41 597[label="compare1 True False False",fontsize=16,color="black",shape="box"];597 -> 758[label="",style="solid", color="black", weight=3]; 22.90/8.41 598 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.41 598[label="Pos xuu500010 * xuu4000",fontsize=16,color="magenta"];598 -> 759[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 598 -> 760[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 599 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.41 599[label="xuu50000 * Pos xuu40010",fontsize=16,color="magenta"];599 -> 761[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 599 -> 762[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 600 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.41 600[label="Neg xuu500010 * xuu4000",fontsize=16,color="magenta"];600 -> 763[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 600 -> 764[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 601 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.41 601[label="xuu50000 * Pos xuu40010",fontsize=16,color="magenta"];601 -> 765[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 601 -> 766[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 602 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.41 602[label="Pos xuu500010 * xuu4000",fontsize=16,color="magenta"];602 -> 767[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 602 -> 768[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 603 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.41 603[label="xuu50000 * Neg xuu40010",fontsize=16,color="magenta"];603 -> 769[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 603 -> 770[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 604 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.41 604[label="Neg xuu500010 * xuu4000",fontsize=16,color="magenta"];604 -> 771[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 604 -> 772[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 605 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.41 605[label="xuu50000 * Neg xuu40010",fontsize=16,color="magenta"];605 -> 773[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 605 -> 774[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 606 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.41 606[label="Pos xuu500010 * xuu4000",fontsize=16,color="magenta"];606 -> 775[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 606 -> 776[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 607 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.41 607[label="xuu50000 * Pos xuu40010",fontsize=16,color="magenta"];607 -> 777[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 607 -> 778[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 608 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.41 608[label="Neg xuu500010 * xuu4000",fontsize=16,color="magenta"];608 -> 779[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 608 -> 780[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 609 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.41 609[label="xuu50000 * Pos xuu40010",fontsize=16,color="magenta"];609 -> 781[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 609 -> 782[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 610 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.41 610[label="Pos xuu500010 * xuu4000",fontsize=16,color="magenta"];610 -> 783[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 610 -> 784[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 611 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.41 611[label="xuu50000 * Neg xuu40010",fontsize=16,color="magenta"];611 -> 785[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 611 -> 786[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 612 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.41 612[label="Neg xuu500010 * xuu4000",fontsize=16,color="magenta"];612 -> 787[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 612 -> 788[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 613 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.41 613[label="xuu50000 * Neg xuu40010",fontsize=16,color="magenta"];613 -> 789[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 613 -> 790[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 614 -> 532[label="",style="dashed", color="red", weight=0]; 22.90/8.41 614[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];614 -> 791[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 614 -> 792[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 615 -> 533[label="",style="dashed", color="red", weight=0]; 22.90/8.41 615[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];615 -> 793[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 615 -> 794[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 616 -> 534[label="",style="dashed", color="red", weight=0]; 22.90/8.41 616[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];616 -> 795[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 616 -> 796[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 617 -> 535[label="",style="dashed", color="red", weight=0]; 22.90/8.41 617[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];617 -> 797[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 617 -> 798[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 618 -> 536[label="",style="dashed", color="red", weight=0]; 22.90/8.41 618[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];618 -> 799[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 618 -> 800[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 619 -> 537[label="",style="dashed", color="red", weight=0]; 22.90/8.41 619[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];619 -> 801[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 619 -> 802[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 620 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.41 620[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];620 -> 803[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 620 -> 804[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 621 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.41 621[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];621 -> 805[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 621 -> 806[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 622 -> 540[label="",style="dashed", color="red", weight=0]; 22.90/8.41 622[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];622 -> 807[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 622 -> 808[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 623 -> 541[label="",style="dashed", color="red", weight=0]; 22.90/8.41 623[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];623 -> 809[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 623 -> 810[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 624 -> 542[label="",style="dashed", color="red", weight=0]; 22.90/8.41 624[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];624 -> 811[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 624 -> 812[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 625 -> 543[label="",style="dashed", color="red", weight=0]; 22.90/8.41 625[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];625 -> 813[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 625 -> 814[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 626 -> 544[label="",style="dashed", color="red", weight=0]; 22.90/8.41 626[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];626 -> 815[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 626 -> 816[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 627 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.41 627[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];627 -> 817[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 627 -> 818[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 628[label="compare2 (Left xuu80) (Left xuu81) False",fontsize=16,color="black",shape="box"];628 -> 819[label="",style="solid", color="black", weight=3]; 22.90/8.41 629[label="compare2 (Left xuu80) (Left xuu81) True",fontsize=16,color="black",shape="box"];629 -> 820[label="",style="solid", color="black", weight=3]; 22.90/8.41 630[label="compare1 (Left xuu50000) (Right xuu4000) True",fontsize=16,color="black",shape="box"];630 -> 821[label="",style="solid", color="black", weight=3]; 22.90/8.41 631[label="compare1 (Right xuu50000) (Left xuu4000) False",fontsize=16,color="black",shape="box"];631 -> 822[label="",style="solid", color="black", weight=3]; 22.90/8.41 632 -> 532[label="",style="dashed", color="red", weight=0]; 22.90/8.41 632[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];632 -> 823[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 632 -> 824[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 633 -> 533[label="",style="dashed", color="red", weight=0]; 22.90/8.41 633[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];633 -> 825[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 633 -> 826[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 634 -> 534[label="",style="dashed", color="red", weight=0]; 22.90/8.41 634[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];634 -> 827[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 634 -> 828[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 635 -> 535[label="",style="dashed", color="red", weight=0]; 22.90/8.41 635[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];635 -> 829[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 635 -> 830[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 636 -> 536[label="",style="dashed", color="red", weight=0]; 22.90/8.41 636[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];636 -> 831[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 636 -> 832[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 637 -> 537[label="",style="dashed", color="red", weight=0]; 22.90/8.41 637[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];637 -> 833[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 637 -> 834[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 638 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.41 638[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];638 -> 835[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 638 -> 836[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 639 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.41 639[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];639 -> 837[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 639 -> 838[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 640 -> 540[label="",style="dashed", color="red", weight=0]; 22.90/8.41 640[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];640 -> 839[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 640 -> 840[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 641 -> 541[label="",style="dashed", color="red", weight=0]; 22.90/8.41 641[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];641 -> 841[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 641 -> 842[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 642 -> 542[label="",style="dashed", color="red", weight=0]; 22.90/8.41 642[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];642 -> 843[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 642 -> 844[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 643 -> 543[label="",style="dashed", color="red", weight=0]; 22.90/8.41 643[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];643 -> 845[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 643 -> 846[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 644 -> 544[label="",style="dashed", color="red", weight=0]; 22.90/8.41 644[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];644 -> 847[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 644 -> 848[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 645 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.41 645[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];645 -> 849[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 645 -> 850[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 646[label="compare2 (Right xuu87) (Right xuu88) False",fontsize=16,color="black",shape="box"];646 -> 851[label="",style="solid", color="black", weight=3]; 22.90/8.41 647[label="compare2 (Right xuu87) (Right xuu88) True",fontsize=16,color="black",shape="box"];647 -> 852[label="",style="solid", color="black", weight=3]; 22.90/8.41 653[label="FiniteMap.Branch (xuu25 : xuu26) (xuu18 xuu21 xuu27) xuu22 xuu23 xuu24",fontsize=16,color="green",shape="box"];653 -> 856[label="",style="dashed", color="green", weight=3]; 22.90/8.41 654[label="xuu24",fontsize=16,color="green",shape="box"];655[label="xuu18",fontsize=16,color="green",shape="box"];656[label="xuu25 : xuu26",fontsize=16,color="green",shape="box"];657[label="xuu27",fontsize=16,color="green",shape="box"];446[label="xuu41",fontsize=16,color="green",shape="box"];447[label="xuu501",fontsize=16,color="green",shape="box"];854[label="FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43 + FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];854 -> 857[label="",style="solid", color="black", weight=3]; 22.90/8.41 853[label="FiniteMap.mkBalBranch6MkBalBranch5 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 xuu91",fontsize=16,color="burlywood",shape="triangle"];3947[label="xuu91/False",fontsize=10,color="white",style="solid",shape="box"];853 -> 3947[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3947 -> 858[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3948[label="xuu91/True",fontsize=10,color="white",style="solid",shape="box"];853 -> 3948[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3948 -> 859[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 1733[label="FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29",fontsize=16,color="black",shape="triangle"];1733 -> 1744[label="",style="solid", color="black", weight=3]; 22.90/8.41 1739[label="FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29",fontsize=16,color="black",shape="triangle"];1739 -> 1755[label="",style="solid", color="black", weight=3]; 22.90/8.41 2154[label="primPlusInt (Pos xuu1970) xuu196",fontsize=16,color="burlywood",shape="box"];3949[label="xuu196/Pos xuu1960",fontsize=10,color="white",style="solid",shape="box"];2154 -> 3949[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3949 -> 2160[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3950[label="xuu196/Neg xuu1960",fontsize=10,color="white",style="solid",shape="box"];2154 -> 3950[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3950 -> 2161[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 2155[label="primPlusInt (Neg xuu1970) xuu196",fontsize=16,color="burlywood",shape="box"];3951[label="xuu196/Pos xuu1960",fontsize=10,color="white",style="solid",shape="box"];2155 -> 3951[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3951 -> 2162[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3952[label="xuu196/Neg xuu1960",fontsize=10,color="white",style="solid",shape="box"];2155 -> 3952[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3952 -> 2163[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3434[label="xuu41",fontsize=16,color="green",shape="box"];3435[label="xuu29",fontsize=16,color="green",shape="box"];3436[label="xuu400 : xuu401",fontsize=16,color="green",shape="box"];3437[label="xuu44",fontsize=16,color="green",shape="box"];3438[label="Zero",fontsize=16,color="green",shape="box"];3433[label="FiniteMap.mkBranch (Pos (Succ xuu292)) xuu293 xuu294 xuu295 xuu296",fontsize=16,color="black",shape="triangle"];3433 -> 3604[label="",style="solid", color="black", weight=3]; 22.90/8.41 1064 -> 1731[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1064[label="FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29",fontsize=16,color="magenta"];1064 -> 1732[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1064 -> 1733[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1063[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 xuu118",fontsize=16,color="burlywood",shape="triangle"];3953[label="xuu118/False",fontsize=10,color="white",style="solid",shape="box"];1063 -> 3953[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3953 -> 1069[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3954[label="xuu118/True",fontsize=10,color="white",style="solid",shape="box"];1063 -> 3954[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3954 -> 1070[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 658[label="xuu41",fontsize=16,color="green",shape="box"];659[label="xuu501",fontsize=16,color="green",shape="box"];660[label="Integer (primMulInt xuu40000 xuu500010)",fontsize=16,color="green",shape="box"];660 -> 866[label="",style="dashed", color="green", weight=3]; 22.90/8.41 661[label="primMulInt (Pos xuu40000) (Pos xuu500010)",fontsize=16,color="black",shape="box"];661 -> 867[label="",style="solid", color="black", weight=3]; 22.90/8.41 662[label="primMulInt (Pos xuu40000) (Neg xuu500010)",fontsize=16,color="black",shape="box"];662 -> 868[label="",style="solid", color="black", weight=3]; 22.90/8.41 663[label="primMulInt (Neg xuu40000) (Pos xuu500010)",fontsize=16,color="black",shape="box"];663 -> 869[label="",style="solid", color="black", weight=3]; 22.90/8.41 664[label="primMulInt (Neg xuu40000) (Neg xuu500010)",fontsize=16,color="black",shape="box"];664 -> 870[label="",style="solid", color="black", weight=3]; 22.90/8.41 994 -> 532[label="",style="dashed", color="red", weight=0]; 22.90/8.41 994[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];994 -> 1071[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 994 -> 1072[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 995 -> 533[label="",style="dashed", color="red", weight=0]; 22.90/8.41 995[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];995 -> 1073[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 995 -> 1074[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 996 -> 534[label="",style="dashed", color="red", weight=0]; 22.90/8.41 996[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];996 -> 1075[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 996 -> 1076[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 997 -> 535[label="",style="dashed", color="red", weight=0]; 22.90/8.41 997[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];997 -> 1077[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 997 -> 1078[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 998 -> 536[label="",style="dashed", color="red", weight=0]; 22.90/8.41 998[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];998 -> 1079[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 998 -> 1080[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 999 -> 537[label="",style="dashed", color="red", weight=0]; 22.90/8.41 999[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];999 -> 1081[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 999 -> 1082[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1000 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1000[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1000 -> 1083[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1000 -> 1084[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1001 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1001[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1001 -> 1085[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1001 -> 1086[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1002 -> 540[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1002[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1002 -> 1087[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1002 -> 1088[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1003 -> 541[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1003[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1003 -> 1089[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1003 -> 1090[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1004 -> 542[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1004[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1004 -> 1091[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1004 -> 1092[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1005 -> 543[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1005[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1005 -> 1093[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1005 -> 1094[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1006 -> 544[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1006[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1006 -> 1095[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1006 -> 1096[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1007 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1007[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1007 -> 1097[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1007 -> 1098[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1008 -> 532[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1008[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1009 -> 533[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1009[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1010 -> 534[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1010[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1011 -> 535[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1011[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1012 -> 536[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1012[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1013 -> 537[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1013[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1014 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1014[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1015 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1015[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1016 -> 540[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1016[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1017 -> 541[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1017[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1018 -> 542[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1018[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1019 -> 543[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1019[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1020 -> 544[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1020[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1021 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1021[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1022[label="False && xuu117",fontsize=16,color="black",shape="box"];1022 -> 1099[label="",style="solid", color="black", weight=3]; 22.90/8.41 1023[label="True && xuu117",fontsize=16,color="black",shape="box"];1023 -> 1100[label="",style="solid", color="black", weight=3]; 22.90/8.41 1024[label="compare1 (xuu99,xuu100) (xuu101,xuu102) ((xuu99,xuu100) <= (xuu101,xuu102))",fontsize=16,color="black",shape="box"];1024 -> 1101[label="",style="solid", color="black", weight=3]; 22.90/8.41 1025[label="EQ",fontsize=16,color="green",shape="box"];687[label="LT",fontsize=16,color="green",shape="box"];688[label="compare0 (Just xuu50000) Nothing otherwise",fontsize=16,color="black",shape="box"];688 -> 950[label="",style="solid", color="black", weight=3]; 22.90/8.41 689[label="xuu50000",fontsize=16,color="green",shape="box"];690[label="xuu4000",fontsize=16,color="green",shape="box"];532[label="xuu50000 == xuu4000",fontsize=16,color="black",shape="triangle"];532 -> 665[label="",style="solid", color="black", weight=3]; 22.90/8.41 691[label="xuu50000",fontsize=16,color="green",shape="box"];692[label="xuu4000",fontsize=16,color="green",shape="box"];533[label="xuu50000 == xuu4000",fontsize=16,color="burlywood",shape="triangle"];3955[label="xuu50000/Left xuu500000",fontsize=10,color="white",style="solid",shape="box"];533 -> 3955[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3955 -> 666[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3956[label="xuu50000/Right xuu500000",fontsize=10,color="white",style="solid",shape="box"];533 -> 3956[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3956 -> 667[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 693[label="xuu50000",fontsize=16,color="green",shape="box"];694[label="xuu4000",fontsize=16,color="green",shape="box"];534[label="xuu50000 == xuu4000",fontsize=16,color="black",shape="triangle"];534 -> 668[label="",style="solid", color="black", weight=3]; 22.90/8.41 695[label="xuu50000",fontsize=16,color="green",shape="box"];696[label="xuu4000",fontsize=16,color="green",shape="box"];535[label="xuu50000 == xuu4000",fontsize=16,color="burlywood",shape="triangle"];3957[label="xuu50000/(xuu500000,xuu500001)",fontsize=10,color="white",style="solid",shape="box"];535 -> 3957[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3957 -> 669[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 697[label="xuu50000",fontsize=16,color="green",shape="box"];698[label="xuu4000",fontsize=16,color="green",shape="box"];536[label="xuu50000 == xuu4000",fontsize=16,color="black",shape="triangle"];536 -> 670[label="",style="solid", color="black", weight=3]; 22.90/8.41 699[label="xuu50000",fontsize=16,color="green",shape="box"];700[label="xuu4000",fontsize=16,color="green",shape="box"];537[label="xuu50000 == xuu4000",fontsize=16,color="burlywood",shape="triangle"];3958[label="xuu50000/Nothing",fontsize=10,color="white",style="solid",shape="box"];537 -> 3958[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3958 -> 671[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3959[label="xuu50000/Just xuu500000",fontsize=10,color="white",style="solid",shape="box"];537 -> 3959[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3959 -> 672[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 701[label="xuu50000",fontsize=16,color="green",shape="box"];702[label="xuu4000",fontsize=16,color="green",shape="box"];538[label="xuu50000 == xuu4000",fontsize=16,color="burlywood",shape="triangle"];3960[label="xuu50000/Integer xuu500000",fontsize=10,color="white",style="solid",shape="box"];538 -> 3960[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3960 -> 673[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 703[label="xuu50000",fontsize=16,color="green",shape="box"];704[label="xuu4000",fontsize=16,color="green",shape="box"];539[label="xuu50000 == xuu4000",fontsize=16,color="burlywood",shape="triangle"];3961[label="xuu50000/LT",fontsize=10,color="white",style="solid",shape="box"];539 -> 3961[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3961 -> 674[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3962[label="xuu50000/EQ",fontsize=10,color="white",style="solid",shape="box"];539 -> 3962[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3962 -> 675[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3963[label="xuu50000/GT",fontsize=10,color="white",style="solid",shape="box"];539 -> 3963[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3963 -> 676[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 705[label="xuu50000",fontsize=16,color="green",shape="box"];706[label="xuu4000",fontsize=16,color="green",shape="box"];540[label="xuu50000 == xuu4000",fontsize=16,color="burlywood",shape="triangle"];3964[label="xuu50000/xuu500000 : xuu500001",fontsize=10,color="white",style="solid",shape="box"];540 -> 3964[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3964 -> 677[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3965[label="xuu50000/[]",fontsize=10,color="white",style="solid",shape="box"];540 -> 3965[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3965 -> 678[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 707[label="xuu50000",fontsize=16,color="green",shape="box"];708[label="xuu4000",fontsize=16,color="green",shape="box"];541[label="xuu50000 == xuu4000",fontsize=16,color="burlywood",shape="triangle"];3966[label="xuu50000/False",fontsize=10,color="white",style="solid",shape="box"];541 -> 3966[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3966 -> 679[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3967[label="xuu50000/True",fontsize=10,color="white",style="solid",shape="box"];541 -> 3967[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3967 -> 680[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 709[label="xuu50000",fontsize=16,color="green",shape="box"];710[label="xuu4000",fontsize=16,color="green",shape="box"];542[label="xuu50000 == xuu4000",fontsize=16,color="burlywood",shape="triangle"];3968[label="xuu50000/xuu500000 :% xuu500001",fontsize=10,color="white",style="solid",shape="box"];542 -> 3968[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3968 -> 681[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 711[label="xuu50000",fontsize=16,color="green",shape="box"];712[label="xuu4000",fontsize=16,color="green",shape="box"];543[label="xuu50000 == xuu4000",fontsize=16,color="burlywood",shape="triangle"];3969[label="xuu50000/(xuu500000,xuu500001,xuu500002)",fontsize=10,color="white",style="solid",shape="box"];543 -> 3969[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3969 -> 682[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 713[label="xuu50000",fontsize=16,color="green",shape="box"];714[label="xuu4000",fontsize=16,color="green",shape="box"];544[label="xuu50000 == xuu4000",fontsize=16,color="burlywood",shape="triangle"];3970[label="xuu50000/()",fontsize=10,color="white",style="solid",shape="box"];544 -> 3970[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3970 -> 683[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 715[label="xuu50000",fontsize=16,color="green",shape="box"];716[label="xuu4000",fontsize=16,color="green",shape="box"];545[label="xuu50000 == xuu4000",fontsize=16,color="black",shape="triangle"];545 -> 684[label="",style="solid", color="black", weight=3]; 22.90/8.41 717 -> 1169[label="",style="dashed", color="red", weight=0]; 22.90/8.41 717[label="compare1 (Just xuu58) (Just xuu59) (Just xuu58 <= Just xuu59)",fontsize=16,color="magenta"];717 -> 1170[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 717 -> 1171[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 717 -> 1172[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 718[label="EQ",fontsize=16,color="green",shape="box"];1026[label="xuu50002 == xuu4002",fontsize=16,color="blue",shape="box"];3971[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 3971[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3971 -> 1102[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3972[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 3972[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3972 -> 1103[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3973[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 3973[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3973 -> 1104[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3974[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 3974[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3974 -> 1105[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3975[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 3975[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3975 -> 1106[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3976[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 3976[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3976 -> 1107[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3977[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 3977[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3977 -> 1108[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3978[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 3978[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3978 -> 1109[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3979[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 3979[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3979 -> 1110[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3980[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 3980[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3980 -> 1111[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3981[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 3981[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3981 -> 1112[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3982[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 3982[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3982 -> 1113[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3983[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 3983[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3983 -> 1114[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3984[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 3984[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3984 -> 1115[label="",style="solid", color="blue", weight=3]; 22.90/8.41 1027[label="xuu50001 == xuu4001",fontsize=16,color="blue",shape="box"];3985[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1027 -> 3985[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3985 -> 1116[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3986[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1027 -> 3986[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3986 -> 1117[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3987[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1027 -> 3987[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3987 -> 1118[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3988[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1027 -> 3988[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3988 -> 1119[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3989[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1027 -> 3989[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3989 -> 1120[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3990[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1027 -> 3990[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3990 -> 1121[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3991[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1027 -> 3991[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3991 -> 1122[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3992[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1027 -> 3992[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3992 -> 1123[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3993[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1027 -> 3993[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3993 -> 1124[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3994[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1027 -> 3994[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3994 -> 1125[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3995[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1027 -> 3995[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3995 -> 1126[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3996[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1027 -> 3996[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3996 -> 1127[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3997[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1027 -> 3997[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3997 -> 1128[label="",style="solid", color="blue", weight=3]; 22.90/8.41 3998[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1027 -> 3998[label="",style="solid", color="blue", weight=9]; 22.90/8.41 3998 -> 1129[label="",style="solid", color="blue", weight=3]; 22.90/8.41 1028 -> 532[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1028[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1028 -> 1130[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1028 -> 1131[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1029 -> 533[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1029[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1029 -> 1132[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1029 -> 1133[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1030 -> 534[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1030[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1030 -> 1134[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1030 -> 1135[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1031 -> 535[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1031[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1031 -> 1136[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1031 -> 1137[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1032 -> 536[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1032[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1032 -> 1138[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1032 -> 1139[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1033 -> 537[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1033[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1033 -> 1140[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1033 -> 1141[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1034 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1034[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1034 -> 1142[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1034 -> 1143[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1035 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1035[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1035 -> 1144[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1035 -> 1145[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1036 -> 540[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1036[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1036 -> 1146[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1036 -> 1147[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1037 -> 541[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1037[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1037 -> 1148[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1037 -> 1149[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1038 -> 542[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1038[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1038 -> 1150[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1038 -> 1151[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1039 -> 543[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1039[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1039 -> 1152[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1039 -> 1153[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1040 -> 544[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1040[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1040 -> 1154[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1040 -> 1155[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1041 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1041[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1041 -> 1156[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1041 -> 1157[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1042[label="compare1 (xuu69,xuu70,xuu71) (xuu72,xuu73,xuu74) ((xuu69,xuu70,xuu71) <= (xuu72,xuu73,xuu74))",fontsize=16,color="black",shape="box"];1042 -> 1158[label="",style="solid", color="black", weight=3]; 22.90/8.41 1043[label="EQ",fontsize=16,color="green",shape="box"];749[label="xuu40000",fontsize=16,color="green",shape="box"];750[label="xuu500000",fontsize=16,color="green",shape="box"];751[label="LT",fontsize=16,color="green",shape="box"];752[label="LT",fontsize=16,color="green",shape="box"];753[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];753 -> 1044[label="",style="solid", color="black", weight=3]; 22.90/8.41 754[label="LT",fontsize=16,color="green",shape="box"];755[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];755 -> 1045[label="",style="solid", color="black", weight=3]; 22.90/8.41 756[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];756 -> 1046[label="",style="solid", color="black", weight=3]; 22.90/8.41 757[label="LT",fontsize=16,color="green",shape="box"];758[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];758 -> 1047[label="",style="solid", color="black", weight=3]; 22.90/8.41 759[label="Pos xuu500010",fontsize=16,color="green",shape="box"];760[label="xuu4000",fontsize=16,color="green",shape="box"];761[label="xuu50000",fontsize=16,color="green",shape="box"];762[label="Pos xuu40010",fontsize=16,color="green",shape="box"];763[label="Neg xuu500010",fontsize=16,color="green",shape="box"];764[label="xuu4000",fontsize=16,color="green",shape="box"];765[label="xuu50000",fontsize=16,color="green",shape="box"];766[label="Pos xuu40010",fontsize=16,color="green",shape="box"];767[label="Pos xuu500010",fontsize=16,color="green",shape="box"];768[label="xuu4000",fontsize=16,color="green",shape="box"];769[label="xuu50000",fontsize=16,color="green",shape="box"];770[label="Neg xuu40010",fontsize=16,color="green",shape="box"];771[label="Neg xuu500010",fontsize=16,color="green",shape="box"];772[label="xuu4000",fontsize=16,color="green",shape="box"];773[label="xuu50000",fontsize=16,color="green",shape="box"];774[label="Neg xuu40010",fontsize=16,color="green",shape="box"];775[label="Pos xuu500010",fontsize=16,color="green",shape="box"];776[label="xuu4000",fontsize=16,color="green",shape="box"];777[label="xuu50000",fontsize=16,color="green",shape="box"];778[label="Pos xuu40010",fontsize=16,color="green",shape="box"];779[label="Neg xuu500010",fontsize=16,color="green",shape="box"];780[label="xuu4000",fontsize=16,color="green",shape="box"];781[label="xuu50000",fontsize=16,color="green",shape="box"];782[label="Pos xuu40010",fontsize=16,color="green",shape="box"];783[label="Pos xuu500010",fontsize=16,color="green",shape="box"];784[label="xuu4000",fontsize=16,color="green",shape="box"];785[label="xuu50000",fontsize=16,color="green",shape="box"];786[label="Neg xuu40010",fontsize=16,color="green",shape="box"];787[label="Neg xuu500010",fontsize=16,color="green",shape="box"];788[label="xuu4000",fontsize=16,color="green",shape="box"];789[label="xuu50000",fontsize=16,color="green",shape="box"];790[label="Neg xuu40010",fontsize=16,color="green",shape="box"];791[label="xuu50000",fontsize=16,color="green",shape="box"];792[label="xuu4000",fontsize=16,color="green",shape="box"];793[label="xuu50000",fontsize=16,color="green",shape="box"];794[label="xuu4000",fontsize=16,color="green",shape="box"];795[label="xuu50000",fontsize=16,color="green",shape="box"];796[label="xuu4000",fontsize=16,color="green",shape="box"];797[label="xuu50000",fontsize=16,color="green",shape="box"];798[label="xuu4000",fontsize=16,color="green",shape="box"];799[label="xuu50000",fontsize=16,color="green",shape="box"];800[label="xuu4000",fontsize=16,color="green",shape="box"];801[label="xuu50000",fontsize=16,color="green",shape="box"];802[label="xuu4000",fontsize=16,color="green",shape="box"];803[label="xuu50000",fontsize=16,color="green",shape="box"];804[label="xuu4000",fontsize=16,color="green",shape="box"];805[label="xuu50000",fontsize=16,color="green",shape="box"];806[label="xuu4000",fontsize=16,color="green",shape="box"];807[label="xuu50000",fontsize=16,color="green",shape="box"];808[label="xuu4000",fontsize=16,color="green",shape="box"];809[label="xuu50000",fontsize=16,color="green",shape="box"];810[label="xuu4000",fontsize=16,color="green",shape="box"];811[label="xuu50000",fontsize=16,color="green",shape="box"];812[label="xuu4000",fontsize=16,color="green",shape="box"];813[label="xuu50000",fontsize=16,color="green",shape="box"];814[label="xuu4000",fontsize=16,color="green",shape="box"];815[label="xuu50000",fontsize=16,color="green",shape="box"];816[label="xuu4000",fontsize=16,color="green",shape="box"];817[label="xuu50000",fontsize=16,color="green",shape="box"];818[label="xuu4000",fontsize=16,color="green",shape="box"];819 -> 1245[label="",style="dashed", color="red", weight=0]; 22.90/8.41 819[label="compare1 (Left xuu80) (Left xuu81) (Left xuu80 <= Left xuu81)",fontsize=16,color="magenta"];819 -> 1246[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 819 -> 1247[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 819 -> 1248[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 820[label="EQ",fontsize=16,color="green",shape="box"];821[label="LT",fontsize=16,color="green",shape="box"];822[label="compare0 (Right xuu50000) (Left xuu4000) otherwise",fontsize=16,color="black",shape="box"];822 -> 1049[label="",style="solid", color="black", weight=3]; 22.90/8.41 823[label="xuu50000",fontsize=16,color="green",shape="box"];824[label="xuu4000",fontsize=16,color="green",shape="box"];825[label="xuu50000",fontsize=16,color="green",shape="box"];826[label="xuu4000",fontsize=16,color="green",shape="box"];827[label="xuu50000",fontsize=16,color="green",shape="box"];828[label="xuu4000",fontsize=16,color="green",shape="box"];829[label="xuu50000",fontsize=16,color="green",shape="box"];830[label="xuu4000",fontsize=16,color="green",shape="box"];831[label="xuu50000",fontsize=16,color="green",shape="box"];832[label="xuu4000",fontsize=16,color="green",shape="box"];833[label="xuu50000",fontsize=16,color="green",shape="box"];834[label="xuu4000",fontsize=16,color="green",shape="box"];835[label="xuu50000",fontsize=16,color="green",shape="box"];836[label="xuu4000",fontsize=16,color="green",shape="box"];837[label="xuu50000",fontsize=16,color="green",shape="box"];838[label="xuu4000",fontsize=16,color="green",shape="box"];839[label="xuu50000",fontsize=16,color="green",shape="box"];840[label="xuu4000",fontsize=16,color="green",shape="box"];841[label="xuu50000",fontsize=16,color="green",shape="box"];842[label="xuu4000",fontsize=16,color="green",shape="box"];843[label="xuu50000",fontsize=16,color="green",shape="box"];844[label="xuu4000",fontsize=16,color="green",shape="box"];845[label="xuu50000",fontsize=16,color="green",shape="box"];846[label="xuu4000",fontsize=16,color="green",shape="box"];847[label="xuu50000",fontsize=16,color="green",shape="box"];848[label="xuu4000",fontsize=16,color="green",shape="box"];849[label="xuu50000",fontsize=16,color="green",shape="box"];850[label="xuu4000",fontsize=16,color="green",shape="box"];851 -> 1256[label="",style="dashed", color="red", weight=0]; 22.90/8.41 851[label="compare1 (Right xuu87) (Right xuu88) (Right xuu87 <= Right xuu88)",fontsize=16,color="magenta"];851 -> 1257[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 851 -> 1258[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 851 -> 1259[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 852[label="EQ",fontsize=16,color="green",shape="box"];856[label="xuu18 xuu21 xuu27",fontsize=16,color="green",shape="box"];856 -> 1051[label="",style="dashed", color="green", weight=3]; 22.90/8.41 856 -> 1052[label="",style="dashed", color="green", weight=3]; 22.90/8.41 857 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.41 857[label="compare (FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43 + FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];857 -> 1053[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 857 -> 1054[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 858[label="FiniteMap.mkBalBranch6MkBalBranch5 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 False",fontsize=16,color="black",shape="box"];858 -> 1055[label="",style="solid", color="black", weight=3]; 22.90/8.41 859[label="FiniteMap.mkBalBranch6MkBalBranch5 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 True",fontsize=16,color="black",shape="box"];859 -> 1056[label="",style="solid", color="black", weight=3]; 22.90/8.41 1744[label="FiniteMap.sizeFM xuu44",fontsize=16,color="burlywood",shape="triangle"];3999[label="xuu44/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3999[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 3999 -> 2026[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4000[label="xuu44/FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444",fontsize=10,color="white",style="solid",shape="box"];1744 -> 4000[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4000 -> 2027[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 1755 -> 1744[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1755[label="FiniteMap.sizeFM xuu29",fontsize=16,color="magenta"];1755 -> 2067[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 2160[label="primPlusInt (Pos xuu1970) (Pos xuu1960)",fontsize=16,color="black",shape="box"];2160 -> 2174[label="",style="solid", color="black", weight=3]; 22.90/8.41 2161[label="primPlusInt (Pos xuu1970) (Neg xuu1960)",fontsize=16,color="black",shape="box"];2161 -> 2175[label="",style="solid", color="black", weight=3]; 22.90/8.41 2162[label="primPlusInt (Neg xuu1970) (Pos xuu1960)",fontsize=16,color="black",shape="box"];2162 -> 2176[label="",style="solid", color="black", weight=3]; 22.90/8.41 2163[label="primPlusInt (Neg xuu1970) (Neg xuu1960)",fontsize=16,color="black",shape="box"];2163 -> 2177[label="",style="solid", color="black", weight=3]; 22.90/8.41 3604[label="FiniteMap.mkBranchResult xuu293 xuu294 xuu296 xuu295",fontsize=16,color="black",shape="box"];3604 -> 3657[label="",style="solid", color="black", weight=3]; 22.90/8.41 1732 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1732[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29",fontsize=16,color="magenta"];1732 -> 1742[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1732 -> 1743[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1731[label="xuu187 > xuu186",fontsize=16,color="black",shape="triangle"];1731 -> 1745[label="",style="solid", color="black", weight=3]; 22.90/8.41 1069[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 False",fontsize=16,color="black",shape="box"];1069 -> 1176[label="",style="solid", color="black", weight=3]; 22.90/8.41 1070[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 True",fontsize=16,color="black",shape="box"];1070 -> 1177[label="",style="solid", color="black", weight=3]; 22.90/8.41 866 -> 452[label="",style="dashed", color="red", weight=0]; 22.90/8.41 866[label="primMulInt xuu40000 xuu500010",fontsize=16,color="magenta"];866 -> 1162[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 866 -> 1163[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 867[label="Pos (primMulNat xuu40000 xuu500010)",fontsize=16,color="green",shape="box"];867 -> 1164[label="",style="dashed", color="green", weight=3]; 22.90/8.41 868[label="Neg (primMulNat xuu40000 xuu500010)",fontsize=16,color="green",shape="box"];868 -> 1165[label="",style="dashed", color="green", weight=3]; 22.90/8.41 869[label="Neg (primMulNat xuu40000 xuu500010)",fontsize=16,color="green",shape="box"];869 -> 1166[label="",style="dashed", color="green", weight=3]; 22.90/8.41 870[label="Pos (primMulNat xuu40000 xuu500010)",fontsize=16,color="green",shape="box"];870 -> 1167[label="",style="dashed", color="green", weight=3]; 22.90/8.41 1071[label="xuu50001",fontsize=16,color="green",shape="box"];1072[label="xuu4001",fontsize=16,color="green",shape="box"];1073[label="xuu50001",fontsize=16,color="green",shape="box"];1074[label="xuu4001",fontsize=16,color="green",shape="box"];1075[label="xuu50001",fontsize=16,color="green",shape="box"];1076[label="xuu4001",fontsize=16,color="green",shape="box"];1077[label="xuu50001",fontsize=16,color="green",shape="box"];1078[label="xuu4001",fontsize=16,color="green",shape="box"];1079[label="xuu50001",fontsize=16,color="green",shape="box"];1080[label="xuu4001",fontsize=16,color="green",shape="box"];1081[label="xuu50001",fontsize=16,color="green",shape="box"];1082[label="xuu4001",fontsize=16,color="green",shape="box"];1083[label="xuu50001",fontsize=16,color="green",shape="box"];1084[label="xuu4001",fontsize=16,color="green",shape="box"];1085[label="xuu50001",fontsize=16,color="green",shape="box"];1086[label="xuu4001",fontsize=16,color="green",shape="box"];1087[label="xuu50001",fontsize=16,color="green",shape="box"];1088[label="xuu4001",fontsize=16,color="green",shape="box"];1089[label="xuu50001",fontsize=16,color="green",shape="box"];1090[label="xuu4001",fontsize=16,color="green",shape="box"];1091[label="xuu50001",fontsize=16,color="green",shape="box"];1092[label="xuu4001",fontsize=16,color="green",shape="box"];1093[label="xuu50001",fontsize=16,color="green",shape="box"];1094[label="xuu4001",fontsize=16,color="green",shape="box"];1095[label="xuu50001",fontsize=16,color="green",shape="box"];1096[label="xuu4001",fontsize=16,color="green",shape="box"];1097[label="xuu50001",fontsize=16,color="green",shape="box"];1098[label="xuu4001",fontsize=16,color="green",shape="box"];1099[label="False",fontsize=16,color="green",shape="box"];1100[label="xuu117",fontsize=16,color="green",shape="box"];1101 -> 1293[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1101[label="compare1 (xuu99,xuu100) (xuu101,xuu102) (xuu99 < xuu101 || xuu99 == xuu101 && xuu100 <= xuu102)",fontsize=16,color="magenta"];1101 -> 1294[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1101 -> 1295[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1101 -> 1296[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1101 -> 1297[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1101 -> 1298[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1101 -> 1299[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 950[label="compare0 (Just xuu50000) Nothing True",fontsize=16,color="black",shape="box"];950 -> 1168[label="",style="solid", color="black", weight=3]; 22.90/8.41 665[label="primEqChar xuu50000 xuu4000",fontsize=16,color="burlywood",shape="box"];4001[label="xuu50000/Char xuu500000",fontsize=10,color="white",style="solid",shape="box"];665 -> 4001[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4001 -> 871[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 666[label="Left xuu500000 == xuu4000",fontsize=16,color="burlywood",shape="box"];4002[label="xuu4000/Left xuu40000",fontsize=10,color="white",style="solid",shape="box"];666 -> 4002[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4002 -> 872[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4003[label="xuu4000/Right xuu40000",fontsize=10,color="white",style="solid",shape="box"];666 -> 4003[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4003 -> 873[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 667[label="Right xuu500000 == xuu4000",fontsize=16,color="burlywood",shape="box"];4004[label="xuu4000/Left xuu40000",fontsize=10,color="white",style="solid",shape="box"];667 -> 4004[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4004 -> 874[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4005[label="xuu4000/Right xuu40000",fontsize=10,color="white",style="solid",shape="box"];667 -> 4005[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4005 -> 875[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 668[label="primEqDouble xuu50000 xuu4000",fontsize=16,color="burlywood",shape="box"];4006[label="xuu50000/Double xuu500000 xuu500001",fontsize=10,color="white",style="solid",shape="box"];668 -> 4006[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4006 -> 876[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 669[label="(xuu500000,xuu500001) == xuu4000",fontsize=16,color="burlywood",shape="box"];4007[label="xuu4000/(xuu40000,xuu40001)",fontsize=10,color="white",style="solid",shape="box"];669 -> 4007[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4007 -> 877[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 670[label="primEqFloat xuu50000 xuu4000",fontsize=16,color="burlywood",shape="box"];4008[label="xuu50000/Float xuu500000 xuu500001",fontsize=10,color="white",style="solid",shape="box"];670 -> 4008[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4008 -> 878[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 671[label="Nothing == xuu4000",fontsize=16,color="burlywood",shape="box"];4009[label="xuu4000/Nothing",fontsize=10,color="white",style="solid",shape="box"];671 -> 4009[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4009 -> 879[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4010[label="xuu4000/Just xuu40000",fontsize=10,color="white",style="solid",shape="box"];671 -> 4010[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4010 -> 880[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 672[label="Just xuu500000 == xuu4000",fontsize=16,color="burlywood",shape="box"];4011[label="xuu4000/Nothing",fontsize=10,color="white",style="solid",shape="box"];672 -> 4011[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4011 -> 881[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4012[label="xuu4000/Just xuu40000",fontsize=10,color="white",style="solid",shape="box"];672 -> 4012[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4012 -> 882[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 673[label="Integer xuu500000 == xuu4000",fontsize=16,color="burlywood",shape="box"];4013[label="xuu4000/Integer xuu40000",fontsize=10,color="white",style="solid",shape="box"];673 -> 4013[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4013 -> 883[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 674[label="LT == xuu4000",fontsize=16,color="burlywood",shape="box"];4014[label="xuu4000/LT",fontsize=10,color="white",style="solid",shape="box"];674 -> 4014[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4014 -> 884[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4015[label="xuu4000/EQ",fontsize=10,color="white",style="solid",shape="box"];674 -> 4015[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4015 -> 885[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4016[label="xuu4000/GT",fontsize=10,color="white",style="solid",shape="box"];674 -> 4016[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4016 -> 886[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 675[label="EQ == xuu4000",fontsize=16,color="burlywood",shape="box"];4017[label="xuu4000/LT",fontsize=10,color="white",style="solid",shape="box"];675 -> 4017[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4017 -> 887[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4018[label="xuu4000/EQ",fontsize=10,color="white",style="solid",shape="box"];675 -> 4018[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4018 -> 888[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4019[label="xuu4000/GT",fontsize=10,color="white",style="solid",shape="box"];675 -> 4019[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4019 -> 889[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 676[label="GT == xuu4000",fontsize=16,color="burlywood",shape="box"];4020[label="xuu4000/LT",fontsize=10,color="white",style="solid",shape="box"];676 -> 4020[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4020 -> 890[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4021[label="xuu4000/EQ",fontsize=10,color="white",style="solid",shape="box"];676 -> 4021[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4021 -> 891[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4022[label="xuu4000/GT",fontsize=10,color="white",style="solid",shape="box"];676 -> 4022[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4022 -> 892[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 677[label="xuu500000 : xuu500001 == xuu4000",fontsize=16,color="burlywood",shape="box"];4023[label="xuu4000/xuu40000 : xuu40001",fontsize=10,color="white",style="solid",shape="box"];677 -> 4023[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4023 -> 893[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4024[label="xuu4000/[]",fontsize=10,color="white",style="solid",shape="box"];677 -> 4024[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4024 -> 894[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 678[label="[] == xuu4000",fontsize=16,color="burlywood",shape="box"];4025[label="xuu4000/xuu40000 : xuu40001",fontsize=10,color="white",style="solid",shape="box"];678 -> 4025[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4025 -> 895[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4026[label="xuu4000/[]",fontsize=10,color="white",style="solid",shape="box"];678 -> 4026[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4026 -> 896[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 679[label="False == xuu4000",fontsize=16,color="burlywood",shape="box"];4027[label="xuu4000/False",fontsize=10,color="white",style="solid",shape="box"];679 -> 4027[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4027 -> 897[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4028[label="xuu4000/True",fontsize=10,color="white",style="solid",shape="box"];679 -> 4028[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4028 -> 898[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 680[label="True == xuu4000",fontsize=16,color="burlywood",shape="box"];4029[label="xuu4000/False",fontsize=10,color="white",style="solid",shape="box"];680 -> 4029[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4029 -> 899[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4030[label="xuu4000/True",fontsize=10,color="white",style="solid",shape="box"];680 -> 4030[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4030 -> 900[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 681[label="xuu500000 :% xuu500001 == xuu4000",fontsize=16,color="burlywood",shape="box"];4031[label="xuu4000/xuu40000 :% xuu40001",fontsize=10,color="white",style="solid",shape="box"];681 -> 4031[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4031 -> 901[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 682[label="(xuu500000,xuu500001,xuu500002) == xuu4000",fontsize=16,color="burlywood",shape="box"];4032[label="xuu4000/(xuu40000,xuu40001,xuu40002)",fontsize=10,color="white",style="solid",shape="box"];682 -> 4032[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4032 -> 902[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 683[label="() == xuu4000",fontsize=16,color="burlywood",shape="box"];4033[label="xuu4000/()",fontsize=10,color="white",style="solid",shape="box"];683 -> 4033[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4033 -> 903[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 684[label="primEqInt xuu50000 xuu4000",fontsize=16,color="burlywood",shape="triangle"];4034[label="xuu50000/Pos xuu500000",fontsize=10,color="white",style="solid",shape="box"];684 -> 4034[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4034 -> 904[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4035[label="xuu50000/Neg xuu500000",fontsize=10,color="white",style="solid",shape="box"];684 -> 4035[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4035 -> 905[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 1170[label="xuu59",fontsize=16,color="green",shape="box"];1171[label="Just xuu58 <= Just xuu59",fontsize=16,color="black",shape="box"];1171 -> 1180[label="",style="solid", color="black", weight=3]; 22.90/8.41 1172[label="xuu58",fontsize=16,color="green",shape="box"];1169[label="compare1 (Just xuu125) (Just xuu126) xuu127",fontsize=16,color="burlywood",shape="triangle"];4036[label="xuu127/False",fontsize=10,color="white",style="solid",shape="box"];1169 -> 4036[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4036 -> 1181[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4037[label="xuu127/True",fontsize=10,color="white",style="solid",shape="box"];1169 -> 4037[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4037 -> 1182[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 1102 -> 532[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1102[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1102 -> 1183[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1102 -> 1184[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1103 -> 533[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1103[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1103 -> 1185[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1103 -> 1186[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1104 -> 534[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1104[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1104 -> 1187[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1104 -> 1188[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1105 -> 535[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1105[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1105 -> 1189[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1105 -> 1190[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1106 -> 536[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1106[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1106 -> 1191[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1106 -> 1192[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1107 -> 537[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1107[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1107 -> 1193[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1107 -> 1194[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1108 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1108[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1108 -> 1195[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1108 -> 1196[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1109 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1109[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1109 -> 1197[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1109 -> 1198[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1110 -> 540[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1110[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1110 -> 1199[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1110 -> 1200[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1111 -> 541[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1111[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1111 -> 1201[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1111 -> 1202[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1112 -> 542[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1112[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1112 -> 1203[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1112 -> 1204[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1113 -> 543[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1113[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1113 -> 1205[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1113 -> 1206[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1114 -> 544[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1114[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1114 -> 1207[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1114 -> 1208[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1115 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1115[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1115 -> 1209[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1115 -> 1210[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1116 -> 532[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1116[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1116 -> 1211[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1116 -> 1212[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1117 -> 533[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1117[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1117 -> 1213[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1117 -> 1214[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1118 -> 534[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1118[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1118 -> 1215[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1118 -> 1216[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1119 -> 535[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1119[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1119 -> 1217[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1119 -> 1218[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1120 -> 536[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1120[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1120 -> 1219[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1120 -> 1220[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1121 -> 537[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1121[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1121 -> 1221[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1121 -> 1222[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1122 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1122[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1122 -> 1223[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1122 -> 1224[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1123 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1123[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1123 -> 1225[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1123 -> 1226[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1124 -> 540[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1124[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1124 -> 1227[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1124 -> 1228[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1125 -> 541[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1125[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1125 -> 1229[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1125 -> 1230[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1126 -> 542[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1126[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1126 -> 1231[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1126 -> 1232[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1127 -> 543[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1127[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1127 -> 1233[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1127 -> 1234[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1128 -> 544[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1128[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1128 -> 1235[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1128 -> 1236[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1129 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1129[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1129 -> 1237[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1129 -> 1238[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1130[label="xuu50000",fontsize=16,color="green",shape="box"];1131[label="xuu4000",fontsize=16,color="green",shape="box"];1132[label="xuu50000",fontsize=16,color="green",shape="box"];1133[label="xuu4000",fontsize=16,color="green",shape="box"];1134[label="xuu50000",fontsize=16,color="green",shape="box"];1135[label="xuu4000",fontsize=16,color="green",shape="box"];1136[label="xuu50000",fontsize=16,color="green",shape="box"];1137[label="xuu4000",fontsize=16,color="green",shape="box"];1138[label="xuu50000",fontsize=16,color="green",shape="box"];1139[label="xuu4000",fontsize=16,color="green",shape="box"];1140[label="xuu50000",fontsize=16,color="green",shape="box"];1141[label="xuu4000",fontsize=16,color="green",shape="box"];1142[label="xuu50000",fontsize=16,color="green",shape="box"];1143[label="xuu4000",fontsize=16,color="green",shape="box"];1144[label="xuu50000",fontsize=16,color="green",shape="box"];1145[label="xuu4000",fontsize=16,color="green",shape="box"];1146[label="xuu50000",fontsize=16,color="green",shape="box"];1147[label="xuu4000",fontsize=16,color="green",shape="box"];1148[label="xuu50000",fontsize=16,color="green",shape="box"];1149[label="xuu4000",fontsize=16,color="green",shape="box"];1150[label="xuu50000",fontsize=16,color="green",shape="box"];1151[label="xuu4000",fontsize=16,color="green",shape="box"];1152[label="xuu50000",fontsize=16,color="green",shape="box"];1153[label="xuu4000",fontsize=16,color="green",shape="box"];1154[label="xuu50000",fontsize=16,color="green",shape="box"];1155[label="xuu4000",fontsize=16,color="green",shape="box"];1156[label="xuu50000",fontsize=16,color="green",shape="box"];1157[label="xuu4000",fontsize=16,color="green",shape="box"];1158 -> 1379[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1158[label="compare1 (xuu69,xuu70,xuu71) (xuu72,xuu73,xuu74) (xuu69 < xuu72 || xuu69 == xuu72 && (xuu70 < xuu73 || xuu70 == xuu73 && xuu71 <= xuu74))",fontsize=16,color="magenta"];1158 -> 1380[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1158 -> 1381[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1158 -> 1382[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1158 -> 1383[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1158 -> 1384[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1158 -> 1385[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1158 -> 1386[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1158 -> 1387[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1044[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];1044 -> 1241[label="",style="solid", color="black", weight=3]; 22.90/8.41 1045[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];1045 -> 1242[label="",style="solid", color="black", weight=3]; 22.90/8.41 1046[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];1046 -> 1243[label="",style="solid", color="black", weight=3]; 22.90/8.41 1047[label="compare0 True False True",fontsize=16,color="black",shape="box"];1047 -> 1244[label="",style="solid", color="black", weight=3]; 22.90/8.41 1246[label="Left xuu80 <= Left xuu81",fontsize=16,color="black",shape="box"];1246 -> 1252[label="",style="solid", color="black", weight=3]; 22.90/8.41 1247[label="xuu80",fontsize=16,color="green",shape="box"];1248[label="xuu81",fontsize=16,color="green",shape="box"];1245[label="compare1 (Left xuu135) (Left xuu136) xuu137",fontsize=16,color="burlywood",shape="triangle"];4038[label="xuu137/False",fontsize=10,color="white",style="solid",shape="box"];1245 -> 4038[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4038 -> 1253[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4039[label="xuu137/True",fontsize=10,color="white",style="solid",shape="box"];1245 -> 4039[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4039 -> 1254[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 1049[label="compare0 (Right xuu50000) (Left xuu4000) True",fontsize=16,color="black",shape="box"];1049 -> 1255[label="",style="solid", color="black", weight=3]; 22.90/8.41 1257[label="Right xuu87 <= Right xuu88",fontsize=16,color="black",shape="box"];1257 -> 1263[label="",style="solid", color="black", weight=3]; 22.90/8.41 1258[label="xuu87",fontsize=16,color="green",shape="box"];1259[label="xuu88",fontsize=16,color="green",shape="box"];1256[label="compare1 (Right xuu142) (Right xuu143) xuu144",fontsize=16,color="burlywood",shape="triangle"];4040[label="xuu144/False",fontsize=10,color="white",style="solid",shape="box"];1256 -> 4040[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4040 -> 1264[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4041[label="xuu144/True",fontsize=10,color="white",style="solid",shape="box"];1256 -> 4041[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4041 -> 1265[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 1051[label="xuu21",fontsize=16,color="green",shape="box"];1052[label="xuu27",fontsize=16,color="green",shape="box"];1053 -> 174[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1053[label="compare (FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43 + FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1053 -> 1266[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1053 -> 1267[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1054[label="LT",fontsize=16,color="green",shape="box"];1055 -> 1704[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1055[label="FiniteMap.mkBalBranch6MkBalBranch4 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 (FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43)",fontsize=16,color="magenta"];1055 -> 1705[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1056 -> 3433[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1056[label="FiniteMap.mkBranch (Pos (Succ Zero)) [] xuu41 xuu43 xuu41",fontsize=16,color="magenta"];1056 -> 3439[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1056 -> 3440[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1056 -> 3441[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1056 -> 3442[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1056 -> 3443[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 2026[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2026 -> 2063[label="",style="solid", color="black", weight=3]; 22.90/8.41 2027[label="FiniteMap.sizeFM (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];2027 -> 2064[label="",style="solid", color="black", weight=3]; 22.90/8.41 2067[label="xuu29",fontsize=16,color="green",shape="box"];2174[label="Pos (primPlusNat xuu1970 xuu1960)",fontsize=16,color="green",shape="box"];2174 -> 2180[label="",style="dashed", color="green", weight=3]; 22.90/8.41 2175[label="primMinusNat xuu1970 xuu1960",fontsize=16,color="burlywood",shape="triangle"];4042[label="xuu1970/Succ xuu19700",fontsize=10,color="white",style="solid",shape="box"];2175 -> 4042[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4042 -> 2181[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4043[label="xuu1970/Zero",fontsize=10,color="white",style="solid",shape="box"];2175 -> 4043[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4043 -> 2182[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 2176 -> 2175[label="",style="dashed", color="red", weight=0]; 22.90/8.41 2176[label="primMinusNat xuu1960 xuu1970",fontsize=16,color="magenta"];2176 -> 2183[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 2176 -> 2184[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 2177[label="Neg (primPlusNat xuu1970 xuu1960)",fontsize=16,color="green",shape="box"];2177 -> 2185[label="",style="dashed", color="green", weight=3]; 22.90/8.41 3657[label="FiniteMap.Branch xuu293 xuu294 (FiniteMap.mkBranchUnbox xuu296 xuu293 xuu295 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu296 xuu293 xuu295 + FiniteMap.mkBranchRight_size xuu296 xuu293 xuu295)) xuu295 xuu296",fontsize=16,color="green",shape="box"];3657 -> 3663[label="",style="dashed", color="green", weight=3]; 22.90/8.41 1742[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1742 -> 2025[label="",style="solid", color="black", weight=3]; 22.90/8.41 1743 -> 1739[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1743[label="FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29",fontsize=16,color="magenta"];1745 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1745[label="compare xuu187 xuu186 == GT",fontsize=16,color="magenta"];1745 -> 2028[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1745 -> 2029[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1176 -> 1727[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1176[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 (FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29)",fontsize=16,color="magenta"];1176 -> 1728[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1177[label="FiniteMap.mkBalBranch6MkBalBranch0 (xuu400 : xuu401) xuu41 xuu44 xuu29 xuu29 xuu44 xuu44",fontsize=16,color="burlywood",shape="box"];4044[label="xuu44/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1177 -> 4044[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4044 -> 1283[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4045[label="xuu44/FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444",fontsize=10,color="white",style="solid",shape="box"];1177 -> 4045[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4045 -> 1284[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 1162[label="xuu40000",fontsize=16,color="green",shape="box"];1163[label="xuu500010",fontsize=16,color="green",shape="box"];1164[label="primMulNat xuu40000 xuu500010",fontsize=16,color="burlywood",shape="triangle"];4046[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4046[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4046 -> 1285[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4047[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4047[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4047 -> 1286[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 1165 -> 1164[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1165[label="primMulNat xuu40000 xuu500010",fontsize=16,color="magenta"];1165 -> 1287[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1166 -> 1164[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1166[label="primMulNat xuu40000 xuu500010",fontsize=16,color="magenta"];1166 -> 1288[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1167 -> 1164[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1167[label="primMulNat xuu40000 xuu500010",fontsize=16,color="magenta"];1167 -> 1289[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1167 -> 1290[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1294[label="xuu100",fontsize=16,color="green",shape="box"];1295[label="xuu99",fontsize=16,color="green",shape="box"];1296[label="xuu102",fontsize=16,color="green",shape="box"];1297[label="xuu99 < xuu101",fontsize=16,color="blue",shape="box"];4048[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 4048[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4048 -> 1306[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4049[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 4049[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4049 -> 1307[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4050[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 4050[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4050 -> 1308[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4051[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 4051[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4051 -> 1309[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4052[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 4052[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4052 -> 1310[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4053[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 4053[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4053 -> 1311[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4054[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 4054[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4054 -> 1312[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4055[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 4055[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4055 -> 1313[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4056[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 4056[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4056 -> 1314[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4057[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 4057[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4057 -> 1315[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4058[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 4058[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4058 -> 1316[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4059[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 4059[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4059 -> 1317[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4060[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 4060[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4060 -> 1318[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4061[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 4061[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4061 -> 1319[label="",style="solid", color="blue", weight=3]; 22.90/8.41 1298[label="xuu101",fontsize=16,color="green",shape="box"];1299 -> 985[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1299[label="xuu99 == xuu101 && xuu100 <= xuu102",fontsize=16,color="magenta"];1299 -> 1320[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1299 -> 1321[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1293[label="compare1 (xuu156,xuu157) (xuu158,xuu159) (xuu160 || xuu161)",fontsize=16,color="burlywood",shape="triangle"];4062[label="xuu160/False",fontsize=10,color="white",style="solid",shape="box"];1293 -> 4062[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4062 -> 1322[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4063[label="xuu160/True",fontsize=10,color="white",style="solid",shape="box"];1293 -> 4063[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4063 -> 1323[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 1168[label="GT",fontsize=16,color="green",shape="box"];871[label="primEqChar (Char xuu500000) xuu4000",fontsize=16,color="burlywood",shape="box"];4064[label="xuu4000/Char xuu40000",fontsize=10,color="white",style="solid",shape="box"];871 -> 4064[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4064 -> 1324[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 872[label="Left xuu500000 == Left xuu40000",fontsize=16,color="black",shape="box"];872 -> 1325[label="",style="solid", color="black", weight=3]; 22.90/8.41 873[label="Left xuu500000 == Right xuu40000",fontsize=16,color="black",shape="box"];873 -> 1326[label="",style="solid", color="black", weight=3]; 22.90/8.41 874[label="Right xuu500000 == Left xuu40000",fontsize=16,color="black",shape="box"];874 -> 1327[label="",style="solid", color="black", weight=3]; 22.90/8.41 875[label="Right xuu500000 == Right xuu40000",fontsize=16,color="black",shape="box"];875 -> 1328[label="",style="solid", color="black", weight=3]; 22.90/8.41 876[label="primEqDouble (Double xuu500000 xuu500001) xuu4000",fontsize=16,color="burlywood",shape="box"];4065[label="xuu4000/Double xuu40000 xuu40001",fontsize=10,color="white",style="solid",shape="box"];876 -> 4065[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4065 -> 1329[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 877[label="(xuu500000,xuu500001) == (xuu40000,xuu40001)",fontsize=16,color="black",shape="box"];877 -> 1330[label="",style="solid", color="black", weight=3]; 22.90/8.41 878[label="primEqFloat (Float xuu500000 xuu500001) xuu4000",fontsize=16,color="burlywood",shape="box"];4066[label="xuu4000/Float xuu40000 xuu40001",fontsize=10,color="white",style="solid",shape="box"];878 -> 4066[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4066 -> 1331[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 879[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];879 -> 1332[label="",style="solid", color="black", weight=3]; 22.90/8.41 880[label="Nothing == Just xuu40000",fontsize=16,color="black",shape="box"];880 -> 1333[label="",style="solid", color="black", weight=3]; 22.90/8.41 881[label="Just xuu500000 == Nothing",fontsize=16,color="black",shape="box"];881 -> 1334[label="",style="solid", color="black", weight=3]; 22.90/8.41 882[label="Just xuu500000 == Just xuu40000",fontsize=16,color="black",shape="box"];882 -> 1335[label="",style="solid", color="black", weight=3]; 22.90/8.41 883[label="Integer xuu500000 == Integer xuu40000",fontsize=16,color="black",shape="box"];883 -> 1336[label="",style="solid", color="black", weight=3]; 22.90/8.41 884[label="LT == LT",fontsize=16,color="black",shape="box"];884 -> 1337[label="",style="solid", color="black", weight=3]; 22.90/8.41 885[label="LT == EQ",fontsize=16,color="black",shape="box"];885 -> 1338[label="",style="solid", color="black", weight=3]; 22.90/8.41 886[label="LT == GT",fontsize=16,color="black",shape="box"];886 -> 1339[label="",style="solid", color="black", weight=3]; 22.90/8.41 887[label="EQ == LT",fontsize=16,color="black",shape="box"];887 -> 1340[label="",style="solid", color="black", weight=3]; 22.90/8.41 888[label="EQ == EQ",fontsize=16,color="black",shape="box"];888 -> 1341[label="",style="solid", color="black", weight=3]; 22.90/8.41 889[label="EQ == GT",fontsize=16,color="black",shape="box"];889 -> 1342[label="",style="solid", color="black", weight=3]; 22.90/8.41 890[label="GT == LT",fontsize=16,color="black",shape="box"];890 -> 1343[label="",style="solid", color="black", weight=3]; 22.90/8.41 891[label="GT == EQ",fontsize=16,color="black",shape="box"];891 -> 1344[label="",style="solid", color="black", weight=3]; 22.90/8.41 892[label="GT == GT",fontsize=16,color="black",shape="box"];892 -> 1345[label="",style="solid", color="black", weight=3]; 22.90/8.41 893[label="xuu500000 : xuu500001 == xuu40000 : xuu40001",fontsize=16,color="black",shape="box"];893 -> 1346[label="",style="solid", color="black", weight=3]; 22.90/8.41 894[label="xuu500000 : xuu500001 == []",fontsize=16,color="black",shape="box"];894 -> 1347[label="",style="solid", color="black", weight=3]; 22.90/8.41 895[label="[] == xuu40000 : xuu40001",fontsize=16,color="black",shape="box"];895 -> 1348[label="",style="solid", color="black", weight=3]; 22.90/8.41 896[label="[] == []",fontsize=16,color="black",shape="box"];896 -> 1349[label="",style="solid", color="black", weight=3]; 22.90/8.41 897[label="False == False",fontsize=16,color="black",shape="box"];897 -> 1350[label="",style="solid", color="black", weight=3]; 22.90/8.41 898[label="False == True",fontsize=16,color="black",shape="box"];898 -> 1351[label="",style="solid", color="black", weight=3]; 22.90/8.41 899[label="True == False",fontsize=16,color="black",shape="box"];899 -> 1352[label="",style="solid", color="black", weight=3]; 22.90/8.41 900[label="True == True",fontsize=16,color="black",shape="box"];900 -> 1353[label="",style="solid", color="black", weight=3]; 22.90/8.41 901[label="xuu500000 :% xuu500001 == xuu40000 :% xuu40001",fontsize=16,color="black",shape="box"];901 -> 1354[label="",style="solid", color="black", weight=3]; 22.90/8.41 902[label="(xuu500000,xuu500001,xuu500002) == (xuu40000,xuu40001,xuu40002)",fontsize=16,color="black",shape="box"];902 -> 1355[label="",style="solid", color="black", weight=3]; 22.90/8.41 903[label="() == ()",fontsize=16,color="black",shape="box"];903 -> 1356[label="",style="solid", color="black", weight=3]; 22.90/8.41 904[label="primEqInt (Pos xuu500000) xuu4000",fontsize=16,color="burlywood",shape="box"];4067[label="xuu500000/Succ xuu5000000",fontsize=10,color="white",style="solid",shape="box"];904 -> 4067[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4067 -> 1357[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4068[label="xuu500000/Zero",fontsize=10,color="white",style="solid",shape="box"];904 -> 4068[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4068 -> 1358[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 905[label="primEqInt (Neg xuu500000) xuu4000",fontsize=16,color="burlywood",shape="box"];4069[label="xuu500000/Succ xuu5000000",fontsize=10,color="white",style="solid",shape="box"];905 -> 4069[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4069 -> 1359[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4070[label="xuu500000/Zero",fontsize=10,color="white",style="solid",shape="box"];905 -> 4070[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4070 -> 1360[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 1180[label="xuu58 <= xuu59",fontsize=16,color="blue",shape="box"];4071[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4071[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4071 -> 1361[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4072[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4072[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4072 -> 1362[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4073[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4073[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4073 -> 1363[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4074[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4074[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4074 -> 1364[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4075[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4075[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4075 -> 1365[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4076[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4076[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4076 -> 1366[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4077[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4077[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4077 -> 1367[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4078[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4078[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4078 -> 1368[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4079[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4079[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4079 -> 1369[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4080[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4080[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4080 -> 1370[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4081[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4081[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4081 -> 1371[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4082[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4082[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4082 -> 1372[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4083[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4083[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4083 -> 1373[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4084[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 4084[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4084 -> 1374[label="",style="solid", color="blue", weight=3]; 22.90/8.41 1181[label="compare1 (Just xuu125) (Just xuu126) False",fontsize=16,color="black",shape="box"];1181 -> 1375[label="",style="solid", color="black", weight=3]; 22.90/8.41 1182[label="compare1 (Just xuu125) (Just xuu126) True",fontsize=16,color="black",shape="box"];1182 -> 1376[label="",style="solid", color="black", weight=3]; 22.90/8.41 1183[label="xuu50002",fontsize=16,color="green",shape="box"];1184[label="xuu4002",fontsize=16,color="green",shape="box"];1185[label="xuu50002",fontsize=16,color="green",shape="box"];1186[label="xuu4002",fontsize=16,color="green",shape="box"];1187[label="xuu50002",fontsize=16,color="green",shape="box"];1188[label="xuu4002",fontsize=16,color="green",shape="box"];1189[label="xuu50002",fontsize=16,color="green",shape="box"];1190[label="xuu4002",fontsize=16,color="green",shape="box"];1191[label="xuu50002",fontsize=16,color="green",shape="box"];1192[label="xuu4002",fontsize=16,color="green",shape="box"];1193[label="xuu50002",fontsize=16,color="green",shape="box"];1194[label="xuu4002",fontsize=16,color="green",shape="box"];1195[label="xuu50002",fontsize=16,color="green",shape="box"];1196[label="xuu4002",fontsize=16,color="green",shape="box"];1197[label="xuu50002",fontsize=16,color="green",shape="box"];1198[label="xuu4002",fontsize=16,color="green",shape="box"];1199[label="xuu50002",fontsize=16,color="green",shape="box"];1200[label="xuu4002",fontsize=16,color="green",shape="box"];1201[label="xuu50002",fontsize=16,color="green",shape="box"];1202[label="xuu4002",fontsize=16,color="green",shape="box"];1203[label="xuu50002",fontsize=16,color="green",shape="box"];1204[label="xuu4002",fontsize=16,color="green",shape="box"];1205[label="xuu50002",fontsize=16,color="green",shape="box"];1206[label="xuu4002",fontsize=16,color="green",shape="box"];1207[label="xuu50002",fontsize=16,color="green",shape="box"];1208[label="xuu4002",fontsize=16,color="green",shape="box"];1209[label="xuu50002",fontsize=16,color="green",shape="box"];1210[label="xuu4002",fontsize=16,color="green",shape="box"];1211[label="xuu50001",fontsize=16,color="green",shape="box"];1212[label="xuu4001",fontsize=16,color="green",shape="box"];1213[label="xuu50001",fontsize=16,color="green",shape="box"];1214[label="xuu4001",fontsize=16,color="green",shape="box"];1215[label="xuu50001",fontsize=16,color="green",shape="box"];1216[label="xuu4001",fontsize=16,color="green",shape="box"];1217[label="xuu50001",fontsize=16,color="green",shape="box"];1218[label="xuu4001",fontsize=16,color="green",shape="box"];1219[label="xuu50001",fontsize=16,color="green",shape="box"];1220[label="xuu4001",fontsize=16,color="green",shape="box"];1221[label="xuu50001",fontsize=16,color="green",shape="box"];1222[label="xuu4001",fontsize=16,color="green",shape="box"];1223[label="xuu50001",fontsize=16,color="green",shape="box"];1224[label="xuu4001",fontsize=16,color="green",shape="box"];1225[label="xuu50001",fontsize=16,color="green",shape="box"];1226[label="xuu4001",fontsize=16,color="green",shape="box"];1227[label="xuu50001",fontsize=16,color="green",shape="box"];1228[label="xuu4001",fontsize=16,color="green",shape="box"];1229[label="xuu50001",fontsize=16,color="green",shape="box"];1230[label="xuu4001",fontsize=16,color="green",shape="box"];1231[label="xuu50001",fontsize=16,color="green",shape="box"];1232[label="xuu4001",fontsize=16,color="green",shape="box"];1233[label="xuu50001",fontsize=16,color="green",shape="box"];1234[label="xuu4001",fontsize=16,color="green",shape="box"];1235[label="xuu50001",fontsize=16,color="green",shape="box"];1236[label="xuu4001",fontsize=16,color="green",shape="box"];1237[label="xuu50001",fontsize=16,color="green",shape="box"];1238[label="xuu4001",fontsize=16,color="green",shape="box"];1380[label="xuu69",fontsize=16,color="green",shape="box"];1381[label="xuu71",fontsize=16,color="green",shape="box"];1382[label="xuu69 < xuu72",fontsize=16,color="blue",shape="box"];4085[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1382 -> 4085[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4085 -> 1396[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4086[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1382 -> 4086[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4086 -> 1397[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4087[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1382 -> 4087[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4087 -> 1398[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4088[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1382 -> 4088[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4088 -> 1399[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4089[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1382 -> 4089[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4089 -> 1400[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4090[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1382 -> 4090[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4090 -> 1401[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4091[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1382 -> 4091[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4091 -> 1402[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4092[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1382 -> 4092[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4092 -> 1403[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4093[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1382 -> 4093[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4093 -> 1404[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4094[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1382 -> 4094[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4094 -> 1405[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4095[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1382 -> 4095[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4095 -> 1406[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4096[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1382 -> 4096[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4096 -> 1407[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4097[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1382 -> 4097[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4097 -> 1408[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4098[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1382 -> 4098[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4098 -> 1409[label="",style="solid", color="blue", weight=3]; 22.90/8.41 1383[label="xuu74",fontsize=16,color="green",shape="box"];1384[label="xuu70",fontsize=16,color="green",shape="box"];1385 -> 985[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1385[label="xuu69 == xuu72 && (xuu70 < xuu73 || xuu70 == xuu73 && xuu71 <= xuu74)",fontsize=16,color="magenta"];1385 -> 1410[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1385 -> 1411[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1386[label="xuu73",fontsize=16,color="green",shape="box"];1387[label="xuu72",fontsize=16,color="green",shape="box"];1379[label="compare1 (xuu171,xuu172,xuu173) (xuu174,xuu175,xuu176) (xuu177 || xuu178)",fontsize=16,color="burlywood",shape="triangle"];4099[label="xuu177/False",fontsize=10,color="white",style="solid",shape="box"];1379 -> 4099[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4099 -> 1412[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4100[label="xuu177/True",fontsize=10,color="white",style="solid",shape="box"];1379 -> 4100[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4100 -> 1413[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 1241[label="GT",fontsize=16,color="green",shape="box"];1242[label="GT",fontsize=16,color="green",shape="box"];1243[label="GT",fontsize=16,color="green",shape="box"];1244[label="GT",fontsize=16,color="green",shape="box"];1252[label="xuu80 <= xuu81",fontsize=16,color="blue",shape="box"];4101[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 4101[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4101 -> 1414[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4102[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 4102[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4102 -> 1415[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4103[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 4103[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4103 -> 1416[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4104[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 4104[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4104 -> 1417[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4105[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 4105[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4105 -> 1418[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4106[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 4106[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4106 -> 1419[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4107[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 4107[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4107 -> 1420[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4108[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 4108[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4108 -> 1421[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4109[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 4109[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4109 -> 1422[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4110[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 4110[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4110 -> 1423[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4111[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 4111[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4111 -> 1424[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4112[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 4112[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4112 -> 1425[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4113[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 4113[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4113 -> 1426[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4114[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 4114[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4114 -> 1427[label="",style="solid", color="blue", weight=3]; 22.90/8.41 1253[label="compare1 (Left xuu135) (Left xuu136) False",fontsize=16,color="black",shape="box"];1253 -> 1428[label="",style="solid", color="black", weight=3]; 22.90/8.41 1254[label="compare1 (Left xuu135) (Left xuu136) True",fontsize=16,color="black",shape="box"];1254 -> 1429[label="",style="solid", color="black", weight=3]; 22.90/8.41 1255[label="GT",fontsize=16,color="green",shape="box"];1263[label="xuu87 <= xuu88",fontsize=16,color="blue",shape="box"];4115[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 4115[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4115 -> 1430[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4116[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 4116[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4116 -> 1431[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4117[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 4117[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4117 -> 1432[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4118[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 4118[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4118 -> 1433[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4119[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 4119[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4119 -> 1434[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4120[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 4120[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4120 -> 1435[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4121[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 4121[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4121 -> 1436[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4122[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 4122[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4122 -> 1437[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4123[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 4123[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4123 -> 1438[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4124[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 4124[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4124 -> 1439[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4125[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 4125[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4125 -> 1440[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4126[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 4126[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4126 -> 1441[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4127[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 4127[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4127 -> 1442[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4128[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 4128[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4128 -> 1443[label="",style="solid", color="blue", weight=3]; 22.90/8.41 1264[label="compare1 (Right xuu142) (Right xuu143) False",fontsize=16,color="black",shape="box"];1264 -> 1444[label="",style="solid", color="black", weight=3]; 22.90/8.41 1265[label="compare1 (Right xuu142) (Right xuu143) True",fontsize=16,color="black",shape="box"];1265 -> 1445[label="",style="solid", color="black", weight=3]; 22.90/8.41 1266[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1267[label="FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43 + FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43",fontsize=16,color="black",shape="box"];1267 -> 1446[label="",style="solid", color="black", weight=3]; 22.90/8.41 1705 -> 1731[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1705[label="FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43",fontsize=16,color="magenta"];1705 -> 1736[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1705 -> 1737[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1704[label="FiniteMap.mkBalBranch6MkBalBranch4 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 xuu180",fontsize=16,color="burlywood",shape="triangle"];4129[label="xuu180/False",fontsize=10,color="white",style="solid",shape="box"];1704 -> 4129[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4129 -> 1710[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4130[label="xuu180/True",fontsize=10,color="white",style="solid",shape="box"];1704 -> 4130[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4130 -> 1711[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 3439[label="xuu41",fontsize=16,color="green",shape="box"];3440[label="xuu43",fontsize=16,color="green",shape="box"];3441[label="[]",fontsize=16,color="green",shape="box"];3442[label="xuu41",fontsize=16,color="green",shape="box"];3443[label="Zero",fontsize=16,color="green",shape="box"];2063[label="Pos Zero",fontsize=16,color="green",shape="box"];2064[label="xuu442",fontsize=16,color="green",shape="box"];2180[label="primPlusNat xuu1970 xuu1960",fontsize=16,color="burlywood",shape="triangle"];4131[label="xuu1970/Succ xuu19700",fontsize=10,color="white",style="solid",shape="box"];2180 -> 4131[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4131 -> 2509[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4132[label="xuu1970/Zero",fontsize=10,color="white",style="solid",shape="box"];2180 -> 4132[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4132 -> 2510[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 2181[label="primMinusNat (Succ xuu19700) xuu1960",fontsize=16,color="burlywood",shape="box"];4133[label="xuu1960/Succ xuu19600",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4133[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4133 -> 2511[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4134[label="xuu1960/Zero",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4134[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4134 -> 2512[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 2182[label="primMinusNat Zero xuu1960",fontsize=16,color="burlywood",shape="box"];4135[label="xuu1960/Succ xuu19600",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4135[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4135 -> 2513[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4136[label="xuu1960/Zero",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4136[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4136 -> 2514[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 2183[label="xuu1960",fontsize=16,color="green",shape="box"];2184[label="xuu1970",fontsize=16,color="green",shape="box"];2185 -> 2180[label="",style="dashed", color="red", weight=0]; 22.90/8.41 2185[label="primPlusNat xuu1970 xuu1960",fontsize=16,color="magenta"];2185 -> 2515[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 2185 -> 2516[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 3663[label="FiniteMap.mkBranchUnbox xuu296 xuu293 xuu295 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu296 xuu293 xuu295 + FiniteMap.mkBranchRight_size xuu296 xuu293 xuu295)",fontsize=16,color="black",shape="box"];3663 -> 3674[label="",style="solid", color="black", weight=3]; 22.90/8.41 2025[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];2028 -> 174[label="",style="dashed", color="red", weight=0]; 22.90/8.41 2028[label="compare xuu187 xuu186",fontsize=16,color="magenta"];2028 -> 2065[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 2028 -> 2066[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 2029[label="GT",fontsize=16,color="green",shape="box"];1728 -> 1731[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1728[label="FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29",fontsize=16,color="magenta"];1728 -> 1738[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1728 -> 1739[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1727[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 xuu184",fontsize=16,color="burlywood",shape="triangle"];4137[label="xuu184/False",fontsize=10,color="white",style="solid",shape="box"];1727 -> 4137[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4137 -> 1746[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4138[label="xuu184/True",fontsize=10,color="white",style="solid",shape="box"];1727 -> 4138[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4138 -> 1747[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 1283[label="FiniteMap.mkBalBranch6MkBalBranch0 (xuu400 : xuu401) xuu41 FiniteMap.EmptyFM xuu29 xuu29 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1283 -> 1465[label="",style="solid", color="black", weight=3]; 22.90/8.41 1284[label="FiniteMap.mkBalBranch6MkBalBranch0 (xuu400 : xuu401) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu29 xuu29 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];1284 -> 1466[label="",style="solid", color="black", weight=3]; 22.90/8.41 1285[label="primMulNat (Succ xuu400000) xuu500010",fontsize=16,color="burlywood",shape="box"];4139[label="xuu500010/Succ xuu5000100",fontsize=10,color="white",style="solid",shape="box"];1285 -> 4139[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4139 -> 1467[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4140[label="xuu500010/Zero",fontsize=10,color="white",style="solid",shape="box"];1285 -> 4140[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4140 -> 1468[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 1286[label="primMulNat Zero xuu500010",fontsize=16,color="burlywood",shape="box"];4141[label="xuu500010/Succ xuu5000100",fontsize=10,color="white",style="solid",shape="box"];1286 -> 4141[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4141 -> 1469[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4142[label="xuu500010/Zero",fontsize=10,color="white",style="solid",shape="box"];1286 -> 4142[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4142 -> 1470[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 1287[label="xuu500010",fontsize=16,color="green",shape="box"];1288[label="xuu40000",fontsize=16,color="green",shape="box"];1289[label="xuu40000",fontsize=16,color="green",shape="box"];1290[label="xuu500010",fontsize=16,color="green",shape="box"];1306[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1306 -> 1471[label="",style="solid", color="black", weight=3]; 22.90/8.41 1307[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1307 -> 1472[label="",style="solid", color="black", weight=3]; 22.90/8.41 1308[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1308 -> 1473[label="",style="solid", color="black", weight=3]; 22.90/8.41 1309[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1309 -> 1474[label="",style="solid", color="black", weight=3]; 22.90/8.41 1310[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1310 -> 1475[label="",style="solid", color="black", weight=3]; 22.90/8.41 1311[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1311 -> 1476[label="",style="solid", color="black", weight=3]; 22.90/8.41 1312[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1312 -> 1477[label="",style="solid", color="black", weight=3]; 22.90/8.41 1313[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1313 -> 1478[label="",style="solid", color="black", weight=3]; 22.90/8.41 1314[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1314 -> 1479[label="",style="solid", color="black", weight=3]; 22.90/8.41 1315[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1315 -> 1480[label="",style="solid", color="black", weight=3]; 22.90/8.41 1316[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1316 -> 1481[label="",style="solid", color="black", weight=3]; 22.90/8.41 1317[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1317 -> 1482[label="",style="solid", color="black", weight=3]; 22.90/8.41 1318[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1318 -> 1483[label="",style="solid", color="black", weight=3]; 22.90/8.41 1319[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1319 -> 1484[label="",style="solid", color="black", weight=3]; 22.90/8.41 1320[label="xuu100 <= xuu102",fontsize=16,color="blue",shape="box"];4143[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1320 -> 4143[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4143 -> 1485[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4144[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1320 -> 4144[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4144 -> 1486[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4145[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1320 -> 4145[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4145 -> 1487[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4146[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1320 -> 4146[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4146 -> 1488[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4147[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1320 -> 4147[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4147 -> 1489[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4148[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1320 -> 4148[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4148 -> 1490[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4149[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1320 -> 4149[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4149 -> 1491[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4150[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1320 -> 4150[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4150 -> 1492[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4151[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1320 -> 4151[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4151 -> 1493[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4152[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1320 -> 4152[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4152 -> 1494[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4153[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1320 -> 4153[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4153 -> 1495[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4154[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1320 -> 4154[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4154 -> 1496[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4155[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1320 -> 4155[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4155 -> 1497[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4156[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1320 -> 4156[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4156 -> 1498[label="",style="solid", color="blue", weight=3]; 22.90/8.41 1321[label="xuu99 == xuu101",fontsize=16,color="blue",shape="box"];4157[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 4157[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4157 -> 1499[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4158[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 4158[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4158 -> 1500[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4159[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 4159[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4159 -> 1501[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4160[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 4160[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4160 -> 1502[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4161[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 4161[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4161 -> 1503[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4162[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 4162[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4162 -> 1504[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4163[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 4163[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4163 -> 1505[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4164[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 4164[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4164 -> 1506[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4165[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 4165[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4165 -> 1507[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4166[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 4166[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4166 -> 1508[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4167[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 4167[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4167 -> 1509[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4168[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 4168[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4168 -> 1510[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4169[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 4169[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4169 -> 1511[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4170[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 4170[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4170 -> 1512[label="",style="solid", color="blue", weight=3]; 22.90/8.41 1322[label="compare1 (xuu156,xuu157) (xuu158,xuu159) (False || xuu161)",fontsize=16,color="black",shape="box"];1322 -> 1513[label="",style="solid", color="black", weight=3]; 22.90/8.41 1323[label="compare1 (xuu156,xuu157) (xuu158,xuu159) (True || xuu161)",fontsize=16,color="black",shape="box"];1323 -> 1514[label="",style="solid", color="black", weight=3]; 22.90/8.41 1324[label="primEqChar (Char xuu500000) (Char xuu40000)",fontsize=16,color="black",shape="box"];1324 -> 1515[label="",style="solid", color="black", weight=3]; 22.90/8.41 1325[label="xuu500000 == xuu40000",fontsize=16,color="blue",shape="box"];4171[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 4171[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4171 -> 1516[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4172[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 4172[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4172 -> 1517[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4173[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 4173[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4173 -> 1518[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4174[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 4174[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4174 -> 1519[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4175[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 4175[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4175 -> 1520[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4176[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 4176[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4176 -> 1521[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4177[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 4177[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4177 -> 1522[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4178[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 4178[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4178 -> 1523[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4179[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 4179[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4179 -> 1524[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4180[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 4180[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4180 -> 1525[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4181[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 4181[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4181 -> 1526[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4182[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 4182[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4182 -> 1527[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4183[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 4183[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4183 -> 1528[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4184[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1325 -> 4184[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4184 -> 1529[label="",style="solid", color="blue", weight=3]; 22.90/8.41 1326[label="False",fontsize=16,color="green",shape="box"];1327[label="False",fontsize=16,color="green",shape="box"];1328[label="xuu500000 == xuu40000",fontsize=16,color="blue",shape="box"];4185[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 4185[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4185 -> 1530[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4186[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 4186[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4186 -> 1531[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4187[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 4187[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4187 -> 1532[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4188[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 4188[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4188 -> 1533[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4189[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 4189[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4189 -> 1534[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4190[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 4190[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4190 -> 1535[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4191[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 4191[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4191 -> 1536[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4192[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 4192[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4192 -> 1537[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4193[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 4193[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4193 -> 1538[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4194[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 4194[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4194 -> 1539[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4195[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 4195[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4195 -> 1540[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4196[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 4196[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4196 -> 1541[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4197[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 4197[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4197 -> 1542[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4198[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 4198[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4198 -> 1543[label="",style="solid", color="blue", weight=3]; 22.90/8.41 1329[label="primEqDouble (Double xuu500000 xuu500001) (Double xuu40000 xuu40001)",fontsize=16,color="black",shape="box"];1329 -> 1544[label="",style="solid", color="black", weight=3]; 22.90/8.41 1330 -> 985[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1330[label="xuu500000 == xuu40000 && xuu500001 == xuu40001",fontsize=16,color="magenta"];1330 -> 1545[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1330 -> 1546[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1331[label="primEqFloat (Float xuu500000 xuu500001) (Float xuu40000 xuu40001)",fontsize=16,color="black",shape="box"];1331 -> 1547[label="",style="solid", color="black", weight=3]; 22.90/8.41 1332[label="True",fontsize=16,color="green",shape="box"];1333[label="False",fontsize=16,color="green",shape="box"];1334[label="False",fontsize=16,color="green",shape="box"];1335[label="xuu500000 == xuu40000",fontsize=16,color="blue",shape="box"];4199[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 4199[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4199 -> 1548[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4200[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 4200[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4200 -> 1549[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4201[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 4201[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4201 -> 1550[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4202[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 4202[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4202 -> 1551[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4203[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 4203[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4203 -> 1552[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4204[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 4204[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4204 -> 1553[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4205[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 4205[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4205 -> 1554[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4206[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 4206[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4206 -> 1555[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4207[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 4207[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4207 -> 1556[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4208[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 4208[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4208 -> 1557[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4209[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 4209[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4209 -> 1558[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4210[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 4210[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4210 -> 1559[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4211[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 4211[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4211 -> 1560[label="",style="solid", color="blue", weight=3]; 22.90/8.41 4212[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 4212[label="",style="solid", color="blue", weight=9]; 22.90/8.41 4212 -> 1561[label="",style="solid", color="blue", weight=3]; 22.90/8.41 1336 -> 684[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1336[label="primEqInt xuu500000 xuu40000",fontsize=16,color="magenta"];1336 -> 1562[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1336 -> 1563[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1337[label="True",fontsize=16,color="green",shape="box"];1338[label="False",fontsize=16,color="green",shape="box"];1339[label="False",fontsize=16,color="green",shape="box"];1340[label="False",fontsize=16,color="green",shape="box"];1341[label="True",fontsize=16,color="green",shape="box"];1342[label="False",fontsize=16,color="green",shape="box"];1343[label="False",fontsize=16,color="green",shape="box"];1344[label="False",fontsize=16,color="green",shape="box"];1345[label="True",fontsize=16,color="green",shape="box"];1346 -> 985[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1346[label="xuu500000 == xuu40000 && xuu500001 == xuu40001",fontsize=16,color="magenta"];1346 -> 1564[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1346 -> 1565[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1347[label="False",fontsize=16,color="green",shape="box"];1348[label="False",fontsize=16,color="green",shape="box"];1349[label="True",fontsize=16,color="green",shape="box"];1350[label="True",fontsize=16,color="green",shape="box"];1351[label="False",fontsize=16,color="green",shape="box"];1352[label="False",fontsize=16,color="green",shape="box"];1353[label="True",fontsize=16,color="green",shape="box"];1354 -> 985[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1354[label="xuu500000 == xuu40000 && xuu500001 == xuu40001",fontsize=16,color="magenta"];1354 -> 1566[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1354 -> 1567[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1355 -> 985[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1355[label="xuu500000 == xuu40000 && xuu500001 == xuu40001 && xuu500002 == xuu40002",fontsize=16,color="magenta"];1355 -> 1568[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1355 -> 1569[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1356[label="True",fontsize=16,color="green",shape="box"];1357[label="primEqInt (Pos (Succ xuu5000000)) xuu4000",fontsize=16,color="burlywood",shape="box"];4213[label="xuu4000/Pos xuu40000",fontsize=10,color="white",style="solid",shape="box"];1357 -> 4213[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4213 -> 1570[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4214[label="xuu4000/Neg xuu40000",fontsize=10,color="white",style="solid",shape="box"];1357 -> 4214[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4214 -> 1571[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 1358[label="primEqInt (Pos Zero) xuu4000",fontsize=16,color="burlywood",shape="box"];4215[label="xuu4000/Pos xuu40000",fontsize=10,color="white",style="solid",shape="box"];1358 -> 4215[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4215 -> 1572[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4216[label="xuu4000/Neg xuu40000",fontsize=10,color="white",style="solid",shape="box"];1358 -> 4216[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4216 -> 1573[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 1359[label="primEqInt (Neg (Succ xuu5000000)) xuu4000",fontsize=16,color="burlywood",shape="box"];4217[label="xuu4000/Pos xuu40000",fontsize=10,color="white",style="solid",shape="box"];1359 -> 4217[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4217 -> 1574[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4218[label="xuu4000/Neg xuu40000",fontsize=10,color="white",style="solid",shape="box"];1359 -> 4218[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4218 -> 1575[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 1360[label="primEqInt (Neg Zero) xuu4000",fontsize=16,color="burlywood",shape="box"];4219[label="xuu4000/Pos xuu40000",fontsize=10,color="white",style="solid",shape="box"];1360 -> 4219[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4219 -> 1576[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4220[label="xuu4000/Neg xuu40000",fontsize=10,color="white",style="solid",shape="box"];1360 -> 4220[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4220 -> 1577[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 1361[label="xuu58 <= xuu59",fontsize=16,color="black",shape="triangle"];1361 -> 1578[label="",style="solid", color="black", weight=3]; 22.90/8.41 1362[label="xuu58 <= xuu59",fontsize=16,color="burlywood",shape="triangle"];4221[label="xuu58/(xuu580,xuu581)",fontsize=10,color="white",style="solid",shape="box"];1362 -> 4221[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4221 -> 1579[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 1363[label="xuu58 <= xuu59",fontsize=16,color="burlywood",shape="triangle"];4222[label="xuu58/Nothing",fontsize=10,color="white",style="solid",shape="box"];1363 -> 4222[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4222 -> 1580[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4223[label="xuu58/Just xuu580",fontsize=10,color="white",style="solid",shape="box"];1363 -> 4223[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4223 -> 1581[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 1364[label="xuu58 <= xuu59",fontsize=16,color="burlywood",shape="triangle"];4224[label="xuu58/(xuu580,xuu581,xuu582)",fontsize=10,color="white",style="solid",shape="box"];1364 -> 4224[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4224 -> 1582[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 1365[label="xuu58 <= xuu59",fontsize=16,color="black",shape="triangle"];1365 -> 1583[label="",style="solid", color="black", weight=3]; 22.90/8.41 1366[label="xuu58 <= xuu59",fontsize=16,color="black",shape="triangle"];1366 -> 1584[label="",style="solid", color="black", weight=3]; 22.90/8.41 1367[label="xuu58 <= xuu59",fontsize=16,color="burlywood",shape="triangle"];4225[label="xuu58/LT",fontsize=10,color="white",style="solid",shape="box"];1367 -> 4225[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4225 -> 1585[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4226[label="xuu58/EQ",fontsize=10,color="white",style="solid",shape="box"];1367 -> 4226[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4226 -> 1586[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4227[label="xuu58/GT",fontsize=10,color="white",style="solid",shape="box"];1367 -> 4227[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4227 -> 1587[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 1368[label="xuu58 <= xuu59",fontsize=16,color="black",shape="triangle"];1368 -> 1588[label="",style="solid", color="black", weight=3]; 22.90/8.41 1369[label="xuu58 <= xuu59",fontsize=16,color="burlywood",shape="triangle"];4228[label="xuu58/False",fontsize=10,color="white",style="solid",shape="box"];1369 -> 4228[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4228 -> 1589[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4229[label="xuu58/True",fontsize=10,color="white",style="solid",shape="box"];1369 -> 4229[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4229 -> 1590[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 1370[label="xuu58 <= xuu59",fontsize=16,color="black",shape="triangle"];1370 -> 1591[label="",style="solid", color="black", weight=3]; 22.90/8.41 1371[label="xuu58 <= xuu59",fontsize=16,color="black",shape="triangle"];1371 -> 1592[label="",style="solid", color="black", weight=3]; 22.90/8.41 1372[label="xuu58 <= xuu59",fontsize=16,color="black",shape="triangle"];1372 -> 1593[label="",style="solid", color="black", weight=3]; 22.90/8.41 1373[label="xuu58 <= xuu59",fontsize=16,color="black",shape="triangle"];1373 -> 1594[label="",style="solid", color="black", weight=3]; 22.90/8.41 1374[label="xuu58 <= xuu59",fontsize=16,color="burlywood",shape="triangle"];4230[label="xuu58/Left xuu580",fontsize=10,color="white",style="solid",shape="box"];1374 -> 4230[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4230 -> 1595[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 4231[label="xuu58/Right xuu580",fontsize=10,color="white",style="solid",shape="box"];1374 -> 4231[label="",style="solid", color="burlywood", weight=9]; 22.90/8.41 4231 -> 1596[label="",style="solid", color="burlywood", weight=3]; 22.90/8.41 1375[label="compare0 (Just xuu125) (Just xuu126) otherwise",fontsize=16,color="black",shape="box"];1375 -> 1597[label="",style="solid", color="black", weight=3]; 22.90/8.41 1376[label="LT",fontsize=16,color="green",shape="box"];1396 -> 1306[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1396[label="xuu69 < xuu72",fontsize=16,color="magenta"];1396 -> 1598[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1396 -> 1599[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1397 -> 1307[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1397[label="xuu69 < xuu72",fontsize=16,color="magenta"];1397 -> 1600[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1397 -> 1601[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1398 -> 1308[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1398[label="xuu69 < xuu72",fontsize=16,color="magenta"];1398 -> 1602[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1398 -> 1603[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1399 -> 1309[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1399[label="xuu69 < xuu72",fontsize=16,color="magenta"];1399 -> 1604[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1399 -> 1605[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1400 -> 1310[label="",style="dashed", color="red", weight=0]; 22.90/8.41 1400[label="xuu69 < xuu72",fontsize=16,color="magenta"];1400 -> 1606[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1400 -> 1607[label="",style="dashed", color="magenta", weight=3]; 22.90/8.41 1401 -> 1311[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1401[label="xuu69 < xuu72",fontsize=16,color="magenta"];1401 -> 1608[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1401 -> 1609[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1402 -> 1312[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1402[label="xuu69 < xuu72",fontsize=16,color="magenta"];1402 -> 1610[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1402 -> 1611[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1403 -> 1313[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1403[label="xuu69 < xuu72",fontsize=16,color="magenta"];1403 -> 1612[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1403 -> 1613[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1404 -> 1314[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1404[label="xuu69 < xuu72",fontsize=16,color="magenta"];1404 -> 1614[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1404 -> 1615[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1405 -> 1315[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1405[label="xuu69 < xuu72",fontsize=16,color="magenta"];1405 -> 1616[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1405 -> 1617[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1406 -> 1316[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1406[label="xuu69 < xuu72",fontsize=16,color="magenta"];1406 -> 1618[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1406 -> 1619[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1407 -> 1317[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1407[label="xuu69 < xuu72",fontsize=16,color="magenta"];1407 -> 1620[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1407 -> 1621[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1408 -> 1318[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1408[label="xuu69 < xuu72",fontsize=16,color="magenta"];1408 -> 1622[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1408 -> 1623[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1409 -> 1319[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1409[label="xuu69 < xuu72",fontsize=16,color="magenta"];1409 -> 1624[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1409 -> 1625[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1410 -> 2058[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1410[label="xuu70 < xuu73 || xuu70 == xuu73 && xuu71 <= xuu74",fontsize=16,color="magenta"];1410 -> 2059[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1410 -> 2060[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1411[label="xuu69 == xuu72",fontsize=16,color="blue",shape="box"];4232[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 4232[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4232 -> 1628[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4233[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 4233[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4233 -> 1629[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4234[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 4234[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4234 -> 1630[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4235[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 4235[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4235 -> 1631[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4236[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 4236[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4236 -> 1632[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4237[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 4237[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4237 -> 1633[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4238[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 4238[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4238 -> 1634[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4239[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 4239[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4239 -> 1635[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4240[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 4240[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4240 -> 1636[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4241[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 4241[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4241 -> 1637[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4242[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 4242[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4242 -> 1638[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4243[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 4243[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4243 -> 1639[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4244[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 4244[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4244 -> 1640[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4245[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 4245[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4245 -> 1641[label="",style="solid", color="blue", weight=3]; 22.90/8.42 1412[label="compare1 (xuu171,xuu172,xuu173) (xuu174,xuu175,xuu176) (False || xuu178)",fontsize=16,color="black",shape="box"];1412 -> 1642[label="",style="solid", color="black", weight=3]; 22.90/8.42 1413[label="compare1 (xuu171,xuu172,xuu173) (xuu174,xuu175,xuu176) (True || xuu178)",fontsize=16,color="black",shape="box"];1413 -> 1643[label="",style="solid", color="black", weight=3]; 22.90/8.42 1414 -> 1361[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1414[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1414 -> 1644[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1414 -> 1645[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1415 -> 1362[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1415[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1415 -> 1646[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1415 -> 1647[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1416 -> 1363[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1416[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1416 -> 1648[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1416 -> 1649[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1417 -> 1364[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1417[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1417 -> 1650[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1417 -> 1651[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1418 -> 1365[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1418[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1418 -> 1652[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1418 -> 1653[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1419 -> 1366[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1419[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1419 -> 1654[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1419 -> 1655[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1420 -> 1367[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1420[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1420 -> 1656[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1420 -> 1657[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1421 -> 1368[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1421[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1421 -> 1658[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1421 -> 1659[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1422 -> 1369[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1422[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1422 -> 1660[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1422 -> 1661[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1423 -> 1370[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1423[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1423 -> 1662[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1423 -> 1663[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1424 -> 1371[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1424[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1424 -> 1664[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1424 -> 1665[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1425 -> 1372[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1425[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1425 -> 1666[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1425 -> 1667[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1426 -> 1373[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1426[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1426 -> 1668[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1426 -> 1669[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1427 -> 1374[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1427[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1427 -> 1670[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1427 -> 1671[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1428[label="compare0 (Left xuu135) (Left xuu136) otherwise",fontsize=16,color="black",shape="box"];1428 -> 1672[label="",style="solid", color="black", weight=3]; 22.90/8.42 1429[label="LT",fontsize=16,color="green",shape="box"];1430 -> 1361[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1430[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1430 -> 1673[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1430 -> 1674[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1431 -> 1362[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1431[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1431 -> 1675[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1431 -> 1676[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1432 -> 1363[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1432[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1432 -> 1677[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1432 -> 1678[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1433 -> 1364[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1433[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1433 -> 1679[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1433 -> 1680[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1434 -> 1365[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1434[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1434 -> 1681[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1434 -> 1682[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1435 -> 1366[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1435[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1435 -> 1683[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1435 -> 1684[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1436 -> 1367[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1436[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1436 -> 1685[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1436 -> 1686[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1437 -> 1368[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1437[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1437 -> 1687[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1437 -> 1688[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1438 -> 1369[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1438[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1438 -> 1689[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1438 -> 1690[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1439 -> 1370[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1439[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1439 -> 1691[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1439 -> 1692[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1440 -> 1371[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1440[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1440 -> 1693[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1440 -> 1694[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1441 -> 1372[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1441[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1441 -> 1695[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1441 -> 1696[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1442 -> 1373[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1442[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1442 -> 1697[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1442 -> 1698[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1443 -> 1374[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1443[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1443 -> 1699[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1443 -> 1700[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1444[label="compare0 (Right xuu142) (Right xuu143) otherwise",fontsize=16,color="black",shape="box"];1444 -> 1701[label="",style="solid", color="black", weight=3]; 22.90/8.42 1445[label="LT",fontsize=16,color="green",shape="box"];1446 -> 2119[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1446[label="primPlusInt (FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43) (FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43)",fontsize=16,color="magenta"];1446 -> 2134[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1446 -> 2135[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1736 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1736[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43",fontsize=16,color="magenta"];1736 -> 1748[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1736 -> 1749[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1737[label="FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43",fontsize=16,color="black",shape="triangle"];1737 -> 1750[label="",style="solid", color="black", weight=3]; 22.90/8.42 1710[label="FiniteMap.mkBalBranch6MkBalBranch4 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 False",fontsize=16,color="black",shape="box"];1710 -> 1751[label="",style="solid", color="black", weight=3]; 22.90/8.42 1711[label="FiniteMap.mkBalBranch6MkBalBranch4 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 True",fontsize=16,color="black",shape="box"];1711 -> 1752[label="",style="solid", color="black", weight=3]; 22.90/8.42 2509[label="primPlusNat (Succ xuu19700) xuu1960",fontsize=16,color="burlywood",shape="box"];4246[label="xuu1960/Succ xuu19600",fontsize=10,color="white",style="solid",shape="box"];2509 -> 4246[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4246 -> 2584[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4247[label="xuu1960/Zero",fontsize=10,color="white",style="solid",shape="box"];2509 -> 4247[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4247 -> 2585[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 2510[label="primPlusNat Zero xuu1960",fontsize=16,color="burlywood",shape="box"];4248[label="xuu1960/Succ xuu19600",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4248[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4248 -> 2586[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4249[label="xuu1960/Zero",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4249[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4249 -> 2587[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 2511[label="primMinusNat (Succ xuu19700) (Succ xuu19600)",fontsize=16,color="black",shape="box"];2511 -> 2588[label="",style="solid", color="black", weight=3]; 22.90/8.42 2512[label="primMinusNat (Succ xuu19700) Zero",fontsize=16,color="black",shape="box"];2512 -> 2589[label="",style="solid", color="black", weight=3]; 22.90/8.42 2513[label="primMinusNat Zero (Succ xuu19600)",fontsize=16,color="black",shape="box"];2513 -> 2590[label="",style="solid", color="black", weight=3]; 22.90/8.42 2514[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];2514 -> 2591[label="",style="solid", color="black", weight=3]; 22.90/8.42 2515[label="xuu1960",fontsize=16,color="green",shape="box"];2516[label="xuu1970",fontsize=16,color="green",shape="box"];3674[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu296 xuu293 xuu295 + FiniteMap.mkBranchRight_size xuu296 xuu293 xuu295",fontsize=16,color="black",shape="box"];3674 -> 3675[label="",style="solid", color="black", weight=3]; 22.90/8.42 2065[label="xuu186",fontsize=16,color="green",shape="box"];2066[label="xuu187",fontsize=16,color="green",shape="box"];1738 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1738[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29",fontsize=16,color="magenta"];1738 -> 1753[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1738 -> 1754[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1746[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 False",fontsize=16,color="black",shape="box"];1746 -> 2030[label="",style="solid", color="black", weight=3]; 22.90/8.42 1747[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 True",fontsize=16,color="black",shape="box"];1747 -> 2031[label="",style="solid", color="black", weight=3]; 22.90/8.42 1465[label="error []",fontsize=16,color="red",shape="box"];1466[label="FiniteMap.mkBalBranch6MkBalBranch02 (xuu400 : xuu401) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu29 xuu29 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];1466 -> 1756[label="",style="solid", color="black", weight=3]; 22.90/8.42 1467[label="primMulNat (Succ xuu400000) (Succ xuu5000100)",fontsize=16,color="black",shape="box"];1467 -> 1757[label="",style="solid", color="black", weight=3]; 22.90/8.42 1468[label="primMulNat (Succ xuu400000) Zero",fontsize=16,color="black",shape="box"];1468 -> 1758[label="",style="solid", color="black", weight=3]; 22.90/8.42 1469[label="primMulNat Zero (Succ xuu5000100)",fontsize=16,color="black",shape="box"];1469 -> 1759[label="",style="solid", color="black", weight=3]; 22.90/8.42 1470[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1470 -> 1760[label="",style="solid", color="black", weight=3]; 22.90/8.42 1471 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1471[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1471 -> 1761[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1471 -> 1762[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1472 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1472[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1472 -> 1763[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1472 -> 1764[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1473 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1473[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1473 -> 1765[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1473 -> 1766[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1474 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1474[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1474 -> 1767[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1474 -> 1768[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1475 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1475[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1475 -> 1769[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1475 -> 1770[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1476 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1476[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1476 -> 1771[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1476 -> 1772[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1477 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1477[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1477 -> 1773[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1477 -> 1774[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1478 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1478[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1478 -> 1775[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1478 -> 1776[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1479 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1479[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1479 -> 1777[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1479 -> 1778[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1480 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1480[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1480 -> 1779[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1480 -> 1780[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1481 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1481[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1481 -> 1781[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1481 -> 1782[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1482 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1482[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1482 -> 1783[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1482 -> 1784[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1483 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1483[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1483 -> 1785[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1483 -> 1786[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1484 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1484[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1484 -> 1787[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1484 -> 1788[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1485 -> 1361[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1485[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1485 -> 1789[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1485 -> 1790[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1486 -> 1362[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1486[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1486 -> 1791[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1486 -> 1792[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1487 -> 1363[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1487[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1487 -> 1793[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1487 -> 1794[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1488 -> 1364[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1488[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1488 -> 1795[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1488 -> 1796[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1489 -> 1365[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1489[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1489 -> 1797[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1489 -> 1798[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1490 -> 1366[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1490[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1490 -> 1799[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1490 -> 1800[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1491 -> 1367[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1491[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1491 -> 1801[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1491 -> 1802[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1492 -> 1368[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1492[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1492 -> 1803[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1492 -> 1804[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1493 -> 1369[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1493[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1493 -> 1805[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1493 -> 1806[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1494 -> 1370[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1494[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1494 -> 1807[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1494 -> 1808[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1495 -> 1371[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1495[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1495 -> 1809[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1495 -> 1810[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1496 -> 1372[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1496[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1496 -> 1811[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1496 -> 1812[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1497 -> 1373[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1497[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1497 -> 1813[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1497 -> 1814[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1498 -> 1374[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1498[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1498 -> 1815[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1498 -> 1816[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1499 -> 542[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1499[label="xuu99 == xuu101",fontsize=16,color="magenta"];1499 -> 1817[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1499 -> 1818[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1500 -> 535[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1500[label="xuu99 == xuu101",fontsize=16,color="magenta"];1500 -> 1819[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1500 -> 1820[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1501 -> 537[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1501[label="xuu99 == xuu101",fontsize=16,color="magenta"];1501 -> 1821[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1501 -> 1822[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1502 -> 543[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1502[label="xuu99 == xuu101",fontsize=16,color="magenta"];1502 -> 1823[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1502 -> 1824[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1503 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1503[label="xuu99 == xuu101",fontsize=16,color="magenta"];1503 -> 1825[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1503 -> 1826[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1504 -> 532[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1504[label="xuu99 == xuu101",fontsize=16,color="magenta"];1504 -> 1827[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1504 -> 1828[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1505 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1505[label="xuu99 == xuu101",fontsize=16,color="magenta"];1505 -> 1829[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1505 -> 1830[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1506 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1506[label="xuu99 == xuu101",fontsize=16,color="magenta"];1506 -> 1831[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1506 -> 1832[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1507 -> 541[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1507[label="xuu99 == xuu101",fontsize=16,color="magenta"];1507 -> 1833[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1507 -> 1834[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1508 -> 540[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1508[label="xuu99 == xuu101",fontsize=16,color="magenta"];1508 -> 1835[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1508 -> 1836[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1509 -> 544[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1509[label="xuu99 == xuu101",fontsize=16,color="magenta"];1509 -> 1837[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1509 -> 1838[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1510 -> 534[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1510[label="xuu99 == xuu101",fontsize=16,color="magenta"];1510 -> 1839[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1510 -> 1840[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1511 -> 536[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1511[label="xuu99 == xuu101",fontsize=16,color="magenta"];1511 -> 1841[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1511 -> 1842[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1512 -> 533[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1512[label="xuu99 == xuu101",fontsize=16,color="magenta"];1512 -> 1843[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1512 -> 1844[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1513[label="compare1 (xuu156,xuu157) (xuu158,xuu159) xuu161",fontsize=16,color="burlywood",shape="triangle"];4250[label="xuu161/False",fontsize=10,color="white",style="solid",shape="box"];1513 -> 4250[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4250 -> 1845[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4251[label="xuu161/True",fontsize=10,color="white",style="solid",shape="box"];1513 -> 4251[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4251 -> 1846[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 1514 -> 1513[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1514[label="compare1 (xuu156,xuu157) (xuu158,xuu159) True",fontsize=16,color="magenta"];1514 -> 1847[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1515[label="primEqNat xuu500000 xuu40000",fontsize=16,color="burlywood",shape="triangle"];4252[label="xuu500000/Succ xuu5000000",fontsize=10,color="white",style="solid",shape="box"];1515 -> 4252[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4252 -> 1848[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4253[label="xuu500000/Zero",fontsize=10,color="white",style="solid",shape="box"];1515 -> 4253[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4253 -> 1849[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 1516 -> 532[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1516[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1516 -> 1850[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1516 -> 1851[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1517 -> 533[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1517[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1517 -> 1852[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1517 -> 1853[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1518 -> 534[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1518[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1518 -> 1854[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1518 -> 1855[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1519 -> 535[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1519[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1519 -> 1856[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1519 -> 1857[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1520 -> 536[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1520[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1520 -> 1858[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1520 -> 1859[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1521 -> 537[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1521[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1521 -> 1860[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1521 -> 1861[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1522 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1522[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1522 -> 1862[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1522 -> 1863[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1523 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1523[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1523 -> 1864[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1523 -> 1865[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1524 -> 540[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1524[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1524 -> 1866[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1524 -> 1867[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1525 -> 541[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1525[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1525 -> 1868[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1525 -> 1869[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1526 -> 542[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1526[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1526 -> 1870[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1526 -> 1871[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1527 -> 543[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1527[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1527 -> 1872[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1527 -> 1873[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1528 -> 544[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1528[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1528 -> 1874[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1528 -> 1875[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1529 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1529[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1529 -> 1876[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1529 -> 1877[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1530 -> 532[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1530[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1530 -> 1878[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1530 -> 1879[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1531 -> 533[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1531[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1531 -> 1880[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1531 -> 1881[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1532 -> 534[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1532[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1532 -> 1882[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1532 -> 1883[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1533 -> 535[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1533[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1533 -> 1884[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1533 -> 1885[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1534 -> 536[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1534[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1534 -> 1886[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1534 -> 1887[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1535 -> 537[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1535[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1535 -> 1888[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1535 -> 1889[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1536 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1536[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1536 -> 1890[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1536 -> 1891[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1537 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1537[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1537 -> 1892[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1537 -> 1893[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1538 -> 540[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1538[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1538 -> 1894[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1538 -> 1895[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1539 -> 541[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1539[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1539 -> 1896[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1539 -> 1897[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1540 -> 542[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1540[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1540 -> 1898[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1540 -> 1899[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1541 -> 543[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1541[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1541 -> 1900[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1541 -> 1901[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1542 -> 544[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1542[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1542 -> 1902[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1542 -> 1903[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1543 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1543[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1543 -> 1904[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1543 -> 1905[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1544 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1544[label="xuu500000 * xuu40001 == xuu500001 * xuu40000",fontsize=16,color="magenta"];1544 -> 1906[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1544 -> 1907[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1545[label="xuu500001 == xuu40001",fontsize=16,color="blue",shape="box"];4254[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 4254[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4254 -> 1908[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4255[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 4255[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4255 -> 1909[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4256[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 4256[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4256 -> 1910[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4257[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 4257[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4257 -> 1911[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4258[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 4258[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4258 -> 1912[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4259[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 4259[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4259 -> 1913[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4260[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 4260[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4260 -> 1914[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4261[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 4261[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4261 -> 1915[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4262[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 4262[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4262 -> 1916[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4263[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 4263[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4263 -> 1917[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4264[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 4264[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4264 -> 1918[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4265[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 4265[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4265 -> 1919[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4266[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 4266[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4266 -> 1920[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4267[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 4267[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4267 -> 1921[label="",style="solid", color="blue", weight=3]; 22.90/8.42 1546[label="xuu500000 == xuu40000",fontsize=16,color="blue",shape="box"];4268[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4268[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4268 -> 1922[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4269[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4269[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4269 -> 1923[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4270[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4270[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4270 -> 1924[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4271[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4271[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4271 -> 1925[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4272[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4272[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4272 -> 1926[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4273[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4273[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4273 -> 1927[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4274[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4274[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4274 -> 1928[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4275[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4275[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4275 -> 1929[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4276[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4276[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4276 -> 1930[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4277[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4277[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4277 -> 1931[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4278[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4278[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4278 -> 1932[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4279[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4279[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4279 -> 1933[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4280[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4280[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4280 -> 1934[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4281[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4281[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4281 -> 1935[label="",style="solid", color="blue", weight=3]; 22.90/8.42 1547 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1547[label="xuu500000 * xuu40001 == xuu500001 * xuu40000",fontsize=16,color="magenta"];1547 -> 1936[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1547 -> 1937[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1548 -> 532[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1548[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1548 -> 1938[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1548 -> 1939[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1549 -> 533[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1549[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1549 -> 1940[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1549 -> 1941[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1550 -> 534[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1550[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1550 -> 1942[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1550 -> 1943[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1551 -> 535[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1551[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1551 -> 1944[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1551 -> 1945[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1552 -> 536[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1552[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1552 -> 1946[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1552 -> 1947[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1553 -> 537[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1553[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1553 -> 1948[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1553 -> 1949[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1554 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1554[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1554 -> 1950[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1554 -> 1951[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1555 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1555[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1555 -> 1952[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1555 -> 1953[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1556 -> 540[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1556[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1556 -> 1954[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1556 -> 1955[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1557 -> 541[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1557[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1557 -> 1956[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1557 -> 1957[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1558 -> 542[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1558[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1558 -> 1958[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1558 -> 1959[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1559 -> 543[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1559[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1559 -> 1960[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1559 -> 1961[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1560 -> 544[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1560[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1560 -> 1962[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1560 -> 1963[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1561 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1561[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1561 -> 1964[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1561 -> 1965[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1562[label="xuu500000",fontsize=16,color="green",shape="box"];1563[label="xuu40000",fontsize=16,color="green",shape="box"];1564 -> 540[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1564[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1564 -> 1966[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1564 -> 1967[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1565[label="xuu500000 == xuu40000",fontsize=16,color="blue",shape="box"];4282[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4282[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4282 -> 1968[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4283[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4283[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4283 -> 1969[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4284[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4284[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4284 -> 1970[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4285[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4285[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4285 -> 1971[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4286[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4286[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4286 -> 1972[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4287[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4287[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4287 -> 1973[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4288[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4288[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4288 -> 1974[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4289[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4289[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4289 -> 1975[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4290[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4290[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4290 -> 1976[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4291[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4291[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4291 -> 1977[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4292[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4292[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4292 -> 1978[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4293[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4293[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4293 -> 1979[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4294[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4294[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4294 -> 1980[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4295[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4295[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4295 -> 1981[label="",style="solid", color="blue", weight=3]; 22.90/8.42 1566[label="xuu500001 == xuu40001",fontsize=16,color="blue",shape="box"];4296[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 4296[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4296 -> 1982[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4297[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 4297[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4297 -> 1983[label="",style="solid", color="blue", weight=3]; 22.90/8.42 1567[label="xuu500000 == xuu40000",fontsize=16,color="blue",shape="box"];4298[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1567 -> 4298[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4298 -> 1984[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4299[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1567 -> 4299[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4299 -> 1985[label="",style="solid", color="blue", weight=3]; 22.90/8.42 1568 -> 985[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1568[label="xuu500001 == xuu40001 && xuu500002 == xuu40002",fontsize=16,color="magenta"];1568 -> 1986[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1568 -> 1987[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1569[label="xuu500000 == xuu40000",fontsize=16,color="blue",shape="box"];4300[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1569 -> 4300[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4300 -> 1988[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4301[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1569 -> 4301[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4301 -> 1989[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4302[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1569 -> 4302[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4302 -> 1990[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4303[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1569 -> 4303[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4303 -> 1991[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4304[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1569 -> 4304[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4304 -> 1992[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4305[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1569 -> 4305[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4305 -> 1993[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4306[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1569 -> 4306[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4306 -> 1994[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4307[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1569 -> 4307[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4307 -> 1995[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4308[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1569 -> 4308[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4308 -> 1996[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4309[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1569 -> 4309[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4309 -> 1997[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4310[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1569 -> 4310[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4310 -> 1998[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4311[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1569 -> 4311[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4311 -> 1999[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4312[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1569 -> 4312[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4312 -> 2000[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4313[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1569 -> 4313[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4313 -> 2001[label="",style="solid", color="blue", weight=3]; 22.90/8.42 1570[label="primEqInt (Pos (Succ xuu5000000)) (Pos xuu40000)",fontsize=16,color="burlywood",shape="box"];4314[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];1570 -> 4314[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4314 -> 2002[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4315[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1570 -> 4315[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4315 -> 2003[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 1571[label="primEqInt (Pos (Succ xuu5000000)) (Neg xuu40000)",fontsize=16,color="black",shape="box"];1571 -> 2004[label="",style="solid", color="black", weight=3]; 22.90/8.42 1572[label="primEqInt (Pos Zero) (Pos xuu40000)",fontsize=16,color="burlywood",shape="box"];4316[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];1572 -> 4316[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4316 -> 2005[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4317[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1572 -> 4317[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4317 -> 2006[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 1573[label="primEqInt (Pos Zero) (Neg xuu40000)",fontsize=16,color="burlywood",shape="box"];4318[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];1573 -> 4318[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4318 -> 2007[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4319[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1573 -> 4319[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4319 -> 2008[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 1574[label="primEqInt (Neg (Succ xuu5000000)) (Pos xuu40000)",fontsize=16,color="black",shape="box"];1574 -> 2009[label="",style="solid", color="black", weight=3]; 22.90/8.42 1575[label="primEqInt (Neg (Succ xuu5000000)) (Neg xuu40000)",fontsize=16,color="burlywood",shape="box"];4320[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];1575 -> 4320[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4320 -> 2010[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4321[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1575 -> 4321[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4321 -> 2011[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 1576[label="primEqInt (Neg Zero) (Pos xuu40000)",fontsize=16,color="burlywood",shape="box"];4322[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];1576 -> 4322[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4322 -> 2012[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4323[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1576 -> 4323[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4323 -> 2013[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 1577[label="primEqInt (Neg Zero) (Neg xuu40000)",fontsize=16,color="burlywood",shape="box"];4324[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];1577 -> 4324[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4324 -> 2014[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4325[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1577 -> 4325[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4325 -> 2015[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 1578 -> 2016[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1578[label="compare xuu58 xuu59 /= GT",fontsize=16,color="magenta"];1578 -> 2017[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1579[label="(xuu580,xuu581) <= xuu59",fontsize=16,color="burlywood",shape="box"];4326[label="xuu59/(xuu590,xuu591)",fontsize=10,color="white",style="solid",shape="box"];1579 -> 4326[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4326 -> 2032[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 1580[label="Nothing <= xuu59",fontsize=16,color="burlywood",shape="box"];4327[label="xuu59/Nothing",fontsize=10,color="white",style="solid",shape="box"];1580 -> 4327[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4327 -> 2033[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4328[label="xuu59/Just xuu590",fontsize=10,color="white",style="solid",shape="box"];1580 -> 4328[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4328 -> 2034[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 1581[label="Just xuu580 <= xuu59",fontsize=16,color="burlywood",shape="box"];4329[label="xuu59/Nothing",fontsize=10,color="white",style="solid",shape="box"];1581 -> 4329[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4329 -> 2035[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4330[label="xuu59/Just xuu590",fontsize=10,color="white",style="solid",shape="box"];1581 -> 4330[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4330 -> 2036[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 1582[label="(xuu580,xuu581,xuu582) <= xuu59",fontsize=16,color="burlywood",shape="box"];4331[label="xuu59/(xuu590,xuu591,xuu592)",fontsize=10,color="white",style="solid",shape="box"];1582 -> 4331[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4331 -> 2037[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 1583 -> 2016[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1583[label="compare xuu58 xuu59 /= GT",fontsize=16,color="magenta"];1583 -> 2018[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1584 -> 2016[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1584[label="compare xuu58 xuu59 /= GT",fontsize=16,color="magenta"];1584 -> 2019[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1585[label="LT <= xuu59",fontsize=16,color="burlywood",shape="box"];4332[label="xuu59/LT",fontsize=10,color="white",style="solid",shape="box"];1585 -> 4332[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4332 -> 2038[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4333[label="xuu59/EQ",fontsize=10,color="white",style="solid",shape="box"];1585 -> 4333[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4333 -> 2039[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4334[label="xuu59/GT",fontsize=10,color="white",style="solid",shape="box"];1585 -> 4334[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4334 -> 2040[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 1586[label="EQ <= xuu59",fontsize=16,color="burlywood",shape="box"];4335[label="xuu59/LT",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4335[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4335 -> 2041[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4336[label="xuu59/EQ",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4336[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4336 -> 2042[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4337[label="xuu59/GT",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4337[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4337 -> 2043[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 1587[label="GT <= xuu59",fontsize=16,color="burlywood",shape="box"];4338[label="xuu59/LT",fontsize=10,color="white",style="solid",shape="box"];1587 -> 4338[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4338 -> 2044[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4339[label="xuu59/EQ",fontsize=10,color="white",style="solid",shape="box"];1587 -> 4339[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4339 -> 2045[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4340[label="xuu59/GT",fontsize=10,color="white",style="solid",shape="box"];1587 -> 4340[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4340 -> 2046[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 1588 -> 2016[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1588[label="compare xuu58 xuu59 /= GT",fontsize=16,color="magenta"];1588 -> 2020[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1589[label="False <= xuu59",fontsize=16,color="burlywood",shape="box"];4341[label="xuu59/False",fontsize=10,color="white",style="solid",shape="box"];1589 -> 4341[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4341 -> 2047[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4342[label="xuu59/True",fontsize=10,color="white",style="solid",shape="box"];1589 -> 4342[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4342 -> 2048[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 1590[label="True <= xuu59",fontsize=16,color="burlywood",shape="box"];4343[label="xuu59/False",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4343[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4343 -> 2049[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4344[label="xuu59/True",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4344[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4344 -> 2050[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 1591 -> 2016[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1591[label="compare xuu58 xuu59 /= GT",fontsize=16,color="magenta"];1591 -> 2021[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1592 -> 2016[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1592[label="compare xuu58 xuu59 /= GT",fontsize=16,color="magenta"];1592 -> 2022[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1593 -> 2016[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1593[label="compare xuu58 xuu59 /= GT",fontsize=16,color="magenta"];1593 -> 2023[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1594 -> 2016[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1594[label="compare xuu58 xuu59 /= GT",fontsize=16,color="magenta"];1594 -> 2024[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1595[label="Left xuu580 <= xuu59",fontsize=16,color="burlywood",shape="box"];4345[label="xuu59/Left xuu590",fontsize=10,color="white",style="solid",shape="box"];1595 -> 4345[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4345 -> 2051[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4346[label="xuu59/Right xuu590",fontsize=10,color="white",style="solid",shape="box"];1595 -> 4346[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4346 -> 2052[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 1596[label="Right xuu580 <= xuu59",fontsize=16,color="burlywood",shape="box"];4347[label="xuu59/Left xuu590",fontsize=10,color="white",style="solid",shape="box"];1596 -> 4347[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4347 -> 2053[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4348[label="xuu59/Right xuu590",fontsize=10,color="white",style="solid",shape="box"];1596 -> 4348[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4348 -> 2054[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 1597[label="compare0 (Just xuu125) (Just xuu126) True",fontsize=16,color="black",shape="box"];1597 -> 2055[label="",style="solid", color="black", weight=3]; 22.90/8.42 1598[label="xuu69",fontsize=16,color="green",shape="box"];1599[label="xuu72",fontsize=16,color="green",shape="box"];1600[label="xuu69",fontsize=16,color="green",shape="box"];1601[label="xuu72",fontsize=16,color="green",shape="box"];1602[label="xuu69",fontsize=16,color="green",shape="box"];1603[label="xuu72",fontsize=16,color="green",shape="box"];1604[label="xuu69",fontsize=16,color="green",shape="box"];1605[label="xuu72",fontsize=16,color="green",shape="box"];1606[label="xuu69",fontsize=16,color="green",shape="box"];1607[label="xuu72",fontsize=16,color="green",shape="box"];1608[label="xuu69",fontsize=16,color="green",shape="box"];1609[label="xuu72",fontsize=16,color="green",shape="box"];1610[label="xuu69",fontsize=16,color="green",shape="box"];1611[label="xuu72",fontsize=16,color="green",shape="box"];1612[label="xuu69",fontsize=16,color="green",shape="box"];1613[label="xuu72",fontsize=16,color="green",shape="box"];1614[label="xuu69",fontsize=16,color="green",shape="box"];1615[label="xuu72",fontsize=16,color="green",shape="box"];1616[label="xuu69",fontsize=16,color="green",shape="box"];1617[label="xuu72",fontsize=16,color="green",shape="box"];1618[label="xuu69",fontsize=16,color="green",shape="box"];1619[label="xuu72",fontsize=16,color="green",shape="box"];1620[label="xuu69",fontsize=16,color="green",shape="box"];1621[label="xuu72",fontsize=16,color="green",shape="box"];1622[label="xuu69",fontsize=16,color="green",shape="box"];1623[label="xuu72",fontsize=16,color="green",shape="box"];1624[label="xuu69",fontsize=16,color="green",shape="box"];1625[label="xuu72",fontsize=16,color="green",shape="box"];2059[label="xuu70 < xuu73",fontsize=16,color="blue",shape="box"];4349[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 4349[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4349 -> 2068[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4350[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 4350[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4350 -> 2069[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4351[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 4351[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4351 -> 2070[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4352[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 4352[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4352 -> 2071[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4353[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 4353[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4353 -> 2072[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4354[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 4354[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4354 -> 2073[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4355[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 4355[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4355 -> 2074[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4356[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 4356[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4356 -> 2075[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4357[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 4357[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4357 -> 2076[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4358[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 4358[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4358 -> 2077[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4359[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 4359[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4359 -> 2078[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4360[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 4360[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4360 -> 2079[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4361[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 4361[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4361 -> 2080[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4362[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2059 -> 4362[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4362 -> 2081[label="",style="solid", color="blue", weight=3]; 22.90/8.42 2060 -> 985[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2060[label="xuu70 == xuu73 && xuu71 <= xuu74",fontsize=16,color="magenta"];2060 -> 2082[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2060 -> 2083[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2058[label="xuu194 || xuu195",fontsize=16,color="burlywood",shape="triangle"];4363[label="xuu194/False",fontsize=10,color="white",style="solid",shape="box"];2058 -> 4363[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4363 -> 2084[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4364[label="xuu194/True",fontsize=10,color="white",style="solid",shape="box"];2058 -> 4364[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4364 -> 2085[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 1628 -> 542[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1628[label="xuu69 == xuu72",fontsize=16,color="magenta"];1628 -> 2086[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1628 -> 2087[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1629 -> 535[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1629[label="xuu69 == xuu72",fontsize=16,color="magenta"];1629 -> 2088[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1629 -> 2089[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1630 -> 537[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1630[label="xuu69 == xuu72",fontsize=16,color="magenta"];1630 -> 2090[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1630 -> 2091[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1631 -> 543[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1631[label="xuu69 == xuu72",fontsize=16,color="magenta"];1631 -> 2092[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1631 -> 2093[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1632 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1632[label="xuu69 == xuu72",fontsize=16,color="magenta"];1632 -> 2094[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1632 -> 2095[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1633 -> 532[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1633[label="xuu69 == xuu72",fontsize=16,color="magenta"];1633 -> 2096[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1633 -> 2097[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1634 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1634[label="xuu69 == xuu72",fontsize=16,color="magenta"];1634 -> 2098[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1634 -> 2099[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1635 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1635[label="xuu69 == xuu72",fontsize=16,color="magenta"];1635 -> 2100[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1635 -> 2101[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1636 -> 541[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1636[label="xuu69 == xuu72",fontsize=16,color="magenta"];1636 -> 2102[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1636 -> 2103[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1637 -> 540[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1637[label="xuu69 == xuu72",fontsize=16,color="magenta"];1637 -> 2104[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1637 -> 2105[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1638 -> 544[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1638[label="xuu69 == xuu72",fontsize=16,color="magenta"];1638 -> 2106[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1638 -> 2107[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1639 -> 534[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1639[label="xuu69 == xuu72",fontsize=16,color="magenta"];1639 -> 2108[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1639 -> 2109[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1640 -> 536[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1640[label="xuu69 == xuu72",fontsize=16,color="magenta"];1640 -> 2110[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1640 -> 2111[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1641 -> 533[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1641[label="xuu69 == xuu72",fontsize=16,color="magenta"];1641 -> 2112[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1641 -> 2113[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1642[label="compare1 (xuu171,xuu172,xuu173) (xuu174,xuu175,xuu176) xuu178",fontsize=16,color="burlywood",shape="triangle"];4365[label="xuu178/False",fontsize=10,color="white",style="solid",shape="box"];1642 -> 4365[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4365 -> 2114[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4366[label="xuu178/True",fontsize=10,color="white",style="solid",shape="box"];1642 -> 4366[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4366 -> 2115[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 1643 -> 1642[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1643[label="compare1 (xuu171,xuu172,xuu173) (xuu174,xuu175,xuu176) True",fontsize=16,color="magenta"];1643 -> 2116[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1644[label="xuu80",fontsize=16,color="green",shape="box"];1645[label="xuu81",fontsize=16,color="green",shape="box"];1646[label="xuu80",fontsize=16,color="green",shape="box"];1647[label="xuu81",fontsize=16,color="green",shape="box"];1648[label="xuu80",fontsize=16,color="green",shape="box"];1649[label="xuu81",fontsize=16,color="green",shape="box"];1650[label="xuu80",fontsize=16,color="green",shape="box"];1651[label="xuu81",fontsize=16,color="green",shape="box"];1652[label="xuu80",fontsize=16,color="green",shape="box"];1653[label="xuu81",fontsize=16,color="green",shape="box"];1654[label="xuu80",fontsize=16,color="green",shape="box"];1655[label="xuu81",fontsize=16,color="green",shape="box"];1656[label="xuu80",fontsize=16,color="green",shape="box"];1657[label="xuu81",fontsize=16,color="green",shape="box"];1658[label="xuu80",fontsize=16,color="green",shape="box"];1659[label="xuu81",fontsize=16,color="green",shape="box"];1660[label="xuu80",fontsize=16,color="green",shape="box"];1661[label="xuu81",fontsize=16,color="green",shape="box"];1662[label="xuu80",fontsize=16,color="green",shape="box"];1663[label="xuu81",fontsize=16,color="green",shape="box"];1664[label="xuu80",fontsize=16,color="green",shape="box"];1665[label="xuu81",fontsize=16,color="green",shape="box"];1666[label="xuu80",fontsize=16,color="green",shape="box"];1667[label="xuu81",fontsize=16,color="green",shape="box"];1668[label="xuu80",fontsize=16,color="green",shape="box"];1669[label="xuu81",fontsize=16,color="green",shape="box"];1670[label="xuu80",fontsize=16,color="green",shape="box"];1671[label="xuu81",fontsize=16,color="green",shape="box"];1672[label="compare0 (Left xuu135) (Left xuu136) True",fontsize=16,color="black",shape="box"];1672 -> 2117[label="",style="solid", color="black", weight=3]; 22.90/8.42 1673[label="xuu87",fontsize=16,color="green",shape="box"];1674[label="xuu88",fontsize=16,color="green",shape="box"];1675[label="xuu87",fontsize=16,color="green",shape="box"];1676[label="xuu88",fontsize=16,color="green",shape="box"];1677[label="xuu87",fontsize=16,color="green",shape="box"];1678[label="xuu88",fontsize=16,color="green",shape="box"];1679[label="xuu87",fontsize=16,color="green",shape="box"];1680[label="xuu88",fontsize=16,color="green",shape="box"];1681[label="xuu87",fontsize=16,color="green",shape="box"];1682[label="xuu88",fontsize=16,color="green",shape="box"];1683[label="xuu87",fontsize=16,color="green",shape="box"];1684[label="xuu88",fontsize=16,color="green",shape="box"];1685[label="xuu87",fontsize=16,color="green",shape="box"];1686[label="xuu88",fontsize=16,color="green",shape="box"];1687[label="xuu87",fontsize=16,color="green",shape="box"];1688[label="xuu88",fontsize=16,color="green",shape="box"];1689[label="xuu87",fontsize=16,color="green",shape="box"];1690[label="xuu88",fontsize=16,color="green",shape="box"];1691[label="xuu87",fontsize=16,color="green",shape="box"];1692[label="xuu88",fontsize=16,color="green",shape="box"];1693[label="xuu87",fontsize=16,color="green",shape="box"];1694[label="xuu88",fontsize=16,color="green",shape="box"];1695[label="xuu87",fontsize=16,color="green",shape="box"];1696[label="xuu88",fontsize=16,color="green",shape="box"];1697[label="xuu87",fontsize=16,color="green",shape="box"];1698[label="xuu88",fontsize=16,color="green",shape="box"];1699[label="xuu87",fontsize=16,color="green",shape="box"];1700[label="xuu88",fontsize=16,color="green",shape="box"];1701[label="compare0 (Right xuu142) (Right xuu143) True",fontsize=16,color="black",shape="box"];1701 -> 2118[label="",style="solid", color="black", weight=3]; 22.90/8.42 2134 -> 1737[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2134[label="FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43",fontsize=16,color="magenta"];2135[label="FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43",fontsize=16,color="black",shape="triangle"];2135 -> 2156[label="",style="solid", color="black", weight=3]; 22.90/8.42 1748 -> 1742[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1748[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1749 -> 2135[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1749[label="FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43",fontsize=16,color="magenta"];1750 -> 1744[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1750[label="FiniteMap.sizeFM xuu41",fontsize=16,color="magenta"];1750 -> 2157[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1751 -> 2158[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1751[label="FiniteMap.mkBalBranch6MkBalBranch3 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 (FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43)",fontsize=16,color="magenta"];1751 -> 2159[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1752[label="FiniteMap.mkBalBranch6MkBalBranch0 [] xuu41 xuu41 xuu43 xuu43 xuu41 xuu41",fontsize=16,color="burlywood",shape="box"];4367[label="xuu41/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1752 -> 4367[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4367 -> 2164[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4368[label="xuu41/FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414",fontsize=10,color="white",style="solid",shape="box"];1752 -> 4368[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4368 -> 2165[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 2584[label="primPlusNat (Succ xuu19700) (Succ xuu19600)",fontsize=16,color="black",shape="box"];2584 -> 2719[label="",style="solid", color="black", weight=3]; 22.90/8.42 2585[label="primPlusNat (Succ xuu19700) Zero",fontsize=16,color="black",shape="box"];2585 -> 2720[label="",style="solid", color="black", weight=3]; 22.90/8.42 2586[label="primPlusNat Zero (Succ xuu19600)",fontsize=16,color="black",shape="box"];2586 -> 2721[label="",style="solid", color="black", weight=3]; 22.90/8.42 2587[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2587 -> 2722[label="",style="solid", color="black", weight=3]; 22.90/8.42 2588 -> 2175[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2588[label="primMinusNat xuu19700 xuu19600",fontsize=16,color="magenta"];2588 -> 2723[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2588 -> 2724[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2589[label="Pos (Succ xuu19700)",fontsize=16,color="green",shape="box"];2590[label="Neg (Succ xuu19600)",fontsize=16,color="green",shape="box"];2591[label="Pos Zero",fontsize=16,color="green",shape="box"];3675 -> 2119[label="",style="dashed", color="red", weight=0]; 22.90/8.42 3675[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu296 xuu293 xuu295) (FiniteMap.mkBranchRight_size xuu296 xuu293 xuu295)",fontsize=16,color="magenta"];3675 -> 3676[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 3675 -> 3677[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1753 -> 1742[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1753[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1754 -> 1733[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1754[label="FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29",fontsize=16,color="magenta"];2030[label="FiniteMap.mkBalBranch6MkBalBranch2 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 otherwise",fontsize=16,color="black",shape="box"];2030 -> 2169[label="",style="solid", color="black", weight=3]; 22.90/8.42 2031[label="FiniteMap.mkBalBranch6MkBalBranch1 (xuu400 : xuu401) xuu41 xuu44 xuu29 xuu29 xuu44 xuu29",fontsize=16,color="burlywood",shape="box"];4369[label="xuu29/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4369[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4369 -> 2170[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4370[label="xuu29/FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4370[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4370 -> 2171[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 1756 -> 2172[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1756[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu400 : xuu401) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu29 xuu29 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 (FiniteMap.sizeFM xuu443 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu444)",fontsize=16,color="magenta"];1756 -> 2173[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1757 -> 2178[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1757[label="primPlusNat (primMulNat xuu400000 (Succ xuu5000100)) (Succ xuu5000100)",fontsize=16,color="magenta"];1757 -> 2179[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1758[label="Zero",fontsize=16,color="green",shape="box"];1759[label="Zero",fontsize=16,color="green",shape="box"];1760[label="Zero",fontsize=16,color="green",shape="box"];1761 -> 167[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1761[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1761 -> 2186[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1761 -> 2187[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1762[label="LT",fontsize=16,color="green",shape="box"];1763 -> 168[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1763[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1763 -> 2188[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1763 -> 2189[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1764[label="LT",fontsize=16,color="green",shape="box"];1765 -> 169[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1765[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1765 -> 2190[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1765 -> 2191[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1766[label="LT",fontsize=16,color="green",shape="box"];1767 -> 170[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1767[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1767 -> 2192[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1767 -> 2193[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1768[label="LT",fontsize=16,color="green",shape="box"];1769 -> 171[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1769[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1769 -> 2194[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1769 -> 2195[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1770[label="LT",fontsize=16,color="green",shape="box"];1771 -> 172[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1771[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1771 -> 2196[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1771 -> 2197[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1772[label="LT",fontsize=16,color="green",shape="box"];1773 -> 173[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1773[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1773 -> 2198[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1773 -> 2199[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1774[label="LT",fontsize=16,color="green",shape="box"];1775 -> 174[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1775[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1775 -> 2200[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1775 -> 2201[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1776[label="LT",fontsize=16,color="green",shape="box"];1777 -> 175[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1777[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1777 -> 2202[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1777 -> 2203[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1778[label="LT",fontsize=16,color="green",shape="box"];1779 -> 176[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1779[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1779 -> 2204[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1779 -> 2205[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1780[label="LT",fontsize=16,color="green",shape="box"];1781 -> 177[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1781[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1781 -> 2206[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1781 -> 2207[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1782[label="LT",fontsize=16,color="green",shape="box"];1783 -> 178[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1783[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1783 -> 2208[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1783 -> 2209[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1784[label="LT",fontsize=16,color="green",shape="box"];1785 -> 179[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1785[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1785 -> 2210[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1785 -> 2211[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1786[label="LT",fontsize=16,color="green",shape="box"];1787 -> 180[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1787[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1787 -> 2212[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1787 -> 2213[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1788[label="LT",fontsize=16,color="green",shape="box"];1789[label="xuu100",fontsize=16,color="green",shape="box"];1790[label="xuu102",fontsize=16,color="green",shape="box"];1791[label="xuu100",fontsize=16,color="green",shape="box"];1792[label="xuu102",fontsize=16,color="green",shape="box"];1793[label="xuu100",fontsize=16,color="green",shape="box"];1794[label="xuu102",fontsize=16,color="green",shape="box"];1795[label="xuu100",fontsize=16,color="green",shape="box"];1796[label="xuu102",fontsize=16,color="green",shape="box"];1797[label="xuu100",fontsize=16,color="green",shape="box"];1798[label="xuu102",fontsize=16,color="green",shape="box"];1799[label="xuu100",fontsize=16,color="green",shape="box"];1800[label="xuu102",fontsize=16,color="green",shape="box"];1801[label="xuu100",fontsize=16,color="green",shape="box"];1802[label="xuu102",fontsize=16,color="green",shape="box"];1803[label="xuu100",fontsize=16,color="green",shape="box"];1804[label="xuu102",fontsize=16,color="green",shape="box"];1805[label="xuu100",fontsize=16,color="green",shape="box"];1806[label="xuu102",fontsize=16,color="green",shape="box"];1807[label="xuu100",fontsize=16,color="green",shape="box"];1808[label="xuu102",fontsize=16,color="green",shape="box"];1809[label="xuu100",fontsize=16,color="green",shape="box"];1810[label="xuu102",fontsize=16,color="green",shape="box"];1811[label="xuu100",fontsize=16,color="green",shape="box"];1812[label="xuu102",fontsize=16,color="green",shape="box"];1813[label="xuu100",fontsize=16,color="green",shape="box"];1814[label="xuu102",fontsize=16,color="green",shape="box"];1815[label="xuu100",fontsize=16,color="green",shape="box"];1816[label="xuu102",fontsize=16,color="green",shape="box"];1817[label="xuu99",fontsize=16,color="green",shape="box"];1818[label="xuu101",fontsize=16,color="green",shape="box"];1819[label="xuu99",fontsize=16,color="green",shape="box"];1820[label="xuu101",fontsize=16,color="green",shape="box"];1821[label="xuu99",fontsize=16,color="green",shape="box"];1822[label="xuu101",fontsize=16,color="green",shape="box"];1823[label="xuu99",fontsize=16,color="green",shape="box"];1824[label="xuu101",fontsize=16,color="green",shape="box"];1825[label="xuu99",fontsize=16,color="green",shape="box"];1826[label="xuu101",fontsize=16,color="green",shape="box"];1827[label="xuu99",fontsize=16,color="green",shape="box"];1828[label="xuu101",fontsize=16,color="green",shape="box"];1829[label="xuu99",fontsize=16,color="green",shape="box"];1830[label="xuu101",fontsize=16,color="green",shape="box"];1831[label="xuu99",fontsize=16,color="green",shape="box"];1832[label="xuu101",fontsize=16,color="green",shape="box"];1833[label="xuu99",fontsize=16,color="green",shape="box"];1834[label="xuu101",fontsize=16,color="green",shape="box"];1835[label="xuu99",fontsize=16,color="green",shape="box"];1836[label="xuu101",fontsize=16,color="green",shape="box"];1837[label="xuu99",fontsize=16,color="green",shape="box"];1838[label="xuu101",fontsize=16,color="green",shape="box"];1839[label="xuu99",fontsize=16,color="green",shape="box"];1840[label="xuu101",fontsize=16,color="green",shape="box"];1841[label="xuu99",fontsize=16,color="green",shape="box"];1842[label="xuu101",fontsize=16,color="green",shape="box"];1843[label="xuu99",fontsize=16,color="green",shape="box"];1844[label="xuu101",fontsize=16,color="green",shape="box"];1845[label="compare1 (xuu156,xuu157) (xuu158,xuu159) False",fontsize=16,color="black",shape="box"];1845 -> 2214[label="",style="solid", color="black", weight=3]; 22.90/8.42 1846[label="compare1 (xuu156,xuu157) (xuu158,xuu159) True",fontsize=16,color="black",shape="box"];1846 -> 2215[label="",style="solid", color="black", weight=3]; 22.90/8.42 1847[label="True",fontsize=16,color="green",shape="box"];1848[label="primEqNat (Succ xuu5000000) xuu40000",fontsize=16,color="burlywood",shape="box"];4371[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];1848 -> 4371[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4371 -> 2216[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4372[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1848 -> 4372[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4372 -> 2217[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 1849[label="primEqNat Zero xuu40000",fontsize=16,color="burlywood",shape="box"];4373[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];1849 -> 4373[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4373 -> 2218[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4374[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1849 -> 4374[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4374 -> 2219[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 1850[label="xuu500000",fontsize=16,color="green",shape="box"];1851[label="xuu40000",fontsize=16,color="green",shape="box"];1852[label="xuu500000",fontsize=16,color="green",shape="box"];1853[label="xuu40000",fontsize=16,color="green",shape="box"];1854[label="xuu500000",fontsize=16,color="green",shape="box"];1855[label="xuu40000",fontsize=16,color="green",shape="box"];1856[label="xuu500000",fontsize=16,color="green",shape="box"];1857[label="xuu40000",fontsize=16,color="green",shape="box"];1858[label="xuu500000",fontsize=16,color="green",shape="box"];1859[label="xuu40000",fontsize=16,color="green",shape="box"];1860[label="xuu500000",fontsize=16,color="green",shape="box"];1861[label="xuu40000",fontsize=16,color="green",shape="box"];1862[label="xuu500000",fontsize=16,color="green",shape="box"];1863[label="xuu40000",fontsize=16,color="green",shape="box"];1864[label="xuu500000",fontsize=16,color="green",shape="box"];1865[label="xuu40000",fontsize=16,color="green",shape="box"];1866[label="xuu500000",fontsize=16,color="green",shape="box"];1867[label="xuu40000",fontsize=16,color="green",shape="box"];1868[label="xuu500000",fontsize=16,color="green",shape="box"];1869[label="xuu40000",fontsize=16,color="green",shape="box"];1870[label="xuu500000",fontsize=16,color="green",shape="box"];1871[label="xuu40000",fontsize=16,color="green",shape="box"];1872[label="xuu500000",fontsize=16,color="green",shape="box"];1873[label="xuu40000",fontsize=16,color="green",shape="box"];1874[label="xuu500000",fontsize=16,color="green",shape="box"];1875[label="xuu40000",fontsize=16,color="green",shape="box"];1876[label="xuu500000",fontsize=16,color="green",shape="box"];1877[label="xuu40000",fontsize=16,color="green",shape="box"];1878[label="xuu500000",fontsize=16,color="green",shape="box"];1879[label="xuu40000",fontsize=16,color="green",shape="box"];1880[label="xuu500000",fontsize=16,color="green",shape="box"];1881[label="xuu40000",fontsize=16,color="green",shape="box"];1882[label="xuu500000",fontsize=16,color="green",shape="box"];1883[label="xuu40000",fontsize=16,color="green",shape="box"];1884[label="xuu500000",fontsize=16,color="green",shape="box"];1885[label="xuu40000",fontsize=16,color="green",shape="box"];1886[label="xuu500000",fontsize=16,color="green",shape="box"];1887[label="xuu40000",fontsize=16,color="green",shape="box"];1888[label="xuu500000",fontsize=16,color="green",shape="box"];1889[label="xuu40000",fontsize=16,color="green",shape="box"];1890[label="xuu500000",fontsize=16,color="green",shape="box"];1891[label="xuu40000",fontsize=16,color="green",shape="box"];1892[label="xuu500000",fontsize=16,color="green",shape="box"];1893[label="xuu40000",fontsize=16,color="green",shape="box"];1894[label="xuu500000",fontsize=16,color="green",shape="box"];1895[label="xuu40000",fontsize=16,color="green",shape="box"];1896[label="xuu500000",fontsize=16,color="green",shape="box"];1897[label="xuu40000",fontsize=16,color="green",shape="box"];1898[label="xuu500000",fontsize=16,color="green",shape="box"];1899[label="xuu40000",fontsize=16,color="green",shape="box"];1900[label="xuu500000",fontsize=16,color="green",shape="box"];1901[label="xuu40000",fontsize=16,color="green",shape="box"];1902[label="xuu500000",fontsize=16,color="green",shape="box"];1903[label="xuu40000",fontsize=16,color="green",shape="box"];1904[label="xuu500000",fontsize=16,color="green",shape="box"];1905[label="xuu40000",fontsize=16,color="green",shape="box"];1906 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1906[label="xuu500000 * xuu40001",fontsize=16,color="magenta"];1906 -> 2220[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1906 -> 2221[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1907 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1907[label="xuu500001 * xuu40000",fontsize=16,color="magenta"];1907 -> 2222[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1907 -> 2223[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1908 -> 532[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1908[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1908 -> 2224[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1908 -> 2225[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1909 -> 533[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1909[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1909 -> 2226[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1909 -> 2227[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1910 -> 534[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1910[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1910 -> 2228[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1910 -> 2229[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1911 -> 535[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1911[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1911 -> 2230[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1911 -> 2231[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1912 -> 536[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1912[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1912 -> 2232[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1912 -> 2233[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1913 -> 537[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1913[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1913 -> 2234[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1913 -> 2235[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1914 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1914[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1914 -> 2236[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1914 -> 2237[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1915 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1915[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1915 -> 2238[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1915 -> 2239[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1916 -> 540[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1916[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1916 -> 2240[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1916 -> 2241[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1917 -> 541[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1917[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1917 -> 2242[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1917 -> 2243[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1918 -> 542[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1918[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1918 -> 2244[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1918 -> 2245[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1919 -> 543[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1919[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1919 -> 2246[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1919 -> 2247[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1920 -> 544[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1920[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1920 -> 2248[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1920 -> 2249[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1921 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1921[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1921 -> 2250[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1921 -> 2251[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1922 -> 532[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1922[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1922 -> 2252[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1922 -> 2253[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1923 -> 533[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1923[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1923 -> 2254[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1923 -> 2255[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1924 -> 534[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1924[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1924 -> 2256[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1924 -> 2257[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1925 -> 535[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1925[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1925 -> 2258[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1925 -> 2259[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1926 -> 536[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1926[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1926 -> 2260[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1926 -> 2261[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1927 -> 537[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1927[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1927 -> 2262[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1927 -> 2263[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1928 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1928[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1928 -> 2264[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1928 -> 2265[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1929 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1929[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1929 -> 2266[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1929 -> 2267[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1930 -> 540[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1930[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1930 -> 2268[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1930 -> 2269[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1931 -> 541[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1931[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1931 -> 2270[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1931 -> 2271[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1932 -> 542[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1932[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1932 -> 2272[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1932 -> 2273[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1933 -> 543[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1933[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1933 -> 2274[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1933 -> 2275[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1934 -> 544[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1934[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1934 -> 2276[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1934 -> 2277[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1935 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1935[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1935 -> 2278[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1935 -> 2279[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1936 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1936[label="xuu500000 * xuu40001",fontsize=16,color="magenta"];1936 -> 2280[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1936 -> 2281[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1937 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1937[label="xuu500001 * xuu40000",fontsize=16,color="magenta"];1937 -> 2282[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1937 -> 2283[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1938[label="xuu500000",fontsize=16,color="green",shape="box"];1939[label="xuu40000",fontsize=16,color="green",shape="box"];1940[label="xuu500000",fontsize=16,color="green",shape="box"];1941[label="xuu40000",fontsize=16,color="green",shape="box"];1942[label="xuu500000",fontsize=16,color="green",shape="box"];1943[label="xuu40000",fontsize=16,color="green",shape="box"];1944[label="xuu500000",fontsize=16,color="green",shape="box"];1945[label="xuu40000",fontsize=16,color="green",shape="box"];1946[label="xuu500000",fontsize=16,color="green",shape="box"];1947[label="xuu40000",fontsize=16,color="green",shape="box"];1948[label="xuu500000",fontsize=16,color="green",shape="box"];1949[label="xuu40000",fontsize=16,color="green",shape="box"];1950[label="xuu500000",fontsize=16,color="green",shape="box"];1951[label="xuu40000",fontsize=16,color="green",shape="box"];1952[label="xuu500000",fontsize=16,color="green",shape="box"];1953[label="xuu40000",fontsize=16,color="green",shape="box"];1954[label="xuu500000",fontsize=16,color="green",shape="box"];1955[label="xuu40000",fontsize=16,color="green",shape="box"];1956[label="xuu500000",fontsize=16,color="green",shape="box"];1957[label="xuu40000",fontsize=16,color="green",shape="box"];1958[label="xuu500000",fontsize=16,color="green",shape="box"];1959[label="xuu40000",fontsize=16,color="green",shape="box"];1960[label="xuu500000",fontsize=16,color="green",shape="box"];1961[label="xuu40000",fontsize=16,color="green",shape="box"];1962[label="xuu500000",fontsize=16,color="green",shape="box"];1963[label="xuu40000",fontsize=16,color="green",shape="box"];1964[label="xuu500000",fontsize=16,color="green",shape="box"];1965[label="xuu40000",fontsize=16,color="green",shape="box"];1966[label="xuu500001",fontsize=16,color="green",shape="box"];1967[label="xuu40001",fontsize=16,color="green",shape="box"];1968 -> 532[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1968[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1968 -> 2284[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1968 -> 2285[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1969 -> 533[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1969[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1969 -> 2286[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1969 -> 2287[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1970 -> 534[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1970[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1970 -> 2288[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1970 -> 2289[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1971 -> 535[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1971[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1971 -> 2290[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1971 -> 2291[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1972 -> 536[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1972[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1972 -> 2292[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1972 -> 2293[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1973 -> 537[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1973[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1973 -> 2294[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1973 -> 2295[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1974 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1974[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1974 -> 2296[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1974 -> 2297[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1975 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1975[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1975 -> 2298[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1975 -> 2299[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1976 -> 540[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1976[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1976 -> 2300[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1976 -> 2301[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1977 -> 541[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1977[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1977 -> 2302[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1977 -> 2303[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1978 -> 542[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1978[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1978 -> 2304[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1978 -> 2305[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1979 -> 543[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1979[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1979 -> 2306[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1979 -> 2307[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1980 -> 544[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1980[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1980 -> 2308[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1980 -> 2309[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1981 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1981[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1981 -> 2310[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1981 -> 2311[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1982 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1982[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1982 -> 2312[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1982 -> 2313[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1983 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1983[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1983 -> 2314[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1983 -> 2315[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1984 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1984[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1984 -> 2316[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1984 -> 2317[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1985 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1985[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1985 -> 2318[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1985 -> 2319[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1986[label="xuu500002 == xuu40002",fontsize=16,color="blue",shape="box"];4375[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4375[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4375 -> 2320[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4376[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4376[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4376 -> 2321[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4377[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4377[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4377 -> 2322[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4378[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4378[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4378 -> 2323[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4379[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4379[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4379 -> 2324[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4380[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4380[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4380 -> 2325[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4381[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4381[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4381 -> 2326[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4382[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4382[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4382 -> 2327[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4383[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4383[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4383 -> 2328[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4384[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4384[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4384 -> 2329[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4385[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4385[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4385 -> 2330[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4386[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4386[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4386 -> 2331[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4387[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4387[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4387 -> 2332[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4388[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4388[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4388 -> 2333[label="",style="solid", color="blue", weight=3]; 22.90/8.42 1987[label="xuu500001 == xuu40001",fontsize=16,color="blue",shape="box"];4389[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4389[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4389 -> 2334[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4390[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4390[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4390 -> 2335[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4391[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4391[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4391 -> 2336[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4392[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4392[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4392 -> 2337[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4393[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4393[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4393 -> 2338[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4394[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4394[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4394 -> 2339[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4395[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4395[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4395 -> 2340[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4396[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4396[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4396 -> 2341[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4397[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4397[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4397 -> 2342[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4398[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4398[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4398 -> 2343[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4399[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4399[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4399 -> 2344[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4400[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4400[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4400 -> 2345[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4401[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4401[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4401 -> 2346[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4402[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4402[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4402 -> 2347[label="",style="solid", color="blue", weight=3]; 22.90/8.42 1988 -> 532[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1988[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1988 -> 2348[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1988 -> 2349[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1989 -> 533[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1989[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1989 -> 2350[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1989 -> 2351[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1990 -> 534[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1990[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1990 -> 2352[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1990 -> 2353[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1991 -> 535[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1991[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1991 -> 2354[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1991 -> 2355[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1992 -> 536[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1992[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1992 -> 2356[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1992 -> 2357[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1993 -> 537[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1993[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1993 -> 2358[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1993 -> 2359[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1994 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1994[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1994 -> 2360[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1994 -> 2361[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1995 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1995[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1995 -> 2362[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1995 -> 2363[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1996 -> 540[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1996[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1996 -> 2364[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1996 -> 2365[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1997 -> 541[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1997[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1997 -> 2366[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1997 -> 2367[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1998 -> 542[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1998[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1998 -> 2368[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1998 -> 2369[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1999 -> 543[label="",style="dashed", color="red", weight=0]; 22.90/8.42 1999[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1999 -> 2370[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 1999 -> 2371[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2000 -> 544[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2000[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];2000 -> 2372[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2000 -> 2373[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2001 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2001[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];2001 -> 2374[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2001 -> 2375[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2002[label="primEqInt (Pos (Succ xuu5000000)) (Pos (Succ xuu400000))",fontsize=16,color="black",shape="box"];2002 -> 2376[label="",style="solid", color="black", weight=3]; 22.90/8.42 2003[label="primEqInt (Pos (Succ xuu5000000)) (Pos Zero)",fontsize=16,color="black",shape="box"];2003 -> 2377[label="",style="solid", color="black", weight=3]; 22.90/8.42 2004[label="False",fontsize=16,color="green",shape="box"];2005[label="primEqInt (Pos Zero) (Pos (Succ xuu400000))",fontsize=16,color="black",shape="box"];2005 -> 2378[label="",style="solid", color="black", weight=3]; 22.90/8.42 2006[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2006 -> 2379[label="",style="solid", color="black", weight=3]; 22.90/8.42 2007[label="primEqInt (Pos Zero) (Neg (Succ xuu400000))",fontsize=16,color="black",shape="box"];2007 -> 2380[label="",style="solid", color="black", weight=3]; 22.90/8.42 2008[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2008 -> 2381[label="",style="solid", color="black", weight=3]; 22.90/8.42 2009[label="False",fontsize=16,color="green",shape="box"];2010[label="primEqInt (Neg (Succ xuu5000000)) (Neg (Succ xuu400000))",fontsize=16,color="black",shape="box"];2010 -> 2382[label="",style="solid", color="black", weight=3]; 22.90/8.42 2011[label="primEqInt (Neg (Succ xuu5000000)) (Neg Zero)",fontsize=16,color="black",shape="box"];2011 -> 2383[label="",style="solid", color="black", weight=3]; 22.90/8.42 2012[label="primEqInt (Neg Zero) (Pos (Succ xuu400000))",fontsize=16,color="black",shape="box"];2012 -> 2384[label="",style="solid", color="black", weight=3]; 22.90/8.42 2013[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2013 -> 2385[label="",style="solid", color="black", weight=3]; 22.90/8.42 2014[label="primEqInt (Neg Zero) (Neg (Succ xuu400000))",fontsize=16,color="black",shape="box"];2014 -> 2386[label="",style="solid", color="black", weight=3]; 22.90/8.42 2015[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2015 -> 2387[label="",style="solid", color="black", weight=3]; 22.90/8.42 2017 -> 167[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2017[label="compare xuu58 xuu59",fontsize=16,color="magenta"];2017 -> 2388[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2017 -> 2389[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2016[label="xuu190 /= GT",fontsize=16,color="black",shape="triangle"];2016 -> 2390[label="",style="solid", color="black", weight=3]; 22.90/8.42 2032[label="(xuu580,xuu581) <= (xuu590,xuu591)",fontsize=16,color="black",shape="box"];2032 -> 2391[label="",style="solid", color="black", weight=3]; 22.90/8.42 2033[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2033 -> 2392[label="",style="solid", color="black", weight=3]; 22.90/8.42 2034[label="Nothing <= Just xuu590",fontsize=16,color="black",shape="box"];2034 -> 2393[label="",style="solid", color="black", weight=3]; 22.90/8.42 2035[label="Just xuu580 <= Nothing",fontsize=16,color="black",shape="box"];2035 -> 2394[label="",style="solid", color="black", weight=3]; 22.90/8.42 2036[label="Just xuu580 <= Just xuu590",fontsize=16,color="black",shape="box"];2036 -> 2395[label="",style="solid", color="black", weight=3]; 22.90/8.42 2037[label="(xuu580,xuu581,xuu582) <= (xuu590,xuu591,xuu592)",fontsize=16,color="black",shape="box"];2037 -> 2396[label="",style="solid", color="black", weight=3]; 22.90/8.42 2018 -> 171[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2018[label="compare xuu58 xuu59",fontsize=16,color="magenta"];2018 -> 2397[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2018 -> 2398[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2019 -> 172[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2019[label="compare xuu58 xuu59",fontsize=16,color="magenta"];2019 -> 2399[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2019 -> 2400[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2038[label="LT <= LT",fontsize=16,color="black",shape="box"];2038 -> 2401[label="",style="solid", color="black", weight=3]; 22.90/8.42 2039[label="LT <= EQ",fontsize=16,color="black",shape="box"];2039 -> 2402[label="",style="solid", color="black", weight=3]; 22.90/8.42 2040[label="LT <= GT",fontsize=16,color="black",shape="box"];2040 -> 2403[label="",style="solid", color="black", weight=3]; 22.90/8.42 2041[label="EQ <= LT",fontsize=16,color="black",shape="box"];2041 -> 2404[label="",style="solid", color="black", weight=3]; 22.90/8.42 2042[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2042 -> 2405[label="",style="solid", color="black", weight=3]; 22.90/8.42 2043[label="EQ <= GT",fontsize=16,color="black",shape="box"];2043 -> 2406[label="",style="solid", color="black", weight=3]; 22.90/8.42 2044[label="GT <= LT",fontsize=16,color="black",shape="box"];2044 -> 2407[label="",style="solid", color="black", weight=3]; 22.90/8.42 2045[label="GT <= EQ",fontsize=16,color="black",shape="box"];2045 -> 2408[label="",style="solid", color="black", weight=3]; 22.90/8.42 2046[label="GT <= GT",fontsize=16,color="black",shape="box"];2046 -> 2409[label="",style="solid", color="black", weight=3]; 22.90/8.42 2020 -> 174[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2020[label="compare xuu58 xuu59",fontsize=16,color="magenta"];2020 -> 2410[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2020 -> 2411[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2047[label="False <= False",fontsize=16,color="black",shape="box"];2047 -> 2412[label="",style="solid", color="black", weight=3]; 22.90/8.42 2048[label="False <= True",fontsize=16,color="black",shape="box"];2048 -> 2413[label="",style="solid", color="black", weight=3]; 22.90/8.42 2049[label="True <= False",fontsize=16,color="black",shape="box"];2049 -> 2414[label="",style="solid", color="black", weight=3]; 22.90/8.42 2050[label="True <= True",fontsize=16,color="black",shape="box"];2050 -> 2415[label="",style="solid", color="black", weight=3]; 22.90/8.42 2021 -> 176[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2021[label="compare xuu58 xuu59",fontsize=16,color="magenta"];2021 -> 2416[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2021 -> 2417[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2022 -> 177[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2022[label="compare xuu58 xuu59",fontsize=16,color="magenta"];2022 -> 2418[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2022 -> 2419[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2023 -> 178[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2023[label="compare xuu58 xuu59",fontsize=16,color="magenta"];2023 -> 2420[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2023 -> 2421[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2024 -> 179[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2024[label="compare xuu58 xuu59",fontsize=16,color="magenta"];2024 -> 2422[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2024 -> 2423[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2051[label="Left xuu580 <= Left xuu590",fontsize=16,color="black",shape="box"];2051 -> 2424[label="",style="solid", color="black", weight=3]; 22.90/8.42 2052[label="Left xuu580 <= Right xuu590",fontsize=16,color="black",shape="box"];2052 -> 2425[label="",style="solid", color="black", weight=3]; 22.90/8.42 2053[label="Right xuu580 <= Left xuu590",fontsize=16,color="black",shape="box"];2053 -> 2426[label="",style="solid", color="black", weight=3]; 22.90/8.42 2054[label="Right xuu580 <= Right xuu590",fontsize=16,color="black",shape="box"];2054 -> 2427[label="",style="solid", color="black", weight=3]; 22.90/8.42 2055[label="GT",fontsize=16,color="green",shape="box"];2068 -> 1306[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2068[label="xuu70 < xuu73",fontsize=16,color="magenta"];2068 -> 2428[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2068 -> 2429[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2069 -> 1307[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2069[label="xuu70 < xuu73",fontsize=16,color="magenta"];2069 -> 2430[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2069 -> 2431[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2070 -> 1308[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2070[label="xuu70 < xuu73",fontsize=16,color="magenta"];2070 -> 2432[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2070 -> 2433[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2071 -> 1309[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2071[label="xuu70 < xuu73",fontsize=16,color="magenta"];2071 -> 2434[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2071 -> 2435[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2072 -> 1310[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2072[label="xuu70 < xuu73",fontsize=16,color="magenta"];2072 -> 2436[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2072 -> 2437[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2073 -> 1311[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2073[label="xuu70 < xuu73",fontsize=16,color="magenta"];2073 -> 2438[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2073 -> 2439[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2074 -> 1312[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2074[label="xuu70 < xuu73",fontsize=16,color="magenta"];2074 -> 2440[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2074 -> 2441[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2075 -> 1313[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2075[label="xuu70 < xuu73",fontsize=16,color="magenta"];2075 -> 2442[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2075 -> 2443[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2076 -> 1314[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2076[label="xuu70 < xuu73",fontsize=16,color="magenta"];2076 -> 2444[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2076 -> 2445[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2077 -> 1315[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2077[label="xuu70 < xuu73",fontsize=16,color="magenta"];2077 -> 2446[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2077 -> 2447[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2078 -> 1316[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2078[label="xuu70 < xuu73",fontsize=16,color="magenta"];2078 -> 2448[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2078 -> 2449[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2079 -> 1317[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2079[label="xuu70 < xuu73",fontsize=16,color="magenta"];2079 -> 2450[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2079 -> 2451[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2080 -> 1318[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2080[label="xuu70 < xuu73",fontsize=16,color="magenta"];2080 -> 2452[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2080 -> 2453[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2081 -> 1319[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2081[label="xuu70 < xuu73",fontsize=16,color="magenta"];2081 -> 2454[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2081 -> 2455[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2082[label="xuu71 <= xuu74",fontsize=16,color="blue",shape="box"];4403[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4403[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4403 -> 2456[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4404[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4404[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4404 -> 2457[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4405[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4405[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4405 -> 2458[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4406[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4406[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4406 -> 2459[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4407[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4407[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4407 -> 2460[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4408[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4408[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4408 -> 2461[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4409[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4409[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4409 -> 2462[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4410[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4410[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4410 -> 2463[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4411[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4411[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4411 -> 2464[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4412[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4412[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4412 -> 2465[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4413[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4413[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4413 -> 2466[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4414[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4414[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4414 -> 2467[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4415[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4415[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4415 -> 2468[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4416[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4416[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4416 -> 2469[label="",style="solid", color="blue", weight=3]; 22.90/8.42 2083[label="xuu70 == xuu73",fontsize=16,color="blue",shape="box"];4417[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2083 -> 4417[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4417 -> 2470[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4418[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2083 -> 4418[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4418 -> 2471[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4419[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2083 -> 4419[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4419 -> 2472[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4420[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2083 -> 4420[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4420 -> 2473[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4421[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2083 -> 4421[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4421 -> 2474[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4422[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2083 -> 4422[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4422 -> 2475[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4423[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2083 -> 4423[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4423 -> 2476[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4424[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2083 -> 4424[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4424 -> 2477[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4425[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2083 -> 4425[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4425 -> 2478[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4426[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2083 -> 4426[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4426 -> 2479[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4427[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2083 -> 4427[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4427 -> 2480[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4428[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2083 -> 4428[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4428 -> 2481[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4429[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2083 -> 4429[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4429 -> 2482[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4430[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2083 -> 4430[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4430 -> 2483[label="",style="solid", color="blue", weight=3]; 22.90/8.42 2084[label="False || xuu195",fontsize=16,color="black",shape="box"];2084 -> 2484[label="",style="solid", color="black", weight=3]; 22.90/8.42 2085[label="True || xuu195",fontsize=16,color="black",shape="box"];2085 -> 2485[label="",style="solid", color="black", weight=3]; 22.90/8.42 2086[label="xuu69",fontsize=16,color="green",shape="box"];2087[label="xuu72",fontsize=16,color="green",shape="box"];2088[label="xuu69",fontsize=16,color="green",shape="box"];2089[label="xuu72",fontsize=16,color="green",shape="box"];2090[label="xuu69",fontsize=16,color="green",shape="box"];2091[label="xuu72",fontsize=16,color="green",shape="box"];2092[label="xuu69",fontsize=16,color="green",shape="box"];2093[label="xuu72",fontsize=16,color="green",shape="box"];2094[label="xuu69",fontsize=16,color="green",shape="box"];2095[label="xuu72",fontsize=16,color="green",shape="box"];2096[label="xuu69",fontsize=16,color="green",shape="box"];2097[label="xuu72",fontsize=16,color="green",shape="box"];2098[label="xuu69",fontsize=16,color="green",shape="box"];2099[label="xuu72",fontsize=16,color="green",shape="box"];2100[label="xuu69",fontsize=16,color="green",shape="box"];2101[label="xuu72",fontsize=16,color="green",shape="box"];2102[label="xuu69",fontsize=16,color="green",shape="box"];2103[label="xuu72",fontsize=16,color="green",shape="box"];2104[label="xuu69",fontsize=16,color="green",shape="box"];2105[label="xuu72",fontsize=16,color="green",shape="box"];2106[label="xuu69",fontsize=16,color="green",shape="box"];2107[label="xuu72",fontsize=16,color="green",shape="box"];2108[label="xuu69",fontsize=16,color="green",shape="box"];2109[label="xuu72",fontsize=16,color="green",shape="box"];2110[label="xuu69",fontsize=16,color="green",shape="box"];2111[label="xuu72",fontsize=16,color="green",shape="box"];2112[label="xuu69",fontsize=16,color="green",shape="box"];2113[label="xuu72",fontsize=16,color="green",shape="box"];2114[label="compare1 (xuu171,xuu172,xuu173) (xuu174,xuu175,xuu176) False",fontsize=16,color="black",shape="box"];2114 -> 2486[label="",style="solid", color="black", weight=3]; 22.90/8.42 2115[label="compare1 (xuu171,xuu172,xuu173) (xuu174,xuu175,xuu176) True",fontsize=16,color="black",shape="box"];2115 -> 2487[label="",style="solid", color="black", weight=3]; 22.90/8.42 2116[label="True",fontsize=16,color="green",shape="box"];2117[label="GT",fontsize=16,color="green",shape="box"];2118[label="GT",fontsize=16,color="green",shape="box"];2156 -> 1744[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2156[label="FiniteMap.sizeFM xuu43",fontsize=16,color="magenta"];2156 -> 2488[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2157[label="xuu41",fontsize=16,color="green",shape="box"];2159 -> 1731[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2159[label="FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43",fontsize=16,color="magenta"];2159 -> 2489[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2159 -> 2490[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2158[label="FiniteMap.mkBalBranch6MkBalBranch3 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 xuu198",fontsize=16,color="burlywood",shape="triangle"];4431[label="xuu198/False",fontsize=10,color="white",style="solid",shape="box"];2158 -> 4431[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4431 -> 2491[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4432[label="xuu198/True",fontsize=10,color="white",style="solid",shape="box"];2158 -> 4432[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4432 -> 2492[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 2164[label="FiniteMap.mkBalBranch6MkBalBranch0 [] xuu41 FiniteMap.EmptyFM xuu43 xuu43 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2164 -> 2493[label="",style="solid", color="black", weight=3]; 22.90/8.42 2165[label="FiniteMap.mkBalBranch6MkBalBranch0 [] xuu41 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu43 xuu43 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414)",fontsize=16,color="black",shape="box"];2165 -> 2494[label="",style="solid", color="black", weight=3]; 22.90/8.42 2719[label="Succ (Succ (primPlusNat xuu19700 xuu19600))",fontsize=16,color="green",shape="box"];2719 -> 2847[label="",style="dashed", color="green", weight=3]; 22.90/8.42 2720[label="Succ xuu19700",fontsize=16,color="green",shape="box"];2721[label="Succ xuu19600",fontsize=16,color="green",shape="box"];2722[label="Zero",fontsize=16,color="green",shape="box"];2723[label="xuu19700",fontsize=16,color="green",shape="box"];2724[label="xuu19600",fontsize=16,color="green",shape="box"];3676[label="FiniteMap.mkBranchRight_size xuu296 xuu293 xuu295",fontsize=16,color="black",shape="box"];3676 -> 3678[label="",style="solid", color="black", weight=3]; 22.90/8.42 3677[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu296 xuu293 xuu295",fontsize=16,color="black",shape="box"];3677 -> 3679[label="",style="solid", color="black", weight=3]; 22.90/8.42 2169[label="FiniteMap.mkBalBranch6MkBalBranch2 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 True",fontsize=16,color="black",shape="box"];2169 -> 2498[label="",style="solid", color="black", weight=3]; 22.90/8.42 2170[label="FiniteMap.mkBalBranch6MkBalBranch1 (xuu400 : xuu401) xuu41 xuu44 FiniteMap.EmptyFM FiniteMap.EmptyFM xuu44 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2170 -> 2499[label="",style="solid", color="black", weight=3]; 22.90/8.42 2171[label="FiniteMap.mkBalBranch6MkBalBranch1 (xuu400 : xuu401) xuu41 xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294)",fontsize=16,color="black",shape="box"];2171 -> 2500[label="",style="solid", color="black", weight=3]; 22.90/8.42 2173 -> 1313[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2173[label="FiniteMap.sizeFM xuu443 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu444",fontsize=16,color="magenta"];2173 -> 2501[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2173 -> 2502[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2172[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu400 : xuu401) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu29 xuu29 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 xuu203",fontsize=16,color="burlywood",shape="triangle"];4433[label="xuu203/False",fontsize=10,color="white",style="solid",shape="box"];2172 -> 4433[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4433 -> 2503[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4434[label="xuu203/True",fontsize=10,color="white",style="solid",shape="box"];2172 -> 4434[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4434 -> 2504[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 2179 -> 1164[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2179[label="primMulNat xuu400000 (Succ xuu5000100)",fontsize=16,color="magenta"];2179 -> 2505[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2179 -> 2506[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2178[label="primPlusNat xuu207 (Succ xuu5000100)",fontsize=16,color="burlywood",shape="triangle"];4435[label="xuu207/Succ xuu2070",fontsize=10,color="white",style="solid",shape="box"];2178 -> 4435[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4435 -> 2507[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4436[label="xuu207/Zero",fontsize=10,color="white",style="solid",shape="box"];2178 -> 4436[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4436 -> 2508[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 2186[label="xuu101",fontsize=16,color="green",shape="box"];2187[label="xuu99",fontsize=16,color="green",shape="box"];2188[label="xuu101",fontsize=16,color="green",shape="box"];2189[label="xuu99",fontsize=16,color="green",shape="box"];2190[label="xuu101",fontsize=16,color="green",shape="box"];2191[label="xuu99",fontsize=16,color="green",shape="box"];2192[label="xuu101",fontsize=16,color="green",shape="box"];2193[label="xuu99",fontsize=16,color="green",shape="box"];2194[label="xuu101",fontsize=16,color="green",shape="box"];2195[label="xuu99",fontsize=16,color="green",shape="box"];2196[label="xuu101",fontsize=16,color="green",shape="box"];2197[label="xuu99",fontsize=16,color="green",shape="box"];2198[label="xuu101",fontsize=16,color="green",shape="box"];2199[label="xuu99",fontsize=16,color="green",shape="box"];2200[label="xuu101",fontsize=16,color="green",shape="box"];2201[label="xuu99",fontsize=16,color="green",shape="box"];2202[label="xuu101",fontsize=16,color="green",shape="box"];2203[label="xuu99",fontsize=16,color="green",shape="box"];2204[label="xuu101",fontsize=16,color="green",shape="box"];2205[label="xuu99",fontsize=16,color="green",shape="box"];2206[label="xuu101",fontsize=16,color="green",shape="box"];2207[label="xuu99",fontsize=16,color="green",shape="box"];2208[label="xuu101",fontsize=16,color="green",shape="box"];2209[label="xuu99",fontsize=16,color="green",shape="box"];2210[label="xuu101",fontsize=16,color="green",shape="box"];2211[label="xuu99",fontsize=16,color="green",shape="box"];2212[label="xuu101",fontsize=16,color="green",shape="box"];2213[label="xuu99",fontsize=16,color="green",shape="box"];2214[label="compare0 (xuu156,xuu157) (xuu158,xuu159) otherwise",fontsize=16,color="black",shape="box"];2214 -> 2517[label="",style="solid", color="black", weight=3]; 22.90/8.42 2215[label="LT",fontsize=16,color="green",shape="box"];2216[label="primEqNat (Succ xuu5000000) (Succ xuu400000)",fontsize=16,color="black",shape="box"];2216 -> 2518[label="",style="solid", color="black", weight=3]; 22.90/8.42 2217[label="primEqNat (Succ xuu5000000) Zero",fontsize=16,color="black",shape="box"];2217 -> 2519[label="",style="solid", color="black", weight=3]; 22.90/8.42 2218[label="primEqNat Zero (Succ xuu400000)",fontsize=16,color="black",shape="box"];2218 -> 2520[label="",style="solid", color="black", weight=3]; 22.90/8.42 2219[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2219 -> 2521[label="",style="solid", color="black", weight=3]; 22.90/8.42 2220[label="xuu500000",fontsize=16,color="green",shape="box"];2221[label="xuu40001",fontsize=16,color="green",shape="box"];2222[label="xuu500001",fontsize=16,color="green",shape="box"];2223[label="xuu40000",fontsize=16,color="green",shape="box"];2224[label="xuu500001",fontsize=16,color="green",shape="box"];2225[label="xuu40001",fontsize=16,color="green",shape="box"];2226[label="xuu500001",fontsize=16,color="green",shape="box"];2227[label="xuu40001",fontsize=16,color="green",shape="box"];2228[label="xuu500001",fontsize=16,color="green",shape="box"];2229[label="xuu40001",fontsize=16,color="green",shape="box"];2230[label="xuu500001",fontsize=16,color="green",shape="box"];2231[label="xuu40001",fontsize=16,color="green",shape="box"];2232[label="xuu500001",fontsize=16,color="green",shape="box"];2233[label="xuu40001",fontsize=16,color="green",shape="box"];2234[label="xuu500001",fontsize=16,color="green",shape="box"];2235[label="xuu40001",fontsize=16,color="green",shape="box"];2236[label="xuu500001",fontsize=16,color="green",shape="box"];2237[label="xuu40001",fontsize=16,color="green",shape="box"];2238[label="xuu500001",fontsize=16,color="green",shape="box"];2239[label="xuu40001",fontsize=16,color="green",shape="box"];2240[label="xuu500001",fontsize=16,color="green",shape="box"];2241[label="xuu40001",fontsize=16,color="green",shape="box"];2242[label="xuu500001",fontsize=16,color="green",shape="box"];2243[label="xuu40001",fontsize=16,color="green",shape="box"];2244[label="xuu500001",fontsize=16,color="green",shape="box"];2245[label="xuu40001",fontsize=16,color="green",shape="box"];2246[label="xuu500001",fontsize=16,color="green",shape="box"];2247[label="xuu40001",fontsize=16,color="green",shape="box"];2248[label="xuu500001",fontsize=16,color="green",shape="box"];2249[label="xuu40001",fontsize=16,color="green",shape="box"];2250[label="xuu500001",fontsize=16,color="green",shape="box"];2251[label="xuu40001",fontsize=16,color="green",shape="box"];2252[label="xuu500000",fontsize=16,color="green",shape="box"];2253[label="xuu40000",fontsize=16,color="green",shape="box"];2254[label="xuu500000",fontsize=16,color="green",shape="box"];2255[label="xuu40000",fontsize=16,color="green",shape="box"];2256[label="xuu500000",fontsize=16,color="green",shape="box"];2257[label="xuu40000",fontsize=16,color="green",shape="box"];2258[label="xuu500000",fontsize=16,color="green",shape="box"];2259[label="xuu40000",fontsize=16,color="green",shape="box"];2260[label="xuu500000",fontsize=16,color="green",shape="box"];2261[label="xuu40000",fontsize=16,color="green",shape="box"];2262[label="xuu500000",fontsize=16,color="green",shape="box"];2263[label="xuu40000",fontsize=16,color="green",shape="box"];2264[label="xuu500000",fontsize=16,color="green",shape="box"];2265[label="xuu40000",fontsize=16,color="green",shape="box"];2266[label="xuu500000",fontsize=16,color="green",shape="box"];2267[label="xuu40000",fontsize=16,color="green",shape="box"];2268[label="xuu500000",fontsize=16,color="green",shape="box"];2269[label="xuu40000",fontsize=16,color="green",shape="box"];2270[label="xuu500000",fontsize=16,color="green",shape="box"];2271[label="xuu40000",fontsize=16,color="green",shape="box"];2272[label="xuu500000",fontsize=16,color="green",shape="box"];2273[label="xuu40000",fontsize=16,color="green",shape="box"];2274[label="xuu500000",fontsize=16,color="green",shape="box"];2275[label="xuu40000",fontsize=16,color="green",shape="box"];2276[label="xuu500000",fontsize=16,color="green",shape="box"];2277[label="xuu40000",fontsize=16,color="green",shape="box"];2278[label="xuu500000",fontsize=16,color="green",shape="box"];2279[label="xuu40000",fontsize=16,color="green",shape="box"];2280[label="xuu500000",fontsize=16,color="green",shape="box"];2281[label="xuu40001",fontsize=16,color="green",shape="box"];2282[label="xuu500001",fontsize=16,color="green",shape="box"];2283[label="xuu40000",fontsize=16,color="green",shape="box"];2284[label="xuu500000",fontsize=16,color="green",shape="box"];2285[label="xuu40000",fontsize=16,color="green",shape="box"];2286[label="xuu500000",fontsize=16,color="green",shape="box"];2287[label="xuu40000",fontsize=16,color="green",shape="box"];2288[label="xuu500000",fontsize=16,color="green",shape="box"];2289[label="xuu40000",fontsize=16,color="green",shape="box"];2290[label="xuu500000",fontsize=16,color="green",shape="box"];2291[label="xuu40000",fontsize=16,color="green",shape="box"];2292[label="xuu500000",fontsize=16,color="green",shape="box"];2293[label="xuu40000",fontsize=16,color="green",shape="box"];2294[label="xuu500000",fontsize=16,color="green",shape="box"];2295[label="xuu40000",fontsize=16,color="green",shape="box"];2296[label="xuu500000",fontsize=16,color="green",shape="box"];2297[label="xuu40000",fontsize=16,color="green",shape="box"];2298[label="xuu500000",fontsize=16,color="green",shape="box"];2299[label="xuu40000",fontsize=16,color="green",shape="box"];2300[label="xuu500000",fontsize=16,color="green",shape="box"];2301[label="xuu40000",fontsize=16,color="green",shape="box"];2302[label="xuu500000",fontsize=16,color="green",shape="box"];2303[label="xuu40000",fontsize=16,color="green",shape="box"];2304[label="xuu500000",fontsize=16,color="green",shape="box"];2305[label="xuu40000",fontsize=16,color="green",shape="box"];2306[label="xuu500000",fontsize=16,color="green",shape="box"];2307[label="xuu40000",fontsize=16,color="green",shape="box"];2308[label="xuu500000",fontsize=16,color="green",shape="box"];2309[label="xuu40000",fontsize=16,color="green",shape="box"];2310[label="xuu500000",fontsize=16,color="green",shape="box"];2311[label="xuu40000",fontsize=16,color="green",shape="box"];2312[label="xuu500001",fontsize=16,color="green",shape="box"];2313[label="xuu40001",fontsize=16,color="green",shape="box"];2314[label="xuu500001",fontsize=16,color="green",shape="box"];2315[label="xuu40001",fontsize=16,color="green",shape="box"];2316[label="xuu500000",fontsize=16,color="green",shape="box"];2317[label="xuu40000",fontsize=16,color="green",shape="box"];2318[label="xuu500000",fontsize=16,color="green",shape="box"];2319[label="xuu40000",fontsize=16,color="green",shape="box"];2320 -> 532[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2320[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2320 -> 2522[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2320 -> 2523[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2321 -> 533[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2321[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2321 -> 2524[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2321 -> 2525[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2322 -> 534[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2322[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2322 -> 2526[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2322 -> 2527[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2323 -> 535[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2323[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2323 -> 2528[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2323 -> 2529[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2324 -> 536[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2324[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2324 -> 2530[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2324 -> 2531[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2325 -> 537[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2325[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2325 -> 2532[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2325 -> 2533[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2326 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2326[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2326 -> 2534[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2326 -> 2535[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2327 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2327[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2327 -> 2536[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2327 -> 2537[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2328 -> 540[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2328[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2328 -> 2538[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2328 -> 2539[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2329 -> 541[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2329[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2329 -> 2540[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2329 -> 2541[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2330 -> 542[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2330[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2330 -> 2542[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2330 -> 2543[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2331 -> 543[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2331[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2331 -> 2544[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2331 -> 2545[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2332 -> 544[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2332[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2332 -> 2546[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2332 -> 2547[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2333 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2333[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2333 -> 2548[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2333 -> 2549[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2334 -> 532[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2334[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2334 -> 2550[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2334 -> 2551[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2335 -> 533[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2335[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2335 -> 2552[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2335 -> 2553[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2336 -> 534[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2336[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2336 -> 2554[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2336 -> 2555[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2337 -> 535[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2337[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2337 -> 2556[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2337 -> 2557[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2338 -> 536[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2338[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2338 -> 2558[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2338 -> 2559[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2339 -> 537[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2339[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2339 -> 2560[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2339 -> 2561[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2340 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2340[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2340 -> 2562[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2340 -> 2563[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2341 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2341[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2341 -> 2564[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2341 -> 2565[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2342 -> 540[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2342[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2342 -> 2566[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2342 -> 2567[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2343 -> 541[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2343[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2343 -> 2568[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2343 -> 2569[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2344 -> 542[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2344[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2344 -> 2570[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2344 -> 2571[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2345 -> 543[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2345[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2345 -> 2572[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2345 -> 2573[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2346 -> 544[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2346[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2346 -> 2574[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2346 -> 2575[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2347 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2347[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2347 -> 2576[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2347 -> 2577[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2348[label="xuu500000",fontsize=16,color="green",shape="box"];2349[label="xuu40000",fontsize=16,color="green",shape="box"];2350[label="xuu500000",fontsize=16,color="green",shape="box"];2351[label="xuu40000",fontsize=16,color="green",shape="box"];2352[label="xuu500000",fontsize=16,color="green",shape="box"];2353[label="xuu40000",fontsize=16,color="green",shape="box"];2354[label="xuu500000",fontsize=16,color="green",shape="box"];2355[label="xuu40000",fontsize=16,color="green",shape="box"];2356[label="xuu500000",fontsize=16,color="green",shape="box"];2357[label="xuu40000",fontsize=16,color="green",shape="box"];2358[label="xuu500000",fontsize=16,color="green",shape="box"];2359[label="xuu40000",fontsize=16,color="green",shape="box"];2360[label="xuu500000",fontsize=16,color="green",shape="box"];2361[label="xuu40000",fontsize=16,color="green",shape="box"];2362[label="xuu500000",fontsize=16,color="green",shape="box"];2363[label="xuu40000",fontsize=16,color="green",shape="box"];2364[label="xuu500000",fontsize=16,color="green",shape="box"];2365[label="xuu40000",fontsize=16,color="green",shape="box"];2366[label="xuu500000",fontsize=16,color="green",shape="box"];2367[label="xuu40000",fontsize=16,color="green",shape="box"];2368[label="xuu500000",fontsize=16,color="green",shape="box"];2369[label="xuu40000",fontsize=16,color="green",shape="box"];2370[label="xuu500000",fontsize=16,color="green",shape="box"];2371[label="xuu40000",fontsize=16,color="green",shape="box"];2372[label="xuu500000",fontsize=16,color="green",shape="box"];2373[label="xuu40000",fontsize=16,color="green",shape="box"];2374[label="xuu500000",fontsize=16,color="green",shape="box"];2375[label="xuu40000",fontsize=16,color="green",shape="box"];2376 -> 1515[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2376[label="primEqNat xuu5000000 xuu400000",fontsize=16,color="magenta"];2376 -> 2578[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2376 -> 2579[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2377[label="False",fontsize=16,color="green",shape="box"];2378[label="False",fontsize=16,color="green",shape="box"];2379[label="True",fontsize=16,color="green",shape="box"];2380[label="False",fontsize=16,color="green",shape="box"];2381[label="True",fontsize=16,color="green",shape="box"];2382 -> 1515[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2382[label="primEqNat xuu5000000 xuu400000",fontsize=16,color="magenta"];2382 -> 2580[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2382 -> 2581[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2383[label="False",fontsize=16,color="green",shape="box"];2384[label="False",fontsize=16,color="green",shape="box"];2385[label="True",fontsize=16,color="green",shape="box"];2386[label="False",fontsize=16,color="green",shape="box"];2387[label="True",fontsize=16,color="green",shape="box"];2388[label="xuu59",fontsize=16,color="green",shape="box"];2389[label="xuu58",fontsize=16,color="green",shape="box"];2390 -> 2582[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2390[label="not (xuu190 == GT)",fontsize=16,color="magenta"];2390 -> 2583[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2391 -> 2058[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2391[label="xuu580 < xuu590 || xuu580 == xuu590 && xuu581 <= xuu591",fontsize=16,color="magenta"];2391 -> 2592[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2391 -> 2593[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2392[label="True",fontsize=16,color="green",shape="box"];2393[label="True",fontsize=16,color="green",shape="box"];2394[label="False",fontsize=16,color="green",shape="box"];2395[label="xuu580 <= xuu590",fontsize=16,color="blue",shape="box"];4437[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4437[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4437 -> 2594[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4438[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4438[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4438 -> 2595[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4439[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4439[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4439 -> 2596[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4440[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4440[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4440 -> 2597[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4441[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4441[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4441 -> 2598[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4442[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4442[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4442 -> 2599[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4443[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4443[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4443 -> 2600[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4444[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4444[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4444 -> 2601[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4445[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4445[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4445 -> 2602[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4446[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4446[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4446 -> 2603[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4447[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4447[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4447 -> 2604[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4448[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4448[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4448 -> 2605[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4449[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4449[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4449 -> 2606[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4450[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4450[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4450 -> 2607[label="",style="solid", color="blue", weight=3]; 22.90/8.42 2396 -> 2058[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2396[label="xuu580 < xuu590 || xuu580 == xuu590 && (xuu581 < xuu591 || xuu581 == xuu591 && xuu582 <= xuu592)",fontsize=16,color="magenta"];2396 -> 2608[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2396 -> 2609[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2397[label="xuu59",fontsize=16,color="green",shape="box"];2398[label="xuu58",fontsize=16,color="green",shape="box"];2399[label="xuu59",fontsize=16,color="green",shape="box"];2400[label="xuu58",fontsize=16,color="green",shape="box"];2401[label="True",fontsize=16,color="green",shape="box"];2402[label="True",fontsize=16,color="green",shape="box"];2403[label="True",fontsize=16,color="green",shape="box"];2404[label="False",fontsize=16,color="green",shape="box"];2405[label="True",fontsize=16,color="green",shape="box"];2406[label="True",fontsize=16,color="green",shape="box"];2407[label="False",fontsize=16,color="green",shape="box"];2408[label="False",fontsize=16,color="green",shape="box"];2409[label="True",fontsize=16,color="green",shape="box"];2410[label="xuu59",fontsize=16,color="green",shape="box"];2411[label="xuu58",fontsize=16,color="green",shape="box"];2412[label="True",fontsize=16,color="green",shape="box"];2413[label="True",fontsize=16,color="green",shape="box"];2414[label="False",fontsize=16,color="green",shape="box"];2415[label="True",fontsize=16,color="green",shape="box"];2416[label="xuu59",fontsize=16,color="green",shape="box"];2417[label="xuu58",fontsize=16,color="green",shape="box"];2418[label="xuu59",fontsize=16,color="green",shape="box"];2419[label="xuu58",fontsize=16,color="green",shape="box"];2420[label="xuu59",fontsize=16,color="green",shape="box"];2421[label="xuu58",fontsize=16,color="green",shape="box"];2422[label="xuu59",fontsize=16,color="green",shape="box"];2423[label="xuu58",fontsize=16,color="green",shape="box"];2424[label="xuu580 <= xuu590",fontsize=16,color="blue",shape="box"];4451[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4451[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4451 -> 2610[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4452[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4452[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4452 -> 2611[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4453[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4453[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4453 -> 2612[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4454[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4454[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4454 -> 2613[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4455[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4455[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4455 -> 2614[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4456[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4456[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4456 -> 2615[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4457[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4457[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4457 -> 2616[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4458[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4458[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4458 -> 2617[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4459[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4459[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4459 -> 2618[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4460[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4460[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4460 -> 2619[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4461[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4461[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4461 -> 2620[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4462[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4462[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4462 -> 2621[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4463[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4463[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4463 -> 2622[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4464[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4464[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4464 -> 2623[label="",style="solid", color="blue", weight=3]; 22.90/8.42 2425[label="True",fontsize=16,color="green",shape="box"];2426[label="False",fontsize=16,color="green",shape="box"];2427[label="xuu580 <= xuu590",fontsize=16,color="blue",shape="box"];4465[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4465[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4465 -> 2624[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4466[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4466[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4466 -> 2625[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4467[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4467[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4467 -> 2626[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4468[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4468[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4468 -> 2627[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4469[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4469[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4469 -> 2628[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4470[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4470[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4470 -> 2629[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4471[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4471[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4471 -> 2630[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4472[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4472[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4472 -> 2631[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4473[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4473[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4473 -> 2632[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4474[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4474[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4474 -> 2633[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4475[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4475[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4475 -> 2634[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4476[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4476[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4476 -> 2635[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4477[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4477[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4477 -> 2636[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4478[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4478[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4478 -> 2637[label="",style="solid", color="blue", weight=3]; 22.90/8.42 2428[label="xuu70",fontsize=16,color="green",shape="box"];2429[label="xuu73",fontsize=16,color="green",shape="box"];2430[label="xuu70",fontsize=16,color="green",shape="box"];2431[label="xuu73",fontsize=16,color="green",shape="box"];2432[label="xuu70",fontsize=16,color="green",shape="box"];2433[label="xuu73",fontsize=16,color="green",shape="box"];2434[label="xuu70",fontsize=16,color="green",shape="box"];2435[label="xuu73",fontsize=16,color="green",shape="box"];2436[label="xuu70",fontsize=16,color="green",shape="box"];2437[label="xuu73",fontsize=16,color="green",shape="box"];2438[label="xuu70",fontsize=16,color="green",shape="box"];2439[label="xuu73",fontsize=16,color="green",shape="box"];2440[label="xuu70",fontsize=16,color="green",shape="box"];2441[label="xuu73",fontsize=16,color="green",shape="box"];2442[label="xuu70",fontsize=16,color="green",shape="box"];2443[label="xuu73",fontsize=16,color="green",shape="box"];2444[label="xuu70",fontsize=16,color="green",shape="box"];2445[label="xuu73",fontsize=16,color="green",shape="box"];2446[label="xuu70",fontsize=16,color="green",shape="box"];2447[label="xuu73",fontsize=16,color="green",shape="box"];2448[label="xuu70",fontsize=16,color="green",shape="box"];2449[label="xuu73",fontsize=16,color="green",shape="box"];2450[label="xuu70",fontsize=16,color="green",shape="box"];2451[label="xuu73",fontsize=16,color="green",shape="box"];2452[label="xuu70",fontsize=16,color="green",shape="box"];2453[label="xuu73",fontsize=16,color="green",shape="box"];2454[label="xuu70",fontsize=16,color="green",shape="box"];2455[label="xuu73",fontsize=16,color="green",shape="box"];2456 -> 1361[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2456[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2456 -> 2638[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2456 -> 2639[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2457 -> 1362[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2457[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2457 -> 2640[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2457 -> 2641[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2458 -> 1363[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2458[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2458 -> 2642[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2458 -> 2643[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2459 -> 1364[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2459[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2459 -> 2644[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2459 -> 2645[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2460 -> 1365[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2460[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2460 -> 2646[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2460 -> 2647[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2461 -> 1366[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2461[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2461 -> 2648[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2461 -> 2649[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2462 -> 1367[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2462[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2462 -> 2650[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2462 -> 2651[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2463 -> 1368[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2463[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2463 -> 2652[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2463 -> 2653[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2464 -> 1369[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2464[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2464 -> 2654[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2464 -> 2655[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2465 -> 1370[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2465[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2465 -> 2656[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2465 -> 2657[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2466 -> 1371[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2466[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2466 -> 2658[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2466 -> 2659[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2467 -> 1372[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2467[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2467 -> 2660[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2467 -> 2661[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2468 -> 1373[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2468[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2468 -> 2662[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2468 -> 2663[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2469 -> 1374[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2469[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2469 -> 2664[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2469 -> 2665[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2470 -> 542[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2470[label="xuu70 == xuu73",fontsize=16,color="magenta"];2470 -> 2666[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2470 -> 2667[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2471 -> 535[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2471[label="xuu70 == xuu73",fontsize=16,color="magenta"];2471 -> 2668[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2471 -> 2669[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2472 -> 537[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2472[label="xuu70 == xuu73",fontsize=16,color="magenta"];2472 -> 2670[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2472 -> 2671[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2473 -> 543[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2473[label="xuu70 == xuu73",fontsize=16,color="magenta"];2473 -> 2672[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2473 -> 2673[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2474 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2474[label="xuu70 == xuu73",fontsize=16,color="magenta"];2474 -> 2674[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2474 -> 2675[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2475 -> 532[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2475[label="xuu70 == xuu73",fontsize=16,color="magenta"];2475 -> 2676[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2475 -> 2677[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2476 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2476[label="xuu70 == xuu73",fontsize=16,color="magenta"];2476 -> 2678[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2476 -> 2679[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2477 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2477[label="xuu70 == xuu73",fontsize=16,color="magenta"];2477 -> 2680[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2477 -> 2681[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2478 -> 541[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2478[label="xuu70 == xuu73",fontsize=16,color="magenta"];2478 -> 2682[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2478 -> 2683[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2479 -> 540[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2479[label="xuu70 == xuu73",fontsize=16,color="magenta"];2479 -> 2684[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2479 -> 2685[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2480 -> 544[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2480[label="xuu70 == xuu73",fontsize=16,color="magenta"];2480 -> 2686[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2480 -> 2687[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2481 -> 534[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2481[label="xuu70 == xuu73",fontsize=16,color="magenta"];2481 -> 2688[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2481 -> 2689[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2482 -> 536[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2482[label="xuu70 == xuu73",fontsize=16,color="magenta"];2482 -> 2690[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2482 -> 2691[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2483 -> 533[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2483[label="xuu70 == xuu73",fontsize=16,color="magenta"];2483 -> 2692[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2483 -> 2693[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2484[label="xuu195",fontsize=16,color="green",shape="box"];2485[label="True",fontsize=16,color="green",shape="box"];2486[label="compare0 (xuu171,xuu172,xuu173) (xuu174,xuu175,xuu176) otherwise",fontsize=16,color="black",shape="box"];2486 -> 2694[label="",style="solid", color="black", weight=3]; 22.90/8.42 2487[label="LT",fontsize=16,color="green",shape="box"];2488[label="xuu43",fontsize=16,color="green",shape="box"];2489 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2489[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43",fontsize=16,color="magenta"];2489 -> 2695[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2489 -> 2696[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2490 -> 2135[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2490[label="FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43",fontsize=16,color="magenta"];2491[label="FiniteMap.mkBalBranch6MkBalBranch3 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 False",fontsize=16,color="black",shape="box"];2491 -> 2697[label="",style="solid", color="black", weight=3]; 22.90/8.42 2492[label="FiniteMap.mkBalBranch6MkBalBranch3 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 True",fontsize=16,color="black",shape="box"];2492 -> 2698[label="",style="solid", color="black", weight=3]; 22.90/8.42 2493[label="error []",fontsize=16,color="red",shape="box"];2494[label="FiniteMap.mkBalBranch6MkBalBranch02 [] xuu41 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu43 xuu43 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414)",fontsize=16,color="black",shape="box"];2494 -> 2699[label="",style="solid", color="black", weight=3]; 22.90/8.42 2847 -> 2180[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2847[label="primPlusNat xuu19700 xuu19600",fontsize=16,color="magenta"];2847 -> 2853[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2847 -> 2854[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 3678[label="FiniteMap.sizeFM xuu296",fontsize=16,color="burlywood",shape="triangle"];4479[label="xuu296/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3678 -> 4479[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4479 -> 3680[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4480[label="xuu296/FiniteMap.Branch xuu2960 xuu2961 xuu2962 xuu2963 xuu2964",fontsize=10,color="white",style="solid",shape="box"];3678 -> 4480[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4480 -> 3681[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 3679 -> 2119[label="",style="dashed", color="red", weight=0]; 22.90/8.42 3679[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu296 xuu293 xuu295)",fontsize=16,color="magenta"];3679 -> 3682[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 3679 -> 3683[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2498 -> 3433[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2498[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (xuu400 : xuu401) xuu41 xuu29 xuu44",fontsize=16,color="magenta"];2498 -> 3444[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2498 -> 3445[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2498 -> 3446[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2498 -> 3447[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2498 -> 3448[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2499[label="error []",fontsize=16,color="red",shape="box"];2500[label="FiniteMap.mkBalBranch6MkBalBranch12 (xuu400 : xuu401) xuu41 xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294)",fontsize=16,color="black",shape="box"];2500 -> 2704[label="",style="solid", color="black", weight=3]; 22.90/8.42 2501 -> 1744[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2501[label="FiniteMap.sizeFM xuu443",fontsize=16,color="magenta"];2501 -> 2705[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2502 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2502[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu444",fontsize=16,color="magenta"];2502 -> 2706[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2502 -> 2707[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2503[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu400 : xuu401) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu29 xuu29 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 False",fontsize=16,color="black",shape="box"];2503 -> 2708[label="",style="solid", color="black", weight=3]; 22.90/8.42 2504[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu400 : xuu401) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu29 xuu29 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 True",fontsize=16,color="black",shape="box"];2504 -> 2709[label="",style="solid", color="black", weight=3]; 22.90/8.42 2505[label="xuu400000",fontsize=16,color="green",shape="box"];2506[label="Succ xuu5000100",fontsize=16,color="green",shape="box"];2507[label="primPlusNat (Succ xuu2070) (Succ xuu5000100)",fontsize=16,color="black",shape="box"];2507 -> 2710[label="",style="solid", color="black", weight=3]; 22.90/8.42 2508[label="primPlusNat Zero (Succ xuu5000100)",fontsize=16,color="black",shape="box"];2508 -> 2711[label="",style="solid", color="black", weight=3]; 22.90/8.42 2517[label="compare0 (xuu156,xuu157) (xuu158,xuu159) True",fontsize=16,color="black",shape="box"];2517 -> 2712[label="",style="solid", color="black", weight=3]; 22.90/8.42 2518 -> 1515[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2518[label="primEqNat xuu5000000 xuu400000",fontsize=16,color="magenta"];2518 -> 2713[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2518 -> 2714[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2519[label="False",fontsize=16,color="green",shape="box"];2520[label="False",fontsize=16,color="green",shape="box"];2521[label="True",fontsize=16,color="green",shape="box"];2522[label="xuu500002",fontsize=16,color="green",shape="box"];2523[label="xuu40002",fontsize=16,color="green",shape="box"];2524[label="xuu500002",fontsize=16,color="green",shape="box"];2525[label="xuu40002",fontsize=16,color="green",shape="box"];2526[label="xuu500002",fontsize=16,color="green",shape="box"];2527[label="xuu40002",fontsize=16,color="green",shape="box"];2528[label="xuu500002",fontsize=16,color="green",shape="box"];2529[label="xuu40002",fontsize=16,color="green",shape="box"];2530[label="xuu500002",fontsize=16,color="green",shape="box"];2531[label="xuu40002",fontsize=16,color="green",shape="box"];2532[label="xuu500002",fontsize=16,color="green",shape="box"];2533[label="xuu40002",fontsize=16,color="green",shape="box"];2534[label="xuu500002",fontsize=16,color="green",shape="box"];2535[label="xuu40002",fontsize=16,color="green",shape="box"];2536[label="xuu500002",fontsize=16,color="green",shape="box"];2537[label="xuu40002",fontsize=16,color="green",shape="box"];2538[label="xuu500002",fontsize=16,color="green",shape="box"];2539[label="xuu40002",fontsize=16,color="green",shape="box"];2540[label="xuu500002",fontsize=16,color="green",shape="box"];2541[label="xuu40002",fontsize=16,color="green",shape="box"];2542[label="xuu500002",fontsize=16,color="green",shape="box"];2543[label="xuu40002",fontsize=16,color="green",shape="box"];2544[label="xuu500002",fontsize=16,color="green",shape="box"];2545[label="xuu40002",fontsize=16,color="green",shape="box"];2546[label="xuu500002",fontsize=16,color="green",shape="box"];2547[label="xuu40002",fontsize=16,color="green",shape="box"];2548[label="xuu500002",fontsize=16,color="green",shape="box"];2549[label="xuu40002",fontsize=16,color="green",shape="box"];2550[label="xuu500001",fontsize=16,color="green",shape="box"];2551[label="xuu40001",fontsize=16,color="green",shape="box"];2552[label="xuu500001",fontsize=16,color="green",shape="box"];2553[label="xuu40001",fontsize=16,color="green",shape="box"];2554[label="xuu500001",fontsize=16,color="green",shape="box"];2555[label="xuu40001",fontsize=16,color="green",shape="box"];2556[label="xuu500001",fontsize=16,color="green",shape="box"];2557[label="xuu40001",fontsize=16,color="green",shape="box"];2558[label="xuu500001",fontsize=16,color="green",shape="box"];2559[label="xuu40001",fontsize=16,color="green",shape="box"];2560[label="xuu500001",fontsize=16,color="green",shape="box"];2561[label="xuu40001",fontsize=16,color="green",shape="box"];2562[label="xuu500001",fontsize=16,color="green",shape="box"];2563[label="xuu40001",fontsize=16,color="green",shape="box"];2564[label="xuu500001",fontsize=16,color="green",shape="box"];2565[label="xuu40001",fontsize=16,color="green",shape="box"];2566[label="xuu500001",fontsize=16,color="green",shape="box"];2567[label="xuu40001",fontsize=16,color="green",shape="box"];2568[label="xuu500001",fontsize=16,color="green",shape="box"];2569[label="xuu40001",fontsize=16,color="green",shape="box"];2570[label="xuu500001",fontsize=16,color="green",shape="box"];2571[label="xuu40001",fontsize=16,color="green",shape="box"];2572[label="xuu500001",fontsize=16,color="green",shape="box"];2573[label="xuu40001",fontsize=16,color="green",shape="box"];2574[label="xuu500001",fontsize=16,color="green",shape="box"];2575[label="xuu40001",fontsize=16,color="green",shape="box"];2576[label="xuu500001",fontsize=16,color="green",shape="box"];2577[label="xuu40001",fontsize=16,color="green",shape="box"];2578[label="xuu400000",fontsize=16,color="green",shape="box"];2579[label="xuu5000000",fontsize=16,color="green",shape="box"];2580[label="xuu400000",fontsize=16,color="green",shape="box"];2581[label="xuu5000000",fontsize=16,color="green",shape="box"];2583 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2583[label="xuu190 == GT",fontsize=16,color="magenta"];2583 -> 2715[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2583 -> 2716[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2582[label="not xuu208",fontsize=16,color="burlywood",shape="triangle"];4481[label="xuu208/False",fontsize=10,color="white",style="solid",shape="box"];2582 -> 4481[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4481 -> 2717[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4482[label="xuu208/True",fontsize=10,color="white",style="solid",shape="box"];2582 -> 4482[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4482 -> 2718[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 2592[label="xuu580 < xuu590",fontsize=16,color="blue",shape="box"];4483[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4483[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4483 -> 2725[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4484[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4484[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4484 -> 2726[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4485[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4485[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4485 -> 2727[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4486[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4486[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4486 -> 2728[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4487[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4487[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4487 -> 2729[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4488[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4488[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4488 -> 2730[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4489[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4489[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4489 -> 2731[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4490[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4490[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4490 -> 2732[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4491[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4491[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4491 -> 2733[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4492[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4492[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4492 -> 2734[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4493[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4493[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4493 -> 2735[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4494[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4494[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4494 -> 2736[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4495[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4495[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4495 -> 2737[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4496[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4496[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4496 -> 2738[label="",style="solid", color="blue", weight=3]; 22.90/8.42 2593 -> 985[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2593[label="xuu580 == xuu590 && xuu581 <= xuu591",fontsize=16,color="magenta"];2593 -> 2739[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2593 -> 2740[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2594 -> 1361[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2594[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2594 -> 2741[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2594 -> 2742[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2595 -> 1362[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2595[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2595 -> 2743[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2595 -> 2744[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2596 -> 1363[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2596[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2596 -> 2745[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2596 -> 2746[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2597 -> 1364[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2597[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2597 -> 2747[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2597 -> 2748[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2598 -> 1365[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2598[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2598 -> 2749[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2598 -> 2750[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2599 -> 1366[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2599[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2599 -> 2751[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2599 -> 2752[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2600 -> 1367[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2600[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2600 -> 2753[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2600 -> 2754[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2601 -> 1368[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2601[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2601 -> 2755[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2601 -> 2756[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2602 -> 1369[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2602[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2602 -> 2757[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2602 -> 2758[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2603 -> 1370[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2603[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2603 -> 2759[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2603 -> 2760[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2604 -> 1371[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2604[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2604 -> 2761[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2604 -> 2762[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2605 -> 1372[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2605[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2605 -> 2763[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2605 -> 2764[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2606 -> 1373[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2606[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2606 -> 2765[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2606 -> 2766[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2607 -> 1374[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2607[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2607 -> 2767[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2607 -> 2768[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2608[label="xuu580 < xuu590",fontsize=16,color="blue",shape="box"];4497[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2608 -> 4497[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4497 -> 2769[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4498[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2608 -> 4498[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4498 -> 2770[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4499[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2608 -> 4499[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4499 -> 2771[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4500[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2608 -> 4500[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4500 -> 2772[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4501[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2608 -> 4501[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4501 -> 2773[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4502[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2608 -> 4502[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4502 -> 2774[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4503[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2608 -> 4503[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4503 -> 2775[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4504[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2608 -> 4504[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4504 -> 2776[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4505[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2608 -> 4505[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4505 -> 2777[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4506[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2608 -> 4506[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4506 -> 2778[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4507[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2608 -> 4507[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4507 -> 2779[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4508[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2608 -> 4508[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4508 -> 2780[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4509[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2608 -> 4509[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4509 -> 2781[label="",style="solid", color="blue", weight=3]; 22.90/8.42 4510[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2608 -> 4510[label="",style="solid", color="blue", weight=9]; 22.90/8.42 4510 -> 2782[label="",style="solid", color="blue", weight=3]; 22.90/8.42 2609 -> 985[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2609[label="xuu580 == xuu590 && (xuu581 < xuu591 || xuu581 == xuu591 && xuu582 <= xuu592)",fontsize=16,color="magenta"];2609 -> 2783[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2609 -> 2784[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2610 -> 1361[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2610[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2610 -> 2785[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2610 -> 2786[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2611 -> 1362[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2611[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2611 -> 2787[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2611 -> 2788[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2612 -> 1363[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2612[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2612 -> 2789[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2612 -> 2790[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2613 -> 1364[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2613[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2613 -> 2791[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2613 -> 2792[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2614 -> 1365[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2614[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2614 -> 2793[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2614 -> 2794[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2615 -> 1366[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2615[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2615 -> 2795[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2615 -> 2796[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2616 -> 1367[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2616[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2616 -> 2797[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2616 -> 2798[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2617 -> 1368[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2617[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2617 -> 2799[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2617 -> 2800[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2618 -> 1369[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2618[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2618 -> 2801[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2618 -> 2802[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2619 -> 1370[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2619[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2619 -> 2803[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2619 -> 2804[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2620 -> 1371[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2620[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2620 -> 2805[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2620 -> 2806[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2621 -> 1372[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2621[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2621 -> 2807[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2621 -> 2808[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2622 -> 1373[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2622[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2622 -> 2809[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2622 -> 2810[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2623 -> 1374[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2623[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2623 -> 2811[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2623 -> 2812[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2624 -> 1361[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2624[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2624 -> 2813[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2624 -> 2814[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2625 -> 1362[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2625[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2625 -> 2815[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2625 -> 2816[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2626 -> 1363[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2626[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2626 -> 2817[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2626 -> 2818[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2627 -> 1364[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2627[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2627 -> 2819[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2627 -> 2820[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2628 -> 1365[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2628[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2628 -> 2821[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2628 -> 2822[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2629 -> 1366[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2629[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2629 -> 2823[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2629 -> 2824[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2630 -> 1367[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2630[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2630 -> 2825[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2630 -> 2826[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2631 -> 1368[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2631[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2631 -> 2827[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2631 -> 2828[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2632 -> 1369[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2632[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2632 -> 2829[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2632 -> 2830[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2633 -> 1370[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2633[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2633 -> 2831[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2633 -> 2832[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2634 -> 1371[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2634[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2634 -> 2833[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2634 -> 2834[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2635 -> 1372[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2635[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2635 -> 2835[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2635 -> 2836[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2636 -> 1373[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2636[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2636 -> 2837[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2636 -> 2838[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2637 -> 1374[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2637[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2637 -> 2839[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2637 -> 2840[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2638[label="xuu71",fontsize=16,color="green",shape="box"];2639[label="xuu74",fontsize=16,color="green",shape="box"];2640[label="xuu71",fontsize=16,color="green",shape="box"];2641[label="xuu74",fontsize=16,color="green",shape="box"];2642[label="xuu71",fontsize=16,color="green",shape="box"];2643[label="xuu74",fontsize=16,color="green",shape="box"];2644[label="xuu71",fontsize=16,color="green",shape="box"];2645[label="xuu74",fontsize=16,color="green",shape="box"];2646[label="xuu71",fontsize=16,color="green",shape="box"];2647[label="xuu74",fontsize=16,color="green",shape="box"];2648[label="xuu71",fontsize=16,color="green",shape="box"];2649[label="xuu74",fontsize=16,color="green",shape="box"];2650[label="xuu71",fontsize=16,color="green",shape="box"];2651[label="xuu74",fontsize=16,color="green",shape="box"];2652[label="xuu71",fontsize=16,color="green",shape="box"];2653[label="xuu74",fontsize=16,color="green",shape="box"];2654[label="xuu71",fontsize=16,color="green",shape="box"];2655[label="xuu74",fontsize=16,color="green",shape="box"];2656[label="xuu71",fontsize=16,color="green",shape="box"];2657[label="xuu74",fontsize=16,color="green",shape="box"];2658[label="xuu71",fontsize=16,color="green",shape="box"];2659[label="xuu74",fontsize=16,color="green",shape="box"];2660[label="xuu71",fontsize=16,color="green",shape="box"];2661[label="xuu74",fontsize=16,color="green",shape="box"];2662[label="xuu71",fontsize=16,color="green",shape="box"];2663[label="xuu74",fontsize=16,color="green",shape="box"];2664[label="xuu71",fontsize=16,color="green",shape="box"];2665[label="xuu74",fontsize=16,color="green",shape="box"];2666[label="xuu70",fontsize=16,color="green",shape="box"];2667[label="xuu73",fontsize=16,color="green",shape="box"];2668[label="xuu70",fontsize=16,color="green",shape="box"];2669[label="xuu73",fontsize=16,color="green",shape="box"];2670[label="xuu70",fontsize=16,color="green",shape="box"];2671[label="xuu73",fontsize=16,color="green",shape="box"];2672[label="xuu70",fontsize=16,color="green",shape="box"];2673[label="xuu73",fontsize=16,color="green",shape="box"];2674[label="xuu70",fontsize=16,color="green",shape="box"];2675[label="xuu73",fontsize=16,color="green",shape="box"];2676[label="xuu70",fontsize=16,color="green",shape="box"];2677[label="xuu73",fontsize=16,color="green",shape="box"];2678[label="xuu70",fontsize=16,color="green",shape="box"];2679[label="xuu73",fontsize=16,color="green",shape="box"];2680[label="xuu70",fontsize=16,color="green",shape="box"];2681[label="xuu73",fontsize=16,color="green",shape="box"];2682[label="xuu70",fontsize=16,color="green",shape="box"];2683[label="xuu73",fontsize=16,color="green",shape="box"];2684[label="xuu70",fontsize=16,color="green",shape="box"];2685[label="xuu73",fontsize=16,color="green",shape="box"];2686[label="xuu70",fontsize=16,color="green",shape="box"];2687[label="xuu73",fontsize=16,color="green",shape="box"];2688[label="xuu70",fontsize=16,color="green",shape="box"];2689[label="xuu73",fontsize=16,color="green",shape="box"];2690[label="xuu70",fontsize=16,color="green",shape="box"];2691[label="xuu73",fontsize=16,color="green",shape="box"];2692[label="xuu70",fontsize=16,color="green",shape="box"];2693[label="xuu73",fontsize=16,color="green",shape="box"];2694[label="compare0 (xuu171,xuu172,xuu173) (xuu174,xuu175,xuu176) True",fontsize=16,color="black",shape="box"];2694 -> 2841[label="",style="solid", color="black", weight=3]; 22.90/8.42 2695 -> 1742[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2695[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2696 -> 1737[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2696[label="FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43",fontsize=16,color="magenta"];2697[label="FiniteMap.mkBalBranch6MkBalBranch2 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 otherwise",fontsize=16,color="black",shape="box"];2697 -> 2842[label="",style="solid", color="black", weight=3]; 22.90/8.42 2698[label="FiniteMap.mkBalBranch6MkBalBranch1 [] xuu41 xuu41 xuu43 xuu43 xuu41 xuu43",fontsize=16,color="burlywood",shape="box"];4511[label="xuu43/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2698 -> 4511[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4511 -> 2843[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 4512[label="xuu43/FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434",fontsize=10,color="white",style="solid",shape="box"];2698 -> 4512[label="",style="solid", color="burlywood", weight=9]; 22.90/8.42 4512 -> 2844[label="",style="solid", color="burlywood", weight=3]; 22.90/8.42 2699 -> 2845[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2699[label="FiniteMap.mkBalBranch6MkBalBranch01 [] xuu41 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu43 xuu43 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu410 xuu411 xuu412 xuu413 xuu414 (FiniteMap.sizeFM xuu413 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu414)",fontsize=16,color="magenta"];2699 -> 2846[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2853[label="xuu19600",fontsize=16,color="green",shape="box"];2854[label="xuu19700",fontsize=16,color="green",shape="box"];3680[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];3680 -> 3684[label="",style="solid", color="black", weight=3]; 22.90/8.42 3681[label="FiniteMap.sizeFM (FiniteMap.Branch xuu2960 xuu2961 xuu2962 xuu2963 xuu2964)",fontsize=16,color="black",shape="box"];3681 -> 3685[label="",style="solid", color="black", weight=3]; 22.90/8.42 3682[label="FiniteMap.mkBranchLeft_size xuu296 xuu293 xuu295",fontsize=16,color="black",shape="box"];3682 -> 3686[label="",style="solid", color="black", weight=3]; 22.90/8.42 3683[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];3444[label="xuu41",fontsize=16,color="green",shape="box"];3445[label="xuu29",fontsize=16,color="green",shape="box"];3446[label="xuu400 : xuu401",fontsize=16,color="green",shape="box"];3447[label="xuu44",fontsize=16,color="green",shape="box"];3448[label="Succ Zero",fontsize=16,color="green",shape="box"];2704 -> 2851[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2704[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu400 : xuu401) xuu41 xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu44 xuu290 xuu291 xuu292 xuu293 xuu294 (FiniteMap.sizeFM xuu294 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu293)",fontsize=16,color="magenta"];2704 -> 2852[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2705[label="xuu443",fontsize=16,color="green",shape="box"];2706[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2707 -> 1744[label="",style="dashed", color="red", weight=0]; 22.90/8.42 2707[label="FiniteMap.sizeFM xuu444",fontsize=16,color="magenta"];2707 -> 2855[label="",style="dashed", color="magenta", weight=3]; 22.90/8.42 2708[label="FiniteMap.mkBalBranch6MkBalBranch00 (xuu400 : xuu401) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu29 xuu29 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 otherwise",fontsize=16,color="black",shape="box"];2708 -> 2856[label="",style="solid", color="black", weight=3]; 22.90/8.42 2709[label="FiniteMap.mkBalBranch6Single_L (xuu400 : xuu401) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu29 xuu29 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];2709 -> 2857[label="",style="solid", color="black", weight=3]; 22.90/8.42 2710[label="Succ (Succ (primPlusNat xuu2070 xuu5000100))",fontsize=16,color="green",shape="box"];2710 -> 2858[label="",style="dashed", color="green", weight=3]; 22.90/8.42 2711[label="Succ xuu5000100",fontsize=16,color="green",shape="box"];2712[label="GT",fontsize=16,color="green",shape="box"];2713[label="xuu400000",fontsize=16,color="green",shape="box"];2714[label="xuu5000000",fontsize=16,color="green",shape="box"];2715[label="xuu190",fontsize=16,color="green",shape="box"];2716[label="GT",fontsize=16,color="green",shape="box"];2717[label="not False",fontsize=16,color="black",shape="box"];2717 -> 2859[label="",style="solid", color="black", weight=3]; 22.90/8.43 2718[label="not True",fontsize=16,color="black",shape="box"];2718 -> 2860[label="",style="solid", color="black", weight=3]; 22.90/8.43 2725 -> 1306[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2725[label="xuu580 < xuu590",fontsize=16,color="magenta"];2725 -> 2861[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2725 -> 2862[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2726 -> 1307[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2726[label="xuu580 < xuu590",fontsize=16,color="magenta"];2726 -> 2863[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2726 -> 2864[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2727 -> 1308[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2727[label="xuu580 < xuu590",fontsize=16,color="magenta"];2727 -> 2865[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2727 -> 2866[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2728 -> 1309[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2728[label="xuu580 < xuu590",fontsize=16,color="magenta"];2728 -> 2867[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2728 -> 2868[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2729 -> 1310[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2729[label="xuu580 < xuu590",fontsize=16,color="magenta"];2729 -> 2869[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2729 -> 2870[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2730 -> 1311[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2730[label="xuu580 < xuu590",fontsize=16,color="magenta"];2730 -> 2871[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2730 -> 2872[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2731 -> 1312[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2731[label="xuu580 < xuu590",fontsize=16,color="magenta"];2731 -> 2873[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2731 -> 2874[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2732 -> 1313[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2732[label="xuu580 < xuu590",fontsize=16,color="magenta"];2732 -> 2875[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2732 -> 2876[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2733 -> 1314[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2733[label="xuu580 < xuu590",fontsize=16,color="magenta"];2733 -> 2877[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2733 -> 2878[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2734 -> 1315[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2734[label="xuu580 < xuu590",fontsize=16,color="magenta"];2734 -> 2879[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2734 -> 2880[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2735 -> 1316[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2735[label="xuu580 < xuu590",fontsize=16,color="magenta"];2735 -> 2881[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2735 -> 2882[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2736 -> 1317[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2736[label="xuu580 < xuu590",fontsize=16,color="magenta"];2736 -> 2883[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2736 -> 2884[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2737 -> 1318[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2737[label="xuu580 < xuu590",fontsize=16,color="magenta"];2737 -> 2885[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2737 -> 2886[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2738 -> 1319[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2738[label="xuu580 < xuu590",fontsize=16,color="magenta"];2738 -> 2887[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2738 -> 2888[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2739[label="xuu581 <= xuu591",fontsize=16,color="blue",shape="box"];4513[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 4513[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4513 -> 2889[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4514[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 4514[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4514 -> 2890[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4515[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 4515[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4515 -> 2891[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4516[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 4516[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4516 -> 2892[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4517[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 4517[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4517 -> 2893[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4518[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 4518[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4518 -> 2894[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4519[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 4519[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4519 -> 2895[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4520[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 4520[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4520 -> 2896[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4521[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 4521[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4521 -> 2897[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4522[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 4522[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4522 -> 2898[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4523[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 4523[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4523 -> 2899[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4524[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 4524[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4524 -> 2900[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4525[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 4525[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4525 -> 2901[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4526[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2739 -> 4526[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4526 -> 2902[label="",style="solid", color="blue", weight=3]; 22.90/8.43 2740[label="xuu580 == xuu590",fontsize=16,color="blue",shape="box"];4527[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4527[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4527 -> 2903[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4528[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4528[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4528 -> 2904[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4529[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4529[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4529 -> 2905[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4530[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4530[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4530 -> 2906[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4531[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4531[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4531 -> 2907[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4532[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4532[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4532 -> 2908[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4533[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4533[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4533 -> 2909[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4534[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4534[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4534 -> 2910[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4535[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4535[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4535 -> 2911[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4536[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4536[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4536 -> 2912[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4537[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4537[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4537 -> 2913[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4538[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4538[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4538 -> 2914[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4539[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4539[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4539 -> 2915[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4540[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4540[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4540 -> 2916[label="",style="solid", color="blue", weight=3]; 22.90/8.43 2741[label="xuu580",fontsize=16,color="green",shape="box"];2742[label="xuu590",fontsize=16,color="green",shape="box"];2743[label="xuu580",fontsize=16,color="green",shape="box"];2744[label="xuu590",fontsize=16,color="green",shape="box"];2745[label="xuu580",fontsize=16,color="green",shape="box"];2746[label="xuu590",fontsize=16,color="green",shape="box"];2747[label="xuu580",fontsize=16,color="green",shape="box"];2748[label="xuu590",fontsize=16,color="green",shape="box"];2749[label="xuu580",fontsize=16,color="green",shape="box"];2750[label="xuu590",fontsize=16,color="green",shape="box"];2751[label="xuu580",fontsize=16,color="green",shape="box"];2752[label="xuu590",fontsize=16,color="green",shape="box"];2753[label="xuu580",fontsize=16,color="green",shape="box"];2754[label="xuu590",fontsize=16,color="green",shape="box"];2755[label="xuu580",fontsize=16,color="green",shape="box"];2756[label="xuu590",fontsize=16,color="green",shape="box"];2757[label="xuu580",fontsize=16,color="green",shape="box"];2758[label="xuu590",fontsize=16,color="green",shape="box"];2759[label="xuu580",fontsize=16,color="green",shape="box"];2760[label="xuu590",fontsize=16,color="green",shape="box"];2761[label="xuu580",fontsize=16,color="green",shape="box"];2762[label="xuu590",fontsize=16,color="green",shape="box"];2763[label="xuu580",fontsize=16,color="green",shape="box"];2764[label="xuu590",fontsize=16,color="green",shape="box"];2765[label="xuu580",fontsize=16,color="green",shape="box"];2766[label="xuu590",fontsize=16,color="green",shape="box"];2767[label="xuu580",fontsize=16,color="green",shape="box"];2768[label="xuu590",fontsize=16,color="green",shape="box"];2769 -> 1306[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2769[label="xuu580 < xuu590",fontsize=16,color="magenta"];2769 -> 2917[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2769 -> 2918[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2770 -> 1307[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2770[label="xuu580 < xuu590",fontsize=16,color="magenta"];2770 -> 2919[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2770 -> 2920[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2771 -> 1308[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2771[label="xuu580 < xuu590",fontsize=16,color="magenta"];2771 -> 2921[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2771 -> 2922[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2772 -> 1309[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2772[label="xuu580 < xuu590",fontsize=16,color="magenta"];2772 -> 2923[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2772 -> 2924[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2773 -> 1310[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2773[label="xuu580 < xuu590",fontsize=16,color="magenta"];2773 -> 2925[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2773 -> 2926[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2774 -> 1311[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2774[label="xuu580 < xuu590",fontsize=16,color="magenta"];2774 -> 2927[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2774 -> 2928[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2775 -> 1312[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2775[label="xuu580 < xuu590",fontsize=16,color="magenta"];2775 -> 2929[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2775 -> 2930[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2776 -> 1313[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2776[label="xuu580 < xuu590",fontsize=16,color="magenta"];2776 -> 2931[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2776 -> 2932[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2777 -> 1314[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2777[label="xuu580 < xuu590",fontsize=16,color="magenta"];2777 -> 2933[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2777 -> 2934[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2778 -> 1315[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2778[label="xuu580 < xuu590",fontsize=16,color="magenta"];2778 -> 2935[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2778 -> 2936[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2779 -> 1316[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2779[label="xuu580 < xuu590",fontsize=16,color="magenta"];2779 -> 2937[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2779 -> 2938[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2780 -> 1317[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2780[label="xuu580 < xuu590",fontsize=16,color="magenta"];2780 -> 2939[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2780 -> 2940[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2781 -> 1318[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2781[label="xuu580 < xuu590",fontsize=16,color="magenta"];2781 -> 2941[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2781 -> 2942[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2782 -> 1319[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2782[label="xuu580 < xuu590",fontsize=16,color="magenta"];2782 -> 2943[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2782 -> 2944[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2783 -> 2058[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2783[label="xuu581 < xuu591 || xuu581 == xuu591 && xuu582 <= xuu592",fontsize=16,color="magenta"];2783 -> 2945[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2783 -> 2946[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2784[label="xuu580 == xuu590",fontsize=16,color="blue",shape="box"];4541[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2784 -> 4541[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4541 -> 2947[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4542[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2784 -> 4542[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4542 -> 2948[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4543[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2784 -> 4543[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4543 -> 2949[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4544[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2784 -> 4544[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4544 -> 2950[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4545[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2784 -> 4545[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4545 -> 2951[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4546[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2784 -> 4546[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4546 -> 2952[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4547[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2784 -> 4547[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4547 -> 2953[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4548[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2784 -> 4548[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4548 -> 2954[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4549[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2784 -> 4549[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4549 -> 2955[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4550[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2784 -> 4550[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4550 -> 2956[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4551[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2784 -> 4551[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4551 -> 2957[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4552[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2784 -> 4552[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4552 -> 2958[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4553[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2784 -> 4553[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4553 -> 2959[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4554[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2784 -> 4554[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4554 -> 2960[label="",style="solid", color="blue", weight=3]; 22.90/8.43 2785[label="xuu580",fontsize=16,color="green",shape="box"];2786[label="xuu590",fontsize=16,color="green",shape="box"];2787[label="xuu580",fontsize=16,color="green",shape="box"];2788[label="xuu590",fontsize=16,color="green",shape="box"];2789[label="xuu580",fontsize=16,color="green",shape="box"];2790[label="xuu590",fontsize=16,color="green",shape="box"];2791[label="xuu580",fontsize=16,color="green",shape="box"];2792[label="xuu590",fontsize=16,color="green",shape="box"];2793[label="xuu580",fontsize=16,color="green",shape="box"];2794[label="xuu590",fontsize=16,color="green",shape="box"];2795[label="xuu580",fontsize=16,color="green",shape="box"];2796[label="xuu590",fontsize=16,color="green",shape="box"];2797[label="xuu580",fontsize=16,color="green",shape="box"];2798[label="xuu590",fontsize=16,color="green",shape="box"];2799[label="xuu580",fontsize=16,color="green",shape="box"];2800[label="xuu590",fontsize=16,color="green",shape="box"];2801[label="xuu580",fontsize=16,color="green",shape="box"];2802[label="xuu590",fontsize=16,color="green",shape="box"];2803[label="xuu580",fontsize=16,color="green",shape="box"];2804[label="xuu590",fontsize=16,color="green",shape="box"];2805[label="xuu580",fontsize=16,color="green",shape="box"];2806[label="xuu590",fontsize=16,color="green",shape="box"];2807[label="xuu580",fontsize=16,color="green",shape="box"];2808[label="xuu590",fontsize=16,color="green",shape="box"];2809[label="xuu580",fontsize=16,color="green",shape="box"];2810[label="xuu590",fontsize=16,color="green",shape="box"];2811[label="xuu580",fontsize=16,color="green",shape="box"];2812[label="xuu590",fontsize=16,color="green",shape="box"];2813[label="xuu580",fontsize=16,color="green",shape="box"];2814[label="xuu590",fontsize=16,color="green",shape="box"];2815[label="xuu580",fontsize=16,color="green",shape="box"];2816[label="xuu590",fontsize=16,color="green",shape="box"];2817[label="xuu580",fontsize=16,color="green",shape="box"];2818[label="xuu590",fontsize=16,color="green",shape="box"];2819[label="xuu580",fontsize=16,color="green",shape="box"];2820[label="xuu590",fontsize=16,color="green",shape="box"];2821[label="xuu580",fontsize=16,color="green",shape="box"];2822[label="xuu590",fontsize=16,color="green",shape="box"];2823[label="xuu580",fontsize=16,color="green",shape="box"];2824[label="xuu590",fontsize=16,color="green",shape="box"];2825[label="xuu580",fontsize=16,color="green",shape="box"];2826[label="xuu590",fontsize=16,color="green",shape="box"];2827[label="xuu580",fontsize=16,color="green",shape="box"];2828[label="xuu590",fontsize=16,color="green",shape="box"];2829[label="xuu580",fontsize=16,color="green",shape="box"];2830[label="xuu590",fontsize=16,color="green",shape="box"];2831[label="xuu580",fontsize=16,color="green",shape="box"];2832[label="xuu590",fontsize=16,color="green",shape="box"];2833[label="xuu580",fontsize=16,color="green",shape="box"];2834[label="xuu590",fontsize=16,color="green",shape="box"];2835[label="xuu580",fontsize=16,color="green",shape="box"];2836[label="xuu590",fontsize=16,color="green",shape="box"];2837[label="xuu580",fontsize=16,color="green",shape="box"];2838[label="xuu590",fontsize=16,color="green",shape="box"];2839[label="xuu580",fontsize=16,color="green",shape="box"];2840[label="xuu590",fontsize=16,color="green",shape="box"];2841[label="GT",fontsize=16,color="green",shape="box"];2842[label="FiniteMap.mkBalBranch6MkBalBranch2 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 True",fontsize=16,color="black",shape="box"];2842 -> 2961[label="",style="solid", color="black", weight=3]; 22.90/8.43 2843[label="FiniteMap.mkBalBranch6MkBalBranch1 [] xuu41 xuu41 FiniteMap.EmptyFM FiniteMap.EmptyFM xuu41 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2843 -> 2962[label="",style="solid", color="black", weight=3]; 22.90/8.43 2844[label="FiniteMap.mkBalBranch6MkBalBranch1 [] xuu41 xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434)",fontsize=16,color="black",shape="box"];2844 -> 2963[label="",style="solid", color="black", weight=3]; 22.90/8.43 2846 -> 1313[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2846[label="FiniteMap.sizeFM xuu413 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu414",fontsize=16,color="magenta"];2846 -> 2964[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2846 -> 2965[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2845[label="FiniteMap.mkBalBranch6MkBalBranch01 [] xuu41 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu43 xuu43 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu410 xuu411 xuu412 xuu413 xuu414 xuu209",fontsize=16,color="burlywood",shape="triangle"];4555[label="xuu209/False",fontsize=10,color="white",style="solid",shape="box"];2845 -> 4555[label="",style="solid", color="burlywood", weight=9]; 22.90/8.43 4555 -> 2966[label="",style="solid", color="burlywood", weight=3]; 22.90/8.43 4556[label="xuu209/True",fontsize=10,color="white",style="solid",shape="box"];2845 -> 4556[label="",style="solid", color="burlywood", weight=9]; 22.90/8.43 4556 -> 2967[label="",style="solid", color="burlywood", weight=3]; 22.90/8.43 3684[label="Pos Zero",fontsize=16,color="green",shape="box"];3685[label="xuu2962",fontsize=16,color="green",shape="box"];3686 -> 3678[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3686[label="FiniteMap.sizeFM xuu295",fontsize=16,color="magenta"];3686 -> 3687[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2852 -> 1313[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2852[label="FiniteMap.sizeFM xuu294 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu293",fontsize=16,color="magenta"];2852 -> 2971[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2852 -> 2972[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2851[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu400 : xuu401) xuu41 xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu44 xuu290 xuu291 xuu292 xuu293 xuu294 xuu213",fontsize=16,color="burlywood",shape="triangle"];4557[label="xuu213/False",fontsize=10,color="white",style="solid",shape="box"];2851 -> 4557[label="",style="solid", color="burlywood", weight=9]; 22.90/8.43 4557 -> 2973[label="",style="solid", color="burlywood", weight=3]; 22.90/8.43 4558[label="xuu213/True",fontsize=10,color="white",style="solid",shape="box"];2851 -> 4558[label="",style="solid", color="burlywood", weight=9]; 22.90/8.43 4558 -> 2974[label="",style="solid", color="burlywood", weight=3]; 22.90/8.43 2855[label="xuu444",fontsize=16,color="green",shape="box"];2856[label="FiniteMap.mkBalBranch6MkBalBranch00 (xuu400 : xuu401) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu29 xuu29 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 True",fontsize=16,color="black",shape="box"];2856 -> 2975[label="",style="solid", color="black", weight=3]; 22.90/8.43 2857 -> 3433[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2857[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu440 xuu441 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu400 : xuu401) xuu41 xuu29 xuu443) xuu444",fontsize=16,color="magenta"];2857 -> 3449[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2857 -> 3450[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2857 -> 3451[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2857 -> 3452[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2857 -> 3453[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2858 -> 2180[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2858[label="primPlusNat xuu2070 xuu5000100",fontsize=16,color="magenta"];2858 -> 2977[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2858 -> 2978[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2859[label="True",fontsize=16,color="green",shape="box"];2860[label="False",fontsize=16,color="green",shape="box"];2861[label="xuu580",fontsize=16,color="green",shape="box"];2862[label="xuu590",fontsize=16,color="green",shape="box"];2863[label="xuu580",fontsize=16,color="green",shape="box"];2864[label="xuu590",fontsize=16,color="green",shape="box"];2865[label="xuu580",fontsize=16,color="green",shape="box"];2866[label="xuu590",fontsize=16,color="green",shape="box"];2867[label="xuu580",fontsize=16,color="green",shape="box"];2868[label="xuu590",fontsize=16,color="green",shape="box"];2869[label="xuu580",fontsize=16,color="green",shape="box"];2870[label="xuu590",fontsize=16,color="green",shape="box"];2871[label="xuu580",fontsize=16,color="green",shape="box"];2872[label="xuu590",fontsize=16,color="green",shape="box"];2873[label="xuu580",fontsize=16,color="green",shape="box"];2874[label="xuu590",fontsize=16,color="green",shape="box"];2875[label="xuu580",fontsize=16,color="green",shape="box"];2876[label="xuu590",fontsize=16,color="green",shape="box"];2877[label="xuu580",fontsize=16,color="green",shape="box"];2878[label="xuu590",fontsize=16,color="green",shape="box"];2879[label="xuu580",fontsize=16,color="green",shape="box"];2880[label="xuu590",fontsize=16,color="green",shape="box"];2881[label="xuu580",fontsize=16,color="green",shape="box"];2882[label="xuu590",fontsize=16,color="green",shape="box"];2883[label="xuu580",fontsize=16,color="green",shape="box"];2884[label="xuu590",fontsize=16,color="green",shape="box"];2885[label="xuu580",fontsize=16,color="green",shape="box"];2886[label="xuu590",fontsize=16,color="green",shape="box"];2887[label="xuu580",fontsize=16,color="green",shape="box"];2888[label="xuu590",fontsize=16,color="green",shape="box"];2889 -> 1361[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2889[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2889 -> 2979[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2889 -> 2980[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2890 -> 1362[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2890[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2890 -> 2981[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2890 -> 2982[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2891 -> 1363[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2891[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2891 -> 2983[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2891 -> 2984[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2892 -> 1364[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2892[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2892 -> 2985[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2892 -> 2986[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2893 -> 1365[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2893[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2893 -> 2987[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2893 -> 2988[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2894 -> 1366[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2894[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2894 -> 2989[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2894 -> 2990[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2895 -> 1367[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2895[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2895 -> 2991[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2895 -> 2992[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2896 -> 1368[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2896[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2896 -> 2993[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2896 -> 2994[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2897 -> 1369[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2897[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2897 -> 2995[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2897 -> 2996[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2898 -> 1370[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2898[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2898 -> 2997[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2898 -> 2998[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2899 -> 1371[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2899[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2899 -> 2999[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2899 -> 3000[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2900 -> 1372[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2900[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2900 -> 3001[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2900 -> 3002[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2901 -> 1373[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2901[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2901 -> 3003[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2901 -> 3004[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2902 -> 1374[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2902[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2902 -> 3005[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2902 -> 3006[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2903 -> 542[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2903[label="xuu580 == xuu590",fontsize=16,color="magenta"];2903 -> 3007[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2903 -> 3008[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2904 -> 535[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2904[label="xuu580 == xuu590",fontsize=16,color="magenta"];2904 -> 3009[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2904 -> 3010[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2905 -> 537[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2905[label="xuu580 == xuu590",fontsize=16,color="magenta"];2905 -> 3011[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2905 -> 3012[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2906 -> 543[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2906[label="xuu580 == xuu590",fontsize=16,color="magenta"];2906 -> 3013[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2906 -> 3014[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2907 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2907[label="xuu580 == xuu590",fontsize=16,color="magenta"];2907 -> 3015[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2907 -> 3016[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2908 -> 532[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2908[label="xuu580 == xuu590",fontsize=16,color="magenta"];2908 -> 3017[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2908 -> 3018[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2909 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2909[label="xuu580 == xuu590",fontsize=16,color="magenta"];2909 -> 3019[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2909 -> 3020[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2910 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2910[label="xuu580 == xuu590",fontsize=16,color="magenta"];2910 -> 3021[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2910 -> 3022[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2911 -> 541[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2911[label="xuu580 == xuu590",fontsize=16,color="magenta"];2911 -> 3023[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2911 -> 3024[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2912 -> 540[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2912[label="xuu580 == xuu590",fontsize=16,color="magenta"];2912 -> 3025[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2912 -> 3026[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2913 -> 544[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2913[label="xuu580 == xuu590",fontsize=16,color="magenta"];2913 -> 3027[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2913 -> 3028[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2914 -> 534[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2914[label="xuu580 == xuu590",fontsize=16,color="magenta"];2914 -> 3029[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2914 -> 3030[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2915 -> 536[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2915[label="xuu580 == xuu590",fontsize=16,color="magenta"];2915 -> 3031[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2915 -> 3032[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2916 -> 533[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2916[label="xuu580 == xuu590",fontsize=16,color="magenta"];2916 -> 3033[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2916 -> 3034[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2917[label="xuu580",fontsize=16,color="green",shape="box"];2918[label="xuu590",fontsize=16,color="green",shape="box"];2919[label="xuu580",fontsize=16,color="green",shape="box"];2920[label="xuu590",fontsize=16,color="green",shape="box"];2921[label="xuu580",fontsize=16,color="green",shape="box"];2922[label="xuu590",fontsize=16,color="green",shape="box"];2923[label="xuu580",fontsize=16,color="green",shape="box"];2924[label="xuu590",fontsize=16,color="green",shape="box"];2925[label="xuu580",fontsize=16,color="green",shape="box"];2926[label="xuu590",fontsize=16,color="green",shape="box"];2927[label="xuu580",fontsize=16,color="green",shape="box"];2928[label="xuu590",fontsize=16,color="green",shape="box"];2929[label="xuu580",fontsize=16,color="green",shape="box"];2930[label="xuu590",fontsize=16,color="green",shape="box"];2931[label="xuu580",fontsize=16,color="green",shape="box"];2932[label="xuu590",fontsize=16,color="green",shape="box"];2933[label="xuu580",fontsize=16,color="green",shape="box"];2934[label="xuu590",fontsize=16,color="green",shape="box"];2935[label="xuu580",fontsize=16,color="green",shape="box"];2936[label="xuu590",fontsize=16,color="green",shape="box"];2937[label="xuu580",fontsize=16,color="green",shape="box"];2938[label="xuu590",fontsize=16,color="green",shape="box"];2939[label="xuu580",fontsize=16,color="green",shape="box"];2940[label="xuu590",fontsize=16,color="green",shape="box"];2941[label="xuu580",fontsize=16,color="green",shape="box"];2942[label="xuu590",fontsize=16,color="green",shape="box"];2943[label="xuu580",fontsize=16,color="green",shape="box"];2944[label="xuu590",fontsize=16,color="green",shape="box"];2945[label="xuu581 < xuu591",fontsize=16,color="blue",shape="box"];4559[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4559[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4559 -> 3035[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4560[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4560[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4560 -> 3036[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4561[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4561[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4561 -> 3037[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4562[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4562[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4562 -> 3038[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4563[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4563[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4563 -> 3039[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4564[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4564[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4564 -> 3040[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4565[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4565[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4565 -> 3041[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4566[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4566[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4566 -> 3042[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4567[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4567[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4567 -> 3043[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4568[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4568[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4568 -> 3044[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4569[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4569[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4569 -> 3045[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4570[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4570[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4570 -> 3046[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4571[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4571[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4571 -> 3047[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4572[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4572[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4572 -> 3048[label="",style="solid", color="blue", weight=3]; 22.90/8.43 2946 -> 985[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2946[label="xuu581 == xuu591 && xuu582 <= xuu592",fontsize=16,color="magenta"];2946 -> 3049[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2946 -> 3050[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2947 -> 542[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2947[label="xuu580 == xuu590",fontsize=16,color="magenta"];2947 -> 3051[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2947 -> 3052[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2948 -> 535[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2948[label="xuu580 == xuu590",fontsize=16,color="magenta"];2948 -> 3053[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2948 -> 3054[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2949 -> 537[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2949[label="xuu580 == xuu590",fontsize=16,color="magenta"];2949 -> 3055[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2949 -> 3056[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2950 -> 543[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2950[label="xuu580 == xuu590",fontsize=16,color="magenta"];2950 -> 3057[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2950 -> 3058[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2951 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2951[label="xuu580 == xuu590",fontsize=16,color="magenta"];2951 -> 3059[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2951 -> 3060[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2952 -> 532[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2952[label="xuu580 == xuu590",fontsize=16,color="magenta"];2952 -> 3061[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2952 -> 3062[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2953 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2953[label="xuu580 == xuu590",fontsize=16,color="magenta"];2953 -> 3063[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2953 -> 3064[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2954 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2954[label="xuu580 == xuu590",fontsize=16,color="magenta"];2954 -> 3065[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2954 -> 3066[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2955 -> 541[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2955[label="xuu580 == xuu590",fontsize=16,color="magenta"];2955 -> 3067[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2955 -> 3068[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2956 -> 540[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2956[label="xuu580 == xuu590",fontsize=16,color="magenta"];2956 -> 3069[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2956 -> 3070[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2957 -> 544[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2957[label="xuu580 == xuu590",fontsize=16,color="magenta"];2957 -> 3071[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2957 -> 3072[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2958 -> 534[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2958[label="xuu580 == xuu590",fontsize=16,color="magenta"];2958 -> 3073[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2958 -> 3074[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2959 -> 536[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2959[label="xuu580 == xuu590",fontsize=16,color="magenta"];2959 -> 3075[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2959 -> 3076[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2960 -> 533[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2960[label="xuu580 == xuu590",fontsize=16,color="magenta"];2960 -> 3077[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2960 -> 3078[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2961 -> 3433[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2961[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) [] xuu41 xuu43 xuu41",fontsize=16,color="magenta"];2961 -> 3454[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2961 -> 3455[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2961 -> 3456[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2961 -> 3457[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2961 -> 3458[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2962[label="error []",fontsize=16,color="red",shape="box"];2963[label="FiniteMap.mkBalBranch6MkBalBranch12 [] xuu41 xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434)",fontsize=16,color="black",shape="box"];2963 -> 3080[label="",style="solid", color="black", weight=3]; 22.90/8.43 2964 -> 1744[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2964[label="FiniteMap.sizeFM xuu413",fontsize=16,color="magenta"];2964 -> 3081[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2965 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2965[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu414",fontsize=16,color="magenta"];2965 -> 3082[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2965 -> 3083[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2966[label="FiniteMap.mkBalBranch6MkBalBranch01 [] xuu41 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu43 xuu43 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu410 xuu411 xuu412 xuu413 xuu414 False",fontsize=16,color="black",shape="box"];2966 -> 3084[label="",style="solid", color="black", weight=3]; 22.90/8.43 2967[label="FiniteMap.mkBalBranch6MkBalBranch01 [] xuu41 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu43 xuu43 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu410 xuu411 xuu412 xuu413 xuu414 True",fontsize=16,color="black",shape="box"];2967 -> 3085[label="",style="solid", color="black", weight=3]; 22.90/8.43 3687[label="xuu295",fontsize=16,color="green",shape="box"];2971 -> 1744[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2971[label="FiniteMap.sizeFM xuu294",fontsize=16,color="magenta"];2971 -> 3087[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2972 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.43 2972[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu293",fontsize=16,color="magenta"];2972 -> 3088[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2972 -> 3089[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 2973[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu400 : xuu401) xuu41 xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu44 xuu290 xuu291 xuu292 xuu293 xuu294 False",fontsize=16,color="black",shape="box"];2973 -> 3090[label="",style="solid", color="black", weight=3]; 22.90/8.43 2974[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu400 : xuu401) xuu41 xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu44 xuu290 xuu291 xuu292 xuu293 xuu294 True",fontsize=16,color="black",shape="box"];2974 -> 3091[label="",style="solid", color="black", weight=3]; 22.90/8.43 2975[label="FiniteMap.mkBalBranch6Double_L (xuu400 : xuu401) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu29 xuu29 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="burlywood",shape="box"];4573[label="xuu443/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2975 -> 4573[label="",style="solid", color="burlywood", weight=9]; 22.90/8.43 4573 -> 3092[label="",style="solid", color="burlywood", weight=3]; 22.90/8.43 4574[label="xuu443/FiniteMap.Branch xuu4430 xuu4431 xuu4432 xuu4433 xuu4434",fontsize=10,color="white",style="solid",shape="box"];2975 -> 4574[label="",style="solid", color="burlywood", weight=9]; 22.90/8.43 4574 -> 3093[label="",style="solid", color="burlywood", weight=3]; 22.90/8.43 3449[label="xuu441",fontsize=16,color="green",shape="box"];3450 -> 3433[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3450[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu400 : xuu401) xuu41 xuu29 xuu443",fontsize=16,color="magenta"];3450 -> 3605[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3450 -> 3606[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3450 -> 3607[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3450 -> 3608[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3450 -> 3609[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3451[label="xuu440",fontsize=16,color="green",shape="box"];3452[label="xuu444",fontsize=16,color="green",shape="box"];3453[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];2977[label="xuu5000100",fontsize=16,color="green",shape="box"];2978[label="xuu2070",fontsize=16,color="green",shape="box"];2979[label="xuu581",fontsize=16,color="green",shape="box"];2980[label="xuu591",fontsize=16,color="green",shape="box"];2981[label="xuu581",fontsize=16,color="green",shape="box"];2982[label="xuu591",fontsize=16,color="green",shape="box"];2983[label="xuu581",fontsize=16,color="green",shape="box"];2984[label="xuu591",fontsize=16,color="green",shape="box"];2985[label="xuu581",fontsize=16,color="green",shape="box"];2986[label="xuu591",fontsize=16,color="green",shape="box"];2987[label="xuu581",fontsize=16,color="green",shape="box"];2988[label="xuu591",fontsize=16,color="green",shape="box"];2989[label="xuu581",fontsize=16,color="green",shape="box"];2990[label="xuu591",fontsize=16,color="green",shape="box"];2991[label="xuu581",fontsize=16,color="green",shape="box"];2992[label="xuu591",fontsize=16,color="green",shape="box"];2993[label="xuu581",fontsize=16,color="green",shape="box"];2994[label="xuu591",fontsize=16,color="green",shape="box"];2995[label="xuu581",fontsize=16,color="green",shape="box"];2996[label="xuu591",fontsize=16,color="green",shape="box"];2997[label="xuu581",fontsize=16,color="green",shape="box"];2998[label="xuu591",fontsize=16,color="green",shape="box"];2999[label="xuu581",fontsize=16,color="green",shape="box"];3000[label="xuu591",fontsize=16,color="green",shape="box"];3001[label="xuu581",fontsize=16,color="green",shape="box"];3002[label="xuu591",fontsize=16,color="green",shape="box"];3003[label="xuu581",fontsize=16,color="green",shape="box"];3004[label="xuu591",fontsize=16,color="green",shape="box"];3005[label="xuu581",fontsize=16,color="green",shape="box"];3006[label="xuu591",fontsize=16,color="green",shape="box"];3007[label="xuu580",fontsize=16,color="green",shape="box"];3008[label="xuu590",fontsize=16,color="green",shape="box"];3009[label="xuu580",fontsize=16,color="green",shape="box"];3010[label="xuu590",fontsize=16,color="green",shape="box"];3011[label="xuu580",fontsize=16,color="green",shape="box"];3012[label="xuu590",fontsize=16,color="green",shape="box"];3013[label="xuu580",fontsize=16,color="green",shape="box"];3014[label="xuu590",fontsize=16,color="green",shape="box"];3015[label="xuu580",fontsize=16,color="green",shape="box"];3016[label="xuu590",fontsize=16,color="green",shape="box"];3017[label="xuu580",fontsize=16,color="green",shape="box"];3018[label="xuu590",fontsize=16,color="green",shape="box"];3019[label="xuu580",fontsize=16,color="green",shape="box"];3020[label="xuu590",fontsize=16,color="green",shape="box"];3021[label="xuu580",fontsize=16,color="green",shape="box"];3022[label="xuu590",fontsize=16,color="green",shape="box"];3023[label="xuu580",fontsize=16,color="green",shape="box"];3024[label="xuu590",fontsize=16,color="green",shape="box"];3025[label="xuu580",fontsize=16,color="green",shape="box"];3026[label="xuu590",fontsize=16,color="green",shape="box"];3027[label="xuu580",fontsize=16,color="green",shape="box"];3028[label="xuu590",fontsize=16,color="green",shape="box"];3029[label="xuu580",fontsize=16,color="green",shape="box"];3030[label="xuu590",fontsize=16,color="green",shape="box"];3031[label="xuu580",fontsize=16,color="green",shape="box"];3032[label="xuu590",fontsize=16,color="green",shape="box"];3033[label="xuu580",fontsize=16,color="green",shape="box"];3034[label="xuu590",fontsize=16,color="green",shape="box"];3035 -> 1306[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3035[label="xuu581 < xuu591",fontsize=16,color="magenta"];3035 -> 3095[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3035 -> 3096[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3036 -> 1307[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3036[label="xuu581 < xuu591",fontsize=16,color="magenta"];3036 -> 3097[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3036 -> 3098[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3037 -> 1308[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3037[label="xuu581 < xuu591",fontsize=16,color="magenta"];3037 -> 3099[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3037 -> 3100[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3038 -> 1309[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3038[label="xuu581 < xuu591",fontsize=16,color="magenta"];3038 -> 3101[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3038 -> 3102[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3039 -> 1310[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3039[label="xuu581 < xuu591",fontsize=16,color="magenta"];3039 -> 3103[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3039 -> 3104[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3040 -> 1311[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3040[label="xuu581 < xuu591",fontsize=16,color="magenta"];3040 -> 3105[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3040 -> 3106[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3041 -> 1312[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3041[label="xuu581 < xuu591",fontsize=16,color="magenta"];3041 -> 3107[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3041 -> 3108[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3042 -> 1313[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3042[label="xuu581 < xuu591",fontsize=16,color="magenta"];3042 -> 3109[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3042 -> 3110[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3043 -> 1314[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3043[label="xuu581 < xuu591",fontsize=16,color="magenta"];3043 -> 3111[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3043 -> 3112[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3044 -> 1315[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3044[label="xuu581 < xuu591",fontsize=16,color="magenta"];3044 -> 3113[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3044 -> 3114[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3045 -> 1316[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3045[label="xuu581 < xuu591",fontsize=16,color="magenta"];3045 -> 3115[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3045 -> 3116[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3046 -> 1317[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3046[label="xuu581 < xuu591",fontsize=16,color="magenta"];3046 -> 3117[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3046 -> 3118[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3047 -> 1318[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3047[label="xuu581 < xuu591",fontsize=16,color="magenta"];3047 -> 3119[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3047 -> 3120[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3048 -> 1319[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3048[label="xuu581 < xuu591",fontsize=16,color="magenta"];3048 -> 3121[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3048 -> 3122[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3049[label="xuu582 <= xuu592",fontsize=16,color="blue",shape="box"];4575[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3049 -> 4575[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4575 -> 3123[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4576[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3049 -> 4576[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4576 -> 3124[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4577[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3049 -> 4577[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4577 -> 3125[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4578[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3049 -> 4578[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4578 -> 3126[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4579[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3049 -> 4579[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4579 -> 3127[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4580[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3049 -> 4580[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4580 -> 3128[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4581[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3049 -> 4581[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4581 -> 3129[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4582[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3049 -> 4582[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4582 -> 3130[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4583[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3049 -> 4583[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4583 -> 3131[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4584[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3049 -> 4584[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4584 -> 3132[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4585[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3049 -> 4585[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4585 -> 3133[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4586[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3049 -> 4586[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4586 -> 3134[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4587[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3049 -> 4587[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4587 -> 3135[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4588[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3049 -> 4588[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4588 -> 3136[label="",style="solid", color="blue", weight=3]; 22.90/8.43 3050[label="xuu581 == xuu591",fontsize=16,color="blue",shape="box"];4589[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3050 -> 4589[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4589 -> 3137[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4590[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3050 -> 4590[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4590 -> 3138[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4591[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3050 -> 4591[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4591 -> 3139[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4592[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3050 -> 4592[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4592 -> 3140[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4593[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3050 -> 4593[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4593 -> 3141[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4594[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3050 -> 4594[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4594 -> 3142[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4595[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3050 -> 4595[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4595 -> 3143[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4596[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3050 -> 4596[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4596 -> 3144[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4597[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3050 -> 4597[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4597 -> 3145[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4598[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3050 -> 4598[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4598 -> 3146[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4599[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3050 -> 4599[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4599 -> 3147[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4600[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3050 -> 4600[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4600 -> 3148[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4601[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3050 -> 4601[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4601 -> 3149[label="",style="solid", color="blue", weight=3]; 22.90/8.43 4602[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3050 -> 4602[label="",style="solid", color="blue", weight=9]; 22.90/8.43 4602 -> 3150[label="",style="solid", color="blue", weight=3]; 22.90/8.43 3051[label="xuu580",fontsize=16,color="green",shape="box"];3052[label="xuu590",fontsize=16,color="green",shape="box"];3053[label="xuu580",fontsize=16,color="green",shape="box"];3054[label="xuu590",fontsize=16,color="green",shape="box"];3055[label="xuu580",fontsize=16,color="green",shape="box"];3056[label="xuu590",fontsize=16,color="green",shape="box"];3057[label="xuu580",fontsize=16,color="green",shape="box"];3058[label="xuu590",fontsize=16,color="green",shape="box"];3059[label="xuu580",fontsize=16,color="green",shape="box"];3060[label="xuu590",fontsize=16,color="green",shape="box"];3061[label="xuu580",fontsize=16,color="green",shape="box"];3062[label="xuu590",fontsize=16,color="green",shape="box"];3063[label="xuu580",fontsize=16,color="green",shape="box"];3064[label="xuu590",fontsize=16,color="green",shape="box"];3065[label="xuu580",fontsize=16,color="green",shape="box"];3066[label="xuu590",fontsize=16,color="green",shape="box"];3067[label="xuu580",fontsize=16,color="green",shape="box"];3068[label="xuu590",fontsize=16,color="green",shape="box"];3069[label="xuu580",fontsize=16,color="green",shape="box"];3070[label="xuu590",fontsize=16,color="green",shape="box"];3071[label="xuu580",fontsize=16,color="green",shape="box"];3072[label="xuu590",fontsize=16,color="green",shape="box"];3073[label="xuu580",fontsize=16,color="green",shape="box"];3074[label="xuu590",fontsize=16,color="green",shape="box"];3075[label="xuu580",fontsize=16,color="green",shape="box"];3076[label="xuu590",fontsize=16,color="green",shape="box"];3077[label="xuu580",fontsize=16,color="green",shape="box"];3078[label="xuu590",fontsize=16,color="green",shape="box"];3454[label="xuu41",fontsize=16,color="green",shape="box"];3455[label="xuu43",fontsize=16,color="green",shape="box"];3456[label="[]",fontsize=16,color="green",shape="box"];3457[label="xuu41",fontsize=16,color="green",shape="box"];3458[label="Succ Zero",fontsize=16,color="green",shape="box"];3080 -> 3151[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3080[label="FiniteMap.mkBalBranch6MkBalBranch11 [] xuu41 xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) xuu41 xuu430 xuu431 xuu432 xuu433 xuu434 (FiniteMap.sizeFM xuu434 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu433)",fontsize=16,color="magenta"];3080 -> 3152[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3081[label="xuu413",fontsize=16,color="green",shape="box"];3082[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3083 -> 1744[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3083[label="FiniteMap.sizeFM xuu414",fontsize=16,color="magenta"];3083 -> 3153[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3084[label="FiniteMap.mkBalBranch6MkBalBranch00 [] xuu41 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu43 xuu43 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu410 xuu411 xuu412 xuu413 xuu414 otherwise",fontsize=16,color="black",shape="box"];3084 -> 3154[label="",style="solid", color="black", weight=3]; 22.90/8.43 3085[label="FiniteMap.mkBalBranch6Single_L [] xuu41 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu43 xuu43 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414)",fontsize=16,color="black",shape="box"];3085 -> 3155[label="",style="solid", color="black", weight=3]; 22.90/8.43 3087[label="xuu294",fontsize=16,color="green",shape="box"];3088[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3089 -> 1744[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3089[label="FiniteMap.sizeFM xuu293",fontsize=16,color="magenta"];3089 -> 3157[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3090[label="FiniteMap.mkBalBranch6MkBalBranch10 (xuu400 : xuu401) xuu41 xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu44 xuu290 xuu291 xuu292 xuu293 xuu294 otherwise",fontsize=16,color="black",shape="box"];3090 -> 3158[label="",style="solid", color="black", weight=3]; 22.90/8.43 3091[label="FiniteMap.mkBalBranch6Single_R (xuu400 : xuu401) xuu41 xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu44",fontsize=16,color="black",shape="box"];3091 -> 3159[label="",style="solid", color="black", weight=3]; 22.90/8.43 3092[label="FiniteMap.mkBalBranch6Double_L (xuu400 : xuu401) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 FiniteMap.EmptyFM xuu444) xuu29 xuu29 (FiniteMap.Branch xuu440 xuu441 xuu442 FiniteMap.EmptyFM xuu444)",fontsize=16,color="black",shape="box"];3092 -> 3160[label="",style="solid", color="black", weight=3]; 22.90/8.43 3093[label="FiniteMap.mkBalBranch6Double_L (xuu400 : xuu401) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 (FiniteMap.Branch xuu4430 xuu4431 xuu4432 xuu4433 xuu4434) xuu444) xuu29 xuu29 (FiniteMap.Branch xuu440 xuu441 xuu442 (FiniteMap.Branch xuu4430 xuu4431 xuu4432 xuu4433 xuu4434) xuu444)",fontsize=16,color="black",shape="box"];3093 -> 3161[label="",style="solid", color="black", weight=3]; 22.90/8.43 3605[label="xuu41",fontsize=16,color="green",shape="box"];3606[label="xuu29",fontsize=16,color="green",shape="box"];3607[label="xuu400 : xuu401",fontsize=16,color="green",shape="box"];3608[label="xuu443",fontsize=16,color="green",shape="box"];3609[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3095[label="xuu581",fontsize=16,color="green",shape="box"];3096[label="xuu591",fontsize=16,color="green",shape="box"];3097[label="xuu581",fontsize=16,color="green",shape="box"];3098[label="xuu591",fontsize=16,color="green",shape="box"];3099[label="xuu581",fontsize=16,color="green",shape="box"];3100[label="xuu591",fontsize=16,color="green",shape="box"];3101[label="xuu581",fontsize=16,color="green",shape="box"];3102[label="xuu591",fontsize=16,color="green",shape="box"];3103[label="xuu581",fontsize=16,color="green",shape="box"];3104[label="xuu591",fontsize=16,color="green",shape="box"];3105[label="xuu581",fontsize=16,color="green",shape="box"];3106[label="xuu591",fontsize=16,color="green",shape="box"];3107[label="xuu581",fontsize=16,color="green",shape="box"];3108[label="xuu591",fontsize=16,color="green",shape="box"];3109[label="xuu581",fontsize=16,color="green",shape="box"];3110[label="xuu591",fontsize=16,color="green",shape="box"];3111[label="xuu581",fontsize=16,color="green",shape="box"];3112[label="xuu591",fontsize=16,color="green",shape="box"];3113[label="xuu581",fontsize=16,color="green",shape="box"];3114[label="xuu591",fontsize=16,color="green",shape="box"];3115[label="xuu581",fontsize=16,color="green",shape="box"];3116[label="xuu591",fontsize=16,color="green",shape="box"];3117[label="xuu581",fontsize=16,color="green",shape="box"];3118[label="xuu591",fontsize=16,color="green",shape="box"];3119[label="xuu581",fontsize=16,color="green",shape="box"];3120[label="xuu591",fontsize=16,color="green",shape="box"];3121[label="xuu581",fontsize=16,color="green",shape="box"];3122[label="xuu591",fontsize=16,color="green",shape="box"];3123 -> 1361[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3123[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3123 -> 3164[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3123 -> 3165[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3124 -> 1362[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3124[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3124 -> 3166[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3124 -> 3167[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3125 -> 1363[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3125[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3125 -> 3168[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3125 -> 3169[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3126 -> 1364[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3126[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3126 -> 3170[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3126 -> 3171[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3127 -> 1365[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3127[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3127 -> 3172[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3127 -> 3173[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3128 -> 1366[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3128[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3128 -> 3174[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3128 -> 3175[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3129 -> 1367[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3129[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3129 -> 3176[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3129 -> 3177[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3130 -> 1368[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3130[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3130 -> 3178[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3130 -> 3179[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3131 -> 1369[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3131[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3131 -> 3180[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3131 -> 3181[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3132 -> 1370[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3132[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3132 -> 3182[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3132 -> 3183[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3133 -> 1371[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3133[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3133 -> 3184[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3133 -> 3185[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3134 -> 1372[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3134[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3134 -> 3186[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3134 -> 3187[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3135 -> 1373[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3135[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3135 -> 3188[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3135 -> 3189[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3136 -> 1374[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3136[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3136 -> 3190[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3136 -> 3191[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3137 -> 542[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3137[label="xuu581 == xuu591",fontsize=16,color="magenta"];3137 -> 3192[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3137 -> 3193[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3138 -> 535[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3138[label="xuu581 == xuu591",fontsize=16,color="magenta"];3138 -> 3194[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3138 -> 3195[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3139 -> 537[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3139[label="xuu581 == xuu591",fontsize=16,color="magenta"];3139 -> 3196[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3139 -> 3197[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3140 -> 543[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3140[label="xuu581 == xuu591",fontsize=16,color="magenta"];3140 -> 3198[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3140 -> 3199[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3141 -> 538[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3141[label="xuu581 == xuu591",fontsize=16,color="magenta"];3141 -> 3200[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3141 -> 3201[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3142 -> 532[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3142[label="xuu581 == xuu591",fontsize=16,color="magenta"];3142 -> 3202[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3142 -> 3203[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3143 -> 539[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3143[label="xuu581 == xuu591",fontsize=16,color="magenta"];3143 -> 3204[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3143 -> 3205[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3144 -> 545[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3144[label="xuu581 == xuu591",fontsize=16,color="magenta"];3144 -> 3206[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3144 -> 3207[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3145 -> 541[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3145[label="xuu581 == xuu591",fontsize=16,color="magenta"];3145 -> 3208[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3145 -> 3209[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3146 -> 540[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3146[label="xuu581 == xuu591",fontsize=16,color="magenta"];3146 -> 3210[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3146 -> 3211[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3147 -> 544[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3147[label="xuu581 == xuu591",fontsize=16,color="magenta"];3147 -> 3212[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3147 -> 3213[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3148 -> 534[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3148[label="xuu581 == xuu591",fontsize=16,color="magenta"];3148 -> 3214[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3148 -> 3215[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3149 -> 536[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3149[label="xuu581 == xuu591",fontsize=16,color="magenta"];3149 -> 3216[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3149 -> 3217[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3150 -> 533[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3150[label="xuu581 == xuu591",fontsize=16,color="magenta"];3150 -> 3218[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3150 -> 3219[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3152 -> 1313[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3152[label="FiniteMap.sizeFM xuu434 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu433",fontsize=16,color="magenta"];3152 -> 3220[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3152 -> 3221[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3151[label="FiniteMap.mkBalBranch6MkBalBranch11 [] xuu41 xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) xuu41 xuu430 xuu431 xuu432 xuu433 xuu434 xuu217",fontsize=16,color="burlywood",shape="triangle"];4603[label="xuu217/False",fontsize=10,color="white",style="solid",shape="box"];3151 -> 4603[label="",style="solid", color="burlywood", weight=9]; 22.90/8.43 4603 -> 3222[label="",style="solid", color="burlywood", weight=3]; 22.90/8.43 4604[label="xuu217/True",fontsize=10,color="white",style="solid",shape="box"];3151 -> 4604[label="",style="solid", color="burlywood", weight=9]; 22.90/8.43 4604 -> 3223[label="",style="solid", color="burlywood", weight=3]; 22.90/8.43 3153[label="xuu414",fontsize=16,color="green",shape="box"];3154[label="FiniteMap.mkBalBranch6MkBalBranch00 [] xuu41 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu43 xuu43 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu410 xuu411 xuu412 xuu413 xuu414 True",fontsize=16,color="black",shape="box"];3154 -> 3224[label="",style="solid", color="black", weight=3]; 22.90/8.43 3155 -> 3433[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3155[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu410 xuu411 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) [] xuu41 xuu43 xuu413) xuu414",fontsize=16,color="magenta"];3155 -> 3459[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3155 -> 3460[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3155 -> 3461[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3155 -> 3462[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3155 -> 3463[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3157[label="xuu293",fontsize=16,color="green",shape="box"];3158[label="FiniteMap.mkBalBranch6MkBalBranch10 (xuu400 : xuu401) xuu41 xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu44 xuu290 xuu291 xuu292 xuu293 xuu294 True",fontsize=16,color="black",shape="box"];3158 -> 3226[label="",style="solid", color="black", weight=3]; 22.90/8.43 3159 -> 3433[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3159[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu290 xuu291 xuu293 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (xuu400 : xuu401) xuu41 xuu294 xuu44)",fontsize=16,color="magenta"];3159 -> 3464[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3159 -> 3465[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3159 -> 3466[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3159 -> 3467[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3159 -> 3468[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3160[label="error []",fontsize=16,color="red",shape="box"];3161 -> 3433[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3161[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu4430 xuu4431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu400 : xuu401) xuu41 xuu29 xuu4433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu440 xuu441 xuu4434 xuu444)",fontsize=16,color="magenta"];3161 -> 3469[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3161 -> 3470[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3161 -> 3471[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3161 -> 3472[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3161 -> 3473[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3164[label="xuu582",fontsize=16,color="green",shape="box"];3165[label="xuu592",fontsize=16,color="green",shape="box"];3166[label="xuu582",fontsize=16,color="green",shape="box"];3167[label="xuu592",fontsize=16,color="green",shape="box"];3168[label="xuu582",fontsize=16,color="green",shape="box"];3169[label="xuu592",fontsize=16,color="green",shape="box"];3170[label="xuu582",fontsize=16,color="green",shape="box"];3171[label="xuu592",fontsize=16,color="green",shape="box"];3172[label="xuu582",fontsize=16,color="green",shape="box"];3173[label="xuu592",fontsize=16,color="green",shape="box"];3174[label="xuu582",fontsize=16,color="green",shape="box"];3175[label="xuu592",fontsize=16,color="green",shape="box"];3176[label="xuu582",fontsize=16,color="green",shape="box"];3177[label="xuu592",fontsize=16,color="green",shape="box"];3178[label="xuu582",fontsize=16,color="green",shape="box"];3179[label="xuu592",fontsize=16,color="green",shape="box"];3180[label="xuu582",fontsize=16,color="green",shape="box"];3181[label="xuu592",fontsize=16,color="green",shape="box"];3182[label="xuu582",fontsize=16,color="green",shape="box"];3183[label="xuu592",fontsize=16,color="green",shape="box"];3184[label="xuu582",fontsize=16,color="green",shape="box"];3185[label="xuu592",fontsize=16,color="green",shape="box"];3186[label="xuu582",fontsize=16,color="green",shape="box"];3187[label="xuu592",fontsize=16,color="green",shape="box"];3188[label="xuu582",fontsize=16,color="green",shape="box"];3189[label="xuu592",fontsize=16,color="green",shape="box"];3190[label="xuu582",fontsize=16,color="green",shape="box"];3191[label="xuu592",fontsize=16,color="green",shape="box"];3192[label="xuu581",fontsize=16,color="green",shape="box"];3193[label="xuu591",fontsize=16,color="green",shape="box"];3194[label="xuu581",fontsize=16,color="green",shape="box"];3195[label="xuu591",fontsize=16,color="green",shape="box"];3196[label="xuu581",fontsize=16,color="green",shape="box"];3197[label="xuu591",fontsize=16,color="green",shape="box"];3198[label="xuu581",fontsize=16,color="green",shape="box"];3199[label="xuu591",fontsize=16,color="green",shape="box"];3200[label="xuu581",fontsize=16,color="green",shape="box"];3201[label="xuu591",fontsize=16,color="green",shape="box"];3202[label="xuu581",fontsize=16,color="green",shape="box"];3203[label="xuu591",fontsize=16,color="green",shape="box"];3204[label="xuu581",fontsize=16,color="green",shape="box"];3205[label="xuu591",fontsize=16,color="green",shape="box"];3206[label="xuu581",fontsize=16,color="green",shape="box"];3207[label="xuu591",fontsize=16,color="green",shape="box"];3208[label="xuu581",fontsize=16,color="green",shape="box"];3209[label="xuu591",fontsize=16,color="green",shape="box"];3210[label="xuu581",fontsize=16,color="green",shape="box"];3211[label="xuu591",fontsize=16,color="green",shape="box"];3212[label="xuu581",fontsize=16,color="green",shape="box"];3213[label="xuu591",fontsize=16,color="green",shape="box"];3214[label="xuu581",fontsize=16,color="green",shape="box"];3215[label="xuu591",fontsize=16,color="green",shape="box"];3216[label="xuu581",fontsize=16,color="green",shape="box"];3217[label="xuu591",fontsize=16,color="green",shape="box"];3218[label="xuu581",fontsize=16,color="green",shape="box"];3219[label="xuu591",fontsize=16,color="green",shape="box"];3220 -> 1744[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3220[label="FiniteMap.sizeFM xuu434",fontsize=16,color="magenta"];3220 -> 3252[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3221 -> 393[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3221[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu433",fontsize=16,color="magenta"];3221 -> 3253[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3221 -> 3254[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3222[label="FiniteMap.mkBalBranch6MkBalBranch11 [] xuu41 xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) xuu41 xuu430 xuu431 xuu432 xuu433 xuu434 False",fontsize=16,color="black",shape="box"];3222 -> 3255[label="",style="solid", color="black", weight=3]; 22.90/8.43 3223[label="FiniteMap.mkBalBranch6MkBalBranch11 [] xuu41 xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) xuu41 xuu430 xuu431 xuu432 xuu433 xuu434 True",fontsize=16,color="black",shape="box"];3223 -> 3256[label="",style="solid", color="black", weight=3]; 22.90/8.43 3224[label="FiniteMap.mkBalBranch6Double_L [] xuu41 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu43 xuu43 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414)",fontsize=16,color="burlywood",shape="box"];4605[label="xuu413/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3224 -> 4605[label="",style="solid", color="burlywood", weight=9]; 22.90/8.43 4605 -> 3257[label="",style="solid", color="burlywood", weight=3]; 22.90/8.43 4606[label="xuu413/FiniteMap.Branch xuu4130 xuu4131 xuu4132 xuu4133 xuu4134",fontsize=10,color="white",style="solid",shape="box"];3224 -> 4606[label="",style="solid", color="burlywood", weight=9]; 22.90/8.43 4606 -> 3258[label="",style="solid", color="burlywood", weight=3]; 22.90/8.43 3459[label="xuu411",fontsize=16,color="green",shape="box"];3460 -> 3433[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3460[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) [] xuu41 xuu43 xuu413",fontsize=16,color="magenta"];3460 -> 3610[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3460 -> 3611[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3460 -> 3612[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3460 -> 3613[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3460 -> 3614[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3461[label="xuu410",fontsize=16,color="green",shape="box"];3462[label="xuu414",fontsize=16,color="green",shape="box"];3463[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];3226[label="FiniteMap.mkBalBranch6Double_R (xuu400 : xuu401) xuu41 xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu44",fontsize=16,color="burlywood",shape="box"];4607[label="xuu294/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3226 -> 4607[label="",style="solid", color="burlywood", weight=9]; 22.90/8.43 4607 -> 3260[label="",style="solid", color="burlywood", weight=3]; 22.90/8.43 4608[label="xuu294/FiniteMap.Branch xuu2940 xuu2941 xuu2942 xuu2943 xuu2944",fontsize=10,color="white",style="solid",shape="box"];3226 -> 4608[label="",style="solid", color="burlywood", weight=9]; 22.90/8.43 4608 -> 3261[label="",style="solid", color="burlywood", weight=3]; 22.90/8.43 3464[label="xuu291",fontsize=16,color="green",shape="box"];3465[label="xuu293",fontsize=16,color="green",shape="box"];3466[label="xuu290",fontsize=16,color="green",shape="box"];3467 -> 3433[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3467[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (xuu400 : xuu401) xuu41 xuu294 xuu44",fontsize=16,color="magenta"];3467 -> 3615[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3467 -> 3616[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3467 -> 3617[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3467 -> 3618[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3467 -> 3619[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3468[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3469[label="xuu4431",fontsize=16,color="green",shape="box"];3470 -> 3433[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3470[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu400 : xuu401) xuu41 xuu29 xuu4433",fontsize=16,color="magenta"];3470 -> 3620[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3470 -> 3621[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3470 -> 3622[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3470 -> 3623[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3470 -> 3624[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3471[label="xuu4430",fontsize=16,color="green",shape="box"];3472 -> 3433[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3472[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu440 xuu441 xuu4434 xuu444",fontsize=16,color="magenta"];3472 -> 3625[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3472 -> 3626[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3472 -> 3627[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3472 -> 3628[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3472 -> 3629[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3473[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3252[label="xuu434",fontsize=16,color="green",shape="box"];3253[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3254 -> 1744[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3254[label="FiniteMap.sizeFM xuu433",fontsize=16,color="magenta"];3254 -> 3298[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3255[label="FiniteMap.mkBalBranch6MkBalBranch10 [] xuu41 xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) xuu41 xuu430 xuu431 xuu432 xuu433 xuu434 otherwise",fontsize=16,color="black",shape="box"];3255 -> 3299[label="",style="solid", color="black", weight=3]; 22.90/8.43 3256[label="FiniteMap.mkBalBranch6Single_R [] xuu41 xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) xuu41",fontsize=16,color="black",shape="box"];3256 -> 3300[label="",style="solid", color="black", weight=3]; 22.90/8.43 3257[label="FiniteMap.mkBalBranch6Double_L [] xuu41 (FiniteMap.Branch xuu410 xuu411 xuu412 FiniteMap.EmptyFM xuu414) xuu43 xuu43 (FiniteMap.Branch xuu410 xuu411 xuu412 FiniteMap.EmptyFM xuu414)",fontsize=16,color="black",shape="box"];3257 -> 3301[label="",style="solid", color="black", weight=3]; 22.90/8.43 3258[label="FiniteMap.mkBalBranch6Double_L [] xuu41 (FiniteMap.Branch xuu410 xuu411 xuu412 (FiniteMap.Branch xuu4130 xuu4131 xuu4132 xuu4133 xuu4134) xuu414) xuu43 xuu43 (FiniteMap.Branch xuu410 xuu411 xuu412 (FiniteMap.Branch xuu4130 xuu4131 xuu4132 xuu4133 xuu4134) xuu414)",fontsize=16,color="black",shape="box"];3258 -> 3302[label="",style="solid", color="black", weight=3]; 22.90/8.43 3610[label="xuu41",fontsize=16,color="green",shape="box"];3611[label="xuu43",fontsize=16,color="green",shape="box"];3612[label="[]",fontsize=16,color="green",shape="box"];3613[label="xuu413",fontsize=16,color="green",shape="box"];3614[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3260[label="FiniteMap.mkBalBranch6Double_R (xuu400 : xuu401) xuu41 xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 FiniteMap.EmptyFM) (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 FiniteMap.EmptyFM) xuu44",fontsize=16,color="black",shape="box"];3260 -> 3305[label="",style="solid", color="black", weight=3]; 22.90/8.43 3261[label="FiniteMap.mkBalBranch6Double_R (xuu400 : xuu401) xuu41 xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 (FiniteMap.Branch xuu2940 xuu2941 xuu2942 xuu2943 xuu2944)) (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 (FiniteMap.Branch xuu2940 xuu2941 xuu2942 xuu2943 xuu2944)) xuu44",fontsize=16,color="black",shape="box"];3261 -> 3306[label="",style="solid", color="black", weight=3]; 22.90/8.43 3615[label="xuu41",fontsize=16,color="green",shape="box"];3616[label="xuu294",fontsize=16,color="green",shape="box"];3617[label="xuu400 : xuu401",fontsize=16,color="green",shape="box"];3618[label="xuu44",fontsize=16,color="green",shape="box"];3619[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3620[label="xuu41",fontsize=16,color="green",shape="box"];3621[label="xuu29",fontsize=16,color="green",shape="box"];3622[label="xuu400 : xuu401",fontsize=16,color="green",shape="box"];3623[label="xuu4433",fontsize=16,color="green",shape="box"];3624[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];3625[label="xuu441",fontsize=16,color="green",shape="box"];3626[label="xuu4434",fontsize=16,color="green",shape="box"];3627[label="xuu440",fontsize=16,color="green",shape="box"];3628[label="xuu444",fontsize=16,color="green",shape="box"];3629[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3298[label="xuu433",fontsize=16,color="green",shape="box"];3299[label="FiniteMap.mkBalBranch6MkBalBranch10 [] xuu41 xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) xuu41 xuu430 xuu431 xuu432 xuu433 xuu434 True",fontsize=16,color="black",shape="box"];3299 -> 3311[label="",style="solid", color="black", weight=3]; 22.90/8.43 3300 -> 3433[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3300[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu430 xuu431 xuu433 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) [] xuu41 xuu434 xuu41)",fontsize=16,color="magenta"];3300 -> 3504[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3300 -> 3505[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3300 -> 3506[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3300 -> 3507[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3300 -> 3508[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3301[label="error []",fontsize=16,color="red",shape="box"];3302 -> 3433[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3302[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu4130 xuu4131 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) [] xuu41 xuu43 xuu4133) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu410 xuu411 xuu4134 xuu414)",fontsize=16,color="magenta"];3302 -> 3509[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3302 -> 3510[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3302 -> 3511[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3302 -> 3512[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3302 -> 3513[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3305[label="error []",fontsize=16,color="red",shape="box"];3306 -> 3433[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3306[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu2940 xuu2941 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu290 xuu291 xuu293 xuu2943) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (xuu400 : xuu401) xuu41 xuu2944 xuu44)",fontsize=16,color="magenta"];3306 -> 3519[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3306 -> 3520[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3306 -> 3521[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3306 -> 3522[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3306 -> 3523[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3311[label="FiniteMap.mkBalBranch6Double_R [] xuu41 xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) xuu41",fontsize=16,color="burlywood",shape="box"];4609[label="xuu434/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3311 -> 4609[label="",style="solid", color="burlywood", weight=9]; 22.90/8.43 4609 -> 3355[label="",style="solid", color="burlywood", weight=3]; 22.90/8.43 4610[label="xuu434/FiniteMap.Branch xuu4340 xuu4341 xuu4342 xuu4343 xuu4344",fontsize=10,color="white",style="solid",shape="box"];3311 -> 4610[label="",style="solid", color="burlywood", weight=9]; 22.90/8.43 4610 -> 3356[label="",style="solid", color="burlywood", weight=3]; 22.90/8.43 3504[label="xuu431",fontsize=16,color="green",shape="box"];3505[label="xuu433",fontsize=16,color="green",shape="box"];3506[label="xuu430",fontsize=16,color="green",shape="box"];3507 -> 3433[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3507[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) [] xuu41 xuu434 xuu41",fontsize=16,color="magenta"];3507 -> 3630[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3507 -> 3631[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3507 -> 3632[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3507 -> 3633[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3507 -> 3634[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3508[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3509[label="xuu4131",fontsize=16,color="green",shape="box"];3510 -> 3433[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3510[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) [] xuu41 xuu43 xuu4133",fontsize=16,color="magenta"];3510 -> 3635[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3510 -> 3636[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3510 -> 3637[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3510 -> 3638[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3510 -> 3639[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3511[label="xuu4130",fontsize=16,color="green",shape="box"];3512 -> 3433[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3512[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu410 xuu411 xuu4134 xuu414",fontsize=16,color="magenta"];3512 -> 3640[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3512 -> 3641[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3512 -> 3642[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3512 -> 3643[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3512 -> 3644[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3513[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3519[label="xuu2941",fontsize=16,color="green",shape="box"];3520 -> 3433[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3520[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu290 xuu291 xuu293 xuu2943",fontsize=16,color="magenta"];3520 -> 3645[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3520 -> 3646[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3520 -> 3647[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3520 -> 3648[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3520 -> 3649[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3521[label="xuu2940",fontsize=16,color="green",shape="box"];3522 -> 3433[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3522[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (xuu400 : xuu401) xuu41 xuu2944 xuu44",fontsize=16,color="magenta"];3522 -> 3650[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3522 -> 3651[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3522 -> 3652[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3522 -> 3653[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3522 -> 3654[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3523[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3355[label="FiniteMap.mkBalBranch6Double_R [] xuu41 xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 FiniteMap.EmptyFM) (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 FiniteMap.EmptyFM) xuu41",fontsize=16,color="black",shape="box"];3355 -> 3655[label="",style="solid", color="black", weight=3]; 22.90/8.43 3356[label="FiniteMap.mkBalBranch6Double_R [] xuu41 xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 (FiniteMap.Branch xuu4340 xuu4341 xuu4342 xuu4343 xuu4344)) (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 (FiniteMap.Branch xuu4340 xuu4341 xuu4342 xuu4343 xuu4344)) xuu41",fontsize=16,color="black",shape="box"];3356 -> 3656[label="",style="solid", color="black", weight=3]; 22.90/8.43 3630[label="xuu41",fontsize=16,color="green",shape="box"];3631[label="xuu434",fontsize=16,color="green",shape="box"];3632[label="[]",fontsize=16,color="green",shape="box"];3633[label="xuu41",fontsize=16,color="green",shape="box"];3634[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3635[label="xuu41",fontsize=16,color="green",shape="box"];3636[label="xuu43",fontsize=16,color="green",shape="box"];3637[label="[]",fontsize=16,color="green",shape="box"];3638[label="xuu4133",fontsize=16,color="green",shape="box"];3639[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];3640[label="xuu411",fontsize=16,color="green",shape="box"];3641[label="xuu4134",fontsize=16,color="green",shape="box"];3642[label="xuu410",fontsize=16,color="green",shape="box"];3643[label="xuu414",fontsize=16,color="green",shape="box"];3644[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3645[label="xuu291",fontsize=16,color="green",shape="box"];3646[label="xuu293",fontsize=16,color="green",shape="box"];3647[label="xuu290",fontsize=16,color="green",shape="box"];3648[label="xuu2943",fontsize=16,color="green",shape="box"];3649[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3650[label="xuu41",fontsize=16,color="green",shape="box"];3651[label="xuu2944",fontsize=16,color="green",shape="box"];3652[label="xuu400 : xuu401",fontsize=16,color="green",shape="box"];3653[label="xuu44",fontsize=16,color="green",shape="box"];3654[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3655[label="error []",fontsize=16,color="red",shape="box"];3656 -> 3433[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3656[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu4340 xuu4341 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu430 xuu431 xuu433 xuu4343) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) [] xuu41 xuu4344 xuu41)",fontsize=16,color="magenta"];3656 -> 3658[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3656 -> 3659[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3656 -> 3660[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3656 -> 3661[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3656 -> 3662[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3658[label="xuu4341",fontsize=16,color="green",shape="box"];3659 -> 3433[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3659[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu430 xuu431 xuu433 xuu4343",fontsize=16,color="magenta"];3659 -> 3664[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3659 -> 3665[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3659 -> 3666[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3659 -> 3667[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3659 -> 3668[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3660[label="xuu4340",fontsize=16,color="green",shape="box"];3661 -> 3433[label="",style="dashed", color="red", weight=0]; 22.90/8.43 3661[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) [] xuu41 xuu4344 xuu41",fontsize=16,color="magenta"];3661 -> 3669[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3661 -> 3670[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3661 -> 3671[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3661 -> 3672[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3661 -> 3673[label="",style="dashed", color="magenta", weight=3]; 22.90/8.43 3662[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3664[label="xuu431",fontsize=16,color="green",shape="box"];3665[label="xuu433",fontsize=16,color="green",shape="box"];3666[label="xuu430",fontsize=16,color="green",shape="box"];3667[label="xuu4343",fontsize=16,color="green",shape="box"];3668[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3669[label="xuu41",fontsize=16,color="green",shape="box"];3670[label="xuu4344",fontsize=16,color="green",shape="box"];3671[label="[]",fontsize=16,color="green",shape="box"];3672[label="xuu41",fontsize=16,color="green",shape="box"];3673[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];} 22.90/8.43 22.90/8.43 ---------------------------------------- 22.90/8.43 22.90/8.43 (16) 22.90/8.43 Complex Obligation (AND) 22.90/8.43 22.90/8.43 ---------------------------------------- 22.90/8.43 22.90/8.43 (17) 22.90/8.43 Obligation: 22.90/8.43 Q DP problem: 22.90/8.43 The TRS P consists of the following rules: 22.90/8.43 22.90/8.43 new_primCmpNat(Succ(xuu500000), Succ(xuu40000)) -> new_primCmpNat(xuu500000, xuu40000) 22.90/8.43 22.90/8.43 R is empty. 22.90/8.43 Q is empty. 22.90/8.43 We have to consider all minimal (P,Q,R)-chains. 22.90/8.43 ---------------------------------------- 22.90/8.43 22.90/8.43 (18) QDPSizeChangeProof (EQUIVALENT) 22.90/8.43 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. 22.90/8.43 22.90/8.43 From the DPs we obtained the following set of size-change graphs: 22.90/8.43 *new_primCmpNat(Succ(xuu500000), Succ(xuu40000)) -> new_primCmpNat(xuu500000, xuu40000) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2 22.90/8.43 22.90/8.43 22.90/8.43 ---------------------------------------- 22.90/8.43 22.90/8.43 (19) 22.90/8.43 YES 22.90/8.43 22.90/8.43 ---------------------------------------- 22.90/8.43 22.90/8.43 (20) 22.90/8.43 Obligation: 22.90/8.43 Q DP problem: 22.90/8.43 The TRS P consists of the following rules: 22.90/8.43 22.90/8.43 new_esEs(Right(xuu500000), Right(xuu40000), cb, app(app(ty_@2, ce), cf)) -> new_esEs0(xuu500000, xuu40000, ce, cf) 22.90/8.43 new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), app(ty_Maybe, fd), fa) -> new_esEs1(xuu500000, xuu40000, fd) 22.90/8.43 new_esEs2(:(xuu500000, xuu500001), :(xuu40000, xuu40001), hc) -> new_esEs2(xuu500001, xuu40001, hc) 22.90/8.43 new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), de, app(ty_Maybe, eb)) -> new_esEs1(xuu500001, xuu40001, eb) 22.90/8.43 new_esEs2(:(xuu500000, xuu500001), :(xuu40000, xuu40001), app(app(ty_@2, hf), hg)) -> new_esEs0(xuu500000, xuu40000, hf, hg) 22.90/8.43 new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), de, app(app(ty_Either, df), dg)) -> new_esEs(xuu500001, xuu40001, df, dg) 22.90/8.43 new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), app(app(app(ty_@3, bdh), bea), beb), baf, bcb) -> new_esEs3(xuu500000, xuu40000, bdh, bea, beb) 22.90/8.43 new_esEs(Right(xuu500000), Right(xuu40000), cb, app(app(app(ty_@3, db), dc), dd)) -> new_esEs3(xuu500000, xuu40000, db, dc, dd) 22.90/8.43 new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), bae, baf, app(app(ty_Either, bag), bah)) -> new_esEs(xuu500002, xuu40002, bag, bah) 22.90/8.43 new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), de, app(app(ty_@2, dh), ea)) -> new_esEs0(xuu500001, xuu40001, dh, ea) 22.90/8.43 new_esEs1(Just(xuu500000), Just(xuu40000), app(app(ty_Either, gb), gc)) -> new_esEs(xuu500000, xuu40000, gb, gc) 22.90/8.43 new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), app(ty_[], bdg), baf, bcb) -> new_esEs2(xuu500000, xuu40000, bdg) 22.90/8.43 new_esEs2(:(xuu500000, xuu500001), :(xuu40000, xuu40001), app(app(ty_Either, hd), he)) -> new_esEs(xuu500000, xuu40000, hd, he) 22.90/8.43 new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(xuu500002, xuu40002, bbe, bbf, bbg) 22.90/8.43 new_esEs(Right(xuu500000), Right(xuu40000), cb, app(ty_Maybe, cg)) -> new_esEs1(xuu500000, xuu40000, cg) 22.90/8.43 new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), app(app(app(ty_@3, fg), fh), ga), fa) -> new_esEs3(xuu500000, xuu40000, fg, fh, ga) 22.90/8.43 new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(xuu500001, xuu40001, ed, ee, ef) 22.90/8.43 new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), app(app(ty_Either, eg), eh), fa) -> new_esEs(xuu500000, xuu40000, eg, eh) 22.90/8.43 new_esEs(Right(xuu500000), Right(xuu40000), cb, app(app(ty_Either, cc), cd)) -> new_esEs(xuu500000, xuu40000, cc, cd) 22.90/8.43 new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), bae, app(app(ty_@2, bcc), bcd), bcb) -> new_esEs0(xuu500001, xuu40001, bcc, bcd) 22.90/8.43 new_esEs(Right(xuu500000), Right(xuu40000), cb, app(ty_[], da)) -> new_esEs2(xuu500000, xuu40000, da) 22.90/8.43 new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), bae, app(ty_[], bcf), bcb) -> new_esEs2(xuu500001, xuu40001, bcf) 22.90/8.43 new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), app(app(ty_@2, bdd), bde), baf, bcb) -> new_esEs0(xuu500000, xuu40000, bdd, bde) 22.90/8.43 new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), app(ty_[], ff), fa) -> new_esEs2(xuu500000, xuu40000, ff) 22.90/8.43 new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), bae, app(app(app(ty_@3, bcg), bch), bda), bcb) -> new_esEs3(xuu500001, xuu40001, bcg, bch, bda) 22.90/8.43 new_esEs1(Just(xuu500000), Just(xuu40000), app(app(app(ty_@3, gh), ha), hb)) -> new_esEs3(xuu500000, xuu40000, gh, ha, hb) 22.90/8.43 new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), bae, baf, app(ty_[], bbd)) -> new_esEs2(xuu500002, xuu40002, bbd) 22.90/8.43 new_esEs(Left(xuu500000), Left(xuu40000), app(app(ty_Either, h), ba), bb) -> new_esEs(xuu500000, xuu40000, h, ba) 22.90/8.43 new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), de, app(ty_[], ec)) -> new_esEs2(xuu500001, xuu40001, ec) 22.90/8.43 new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), bae, baf, app(app(ty_@2, bba), bbb)) -> new_esEs0(xuu500002, xuu40002, bba, bbb) 22.90/8.43 new_esEs1(Just(xuu500000), Just(xuu40000), app(ty_[], gg)) -> new_esEs2(xuu500000, xuu40000, gg) 22.90/8.43 new_esEs1(Just(xuu500000), Just(xuu40000), app(app(ty_@2, gd), ge)) -> new_esEs0(xuu500000, xuu40000, gd, ge) 22.90/8.43 new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), app(ty_Maybe, bdf), baf, bcb) -> new_esEs1(xuu500000, xuu40000, bdf) 22.90/8.43 new_esEs2(:(xuu500000, xuu500001), :(xuu40000, xuu40001), app(ty_[], baa)) -> new_esEs2(xuu500000, xuu40000, baa) 22.90/8.43 new_esEs(Left(xuu500000), Left(xuu40000), app(ty_[], bf), bb) -> new_esEs2(xuu500000, xuu40000, bf) 22.90/8.43 new_esEs(Left(xuu500000), Left(xuu40000), app(ty_Maybe, be), bb) -> new_esEs1(xuu500000, xuu40000, be) 22.90/8.43 new_esEs(Left(xuu500000), Left(xuu40000), app(app(app(ty_@3, bg), bh), ca), bb) -> new_esEs3(xuu500000, xuu40000, bg, bh, ca) 22.90/8.43 new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), bae, app(ty_Maybe, bce), bcb) -> new_esEs1(xuu500001, xuu40001, bce) 22.90/8.43 new_esEs(Left(xuu500000), Left(xuu40000), app(app(ty_@2, bc), bd), bb) -> new_esEs0(xuu500000, xuu40000, bc, bd) 22.90/8.43 new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), app(app(ty_Either, bdb), bdc), baf, bcb) -> new_esEs(xuu500000, xuu40000, bdb, bdc) 22.90/8.43 new_esEs1(Just(xuu500000), Just(xuu40000), app(ty_Maybe, gf)) -> new_esEs1(xuu500000, xuu40000, gf) 22.90/8.43 new_esEs2(:(xuu500000, xuu500001), :(xuu40000, xuu40001), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(xuu500000, xuu40000, bab, bac, bad) 22.90/8.43 new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), bae, baf, app(ty_Maybe, bbc)) -> new_esEs1(xuu500002, xuu40002, bbc) 22.90/8.43 new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), app(app(ty_@2, fb), fc), fa) -> new_esEs0(xuu500000, xuu40000, fb, fc) 22.90/8.43 new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), bae, app(app(ty_Either, bbh), bca), bcb) -> new_esEs(xuu500001, xuu40001, bbh, bca) 22.90/8.43 new_esEs2(:(xuu500000, xuu500001), :(xuu40000, xuu40001), app(ty_Maybe, hh)) -> new_esEs1(xuu500000, xuu40000, hh) 22.90/8.43 22.90/8.43 R is empty. 22.90/8.43 Q is empty. 22.90/8.43 We have to consider all minimal (P,Q,R)-chains. 22.90/8.43 ---------------------------------------- 22.90/8.43 22.90/8.43 (21) QDPSizeChangeProof (EQUIVALENT) 22.90/8.43 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. 22.90/8.43 22.90/8.43 From the DPs we obtained the following set of size-change graphs: 22.90/8.43 *new_esEs1(Just(xuu500000), Just(xuu40000), app(app(ty_Either, gb), gc)) -> new_esEs(xuu500000, xuu40000, gb, gc) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs1(Just(xuu500000), Just(xuu40000), app(app(ty_@2, gd), ge)) -> new_esEs0(xuu500000, xuu40000, gd, ge) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs2(:(xuu500000, xuu500001), :(xuu40000, xuu40001), app(app(ty_Either, hd), he)) -> new_esEs(xuu500000, xuu40000, hd, he) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs1(Just(xuu500000), Just(xuu40000), app(ty_[], gg)) -> new_esEs2(xuu500000, xuu40000, gg) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs2(:(xuu500000, xuu500001), :(xuu40000, xuu40001), app(app(ty_@2, hf), hg)) -> new_esEs0(xuu500000, xuu40000, hf, hg) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs1(Just(xuu500000), Just(xuu40000), app(app(app(ty_@3, gh), ha), hb)) -> new_esEs3(xuu500000, xuu40000, gh, ha, hb) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs1(Just(xuu500000), Just(xuu40000), app(ty_Maybe, gf)) -> new_esEs1(xuu500000, xuu40000, gf) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs2(:(xuu500000, xuu500001), :(xuu40000, xuu40001), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(xuu500000, xuu40000, bab, bac, bad) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs2(:(xuu500000, xuu500001), :(xuu40000, xuu40001), app(ty_Maybe, hh)) -> new_esEs1(xuu500000, xuu40000, hh) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), de, app(app(ty_Either, df), dg)) -> new_esEs(xuu500001, xuu40001, df, dg) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), app(app(ty_Either, eg), eh), fa) -> new_esEs(xuu500000, xuu40000, eg, eh) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), de, app(app(ty_@2, dh), ea)) -> new_esEs0(xuu500001, xuu40001, dh, ea) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), app(app(ty_@2, fb), fc), fa) -> new_esEs0(xuu500000, xuu40000, fb, fc) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), app(ty_[], ff), fa) -> new_esEs2(xuu500000, xuu40000, ff) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), de, app(ty_[], ec)) -> new_esEs2(xuu500001, xuu40001, ec) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), app(app(app(ty_@3, fg), fh), ga), fa) -> new_esEs3(xuu500000, xuu40000, fg, fh, ga) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(xuu500001, xuu40001, ed, ee, ef) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), app(ty_Maybe, fd), fa) -> new_esEs1(xuu500000, xuu40000, fd) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), de, app(ty_Maybe, eb)) -> new_esEs1(xuu500001, xuu40001, eb) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs(Right(xuu500000), Right(xuu40000), cb, app(app(ty_Either, cc), cd)) -> new_esEs(xuu500000, xuu40000, cc, cd) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs(Left(xuu500000), Left(xuu40000), app(app(ty_Either, h), ba), bb) -> new_esEs(xuu500000, xuu40000, h, ba) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), bae, baf, app(app(ty_Either, bag), bah)) -> new_esEs(xuu500002, xuu40002, bag, bah) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), app(app(ty_Either, bdb), bdc), baf, bcb) -> new_esEs(xuu500000, xuu40000, bdb, bdc) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), bae, app(app(ty_Either, bbh), bca), bcb) -> new_esEs(xuu500001, xuu40001, bbh, bca) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs(Right(xuu500000), Right(xuu40000), cb, app(app(ty_@2, ce), cf)) -> new_esEs0(xuu500000, xuu40000, ce, cf) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs(Left(xuu500000), Left(xuu40000), app(app(ty_@2, bc), bd), bb) -> new_esEs0(xuu500000, xuu40000, bc, bd) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), bae, app(app(ty_@2, bcc), bcd), bcb) -> new_esEs0(xuu500001, xuu40001, bcc, bcd) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), app(app(ty_@2, bdd), bde), baf, bcb) -> new_esEs0(xuu500000, xuu40000, bdd, bde) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), bae, baf, app(app(ty_@2, bba), bbb)) -> new_esEs0(xuu500002, xuu40002, bba, bbb) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs2(:(xuu500000, xuu500001), :(xuu40000, xuu40001), hc) -> new_esEs2(xuu500001, xuu40001, hc) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs2(:(xuu500000, xuu500001), :(xuu40000, xuu40001), app(ty_[], baa)) -> new_esEs2(xuu500000, xuu40000, baa) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs(Right(xuu500000), Right(xuu40000), cb, app(ty_[], da)) -> new_esEs2(xuu500000, xuu40000, da) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs(Left(xuu500000), Left(xuu40000), app(ty_[], bf), bb) -> new_esEs2(xuu500000, xuu40000, bf) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), app(ty_[], bdg), baf, bcb) -> new_esEs2(xuu500000, xuu40000, bdg) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), bae, app(ty_[], bcf), bcb) -> new_esEs2(xuu500001, xuu40001, bcf) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), bae, baf, app(ty_[], bbd)) -> new_esEs2(xuu500002, xuu40002, bbd) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs(Right(xuu500000), Right(xuu40000), cb, app(app(app(ty_@3, db), dc), dd)) -> new_esEs3(xuu500000, xuu40000, db, dc, dd) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs(Left(xuu500000), Left(xuu40000), app(app(app(ty_@3, bg), bh), ca), bb) -> new_esEs3(xuu500000, xuu40000, bg, bh, ca) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs(Right(xuu500000), Right(xuu40000), cb, app(ty_Maybe, cg)) -> new_esEs1(xuu500000, xuu40000, cg) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs(Left(xuu500000), Left(xuu40000), app(ty_Maybe, be), bb) -> new_esEs1(xuu500000, xuu40000, be) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), app(app(app(ty_@3, bdh), bea), beb), baf, bcb) -> new_esEs3(xuu500000, xuu40000, bdh, bea, beb) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(xuu500002, xuu40002, bbe, bbf, bbg) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), bae, app(app(app(ty_@3, bcg), bch), bda), bcb) -> new_esEs3(xuu500001, xuu40001, bcg, bch, bda) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), app(ty_Maybe, bdf), baf, bcb) -> new_esEs1(xuu500000, xuu40000, bdf) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), bae, app(ty_Maybe, bce), bcb) -> new_esEs1(xuu500001, xuu40001, bce) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.43 22.90/8.43 22.90/8.43 *new_esEs3(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), bae, baf, app(ty_Maybe, bbc)) -> new_esEs1(xuu500002, xuu40002, bbc) 22.90/8.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 22.90/8.43 22.90/8.43 22.90/8.43 ---------------------------------------- 22.90/8.43 22.90/8.43 (22) 22.90/8.43 YES 22.90/8.43 22.90/8.43 ---------------------------------------- 22.90/8.43 22.90/8.43 (23) 22.90/8.43 Obligation: 22.90/8.43 Q DP problem: 22.90/8.43 The TRS P consists of the following rules: 22.90/8.43 22.90/8.43 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, bgf, app(ty_[], cbg)) -> new_ltEs2(xuu71, xuu74, cbg) 22.90/8.43 new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(app(app(ty_@3, bea), beb), bec)), bdg)) -> new_ltEs1(xuu580, xuu590, bea, beb, bec) 22.90/8.43 new_compare4(Right(xuu50000), Right(xuu4000), ccd, cce) -> new_compare23(xuu50000, xuu4000, new_esEs11(xuu50000, xuu4000, cce), ccd, cce) 22.90/8.43 new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(ty_[], eg)), eb)) -> new_lt2(xuu580, xuu590, eg) 22.90/8.43 new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(app(app(ty_@3, bf), bg), bh), bd) -> new_compare1(xuu99, xuu101, bf, bg, bh) 22.90/8.43 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, app(ty_[], caf), bgg) -> new_lt2(xuu70, xuu73, caf) 22.90/8.43 new_primCompAux(xuu5000, xuu400, xuu5001, xuu401, ccc) -> new_primCompAux0(xuu5001, xuu401, new_compare5(xuu5000, xuu400, ccc), app(ty_[], ccc)) 22.90/8.43 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(app(ty_Either, bag), bah)), hh), baa)) -> new_lt3(xuu580, xuu590, bag, bah) 22.90/8.43 new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(ty_[], bed)), bdg)) -> new_ltEs2(xuu580, xuu590, bed) 22.90/8.43 new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(ty_[], ca), bd) -> new_compare3(xuu99, xuu101, ca) 22.90/8.43 new_ltEs0(Just(xuu580), Just(xuu590), app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs1(xuu580, xuu590, gh, ha, hb) 22.90/8.43 new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(ty_Maybe, gg))) -> new_ltEs0(xuu580, xuu590, gg) 22.90/8.43 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, app(app(app(ty_@3, bbe), bbf), bbg), baa) -> new_lt1(xuu581, xuu591, bbe, bbf, bbg) 22.90/8.43 new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(app(ty_Either, bee), bef)), bdg)) -> new_ltEs3(xuu580, xuu590, bee, bef) 22.90/8.43 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), app(app(app(ty_@3, bbe), bbf), bbg)), baa)) -> new_lt1(xuu581, xuu591, bbe, bbf, bbg) 22.90/8.43 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, bgf, app(ty_Maybe, cbc)) -> new_ltEs0(xuu71, xuu74, cbc) 22.90/8.43 new_ltEs2(xuu58, xuu59, bdd) -> new_compare3(xuu58, xuu59, bdd) 22.90/8.43 new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), fb, app(app(ty_Either, gc), gd)) -> new_ltEs3(xuu581, xuu591, gc, gd) 22.90/8.43 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, app(ty_[], bbh), baa) -> new_lt2(xuu581, xuu591, bbh) 22.90/8.43 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(app(app(ty_@3, bac), bad), bae)), hh), baa)) -> new_lt1(xuu580, xuu590, bac, bad, bae) 22.90/8.43 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(app(ty_@2, hf), hg), hh, baa) -> new_lt(xuu580, xuu590, hf, hg) 22.90/8.43 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(ty_[], baf)), hh), baa)) -> new_lt2(xuu580, xuu590, baf) 22.90/8.43 new_compare(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), h, ba) -> new_compare2(xuu50000, xuu50001, xuu4000, xuu4001, new_asAs(new_esEs5(xuu50000, xuu4000, h), new_esEs4(xuu50001, xuu4001, ba)), h, ba) 22.90/8.43 new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), fb, app(ty_Maybe, ff)) -> new_ltEs0(xuu581, xuu591, ff) 22.90/8.43 new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, fb), app(app(app(ty_@3, fg), fh), ga))) -> new_ltEs1(xuu581, xuu591, fg, fh, ga) 22.90/8.43 new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, fb), app(ty_[], gb))) -> new_ltEs2(xuu581, xuu591, gb) 22.90/8.43 new_compare0(Just(xuu50000), Just(xuu4000), dg) -> new_compare20(xuu50000, xuu4000, new_esEs6(xuu50000, xuu4000, dg), dg) 22.90/8.43 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), hh), app(ty_[], bda))) -> new_ltEs2(xuu582, xuu592, bda) 22.90/8.43 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, hh, app(ty_[], bda)) -> new_ltEs2(xuu582, xuu592, bda) 22.90/8.43 new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), fb, app(app(app(ty_@3, fg), fh), ga)) -> new_ltEs1(xuu581, xuu591, fg, fh, ga) 22.90/8.43 new_compare2(xuu99, xuu100, xuu101, xuu102, False, cd, app(app(app(ty_@3, da), db), dc)) -> new_ltEs1(xuu100, xuu102, da, db, dc) 22.90/8.43 new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(app(app(ty_@3, gh), ha), hb))) -> new_ltEs1(xuu580, xuu590, gh, ha, hb) 22.90/8.43 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), app(ty_[], bbh)), baa)) -> new_lt2(xuu581, xuu591, bbh) 22.90/8.43 new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, beg), app(app(ty_@2, beh), bfa))) -> new_ltEs(xuu580, xuu590, beh, bfa) 22.90/8.43 new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(app(app(ty_@3, ed), ee), ef)), eb)) -> new_lt1(xuu580, xuu590, ed, ee, ef) 22.90/8.43 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, bgf, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_ltEs1(xuu71, xuu74, cbd, cbe, cbf) 22.90/8.43 new_primCompAux0(xuu37, xuu38, EQ, app(app(ty_@2, ccf), ccg)) -> new_compare(xuu37, xuu38, ccf, ccg) 22.90/8.43 new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(ty_Maybe, bdh)), bdg)) -> new_ltEs0(xuu580, xuu590, bdh) 22.90/8.43 new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(app(ty_@2, dh), ea)), eb)) -> new_lt(xuu580, xuu590, dh, ea) 22.90/8.43 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, app(app(ty_Either, bca), bcb), baa) -> new_lt3(xuu581, xuu591, bca, bcb) 22.90/8.43 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(ty_Maybe, bgh), bgf, bgg) -> new_lt0(xuu69, xuu72, bgh) 22.90/8.43 new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(app(ty_Either, hd), he))) -> new_ltEs3(xuu580, xuu590, hd, he) 22.90/8.43 new_ltEs0(Just(xuu580), Just(xuu590), app(ty_Maybe, gg)) -> new_ltEs0(xuu580, xuu590, gg) 22.90/8.43 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, app(app(ty_@2, bhh), caa), bgg) -> new_lt(xuu70, xuu73, bhh, caa) 22.90/8.43 new_ltEs3(Right(xuu580), Right(xuu590), beg, app(app(ty_@2, beh), bfa)) -> new_ltEs(xuu580, xuu590, beh, bfa) 22.90/8.43 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, bgf, app(app(ty_@2, cba), cbb)) -> new_ltEs(xuu71, xuu74, cba, cbb) 22.90/8.43 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), hh), app(app(ty_Either, bdb), bdc))) -> new_ltEs3(xuu582, xuu592, bdb, bdc) 22.90/8.43 new_lt2(xuu99, xuu101, ca) -> new_compare3(xuu99, xuu101, ca) 22.90/8.43 new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), fb, app(app(ty_@2, fc), fd)) -> new_ltEs(xuu581, xuu591, fc, fd) 22.90/8.43 new_primCompAux(Right(xuu50000), Right(xuu4000), xuu5001, xuu401, app(app(ty_Either, ccd), cce)) -> new_compare23(xuu50000, xuu4000, new_esEs11(xuu50000, xuu4000, cce), ccd, cce) 22.90/8.43 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(app(app(ty_@3, bac), bad), bae), hh, baa) -> new_lt1(xuu580, xuu590, bac, bad, bae) 22.90/8.43 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(app(ty_@2, bgd), bge), bgf, bgg) -> new_lt(xuu69, xuu72, bgd, bge) 22.90/8.43 new_primCompAux0(xuu37, xuu38, EQ, app(ty_Maybe, cch)) -> new_compare0(xuu37, xuu38, cch) 22.90/8.43 new_compare23(xuu87, xuu88, False, cfa, app(app(ty_@2, cfb), cfc)) -> new_ltEs(xuu87, xuu88, cfb, cfc) 22.90/8.43 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(app(app(ty_@3, bha), bhb), bhc), bgf, bgg) -> new_lt1(xuu69, xuu72, bha, bhb, bhc) 22.90/8.43 new_compare20(xuu58, xuu59, False, app(ty_[], bdd)) -> new_compare3(xuu58, xuu59, bdd) 22.90/8.43 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, hh, app(app(ty_@2, bcc), bcd)) -> new_ltEs(xuu582, xuu592, bcc, bcd) 22.90/8.43 new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, beg), app(ty_[], bff))) -> new_ltEs2(xuu580, xuu590, bff) 22.90/8.43 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(app(ty_Either, bag), bah), hh, baa) -> new_lt3(xuu580, xuu590, bag, bah) 22.90/8.43 new_compare1(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bga, bgb, bgc) -> new_compare21(xuu50000, xuu50001, xuu50002, xuu4000, xuu4001, xuu4002, new_asAs(new_esEs9(xuu50000, xuu4000, bga), new_asAs(new_esEs8(xuu50001, xuu4001, bgb), new_esEs7(xuu50002, xuu4002, bgc))), bga, bgb, bgc) 22.90/8.43 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, app(app(ty_@2, bbb), bbc), baa) -> new_lt(xuu581, xuu591, bbb, bbc) 22.90/8.43 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), hh), app(ty_Maybe, bce))) -> new_ltEs0(xuu582, xuu592, bce) 22.90/8.43 new_ltEs3(Left(xuu580), Left(xuu590), app(app(ty_@2, bde), bdf), bdg) -> new_ltEs(xuu580, xuu590, bde, bdf) 22.90/8.43 new_compare3(:(xuu50000, xuu50001), :(xuu4000, xuu4001), ccb) -> new_primCompAux(xuu50000, xuu4000, xuu50001, xuu4001, ccb) 22.90/8.43 new_ltEs3(Right(xuu580), Right(xuu590), beg, app(ty_[], bff)) -> new_ltEs2(xuu580, xuu590, bff) 22.90/8.43 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(ty_Maybe, bab)), hh), baa)) -> new_lt0(xuu580, xuu590, bab) 22.90/8.43 new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(app(ty_@2, bde), bdf)), bdg)) -> new_ltEs(xuu580, xuu590, bde, bdf) 22.90/8.43 new_ltEs3(Left(xuu580), Left(xuu590), app(app(ty_Either, bee), bef), bdg) -> new_ltEs3(xuu580, xuu590, bee, bef) 22.90/8.43 new_ltEs0(Just(xuu580), Just(xuu590), app(app(ty_@2, ge), gf)) -> new_ltEs(xuu580, xuu590, ge, gf) 22.90/8.43 new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, beg), app(ty_Maybe, bfb))) -> new_ltEs0(xuu580, xuu590, bfb) 22.90/8.43 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), hh), app(app(ty_@2, bcc), bcd))) -> new_ltEs(xuu582, xuu592, bcc, bcd) 22.90/8.43 new_compare22(xuu80, xuu81, False, app(app(app(ty_@3, cec), ced), cee), cea) -> new_ltEs1(xuu80, xuu81, cec, ced, cee) 22.90/8.43 new_ltEs0(Just(xuu580), Just(xuu590), app(app(ty_Either, hd), he)) -> new_ltEs3(xuu580, xuu590, hd, he) 22.90/8.43 new_compare2(xuu99, xuu100, xuu101, xuu102, False, cd, app(ty_[], dd)) -> new_ltEs2(xuu100, xuu102, dd) 22.90/8.43 new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(ty_[], hc))) -> new_ltEs2(xuu580, xuu590, hc) 22.90/8.43 new_lt1(xuu99, xuu101, bf, bg, bh) -> new_compare1(xuu99, xuu101, bf, bg, bh) 22.90/8.43 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(ty_[], bhd), bgf, bgg) -> new_lt2(xuu69, xuu72, bhd) 22.90/8.43 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(app(ty_Either, bhe), bhf), bgf, bgg) -> new_lt3(xuu69, xuu72, bhe, bhf) 22.90/8.43 new_compare23(xuu87, xuu88, False, cfa, app(ty_Maybe, cfd)) -> new_ltEs0(xuu87, xuu88, cfd) 22.90/8.43 new_compare23(xuu87, xuu88, False, cfa, app(ty_[], cfh)) -> new_ltEs2(xuu87, xuu88, cfh) 22.90/8.43 new_primCompAux0(xuu37, xuu38, EQ, app(ty_[], cdd)) -> new_compare3(xuu37, xuu38, cdd) 22.90/8.43 new_compare23(xuu87, xuu88, False, cfa, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs1(xuu87, xuu88, cfe, cff, cfg) 22.90/8.43 new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(app(ty_@2, dh), ea), eb) -> new_lt(xuu580, xuu590, dh, ea) 22.90/8.43 new_compare22(xuu80, xuu81, False, app(ty_Maybe, ceb), cea) -> new_ltEs0(xuu80, xuu81, ceb) 22.90/8.43 new_compare22(xuu80, xuu81, False, app(ty_[], cef), cea) -> new_ltEs2(xuu80, xuu81, cef) 22.90/8.43 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), app(app(ty_Either, bca), bcb)), baa)) -> new_lt3(xuu581, xuu591, bca, bcb) 22.90/8.43 new_ltEs3(Right(xuu580), Right(xuu590), beg, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs1(xuu580, xuu590, bfc, bfd, bfe) 22.90/8.43 new_compare4(Left(xuu50000), Left(xuu4000), ccd, cce) -> new_compare22(xuu50000, xuu4000, new_esEs10(xuu50000, xuu4000, ccd), ccd, cce) 22.90/8.43 new_compare2(xuu99, xuu100, xuu101, xuu102, False, cd, app(app(ty_@2, ce), cf)) -> new_ltEs(xuu100, xuu102, ce, cf) 22.90/8.43 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, bgf, app(app(ty_Either, cbh), cca)) -> new_ltEs3(xuu71, xuu74, cbh, cca) 22.90/8.43 new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, beg), app(app(ty_Either, bfg), bfh))) -> new_ltEs3(xuu580, xuu590, bfg, bfh) 22.90/8.43 new_compare22(xuu80, xuu81, False, app(app(ty_Either, ceg), ceh), cea) -> new_ltEs3(xuu80, xuu81, ceg, ceh) 22.90/8.43 new_ltEs3(Right(xuu580), Right(xuu590), beg, app(app(ty_Either, bfg), bfh)) -> new_ltEs3(xuu580, xuu590, bfg, bfh) 22.90/8.43 new_lt0(xuu99, xuu101, be) -> new_compare0(xuu99, xuu101, be) 22.90/8.43 new_compare23(xuu87, xuu88, False, cfa, app(app(ty_Either, cga), cgb)) -> new_ltEs3(xuu87, xuu88, cga, cgb) 22.90/8.43 new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, fb), app(ty_Maybe, ff))) -> new_ltEs0(xuu581, xuu591, ff) 22.90/8.43 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, hh, app(app(ty_Either, bdb), bdc)) -> new_ltEs3(xuu582, xuu592, bdb, bdc) 22.90/8.43 new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(app(ty_@2, bb), bc), bd) -> new_compare(xuu99, xuu101, bb, bc) 22.90/8.43 new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(app(ty_Either, cb), cc), bd) -> new_compare4(xuu99, xuu101, cb, cc) 22.90/8.43 new_primCompAux(Left(xuu50000), Left(xuu4000), xuu5001, xuu401, app(app(ty_Either, ccd), cce)) -> new_compare22(xuu50000, xuu4000, new_esEs10(xuu50000, xuu4000, ccd), ccd, cce) 22.90/8.43 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), app(ty_Maybe, bbd)), baa)) -> new_lt0(xuu581, xuu591, bbd) 22.90/8.43 new_ltEs3(Left(xuu580), Left(xuu590), app(app(app(ty_@3, bea), beb), bec), bdg) -> new_ltEs1(xuu580, xuu590, bea, beb, bec) 22.90/8.43 new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(app(app(ty_@3, ed), ee), ef), eb) -> new_lt1(xuu580, xuu590, ed, ee, ef) 22.90/8.43 new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(app(ty_Either, eh), fa), eb) -> new_lt3(xuu580, xuu590, eh, fa) 22.90/8.43 new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(app(ty_@2, ge), gf))) -> new_ltEs(xuu580, xuu590, ge, gf) 22.90/8.43 new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(ty_Maybe, ec), eb) -> new_lt0(xuu580, xuu590, ec) 22.90/8.43 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(ty_Maybe, bab), hh, baa) -> new_lt0(xuu580, xuu590, bab) 22.90/8.43 new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, fb), app(app(ty_@2, fc), fd))) -> new_ltEs(xuu581, xuu591, fc, fd) 22.90/8.43 new_primCompAux0(xuu37, xuu38, EQ, app(app(ty_Either, cde), cdf)) -> new_compare4(xuu37, xuu38, cde, cdf) 22.90/8.43 new_ltEs3(Left(xuu580), Left(xuu590), app(ty_Maybe, bdh), bdg) -> new_ltEs0(xuu580, xuu590, bdh) 22.90/8.43 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, app(app(ty_Either, cag), cah), bgg) -> new_lt3(xuu70, xuu73, cag, cah) 22.90/8.43 new_primCompAux(:(xuu50000, xuu50001), :(xuu4000, xuu4001), xuu5001, xuu401, app(ty_[], ccb)) -> new_primCompAux(xuu50000, xuu4000, xuu50001, xuu4001, ccb) 22.90/8.43 new_primCompAux(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), xuu5001, xuu401, app(app(app(ty_@3, bga), bgb), bgc)) -> new_compare21(xuu50000, xuu50001, xuu50002, xuu4000, xuu4001, xuu4002, new_asAs(new_esEs9(xuu50000, xuu4000, bga), new_asAs(new_esEs8(xuu50001, xuu4001, bgb), new_esEs7(xuu50002, xuu4002, bgc))), bga, bgb, bgc) 22.90/8.43 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(app(ty_@2, hf), hg)), hh), baa)) -> new_lt(xuu580, xuu590, hf, hg) 22.90/8.43 new_primCompAux0(xuu37, xuu38, EQ, app(app(app(ty_@3, cda), cdb), cdc)) -> new_compare1(xuu37, xuu38, cda, cdb, cdc) 22.90/8.43 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, app(ty_Maybe, cab), bgg) -> new_lt0(xuu70, xuu73, cab) 22.90/8.43 new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(ty_Maybe, ec)), eb)) -> new_lt0(xuu580, xuu590, ec) 22.90/8.43 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, hh, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs1(xuu582, xuu592, bcf, bcg, bch) 22.90/8.43 new_primCompAux(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), xuu5001, xuu401, app(app(ty_@2, h), ba)) -> new_compare2(xuu50000, xuu50001, xuu4000, xuu4001, new_asAs(new_esEs5(xuu50000, xuu4000, h), new_esEs4(xuu50001, xuu4001, ba)), h, ba) 22.90/8.43 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), hh), app(app(app(ty_@3, bcf), bcg), bch))) -> new_ltEs1(xuu582, xuu592, bcf, bcg, bch) 22.90/8.43 new_ltEs0(Just(xuu580), Just(xuu590), app(ty_[], hc)) -> new_ltEs2(xuu580, xuu590, hc) 22.90/8.43 new_lt3(xuu99, xuu101, cb, cc) -> new_compare4(xuu99, xuu101, cb, cc) 22.90/8.43 new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, beg), app(app(app(ty_@3, bfc), bfd), bfe))) -> new_ltEs1(xuu580, xuu590, bfc, bfd, bfe) 22.90/8.43 new_lt(xuu99, xuu101, bb, bc) -> new_compare(xuu99, xuu101, bb, bc) 22.90/8.43 new_primCompAux(Just(xuu50000), Just(xuu4000), xuu5001, xuu401, app(ty_Maybe, dg)) -> new_compare20(xuu50000, xuu4000, new_esEs6(xuu50000, xuu4000, dg), dg) 22.90/8.43 new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, fb), app(app(ty_Either, gc), gd))) -> new_ltEs3(xuu581, xuu591, gc, gd) 22.90/8.43 new_ltEs3(Right(xuu580), Right(xuu590), beg, app(ty_Maybe, bfb)) -> new_ltEs0(xuu580, xuu590, bfb) 22.90/8.43 new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(ty_Maybe, be), bd) -> new_compare0(xuu99, xuu101, be) 22.90/8.43 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(ty_[], baf), hh, baa) -> new_lt2(xuu580, xuu590, baf) 22.90/8.43 new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(app(ty_Either, eh), fa)), eb)) -> new_lt3(xuu580, xuu590, eh, fa) 22.90/8.43 new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(ty_[], eg), eb) -> new_lt2(xuu580, xuu590, eg) 22.90/8.43 new_ltEs3(Left(xuu580), Left(xuu590), app(ty_[], bed), bdg) -> new_ltEs2(xuu580, xuu590, bed) 22.90/8.43 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), app(app(ty_@2, bbb), bbc)), baa)) -> new_lt(xuu581, xuu591, bbb, bbc) 22.90/8.43 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, app(app(app(ty_@3, cac), cad), cae), bgg) -> new_lt1(xuu70, xuu73, cac, cad, cae) 22.90/8.43 new_compare2(xuu99, xuu100, xuu101, xuu102, False, cd, app(ty_Maybe, cg)) -> new_ltEs0(xuu100, xuu102, cg) 22.90/8.43 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, app(ty_Maybe, bbd), baa) -> new_lt0(xuu581, xuu591, bbd) 22.90/8.43 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, hh, app(ty_Maybe, bce)) -> new_ltEs0(xuu582, xuu592, bce) 22.90/8.43 new_compare2(xuu99, xuu100, xuu101, xuu102, False, cd, app(app(ty_Either, de), df)) -> new_ltEs3(xuu100, xuu102, de, df) 22.90/8.43 new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), fb, app(ty_[], gb)) -> new_ltEs2(xuu581, xuu591, gb) 22.90/8.43 new_compare22(xuu80, xuu81, False, app(app(ty_@2, cdg), cdh), cea) -> new_ltEs(xuu80, xuu81, cdg, cdh) 22.90/8.43 22.90/8.43 The TRS R consists of the following rules: 22.90/8.43 22.90/8.43 new_esEs14(Left(xuu500000), Left(xuu40000), app(app(ty_Either, dbc), dbd), dbb) -> new_esEs14(xuu500000, xuu40000, dbc, dbd) 22.90/8.43 new_ltEs19(xuu71, xuu74, ty_Integer) -> new_ltEs11(xuu71, xuu74) 22.90/8.43 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 22.90/8.43 new_ltEs18(Left(xuu580), Left(xuu590), app(ty_Maybe, bdh), bdg) -> new_ltEs9(xuu580, xuu590, bdh) 22.90/8.43 new_esEs23(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), efa, efb, efc) -> new_asAs(new_esEs38(xuu500000, xuu40000, efa), new_asAs(new_esEs37(xuu500001, xuu40001, efb), new_esEs36(xuu500002, xuu40002, efc))) 22.90/8.43 new_esEs24(@0, @0) -> True 22.90/8.43 new_esEs29(xuu69, xuu72, ty_Integer) -> new_esEs19(xuu69, xuu72) 22.90/8.43 new_pePe(True, xuu195) -> True 22.90/8.43 new_esEs7(xuu50002, xuu4002, app(app(ty_Either, dhe), dhf)) -> new_esEs14(xuu50002, xuu4002, dhe, dhf) 22.90/8.43 new_ltEs19(xuu71, xuu74, ty_@0) -> new_ltEs5(xuu71, xuu74) 22.90/8.43 new_esEs10(xuu50000, xuu4000, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs23(xuu50000, xuu4000, dag, dah, dba) 22.90/8.43 new_esEs8(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 22.90/8.43 new_ltEs23(xuu87, xuu88, app(ty_[], cfh)) -> new_ltEs16(xuu87, xuu88, cfh) 22.90/8.43 new_ltEs14(xuu58, xuu59) -> new_fsEs(new_compare14(xuu58, xuu59)) 22.90/8.43 new_esEs29(xuu69, xuu72, ty_Char) -> new_esEs12(xuu69, xuu72) 22.90/8.43 new_esEs9(xuu50000, xuu4000, app(ty_Maybe, deg)) -> new_esEs18(xuu50000, xuu4000, deg) 22.90/8.43 new_esEs38(xuu500000, xuu40000, ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.43 new_compare19(Right(xuu50000), Right(xuu4000), ccd, cce) -> new_compare25(xuu50000, xuu4000, new_esEs11(xuu50000, xuu4000, cce), ccd, cce) 22.90/8.43 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 22.90/8.43 new_ltEs6(xuu58, xuu59, ty_Ordering) -> new_ltEs13(xuu58, xuu59) 22.90/8.43 new_esEs6(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.43 new_esEs28(xuu70, xuu73, app(app(ty_Either, cag), cah)) -> new_esEs14(xuu70, xuu73, cag, cah) 22.90/8.43 new_esEs14(Right(xuu500000), Right(xuu40000), dce, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.43 new_esEs32(xuu580, xuu590, ty_@0) -> new_esEs24(xuu580, xuu590) 22.90/8.43 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Double, dbb) -> new_esEs15(xuu500000, xuu40000) 22.90/8.43 new_esEs37(xuu500001, xuu40001, app(ty_Ratio, fee)) -> new_esEs22(xuu500001, xuu40001, fee) 22.90/8.43 new_primCompAux00(xuu37, xuu38, EQ, ty_Int) -> new_compare14(xuu37, xuu38) 22.90/8.43 new_esEs5(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.43 new_esEs14(Right(xuu500000), Right(xuu40000), dce, ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.43 new_esEs6(xuu50000, xuu4000, app(app(ty_@2, dgb), dgc)) -> new_esEs16(xuu50000, xuu4000, dgb, dgc) 22.90/8.43 new_esEs35(xuu500000, xuu40000, app(app(app(ty_@3, fbg), fbh), fca)) -> new_esEs23(xuu500000, xuu40000, fbg, fbh, fca) 22.90/8.43 new_lt11(xuu69, xuu72, app(ty_[], bhd)) -> new_lt16(xuu69, xuu72, bhd) 22.90/8.43 new_lt23(xuu99, xuu101, ty_Char) -> new_lt10(xuu99, xuu101) 22.90/8.43 new_lt12(xuu70, xuu73, ty_Double) -> new_lt6(xuu70, xuu73) 22.90/8.43 new_lt15(xuu99, xuu101) -> new_esEs13(new_compare13(xuu99, xuu101), LT) 22.90/8.43 new_esEs37(xuu500001, xuu40001, ty_Double) -> new_esEs15(xuu500001, xuu40001) 22.90/8.43 new_compare5(xuu5000, xuu400, ty_Double) -> new_compare6(xuu5000, xuu400) 22.90/8.43 new_ltEs20(xuu581, xuu591, app(ty_Maybe, ff)) -> new_ltEs9(xuu581, xuu591, ff) 22.90/8.43 new_ltEs20(xuu581, xuu591, ty_Double) -> new_ltEs4(xuu581, xuu591) 22.90/8.43 new_esEs14(Right(xuu500000), Right(xuu40000), dce, app(app(ty_@2, dch), dda)) -> new_esEs16(xuu500000, xuu40000, dch, dda) 22.90/8.43 new_lt20(xuu580, xuu590, app(app(ty_@2, dh), ea)) -> new_lt13(xuu580, xuu590, dh, ea) 22.90/8.43 new_ltEs9(Just(xuu580), Just(xuu590), ty_Int) -> new_ltEs14(xuu580, xuu590) 22.90/8.43 new_esEs34(xuu500000, xuu40000, app(ty_[], ehf)) -> new_esEs20(xuu500000, xuu40000, ehf) 22.90/8.43 new_lt4(xuu99, xuu101) -> new_esEs13(new_compare15(xuu99, xuu101), LT) 22.90/8.43 new_esEs18(Just(xuu500000), Just(xuu40000), app(ty_[], fha)) -> new_esEs20(xuu500000, xuu40000, fha) 22.90/8.43 new_esEs21(False, False) -> True 22.90/8.43 new_primEqNat0(Succ(xuu5000000), Succ(xuu400000)) -> new_primEqNat0(xuu5000000, xuu400000) 22.90/8.43 new_esEs5(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.43 new_esEs26(xuu500001, xuu40001, ty_Int) -> new_esEs25(xuu500001, xuu40001) 22.90/8.43 new_esEs39(xuu99, xuu101, ty_Integer) -> new_esEs19(xuu99, xuu101) 22.90/8.43 new_not(True) -> False 22.90/8.43 new_lt20(xuu580, xuu590, app(ty_Ratio, ebd)) -> new_lt7(xuu580, xuu590, ebd) 22.90/8.43 new_ltEs21(xuu582, xuu592, ty_@0) -> new_ltEs5(xuu582, xuu592) 22.90/8.43 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.43 new_esEs4(xuu50001, xuu4001, app(ty_Maybe, edg)) -> new_esEs18(xuu50001, xuu4001, edg) 22.90/8.43 new_lt8(xuu99, xuu101) -> new_esEs13(new_compare14(xuu99, xuu101), LT) 22.90/8.43 new_esEs30(xuu580, xuu590, app(app(ty_Either, eh), fa)) -> new_esEs14(xuu580, xuu590, eh, fa) 22.90/8.43 new_ltEs22(xuu80, xuu81, ty_Bool) -> new_ltEs15(xuu80, xuu81) 22.90/8.43 new_esEs7(xuu50002, xuu4002, ty_Bool) -> new_esEs21(xuu50002, xuu4002) 22.90/8.43 new_ltEs18(Right(xuu580), Right(xuu590), beg, ty_Ordering) -> new_ltEs13(xuu580, xuu590) 22.90/8.43 new_lt23(xuu99, xuu101, ty_@0) -> new_lt17(xuu99, xuu101) 22.90/8.43 new_ltEs22(xuu80, xuu81, ty_Float) -> new_ltEs17(xuu80, xuu81) 22.90/8.43 new_esEs39(xuu99, xuu101, ty_Char) -> new_esEs12(xuu99, xuu101) 22.90/8.43 new_ltEs20(xuu581, xuu591, ty_Char) -> new_ltEs12(xuu581, xuu591) 22.90/8.43 new_primEqNat0(Succ(xuu5000000), Zero) -> False 22.90/8.43 new_primEqNat0(Zero, Succ(xuu400000)) -> False 22.90/8.43 new_esEs36(xuu500002, xuu40002, ty_Float) -> new_esEs17(xuu500002, xuu40002) 22.90/8.43 new_ltEs24(xuu100, xuu102, app(app(app(ty_@3, da), db), dc)) -> new_ltEs10(xuu100, xuu102, da, db, dc) 22.90/8.43 new_ltEs9(Just(xuu580), Just(xuu590), ty_Float) -> new_ltEs17(xuu580, xuu590) 22.90/8.43 new_primCompAux00(xuu37, xuu38, EQ, ty_Double) -> new_compare6(xuu37, xuu38) 22.90/8.43 new_lt20(xuu580, xuu590, ty_Integer) -> new_lt14(xuu580, xuu590) 22.90/8.43 new_compare5(xuu5000, xuu400, app(app(ty_Either, ccd), cce)) -> new_compare19(xuu5000, xuu400, ccd, cce) 22.90/8.43 new_ltEs22(xuu80, xuu81, ty_Int) -> new_ltEs14(xuu80, xuu81) 22.90/8.43 new_esEs34(xuu500000, xuu40000, ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.43 new_esEs6(xuu50000, xuu4000, app(ty_[], dge)) -> new_esEs20(xuu50000, xuu4000, dge) 22.90/8.43 new_esEs13(LT, LT) -> True 22.90/8.43 new_esEs4(xuu50001, xuu4001, app(app(app(ty_@3, eeb), eec), eed)) -> new_esEs23(xuu50001, xuu4001, eeb, eec, eed) 22.90/8.43 new_esEs25(xuu50000, xuu4000) -> new_primEqInt(xuu50000, xuu4000) 22.90/8.43 new_esEs9(xuu50000, xuu4000, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_esEs23(xuu50000, xuu4000, dfb, dfc, dfd) 22.90/8.43 new_compare13(LT, LT) -> EQ 22.90/8.43 new_primCmpInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> GT 22.90/8.43 new_lt11(xuu69, xuu72, ty_Float) -> new_lt18(xuu69, xuu72) 22.90/8.43 new_ltEs6(xuu58, xuu59, app(ty_Ratio, dea)) -> new_ltEs7(xuu58, xuu59, dea) 22.90/8.43 new_compare13(GT, EQ) -> GT 22.90/8.43 new_esEs32(xuu580, xuu590, app(ty_Ratio, ebf)) -> new_esEs22(xuu580, xuu590, ebf) 22.90/8.43 new_ltEs9(Just(xuu580), Just(xuu590), ty_Bool) -> new_ltEs15(xuu580, xuu590) 22.90/8.43 new_compare5(xuu5000, xuu400, app(ty_Maybe, dg)) -> new_compare9(xuu5000, xuu400, dg) 22.90/8.43 new_esEs29(xuu69, xuu72, app(ty_[], bhd)) -> new_esEs20(xuu69, xuu72, bhd) 22.90/8.43 new_primPlusNat1(Succ(xuu19700), Succ(xuu19600)) -> Succ(Succ(new_primPlusNat1(xuu19700, xuu19600))) 22.90/8.43 new_primCompAux00(xuu37, xuu38, GT, dfe) -> GT 22.90/8.43 new_lt16(xuu99, xuu101, ca) -> new_esEs13(new_compare16(xuu99, xuu101, ca), LT) 22.90/8.43 new_esEs36(xuu500002, xuu40002, ty_Int) -> new_esEs25(xuu500002, xuu40002) 22.90/8.43 new_ltEs18(Right(xuu580), Right(xuu590), beg, app(app(ty_Either, bfg), bfh)) -> new_ltEs18(xuu580, xuu590, bfg, bfh) 22.90/8.43 new_primCmpNat0(Zero, Succ(xuu40000)) -> LT 22.90/8.43 new_lt21(xuu580, xuu590, app(ty_[], baf)) -> new_lt16(xuu580, xuu590, baf) 22.90/8.43 new_ltEs23(xuu87, xuu88, app(app(ty_@2, cfb), cfc)) -> new_ltEs8(xuu87, xuu88, cfb, cfc) 22.90/8.43 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.43 new_esEs34(xuu500000, xuu40000, ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.43 new_compare16(:(xuu50000, xuu50001), [], ccb) -> GT 22.90/8.43 new_esEs22(:%(xuu500000, xuu500001), :%(xuu40000, xuu40001), dhd) -> new_asAs(new_esEs27(xuu500000, xuu40000, dhd), new_esEs26(xuu500001, xuu40001, dhd)) 22.90/8.43 new_esEs6(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.43 new_ltEs21(xuu582, xuu592, app(app(ty_@2, bcc), bcd)) -> new_ltEs8(xuu582, xuu592, bcc, bcd) 22.90/8.43 new_esEs30(xuu580, xuu590, ty_Bool) -> new_esEs21(xuu580, xuu590) 22.90/8.43 new_ltEs23(xuu87, xuu88, app(app(ty_Either, cga), cgb)) -> new_ltEs18(xuu87, xuu88, cga, cgb) 22.90/8.43 new_esEs13(GT, GT) -> True 22.90/8.43 new_esEs38(xuu500000, xuu40000, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.43 new_esEs7(xuu50002, xuu4002, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs23(xuu50002, xuu4002, ead, eae, eaf) 22.90/8.43 new_lt20(xuu580, xuu590, app(ty_Maybe, ec)) -> new_lt9(xuu580, xuu590, ec) 22.90/8.43 new_esEs9(xuu50000, xuu4000, app(app(ty_@2, dee), def)) -> new_esEs16(xuu50000, xuu4000, dee, def) 22.90/8.43 new_esEs36(xuu500002, xuu40002, ty_Char) -> new_esEs12(xuu500002, xuu40002) 22.90/8.43 new_ltEs20(xuu581, xuu591, ty_Bool) -> new_ltEs15(xuu581, xuu591) 22.90/8.43 new_lt12(xuu70, xuu73, app(app(app(ty_@3, cac), cad), cae)) -> new_lt5(xuu70, xuu73, cac, cad, cae) 22.90/8.43 new_esEs34(xuu500000, xuu40000, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.43 new_esEs9(xuu50000, xuu4000, app(ty_Ratio, dfa)) -> new_esEs22(xuu50000, xuu4000, dfa) 22.90/8.43 new_esEs10(xuu50000, xuu4000, app(ty_Maybe, dad)) -> new_esEs18(xuu50000, xuu4000, dad) 22.90/8.43 new_esEs32(xuu580, xuu590, ty_Double) -> new_esEs15(xuu580, xuu590) 22.90/8.43 new_compare5(xuu5000, xuu400, app(app(app(ty_@3, bga), bgb), bgc)) -> new_compare10(xuu5000, xuu400, bga, bgb, bgc) 22.90/8.43 new_ltEs9(Just(xuu580), Just(xuu590), app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs10(xuu580, xuu590, gh, ha, hb) 22.90/8.43 new_primEqInt(Neg(Succ(xuu5000000)), Neg(Succ(xuu400000))) -> new_primEqNat0(xuu5000000, xuu400000) 22.90/8.43 new_esEs28(xuu70, xuu73, app(app(app(ty_@3, cac), cad), cae)) -> new_esEs23(xuu70, xuu73, cac, cad, cae) 22.90/8.43 new_ltEs8(@2(xuu580, xuu581), @2(xuu590, xuu591), fb, eb) -> new_pePe(new_lt20(xuu580, xuu590, fb), new_asAs(new_esEs30(xuu580, xuu590, fb), new_ltEs20(xuu581, xuu591, eb))) 22.90/8.43 new_lt23(xuu99, xuu101, app(app(ty_@2, bb), bc)) -> new_lt13(xuu99, xuu101, bb, bc) 22.90/8.43 new_primCmpInt(Neg(Zero), Pos(Succ(xuu40000))) -> LT 22.90/8.43 new_lt23(xuu99, xuu101, app(ty_Ratio, dfg)) -> new_lt7(xuu99, xuu101, dfg) 22.90/8.43 new_esEs33(xuu500001, xuu40001, ty_Float) -> new_esEs17(xuu500001, xuu40001) 22.90/8.43 new_primMulInt(Pos(xuu40000), Pos(xuu500010)) -> Pos(new_primMulNat0(xuu40000, xuu500010)) 22.90/8.43 new_primCompAux00(xuu37, xuu38, EQ, app(ty_Maybe, cch)) -> new_compare9(xuu37, xuu38, cch) 22.90/8.43 new_compare13(EQ, LT) -> GT 22.90/8.43 new_esEs37(xuu500001, xuu40001, app(ty_[], fed)) -> new_esEs20(xuu500001, xuu40001, fed) 22.90/8.43 new_lt21(xuu580, xuu590, ty_Float) -> new_lt18(xuu580, xuu590) 22.90/8.43 new_esEs13(EQ, GT) -> False 22.90/8.43 new_esEs13(GT, EQ) -> False 22.90/8.43 new_esEs11(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.43 new_compare19(Right(xuu50000), Left(xuu4000), ccd, cce) -> GT 22.90/8.43 new_esEs14(Right(xuu500000), Right(xuu40000), dce, ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.43 new_lt22(xuu581, xuu591, ty_Int) -> new_lt8(xuu581, xuu591) 22.90/8.43 new_ltEs24(xuu100, xuu102, ty_Float) -> new_ltEs17(xuu100, xuu102) 22.90/8.43 new_esEs21(False, True) -> False 22.90/8.43 new_esEs21(True, False) -> False 22.90/8.43 new_esEs5(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.43 new_ltEs6(xuu58, xuu59, app(ty_Maybe, deb)) -> new_ltEs9(xuu58, xuu59, deb) 22.90/8.43 new_primMulNat0(Succ(xuu400000), Zero) -> Zero 22.90/8.43 new_primMulNat0(Zero, Succ(xuu5000100)) -> Zero 22.90/8.43 new_esEs32(xuu580, xuu590, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs23(xuu580, xuu590, bac, bad, bae) 22.90/8.43 new_lt22(xuu581, xuu591, ty_Integer) -> new_lt14(xuu581, xuu591) 22.90/8.43 new_esEs31(xuu581, xuu591, ty_Integer) -> new_esEs19(xuu581, xuu591) 22.90/8.43 new_compare13(GT, LT) -> GT 22.90/8.43 new_ltEs21(xuu582, xuu592, app(app(ty_Either, bdb), bdc)) -> new_ltEs18(xuu582, xuu592, bdb, bdc) 22.90/8.43 new_compare26(xuu58, xuu59, True, ddh) -> EQ 22.90/8.43 new_lt11(xuu69, xuu72, ty_Bool) -> new_lt4(xuu69, xuu72) 22.90/8.43 new_esEs11(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.43 new_esEs14(Left(xuu500000), Left(xuu40000), app(ty_[], dbh), dbb) -> new_esEs20(xuu500000, xuu40000, dbh) 22.90/8.43 new_ltEs6(xuu58, xuu59, app(ty_[], bdd)) -> new_ltEs16(xuu58, xuu59, bdd) 22.90/8.43 new_esEs14(Right(xuu500000), Right(xuu40000), dce, app(ty_Maybe, ddb)) -> new_esEs18(xuu500000, xuu40000, ddb) 22.90/8.43 new_lt12(xuu70, xuu73, ty_Int) -> new_lt8(xuu70, xuu73) 22.90/8.43 new_esEs37(xuu500001, xuu40001, ty_Ordering) -> new_esEs13(xuu500001, xuu40001) 22.90/8.43 new_compare13(EQ, EQ) -> EQ 22.90/8.43 new_esEs38(xuu500000, xuu40000, app(app(ty_Either, ffa), ffb)) -> new_esEs14(xuu500000, xuu40000, ffa, ffb) 22.90/8.43 new_esEs30(xuu580, xuu590, app(ty_Maybe, ec)) -> new_esEs18(xuu580, xuu590, ec) 22.90/8.43 new_esEs34(xuu500000, xuu40000, app(ty_Ratio, ehg)) -> new_esEs22(xuu500000, xuu40000, ehg) 22.90/8.43 new_esEs32(xuu580, xuu590, app(ty_Maybe, bab)) -> new_esEs18(xuu580, xuu590, bab) 22.90/8.43 new_ltEs13(GT, LT) -> False 22.90/8.43 new_esEs39(xuu99, xuu101, app(ty_[], ca)) -> new_esEs20(xuu99, xuu101, ca) 22.90/8.43 new_ltEs18(Left(xuu580), Left(xuu590), app(ty_[], bed), bdg) -> new_ltEs16(xuu580, xuu590, bed) 22.90/8.43 new_compare15(False, True) -> LT 22.90/8.43 new_primPlusNat1(Succ(xuu19700), Zero) -> Succ(xuu19700) 22.90/8.43 new_primPlusNat1(Zero, Succ(xuu19600)) -> Succ(xuu19600) 22.90/8.43 new_ltEs20(xuu581, xuu591, app(ty_[], gb)) -> new_ltEs16(xuu581, xuu591, gb) 22.90/8.43 new_esEs9(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.43 new_esEs32(xuu580, xuu590, app(app(ty_@2, hf), hg)) -> new_esEs16(xuu580, xuu590, hf, hg) 22.90/8.43 new_ltEs19(xuu71, xuu74, app(app(ty_@2, cba), cbb)) -> new_ltEs8(xuu71, xuu74, cba, cbb) 22.90/8.43 new_lt20(xuu580, xuu590, ty_Char) -> new_lt10(xuu580, xuu590) 22.90/8.43 new_compare9(Just(xuu50000), Just(xuu4000), dg) -> new_compare26(xuu50000, xuu4000, new_esEs6(xuu50000, xuu4000, dg), dg) 22.90/8.43 new_esEs6(xuu50000, xuu4000, app(ty_Maybe, dgd)) -> new_esEs18(xuu50000, xuu4000, dgd) 22.90/8.43 new_esEs28(xuu70, xuu73, ty_Int) -> new_esEs25(xuu70, xuu73) 22.90/8.43 new_ltEs4(xuu58, xuu59) -> new_fsEs(new_compare6(xuu58, xuu59)) 22.90/8.43 new_ltEs9(Just(xuu580), Just(xuu590), ty_Char) -> new_ltEs12(xuu580, xuu590) 22.90/8.43 new_esEs14(Left(xuu500000), Left(xuu40000), ty_@0, dbb) -> new_esEs24(xuu500000, xuu40000) 22.90/8.43 new_lt23(xuu99, xuu101, app(ty_[], ca)) -> new_lt16(xuu99, xuu101, ca) 22.90/8.43 new_esEs29(xuu69, xuu72, ty_Double) -> new_esEs15(xuu69, xuu72) 22.90/8.43 new_esEs4(xuu50001, xuu4001, ty_Bool) -> new_esEs21(xuu50001, xuu4001) 22.90/8.43 new_ltEs23(xuu87, xuu88, app(ty_Ratio, faf)) -> new_ltEs7(xuu87, xuu88, faf) 22.90/8.43 new_esEs30(xuu580, xuu590, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs23(xuu580, xuu590, ed, ee, ef) 22.90/8.43 new_esEs7(xuu50002, xuu4002, app(ty_Maybe, eaa)) -> new_esEs18(xuu50002, xuu4002, eaa) 22.90/8.43 new_lt23(xuu99, xuu101, ty_Ordering) -> new_lt15(xuu99, xuu101) 22.90/8.43 new_esEs28(xuu70, xuu73, ty_Bool) -> new_esEs21(xuu70, xuu73) 22.90/8.43 new_esEs19(Integer(xuu500000), Integer(xuu40000)) -> new_primEqInt(xuu500000, xuu40000) 22.90/8.43 new_compare24(xuu80, xuu81, False, fac, cea) -> new_compare110(xuu80, xuu81, new_ltEs22(xuu80, xuu81, fac), fac, cea) 22.90/8.43 new_lt12(xuu70, xuu73, ty_Bool) -> new_lt4(xuu70, xuu73) 22.90/8.43 new_compare6(Double(xuu50000, Neg(xuu500010)), Double(xuu4000, Neg(xuu40010))) -> new_compare14(new_sr(xuu50000, Neg(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) 22.90/8.43 new_compare5(xuu5000, xuu400, ty_Int) -> new_compare14(xuu5000, xuu400) 22.90/8.43 new_compare27(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, bgf, bgg) -> new_compare113(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, new_lt11(xuu69, xuu72, bhg), new_asAs(new_esEs29(xuu69, xuu72, bhg), new_pePe(new_lt12(xuu70, xuu73, bgf), new_asAs(new_esEs28(xuu70, xuu73, bgf), new_ltEs19(xuu71, xuu74, bgg)))), bhg, bgf, bgg) 22.90/8.43 new_esEs4(xuu50001, xuu4001, app(app(ty_Either, edc), edd)) -> new_esEs14(xuu50001, xuu4001, edc, edd) 22.90/8.43 new_esEs6(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.43 new_lt12(xuu70, xuu73, ty_Integer) -> new_lt14(xuu70, xuu73) 22.90/8.43 new_esEs10(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.43 new_ltEs6(xuu58, xuu59, app(app(ty_@2, fb), eb)) -> new_ltEs8(xuu58, xuu59, fb, eb) 22.90/8.43 new_lt11(xuu69, xuu72, ty_Ordering) -> new_lt15(xuu69, xuu72) 22.90/8.43 new_esEs14(Left(xuu500000), Right(xuu40000), dce, dbb) -> False 22.90/8.43 new_esEs14(Right(xuu500000), Left(xuu40000), dce, dbb) -> False 22.90/8.43 new_esEs8(xuu50001, xuu4001, ty_Integer) -> new_esEs19(xuu50001, xuu4001) 22.90/8.43 new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_Either, cde), cdf)) -> new_compare19(xuu37, xuu38, cde, cdf) 22.90/8.43 new_compare114(xuu156, xuu157, xuu158, xuu159, True, xuu161, ebb, ebc) -> new_compare115(xuu156, xuu157, xuu158, xuu159, True, ebb, ebc) 22.90/8.43 new_ltEs9(Just(xuu580), Just(xuu590), ty_Double) -> new_ltEs4(xuu580, xuu590) 22.90/8.43 new_esEs35(xuu500000, xuu40000, app(ty_Ratio, fbf)) -> new_esEs22(xuu500000, xuu40000, fbf) 22.90/8.43 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Integer, dbb) -> new_esEs19(xuu500000, xuu40000) 22.90/8.43 new_primCompAux00(xuu37, xuu38, EQ, app(ty_Ratio, dff)) -> new_compare7(xuu37, xuu38, dff) 22.90/8.43 new_esEs6(xuu50000, xuu4000, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs23(xuu50000, xuu4000, dgg, dgh, dha) 22.90/8.43 new_lt22(xuu581, xuu591, ty_Bool) -> new_lt4(xuu581, xuu591) 22.90/8.43 new_esEs30(xuu580, xuu590, ty_Int) -> new_esEs25(xuu580, xuu590) 22.90/8.43 new_esEs12(Char(xuu500000), Char(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) 22.90/8.43 new_esEs33(xuu500001, xuu40001, app(app(app(ty_@3, egf), egg), egh)) -> new_esEs23(xuu500001, xuu40001, egf, egg, egh) 22.90/8.43 new_esEs39(xuu99, xuu101, ty_Float) -> new_esEs17(xuu99, xuu101) 22.90/8.43 new_ltEs15(True, True) -> True 22.90/8.43 new_esEs8(xuu50001, xuu4001, ty_Double) -> new_esEs15(xuu50001, xuu4001) 22.90/8.43 new_esEs8(xuu50001, xuu4001, app(app(ty_@2, ecc), ecd)) -> new_esEs16(xuu50001, xuu4001, ecc, ecd) 22.90/8.43 new_esEs31(xuu581, xuu591, ty_Ordering) -> new_esEs13(xuu581, xuu591) 22.90/8.43 new_esEs11(xuu50000, xuu4000, app(app(ty_Either, cgd), cge)) -> new_esEs14(xuu50000, xuu4000, cgd, cge) 22.90/8.43 new_lt23(xuu99, xuu101, ty_Integer) -> new_lt14(xuu99, xuu101) 22.90/8.43 new_lt21(xuu580, xuu590, ty_Ordering) -> new_lt15(xuu580, xuu590) 22.90/8.43 new_esEs29(xuu69, xuu72, app(app(ty_@2, bgd), bge)) -> new_esEs16(xuu69, xuu72, bgd, bge) 22.90/8.43 new_esEs30(xuu580, xuu590, app(ty_Ratio, ebd)) -> new_esEs22(xuu580, xuu590, ebd) 22.90/8.43 new_lt23(xuu99, xuu101, app(app(app(ty_@3, bf), bg), bh)) -> new_lt5(xuu99, xuu101, bf, bg, bh) 22.90/8.43 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.43 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Char, dbb) -> new_esEs12(xuu500000, xuu40000) 22.90/8.43 new_esEs14(Right(xuu500000), Right(xuu40000), dce, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.43 new_esEs37(xuu500001, xuu40001, ty_Integer) -> new_esEs19(xuu500001, xuu40001) 22.90/8.43 new_esEs9(xuu50000, xuu4000, app(ty_[], deh)) -> new_esEs20(xuu50000, xuu4000, deh) 22.90/8.43 new_lt12(xuu70, xuu73, app(app(ty_@2, bhh), caa)) -> new_lt13(xuu70, xuu73, bhh, caa) 22.90/8.43 new_lt12(xuu70, xuu73, app(ty_Ratio, eah)) -> new_lt7(xuu70, xuu73, eah) 22.90/8.43 new_compare5(xuu5000, xuu400, app(ty_Ratio, cgc)) -> new_compare7(xuu5000, xuu400, cgc) 22.90/8.43 new_esEs38(xuu500000, xuu40000, app(ty_Maybe, ffe)) -> new_esEs18(xuu500000, xuu40000, ffe) 22.90/8.43 new_esEs32(xuu580, xuu590, app(app(ty_Either, bag), bah)) -> new_esEs14(xuu580, xuu590, bag, bah) 22.90/8.43 new_lt18(xuu99, xuu101) -> new_esEs13(new_compare18(xuu99, xuu101), LT) 22.90/8.43 new_ltEs21(xuu582, xuu592, app(ty_[], bda)) -> new_ltEs16(xuu582, xuu592, bda) 22.90/8.43 new_ltEs24(xuu100, xuu102, app(app(ty_@2, ce), cf)) -> new_ltEs8(xuu100, xuu102, ce, cf) 22.90/8.43 new_esEs18(Just(xuu500000), Just(xuu40000), app(ty_Ratio, fhb)) -> new_esEs22(xuu500000, xuu40000, fhb) 22.90/8.43 new_esEs10(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.43 new_esEs33(xuu500001, xuu40001, ty_Char) -> new_esEs12(xuu500001, xuu40001) 22.90/8.43 new_esEs35(xuu500000, xuu40000, ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.43 new_esEs18(Just(xuu500000), Just(xuu40000), ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.43 new_esEs7(xuu50002, xuu4002, ty_@0) -> new_esEs24(xuu50002, xuu4002) 22.90/8.43 new_esEs34(xuu500000, xuu40000, ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.43 new_esEs29(xuu69, xuu72, ty_Int) -> new_esEs25(xuu69, xuu72) 22.90/8.43 new_compare26(xuu58, xuu59, False, ddh) -> new_compare111(xuu58, xuu59, new_ltEs6(xuu58, xuu59, ddh), ddh) 22.90/8.43 new_ltEs23(xuu87, xuu88, ty_Double) -> new_ltEs4(xuu87, xuu88) 22.90/8.43 new_compare24(xuu80, xuu81, True, fac, cea) -> EQ 22.90/8.43 new_esEs30(xuu580, xuu590, app(app(ty_@2, dh), ea)) -> new_esEs16(xuu580, xuu590, dh, ea) 22.90/8.43 new_esEs14(Right(xuu500000), Right(xuu40000), dce, ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.43 new_primCmpInt(Pos(Succ(xuu500000)), Pos(xuu4000)) -> new_primCmpNat0(Succ(xuu500000), xuu4000) 22.90/8.43 new_compare16([], :(xuu4000, xuu4001), ccb) -> LT 22.90/8.43 new_lt20(xuu580, xuu590, ty_@0) -> new_lt17(xuu580, xuu590) 22.90/8.43 new_ltEs11(xuu58, xuu59) -> new_fsEs(new_compare11(xuu58, xuu59)) 22.90/8.43 new_esEs35(xuu500000, xuu40000, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.43 new_esEs5(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.43 new_compare5(xuu5000, xuu400, ty_Integer) -> new_compare11(xuu5000, xuu400) 22.90/8.43 new_esEs20(:(xuu500000, xuu500001), :(xuu40000, xuu40001), eeh) -> new_asAs(new_esEs35(xuu500000, xuu40000, eeh), new_esEs20(xuu500001, xuu40001, eeh)) 22.90/8.43 new_lt17(xuu99, xuu101) -> new_esEs13(new_compare17(xuu99, xuu101), LT) 22.90/8.43 new_esEs29(xuu69, xuu72, ty_Ordering) -> new_esEs13(xuu69, xuu72) 22.90/8.43 new_compare11(Integer(xuu50000), Integer(xuu4000)) -> new_primCmpInt(xuu50000, xuu4000) 22.90/8.43 new_esEs8(xuu50001, xuu4001, ty_Float) -> new_esEs17(xuu50001, xuu4001) 22.90/8.43 new_compare13(GT, GT) -> EQ 22.90/8.43 new_esEs18(Just(xuu500000), Just(xuu40000), app(ty_Maybe, fgh)) -> new_esEs18(xuu500000, xuu40000, fgh) 22.90/8.43 new_ltEs16(xuu58, xuu59, bdd) -> new_fsEs(new_compare16(xuu58, xuu59, bdd)) 22.90/8.43 new_ltEs18(Left(xuu580), Left(xuu590), app(ty_Ratio, fcb), bdg) -> new_ltEs7(xuu580, xuu590, fcb) 22.90/8.43 new_esEs5(xuu50000, xuu4000, app(ty_[], eeh)) -> new_esEs20(xuu50000, xuu4000, eeh) 22.90/8.43 new_esEs6(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.43 new_ltEs17(xuu58, xuu59) -> new_fsEs(new_compare18(xuu58, xuu59)) 22.90/8.43 new_esEs38(xuu500000, xuu40000, app(app(app(ty_@3, ffh), fga), fgb)) -> new_esEs23(xuu500000, xuu40000, ffh, fga, fgb) 22.90/8.43 new_esEs33(xuu500001, xuu40001, app(ty_Maybe, egc)) -> new_esEs18(xuu500001, xuu40001, egc) 22.90/8.43 new_esEs10(xuu50000, xuu4000, app(ty_Ratio, daf)) -> new_esEs22(xuu50000, xuu4000, daf) 22.90/8.43 new_esEs37(xuu500001, xuu40001, app(app(ty_Either, fdg), fdh)) -> new_esEs14(xuu500001, xuu40001, fdg, fdh) 22.90/8.43 new_ltEs18(Left(xuu580), Left(xuu590), ty_@0, bdg) -> new_ltEs5(xuu580, xuu590) 22.90/8.43 new_lt21(xuu580, xuu590, ty_Int) -> new_lt8(xuu580, xuu590) 22.90/8.43 new_esEs31(xuu581, xuu591, ty_Bool) -> new_esEs21(xuu581, xuu591) 22.90/8.43 new_esEs35(xuu500000, xuu40000, ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.43 new_lt19(xuu99, xuu101, cb, cc) -> new_esEs13(new_compare19(xuu99, xuu101, cb, cc), LT) 22.90/8.43 new_esEs14(Left(xuu500000), Left(xuu40000), app(ty_Ratio, dca), dbb) -> new_esEs22(xuu500000, xuu40000, dca) 22.90/8.43 new_lt11(xuu69, xuu72, ty_Char) -> new_lt10(xuu69, xuu72) 22.90/8.43 new_esEs36(xuu500002, xuu40002, app(app(ty_Either, fce), fcf)) -> new_esEs14(xuu500002, xuu40002, fce, fcf) 22.90/8.43 new_ltEs6(xuu58, xuu59, app(app(ty_Either, beg), bdg)) -> new_ltEs18(xuu58, xuu59, beg, bdg) 22.90/8.43 new_ltEs20(xuu581, xuu591, app(app(ty_Either, gc), gd)) -> new_ltEs18(xuu581, xuu591, gc, gd) 22.90/8.43 new_compare5(xuu5000, xuu400, ty_Char) -> new_compare12(xuu5000, xuu400) 22.90/8.43 new_esEs36(xuu500002, xuu40002, ty_Bool) -> new_esEs21(xuu500002, xuu40002) 22.90/8.43 new_ltEs18(Left(xuu580), Left(xuu590), ty_Ordering, bdg) -> new_ltEs13(xuu580, xuu590) 22.90/8.43 new_compare9(Nothing, Just(xuu4000), dg) -> LT 22.90/8.43 new_esEs34(xuu500000, xuu40000, app(ty_Maybe, ehe)) -> new_esEs18(xuu500000, xuu40000, ehe) 22.90/8.43 new_esEs39(xuu99, xuu101, app(ty_Maybe, be)) -> new_esEs18(xuu99, xuu101, be) 22.90/8.43 new_esEs31(xuu581, xuu591, ty_Int) -> new_esEs25(xuu581, xuu591) 22.90/8.43 new_esEs31(xuu581, xuu591, app(app(ty_Either, bca), bcb)) -> new_esEs14(xuu581, xuu591, bca, bcb) 22.90/8.43 new_compare8(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), h, ba) -> new_compare28(xuu50000, xuu50001, xuu4000, xuu4001, new_asAs(new_esEs5(xuu50000, xuu4000, h), new_esEs4(xuu50001, xuu4001, ba)), h, ba) 22.90/8.43 new_ltEs9(Just(xuu580), Just(xuu590), app(ty_Maybe, gg)) -> new_ltEs9(xuu580, xuu590, gg) 22.90/8.43 new_esEs11(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.43 new_compare14(xuu5000, xuu400) -> new_primCmpInt(xuu5000, xuu400) 22.90/8.43 new_primCompAux00(xuu37, xuu38, EQ, app(app(app(ty_@3, cda), cdb), cdc)) -> new_compare10(xuu37, xuu38, cda, cdb, cdc) 22.90/8.43 new_ltEs18(Left(xuu580), Left(xuu590), ty_Integer, bdg) -> new_ltEs11(xuu580, xuu590) 22.90/8.43 new_esEs11(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.43 new_ltEs19(xuu71, xuu74, app(app(ty_Either, cbh), cca)) -> new_ltEs18(xuu71, xuu74, cbh, cca) 22.90/8.43 new_lt21(xuu580, xuu590, ty_Bool) -> new_lt4(xuu580, xuu590) 22.90/8.43 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.43 new_esEs7(xuu50002, xuu4002, ty_Float) -> new_esEs17(xuu50002, xuu4002) 22.90/8.43 new_compare5(xuu5000, xuu400, ty_@0) -> new_compare17(xuu5000, xuu400) 22.90/8.43 new_lt20(xuu580, xuu590, ty_Ordering) -> new_lt15(xuu580, xuu590) 22.90/8.43 new_compare111(xuu125, xuu126, False, fcd) -> GT 22.90/8.43 new_esEs28(xuu70, xuu73, app(app(ty_@2, bhh), caa)) -> new_esEs16(xuu70, xuu73, bhh, caa) 22.90/8.43 new_esEs36(xuu500002, xuu40002, ty_Integer) -> new_esEs19(xuu500002, xuu40002) 22.90/8.43 new_esEs8(xuu50001, xuu4001, app(ty_[], ecf)) -> new_esEs20(xuu50001, xuu4001, ecf) 22.90/8.43 new_ltEs24(xuu100, xuu102, app(ty_[], dd)) -> new_ltEs16(xuu100, xuu102, dd) 22.90/8.43 new_lt22(xuu581, xuu591, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_lt5(xuu581, xuu591, bbe, bbf, bbg) 22.90/8.43 new_ltEs6(xuu58, xuu59, ty_Float) -> new_ltEs17(xuu58, xuu59) 22.90/8.43 new_compare9(Just(xuu50000), Nothing, dg) -> GT 22.90/8.43 new_ltEs18(Left(xuu580), Left(xuu590), ty_Char, bdg) -> new_ltEs12(xuu580, xuu590) 22.90/8.43 new_esEs4(xuu50001, xuu4001, ty_Float) -> new_esEs17(xuu50001, xuu4001) 22.90/8.43 new_ltEs18(Right(xuu580), Right(xuu590), beg, ty_Double) -> new_ltEs4(xuu580, xuu590) 22.90/8.43 new_esEs33(xuu500001, xuu40001, app(app(ty_Either, efg), efh)) -> new_esEs14(xuu500001, xuu40001, efg, efh) 22.90/8.43 new_esEs18(Just(xuu500000), Just(xuu40000), app(app(app(ty_@3, fhc), fhd), fhe)) -> new_esEs23(xuu500000, xuu40000, fhc, fhd, fhe) 22.90/8.43 new_esEs34(xuu500000, xuu40000, app(app(app(ty_@3, ehh), faa), fab)) -> new_esEs23(xuu500000, xuu40000, ehh, faa, fab) 22.90/8.43 new_esEs11(xuu50000, xuu4000, app(app(app(ty_@3, chc), chd), che)) -> new_esEs23(xuu50000, xuu4000, chc, chd, che) 22.90/8.43 new_esEs9(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.43 new_esEs32(xuu580, xuu590, ty_Ordering) -> new_esEs13(xuu580, xuu590) 22.90/8.43 new_ltEs13(LT, LT) -> True 22.90/8.43 new_esEs37(xuu500001, xuu40001, app(ty_Maybe, fec)) -> new_esEs18(xuu500001, xuu40001, fec) 22.90/8.43 new_lt20(xuu580, xuu590, app(app(ty_Either, eh), fa)) -> new_lt19(xuu580, xuu590, eh, fa) 22.90/8.43 new_esEs10(xuu50000, xuu4000, app(app(ty_Either, chh), daa)) -> new_esEs14(xuu50000, xuu4000, chh, daa) 22.90/8.43 new_esEs31(xuu581, xuu591, app(ty_Ratio, ebg)) -> new_esEs22(xuu581, xuu591, ebg) 22.90/8.43 new_primCompAux00(xuu37, xuu38, EQ, ty_Ordering) -> new_compare13(xuu37, xuu38) 22.90/8.43 new_compare116(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, efd, efe, eff) -> LT 22.90/8.43 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Bool, dbb) -> new_esEs21(xuu500000, xuu40000) 22.90/8.43 new_esEs6(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.43 new_ltEs15(False, True) -> True 22.90/8.43 new_esEs4(xuu50001, xuu4001, ty_@0) -> new_esEs24(xuu50001, xuu4001) 22.90/8.43 new_primPlusNat0(Succ(xuu2070), xuu5000100) -> Succ(Succ(new_primPlusNat1(xuu2070, xuu5000100))) 22.90/8.43 new_lt20(xuu580, xuu590, ty_Int) -> new_lt8(xuu580, xuu590) 22.90/8.43 new_esEs28(xuu70, xuu73, app(ty_Ratio, eah)) -> new_esEs22(xuu70, xuu73, eah) 22.90/8.43 new_ltEs6(xuu58, xuu59, ty_Double) -> new_ltEs4(xuu58, xuu59) 22.90/8.43 new_lt23(xuu99, xuu101, ty_Float) -> new_lt18(xuu99, xuu101) 22.90/8.43 new_lt13(xuu99, xuu101, bb, bc) -> new_esEs13(new_compare8(xuu99, xuu101, bb, bc), LT) 22.90/8.43 new_lt22(xuu581, xuu591, app(ty_Maybe, bbd)) -> new_lt9(xuu581, xuu591, bbd) 22.90/8.43 new_primCompAux00(xuu37, xuu38, EQ, ty_Char) -> new_compare12(xuu37, xuu38) 22.90/8.43 new_esEs38(xuu500000, xuu40000, ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.43 new_compare5(xuu5000, xuu400, ty_Bool) -> new_compare15(xuu5000, xuu400) 22.90/8.43 new_esEs32(xuu580, xuu590, ty_Bool) -> new_esEs21(xuu580, xuu590) 22.90/8.43 new_esEs4(xuu50001, xuu4001, ty_Integer) -> new_esEs19(xuu50001, xuu4001) 22.90/8.43 new_primPlusNat1(Zero, Zero) -> Zero 22.90/8.43 new_ltEs18(Left(xuu580), Left(xuu590), app(app(ty_@2, bde), bdf), bdg) -> new_ltEs8(xuu580, xuu590, bde, bdf) 22.90/8.43 new_esEs35(xuu500000, xuu40000, app(ty_Maybe, fbd)) -> new_esEs18(xuu500000, xuu40000, fbd) 22.90/8.43 new_esEs35(xuu500000, xuu40000, app(app(ty_Either, fah), fba)) -> new_esEs14(xuu500000, xuu40000, fah, fba) 22.90/8.43 new_compare111(xuu125, xuu126, True, fcd) -> LT 22.90/8.43 new_esEs30(xuu580, xuu590, ty_Ordering) -> new_esEs13(xuu580, xuu590) 22.90/8.43 new_esEs21(True, True) -> True 22.90/8.43 new_primCompAux00(xuu37, xuu38, EQ, ty_Integer) -> new_compare11(xuu37, xuu38) 22.90/8.43 new_esEs35(xuu500000, xuu40000, ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.43 new_ltEs21(xuu582, xuu592, ty_Float) -> new_ltEs17(xuu582, xuu592) 22.90/8.43 new_ltEs18(Left(xuu580), Right(xuu590), beg, bdg) -> True 22.90/8.43 new_esEs11(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.43 new_compare19(Left(xuu50000), Left(xuu4000), ccd, cce) -> new_compare24(xuu50000, xuu4000, new_esEs10(xuu50000, xuu4000, ccd), ccd, cce) 22.90/8.43 new_esEs14(Right(xuu500000), Right(xuu40000), dce, ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.43 new_ltEs18(Right(xuu580), Right(xuu590), beg, app(ty_[], bff)) -> new_ltEs16(xuu580, xuu590, bff) 22.90/8.43 new_esEs37(xuu500001, xuu40001, ty_@0) -> new_esEs24(xuu500001, xuu40001) 22.90/8.43 new_ltEs22(xuu80, xuu81, ty_Double) -> new_ltEs4(xuu80, xuu81) 22.90/8.43 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Ordering, dbb) -> new_esEs13(xuu500000, xuu40000) 22.90/8.43 new_primCompAux00(xuu37, xuu38, EQ, ty_Bool) -> new_compare15(xuu37, xuu38) 22.90/8.43 new_lt23(xuu99, xuu101, app(ty_Maybe, be)) -> new_lt9(xuu99, xuu101, be) 22.90/8.43 new_compare17(@0, @0) -> EQ 22.90/8.43 new_ltEs18(Right(xuu580), Left(xuu590), beg, bdg) -> False 22.90/8.43 new_esEs37(xuu500001, xuu40001, app(app(app(ty_@3, fef), feg), feh)) -> new_esEs23(xuu500001, xuu40001, fef, feg, feh) 22.90/8.43 new_esEs14(Right(xuu500000), Right(xuu40000), dce, app(ty_[], ddc)) -> new_esEs20(xuu500000, xuu40000, ddc) 22.90/8.43 new_esEs34(xuu500000, xuu40000, ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.43 new_esEs14(Left(xuu500000), Left(xuu40000), app(app(app(ty_@3, dcb), dcc), dcd), dbb) -> new_esEs23(xuu500000, xuu40000, dcb, dcc, dcd) 22.90/8.43 new_lt23(xuu99, xuu101, app(app(ty_Either, cb), cc)) -> new_lt19(xuu99, xuu101, cb, cc) 22.90/8.43 new_primCmpNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primCmpNat0(xuu500000, xuu40000) 22.90/8.43 new_esEs31(xuu581, xuu591, ty_Char) -> new_esEs12(xuu581, xuu591) 22.90/8.43 new_esEs10(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.43 new_ltEs18(Left(xuu580), Left(xuu590), ty_Bool, bdg) -> new_ltEs15(xuu580, xuu590) 22.90/8.43 new_lt22(xuu581, xuu591, ty_@0) -> new_lt17(xuu581, xuu591) 22.90/8.43 new_ltEs12(xuu58, xuu59) -> new_fsEs(new_compare12(xuu58, xuu59)) 22.90/8.43 new_esEs34(xuu500000, xuu40000, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.43 new_esEs39(xuu99, xuu101, ty_@0) -> new_esEs24(xuu99, xuu101) 22.90/8.43 new_ltEs21(xuu582, xuu592, ty_Double) -> new_ltEs4(xuu582, xuu592) 22.90/8.43 new_esEs33(xuu500001, xuu40001, ty_Bool) -> new_esEs21(xuu500001, xuu40001) 22.90/8.43 new_compare27(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, True, bhg, bgf, bgg) -> EQ 22.90/8.43 new_esEs32(xuu580, xuu590, ty_Char) -> new_esEs12(xuu580, xuu590) 22.90/8.43 new_esEs10(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.43 new_compare13(LT, GT) -> LT 22.90/8.43 new_lt21(xuu580, xuu590, ty_@0) -> new_lt17(xuu580, xuu590) 22.90/8.43 new_ltEs5(xuu58, xuu59) -> new_fsEs(new_compare17(xuu58, xuu59)) 22.90/8.43 new_ltEs18(Right(xuu580), Right(xuu590), beg, app(app(ty_@2, beh), bfa)) -> new_ltEs8(xuu580, xuu590, beh, bfa) 22.90/8.43 new_ltEs15(True, False) -> False 22.90/8.43 new_lt5(xuu99, xuu101, bf, bg, bh) -> new_esEs13(new_compare10(xuu99, xuu101, bf, bg, bh), LT) 22.90/8.43 new_ltEs18(Right(xuu580), Right(xuu590), beg, ty_Float) -> new_ltEs17(xuu580, xuu590) 22.90/8.43 new_esEs38(xuu500000, xuu40000, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.43 new_esEs33(xuu500001, xuu40001, ty_Int) -> new_esEs25(xuu500001, xuu40001) 22.90/8.43 new_esEs18(Just(xuu500000), Just(xuu40000), app(app(ty_Either, fgd), fge)) -> new_esEs14(xuu500000, xuu40000, fgd, fge) 22.90/8.43 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.43 new_esEs13(EQ, EQ) -> True 22.90/8.43 new_compare10(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bga, bgb, bgc) -> new_compare27(xuu50000, xuu50001, xuu50002, xuu4000, xuu4001, xuu4002, new_asAs(new_esEs9(xuu50000, xuu4000, bga), new_asAs(new_esEs8(xuu50001, xuu4001, bgb), new_esEs7(xuu50002, xuu4002, bgc))), bga, bgb, bgc) 22.90/8.43 new_ltEs20(xuu581, xuu591, ty_Float) -> new_ltEs17(xuu581, xuu591) 22.90/8.43 new_esEs11(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.43 new_lt11(xuu69, xuu72, ty_Double) -> new_lt6(xuu69, xuu72) 22.90/8.43 new_lt22(xuu581, xuu591, app(app(ty_Either, bca), bcb)) -> new_lt19(xuu581, xuu591, bca, bcb) 22.90/8.43 new_esEs38(xuu500000, xuu40000, ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.43 new_lt20(xuu580, xuu590, app(app(app(ty_@3, ed), ee), ef)) -> new_lt5(xuu580, xuu590, ed, ee, ef) 22.90/8.43 new_esEs29(xuu69, xuu72, app(ty_Ratio, eag)) -> new_esEs22(xuu69, xuu72, eag) 22.90/8.43 new_ltEs15(False, False) -> True 22.90/8.43 new_esEs36(xuu500002, xuu40002, app(app(app(ty_@3, fdd), fde), fdf)) -> new_esEs23(xuu500002, xuu40002, fdd, fde, fdf) 22.90/8.43 new_primCompAux1(xuu5000, xuu400, xuu5001, xuu401, ccc) -> new_primCompAux00(xuu5001, xuu401, new_compare5(xuu5000, xuu400, ccc), app(ty_[], ccc)) 22.90/8.43 new_ltEs19(xuu71, xuu74, ty_Float) -> new_ltEs17(xuu71, xuu74) 22.90/8.43 new_esEs17(Float(xuu500000, xuu500001), Float(xuu40000, xuu40001)) -> new_esEs25(new_sr(xuu500000, xuu40001), new_sr(xuu500001, xuu40000)) 22.90/8.43 new_esEs28(xuu70, xuu73, app(ty_[], caf)) -> new_esEs20(xuu70, xuu73, caf) 22.90/8.43 new_primCmpInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> LT 22.90/8.43 new_esEs34(xuu500000, xuu40000, app(app(ty_Either, eha), ehb)) -> new_esEs14(xuu500000, xuu40000, eha, ehb) 22.90/8.43 new_ltEs22(xuu80, xuu81, app(app(ty_Either, ceg), ceh)) -> new_ltEs18(xuu80, xuu81, ceg, ceh) 22.90/8.43 new_ltEs19(xuu71, xuu74, ty_Double) -> new_ltEs4(xuu71, xuu74) 22.90/8.43 new_ltEs22(xuu80, xuu81, app(app(ty_@2, cdg), cdh)) -> new_ltEs8(xuu80, xuu81, cdg, cdh) 22.90/8.43 new_compare15(True, False) -> GT 22.90/8.43 new_lt11(xuu69, xuu72, app(app(ty_Either, bhe), bhf)) -> new_lt19(xuu69, xuu72, bhe, bhf) 22.90/8.43 new_lt21(xuu580, xuu590, app(app(app(ty_@3, bac), bad), bae)) -> new_lt5(xuu580, xuu590, bac, bad, bae) 22.90/8.43 new_compare13(EQ, GT) -> LT 22.90/8.43 new_esEs35(xuu500000, xuu40000, ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.43 new_esEs36(xuu500002, xuu40002, app(ty_Maybe, fda)) -> new_esEs18(xuu500002, xuu40002, fda) 22.90/8.43 new_ltEs18(Right(xuu580), Right(xuu590), beg, app(ty_Maybe, bfb)) -> new_ltEs9(xuu580, xuu590, bfb) 22.90/8.43 new_ltEs18(Left(xuu580), Left(xuu590), ty_Int, bdg) -> new_ltEs14(xuu580, xuu590) 22.90/8.43 new_primCmpInt(Pos(Zero), Neg(Succ(xuu40000))) -> GT 22.90/8.43 new_primCmpInt(Neg(Succ(xuu500000)), Neg(xuu4000)) -> new_primCmpNat0(xuu4000, Succ(xuu500000)) 22.90/8.43 new_lt12(xuu70, xuu73, ty_@0) -> new_lt17(xuu70, xuu73) 22.90/8.43 new_ltEs9(Just(xuu580), Just(xuu590), app(app(ty_Either, hd), he)) -> new_ltEs18(xuu580, xuu590, hd, he) 22.90/8.43 new_esEs5(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.43 new_ltEs6(xuu58, xuu59, app(app(app(ty_@3, bba), hh), baa)) -> new_ltEs10(xuu58, xuu59, bba, hh, baa) 22.90/8.43 new_lt11(xuu69, xuu72, app(ty_Maybe, bgh)) -> new_lt9(xuu69, xuu72, bgh) 22.90/8.43 new_ltEs19(xuu71, xuu74, app(ty_Maybe, cbc)) -> new_ltEs9(xuu71, xuu74, cbc) 22.90/8.43 new_compare115(xuu156, xuu157, xuu158, xuu159, False, ebb, ebc) -> GT 22.90/8.43 new_ltEs13(GT, GT) -> True 22.90/8.43 new_lt23(xuu99, xuu101, ty_Int) -> new_lt8(xuu99, xuu101) 22.90/8.43 new_lt21(xuu580, xuu590, app(app(ty_Either, bag), bah)) -> new_lt19(xuu580, xuu590, bag, bah) 22.90/8.43 new_esEs37(xuu500001, xuu40001, ty_Int) -> new_esEs25(xuu500001, xuu40001) 22.90/8.43 new_esEs33(xuu500001, xuu40001, app(app(ty_@2, ega), egb)) -> new_esEs16(xuu500001, xuu40001, ega, egb) 22.90/8.43 new_esEs32(xuu580, xuu590, ty_Int) -> new_esEs25(xuu580, xuu590) 22.90/8.43 new_esEs8(xuu50001, xuu4001, app(app(app(ty_@3, ech), eda), edb)) -> new_esEs23(xuu50001, xuu4001, ech, eda, edb) 22.90/8.43 new_compare28(xuu99, xuu100, xuu101, xuu102, True, cd, bd) -> EQ 22.90/8.43 new_esEs11(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.43 new_lt20(xuu580, xuu590, ty_Bool) -> new_lt4(xuu580, xuu590) 22.90/8.43 new_esEs10(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.43 new_primEqInt(Pos(Succ(xuu5000000)), Pos(Zero)) -> False 22.90/8.43 new_primEqInt(Pos(Zero), Pos(Succ(xuu400000))) -> False 22.90/8.43 new_lt22(xuu581, xuu591, app(ty_[], bbh)) -> new_lt16(xuu581, xuu591, bbh) 22.90/8.43 new_ltEs13(EQ, GT) -> True 22.90/8.43 new_esEs33(xuu500001, xuu40001, ty_Ordering) -> new_esEs13(xuu500001, xuu40001) 22.90/8.43 new_compare28(xuu99, xuu100, xuu101, xuu102, False, cd, bd) -> new_compare114(xuu99, xuu100, xuu101, xuu102, new_lt23(xuu99, xuu101, cd), new_asAs(new_esEs39(xuu99, xuu101, cd), new_ltEs24(xuu100, xuu102, bd)), cd, bd) 22.90/8.43 new_ltEs9(Just(xuu580), Just(xuu590), app(app(ty_@2, ge), gf)) -> new_ltEs8(xuu580, xuu590, ge, gf) 22.90/8.43 new_esEs7(xuu50002, xuu4002, app(ty_[], eab)) -> new_esEs20(xuu50002, xuu4002, eab) 22.90/8.43 new_ltEs13(EQ, EQ) -> True 22.90/8.43 new_esEs30(xuu580, xuu590, ty_Char) -> new_esEs12(xuu580, xuu590) 22.90/8.43 new_lt12(xuu70, xuu73, ty_Char) -> new_lt10(xuu70, xuu73) 22.90/8.43 new_ltEs21(xuu582, xuu592, ty_Char) -> new_ltEs12(xuu582, xuu592) 22.90/8.43 new_esEs38(xuu500000, xuu40000, ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.43 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Int, dbb) -> new_esEs25(xuu500000, xuu40000) 22.90/8.43 new_ltEs23(xuu87, xuu88, ty_Float) -> new_ltEs17(xuu87, xuu88) 22.90/8.43 new_esEs4(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 22.90/8.43 new_primCmpNat0(Zero, Zero) -> EQ 22.90/8.43 new_ltEs23(xuu87, xuu88, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs10(xuu87, xuu88, cfe, cff, cfg) 22.90/8.43 new_esEs5(xuu50000, xuu4000, app(ty_Maybe, eeg)) -> new_esEs18(xuu50000, xuu4000, eeg) 22.90/8.43 new_ltEs24(xuu100, xuu102, ty_Ordering) -> new_ltEs13(xuu100, xuu102) 22.90/8.43 new_compare13(LT, EQ) -> LT 22.90/8.43 new_esEs5(xuu50000, xuu4000, app(app(ty_@2, eee), eef)) -> new_esEs16(xuu50000, xuu4000, eee, eef) 22.90/8.43 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Float, dbb) -> new_esEs17(xuu500000, xuu40000) 22.90/8.43 new_lt10(xuu99, xuu101) -> new_esEs13(new_compare12(xuu99, xuu101), LT) 22.90/8.43 new_esEs39(xuu99, xuu101, app(app(app(ty_@3, bf), bg), bh)) -> new_esEs23(xuu99, xuu101, bf, bg, bh) 22.90/8.43 new_ltEs21(xuu582, xuu592, ty_Bool) -> new_ltEs15(xuu582, xuu592) 22.90/8.43 new_esEs36(xuu500002, xuu40002, ty_@0) -> new_esEs24(xuu500002, xuu40002) 22.90/8.43 new_esEs30(xuu580, xuu590, ty_Integer) -> new_esEs19(xuu580, xuu590) 22.90/8.43 new_ltEs21(xuu582, xuu592, app(ty_Maybe, bce)) -> new_ltEs9(xuu582, xuu592, bce) 22.90/8.43 new_esEs6(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.43 new_esEs33(xuu500001, xuu40001, app(ty_Ratio, ege)) -> new_esEs22(xuu500001, xuu40001, ege) 22.90/8.43 new_ltEs20(xuu581, xuu591, ty_Integer) -> new_ltEs11(xuu581, xuu591) 22.90/8.43 new_ltEs24(xuu100, xuu102, ty_Double) -> new_ltEs4(xuu100, xuu102) 22.90/8.43 new_ltEs19(xuu71, xuu74, ty_Char) -> new_ltEs12(xuu71, xuu74) 22.90/8.43 new_esEs37(xuu500001, xuu40001, ty_Float) -> new_esEs17(xuu500001, xuu40001) 22.90/8.43 new_esEs32(xuu580, xuu590, ty_Float) -> new_esEs17(xuu580, xuu590) 22.90/8.43 new_ltEs9(Just(xuu580), Just(xuu590), app(ty_[], hc)) -> new_ltEs16(xuu580, xuu590, hc) 22.90/8.43 new_lt21(xuu580, xuu590, app(ty_Maybe, bab)) -> new_lt9(xuu580, xuu590, bab) 22.90/8.43 new_esEs6(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.43 new_lt21(xuu580, xuu590, ty_Integer) -> new_lt14(xuu580, xuu590) 22.90/8.43 new_compare116(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, False, efd, efe, eff) -> GT 22.90/8.43 new_compare110(xuu135, xuu136, True, chf, chg) -> LT 22.90/8.43 new_esEs11(xuu50000, xuu4000, app(ty_Maybe, cgh)) -> new_esEs18(xuu50000, xuu4000, cgh) 22.90/8.43 new_esEs28(xuu70, xuu73, ty_Ordering) -> new_esEs13(xuu70, xuu73) 22.90/8.43 new_esEs33(xuu500001, xuu40001, ty_Double) -> new_esEs15(xuu500001, xuu40001) 22.90/8.43 new_esEs35(xuu500000, xuu40000, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.43 new_lt11(xuu69, xuu72, app(app(app(ty_@3, bha), bhb), bhc)) -> new_lt5(xuu69, xuu72, bha, bhb, bhc) 22.90/8.43 new_ltEs20(xuu581, xuu591, ty_@0) -> new_ltEs5(xuu581, xuu591) 22.90/8.43 new_esEs38(xuu500000, xuu40000, ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.43 new_lt22(xuu581, xuu591, ty_Char) -> new_lt10(xuu581, xuu591) 22.90/8.43 new_ltEs18(Right(xuu580), Right(xuu590), beg, ty_@0) -> new_ltEs5(xuu580, xuu590) 22.90/8.43 new_esEs30(xuu580, xuu590, app(ty_[], eg)) -> new_esEs20(xuu580, xuu590, eg) 22.90/8.43 new_ltEs22(xuu80, xuu81, app(ty_[], cef)) -> new_ltEs16(xuu80, xuu81, cef) 22.90/8.43 new_esEs20([], [], eeh) -> True 22.90/8.43 new_ltEs13(LT, GT) -> True 22.90/8.43 new_lt6(xuu99, xuu101) -> new_esEs13(new_compare6(xuu99, xuu101), LT) 22.90/8.43 new_esEs28(xuu70, xuu73, ty_Char) -> new_esEs12(xuu70, xuu73) 22.90/8.43 new_lt22(xuu581, xuu591, ty_Float) -> new_lt18(xuu581, xuu591) 22.90/8.43 new_lt14(xuu99, xuu101) -> new_esEs13(new_compare11(xuu99, xuu101), LT) 22.90/8.43 new_primCmpNat0(Succ(xuu500000), Zero) -> GT 22.90/8.43 new_ltEs18(Left(xuu580), Left(xuu590), app(app(ty_Either, bee), bef), bdg) -> new_ltEs18(xuu580, xuu590, bee, bef) 22.90/8.43 new_primCompAux00(xuu37, xuu38, EQ, ty_Float) -> new_compare18(xuu37, xuu38) 22.90/8.43 new_pePe(False, xuu195) -> xuu195 22.90/8.43 new_esEs9(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.43 new_esEs33(xuu500001, xuu40001, ty_@0) -> new_esEs24(xuu500001, xuu40001) 22.90/8.43 new_compare7(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), ty_Int) -> new_compare14(new_sr(xuu50000, xuu4001), new_sr(xuu4000, xuu50001)) 22.90/8.43 new_esEs11(xuu50000, xuu4000, app(app(ty_@2, cgf), cgg)) -> new_esEs16(xuu50000, xuu4000, cgf, cgg) 22.90/8.43 new_compare25(xuu87, xuu88, True, cfa, fae) -> EQ 22.90/8.43 new_esEs14(Right(xuu500000), Right(xuu40000), dce, ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.43 new_compare5(xuu5000, xuu400, ty_Ordering) -> new_compare13(xuu5000, xuu400) 22.90/8.43 new_lt21(xuu580, xuu590, app(ty_Ratio, ebf)) -> new_lt7(xuu580, xuu590, ebf) 22.90/8.43 new_esEs4(xuu50001, xuu4001, ty_Int) -> new_esEs25(xuu50001, xuu4001) 22.90/8.43 new_compare112(xuu142, xuu143, True, dhb, dhc) -> LT 22.90/8.43 new_lt23(xuu99, xuu101, ty_Bool) -> new_lt4(xuu99, xuu101) 22.90/8.43 new_ltEs22(xuu80, xuu81, app(ty_Ratio, fad)) -> new_ltEs7(xuu80, xuu81, fad) 22.90/8.43 new_ltEs9(Just(xuu580), Just(xuu590), ty_Ordering) -> new_ltEs13(xuu580, xuu590) 22.90/8.43 new_compare15(False, False) -> EQ 22.90/8.43 new_esEs6(xuu50000, xuu4000, app(app(ty_Either, dfh), dga)) -> new_esEs14(xuu50000, xuu4000, dfh, dga) 22.90/8.43 new_ltEs19(xuu71, xuu74, ty_Bool) -> new_ltEs15(xuu71, xuu74) 22.90/8.43 new_primEqInt(Pos(Zero), Neg(Succ(xuu400000))) -> False 22.90/8.43 new_primEqInt(Neg(Zero), Pos(Succ(xuu400000))) -> False 22.90/8.43 new_compare5(xuu5000, xuu400, ty_Float) -> new_compare18(xuu5000, xuu400) 22.90/8.43 new_lt22(xuu581, xuu591, ty_Ordering) -> new_lt15(xuu581, xuu591) 22.90/8.43 new_compare6(Double(xuu50000, Pos(xuu500010)), Double(xuu4000, Pos(xuu40010))) -> new_compare14(new_sr(xuu50000, Pos(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) 22.90/8.43 new_esEs37(xuu500001, xuu40001, ty_Bool) -> new_esEs21(xuu500001, xuu40001) 22.90/8.43 new_ltEs18(Right(xuu580), Right(xuu590), beg, app(ty_Ratio, fcc)) -> new_ltEs7(xuu580, xuu590, fcc) 22.90/8.43 new_esEs5(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.43 new_lt12(xuu70, xuu73, ty_Ordering) -> new_lt15(xuu70, xuu73) 22.90/8.43 new_compare113(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, xuu178, efd, efe, eff) -> new_compare116(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, efd, efe, eff) 22.90/8.43 new_esEs7(xuu50002, xuu4002, ty_Integer) -> new_esEs19(xuu50002, xuu4002) 22.90/8.43 new_esEs31(xuu581, xuu591, ty_@0) -> new_esEs24(xuu581, xuu591) 22.90/8.43 new_lt11(xuu69, xuu72, app(ty_Ratio, eag)) -> new_lt7(xuu69, xuu72, eag) 22.90/8.43 new_lt11(xuu69, xuu72, app(app(ty_@2, bgd), bge)) -> new_lt13(xuu69, xuu72, bgd, bge) 22.90/8.43 new_esEs36(xuu500002, xuu40002, app(ty_Ratio, fdc)) -> new_esEs22(xuu500002, xuu40002, fdc) 22.90/8.43 new_compare5(xuu5000, xuu400, app(app(ty_@2, h), ba)) -> new_compare8(xuu5000, xuu400, h, ba) 22.90/8.43 new_esEs5(xuu50000, xuu4000, app(app(app(ty_@3, efa), efb), efc)) -> new_esEs23(xuu50000, xuu4000, efa, efb, efc) 22.90/8.43 new_esEs28(xuu70, xuu73, ty_Double) -> new_esEs15(xuu70, xuu73) 22.90/8.43 new_esEs11(xuu50000, xuu4000, app(ty_Ratio, chb)) -> new_esEs22(xuu50000, xuu4000, chb) 22.90/8.43 new_esEs10(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.43 new_primPlusNat0(Zero, xuu5000100) -> Succ(xuu5000100) 22.90/8.43 new_esEs29(xuu69, xuu72, app(app(ty_Either, bhe), bhf)) -> new_esEs14(xuu69, xuu72, bhe, bhf) 22.90/8.43 new_esEs38(xuu500000, xuu40000, ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.43 new_ltEs24(xuu100, xuu102, app(ty_Ratio, fgc)) -> new_ltEs7(xuu100, xuu102, fgc) 22.90/8.43 new_esEs29(xuu69, xuu72, ty_Bool) -> new_esEs21(xuu69, xuu72) 22.90/8.43 new_esEs7(xuu50002, xuu4002, ty_Double) -> new_esEs15(xuu50002, xuu4002) 22.90/8.43 new_esEs8(xuu50001, xuu4001, app(ty_Maybe, ece)) -> new_esEs18(xuu50001, xuu4001, ece) 22.90/8.43 new_esEs29(xuu69, xuu72, app(ty_Maybe, bgh)) -> new_esEs18(xuu69, xuu72, bgh) 22.90/8.43 new_fsEs(xuu190) -> new_not(new_esEs13(xuu190, GT)) 22.90/8.43 new_esEs31(xuu581, xuu591, app(ty_Maybe, bbd)) -> new_esEs18(xuu581, xuu591, bbd) 22.90/8.43 new_compare16(:(xuu50000, xuu50001), :(xuu4000, xuu4001), ccb) -> new_primCompAux1(xuu50000, xuu4000, xuu50001, xuu4001, ccb) 22.90/8.43 new_esEs14(Right(xuu500000), Right(xuu40000), dce, app(app(app(ty_@3, dde), ddf), ddg)) -> new_esEs23(xuu500000, xuu40000, dde, ddf, ddg) 22.90/8.43 new_lt11(xuu69, xuu72, ty_Integer) -> new_lt14(xuu69, xuu72) 22.90/8.43 new_esEs32(xuu580, xuu590, ty_Integer) -> new_esEs19(xuu580, xuu590) 22.90/8.43 new_lt11(xuu69, xuu72, ty_Int) -> new_lt8(xuu69, xuu72) 22.90/8.43 new_esEs4(xuu50001, xuu4001, app(ty_[], edh)) -> new_esEs20(xuu50001, xuu4001, edh) 22.90/8.43 new_ltEs9(Just(xuu580), Just(xuu590), ty_@0) -> new_ltEs5(xuu580, xuu590) 22.90/8.43 new_ltEs18(Left(xuu580), Left(xuu590), ty_Float, bdg) -> new_ltEs17(xuu580, xuu590) 22.90/8.43 new_esEs35(xuu500000, xuu40000, ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.43 new_esEs27(xuu500000, xuu40000, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.43 new_esEs31(xuu581, xuu591, app(app(ty_@2, bbb), bbc)) -> new_esEs16(xuu581, xuu591, bbb, bbc) 22.90/8.43 new_ltEs9(Just(xuu580), Just(xuu590), ty_Integer) -> new_ltEs11(xuu580, xuu590) 22.90/8.43 new_esEs9(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.43 new_primCompAux00(xuu37, xuu38, EQ, ty_@0) -> new_compare17(xuu37, xuu38) 22.90/8.43 new_esEs33(xuu500001, xuu40001, ty_Integer) -> new_esEs19(xuu500001, xuu40001) 22.90/8.43 new_esEs29(xuu69, xuu72, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs23(xuu69, xuu72, bha, bhb, bhc) 22.90/8.43 new_lt20(xuu580, xuu590, ty_Float) -> new_lt18(xuu580, xuu590) 22.90/8.43 new_esEs10(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.43 new_esEs36(xuu500002, xuu40002, ty_Ordering) -> new_esEs13(xuu500002, xuu40002) 22.90/8.43 new_ltEs19(xuu71, xuu74, app(ty_[], cbg)) -> new_ltEs16(xuu71, xuu74, cbg) 22.90/8.43 new_esEs8(xuu50001, xuu4001, ty_@0) -> new_esEs24(xuu50001, xuu4001) 22.90/8.43 new_esEs18(Nothing, Nothing, eeg) -> True 22.90/8.43 new_compare12(Char(xuu50000), Char(xuu4000)) -> new_primCmpNat0(xuu50000, xuu4000) 22.90/8.43 new_ltEs20(xuu581, xuu591, app(app(ty_@2, fc), fd)) -> new_ltEs8(xuu581, xuu591, fc, fd) 22.90/8.43 new_esEs31(xuu581, xuu591, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs23(xuu581, xuu591, bbe, bbf, bbg) 22.90/8.43 new_primMulInt(Neg(xuu40000), Neg(xuu500010)) -> Pos(new_primMulNat0(xuu40000, xuu500010)) 22.90/8.43 new_primCmpInt(Pos(Zero), Pos(Succ(xuu40000))) -> new_primCmpNat0(Zero, Succ(xuu40000)) 22.90/8.43 new_esEs18(Nothing, Just(xuu40000), eeg) -> False 22.90/8.43 new_esEs18(Just(xuu500000), Nothing, eeg) -> False 22.90/8.43 new_esEs37(xuu500001, xuu40001, ty_Char) -> new_esEs12(xuu500001, xuu40001) 22.90/8.43 new_ltEs13(GT, EQ) -> False 22.90/8.43 new_esEs14(Left(xuu500000), Left(xuu40000), app(app(ty_@2, dbe), dbf), dbb) -> new_esEs16(xuu500000, xuu40000, dbe, dbf) 22.90/8.43 new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_@2, ccf), ccg)) -> new_compare8(xuu37, xuu38, ccf, ccg) 22.90/8.43 new_lt12(xuu70, xuu73, app(ty_[], caf)) -> new_lt16(xuu70, xuu73, caf) 22.90/8.43 new_compare18(Float(xuu50000, Pos(xuu500010)), Float(xuu4000, Pos(xuu40010))) -> new_compare14(new_sr(xuu50000, Pos(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) 22.90/8.43 new_esEs30(xuu580, xuu590, ty_Double) -> new_esEs15(xuu580, xuu590) 22.90/8.43 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.43 new_esEs34(xuu500000, xuu40000, ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.43 new_esEs7(xuu50002, xuu4002, app(app(ty_@2, dhg), dhh)) -> new_esEs16(xuu50002, xuu4002, dhg, dhh) 22.90/8.43 new_esEs39(xuu99, xuu101, ty_Bool) -> new_esEs21(xuu99, xuu101) 22.90/8.43 new_compare115(xuu156, xuu157, xuu158, xuu159, True, ebb, ebc) -> LT 22.90/8.43 new_esEs39(xuu99, xuu101, app(app(ty_Either, cb), cc)) -> new_esEs14(xuu99, xuu101, cb, cc) 22.90/8.43 new_esEs38(xuu500000, xuu40000, app(ty_[], fff)) -> new_esEs20(xuu500000, xuu40000, fff) 22.90/8.43 new_esEs35(xuu500000, xuu40000, app(app(ty_@2, fbb), fbc)) -> new_esEs16(xuu500000, xuu40000, fbb, fbc) 22.90/8.43 new_esEs39(xuu99, xuu101, ty_Int) -> new_esEs25(xuu99, xuu101) 22.90/8.43 new_primMulInt(Pos(xuu40000), Neg(xuu500010)) -> Neg(new_primMulNat0(xuu40000, xuu500010)) 22.90/8.43 new_primMulInt(Neg(xuu40000), Pos(xuu500010)) -> Neg(new_primMulNat0(xuu40000, xuu500010)) 22.90/8.43 new_ltEs21(xuu582, xuu592, app(ty_Ratio, ebh)) -> new_ltEs7(xuu582, xuu592, ebh) 22.90/8.43 new_ltEs18(Right(xuu580), Right(xuu590), beg, ty_Int) -> new_ltEs14(xuu580, xuu590) 22.90/8.43 new_esEs28(xuu70, xuu73, app(ty_Maybe, cab)) -> new_esEs18(xuu70, xuu73, cab) 22.90/8.43 new_lt22(xuu581, xuu591, app(app(ty_@2, bbb), bbc)) -> new_lt13(xuu581, xuu591, bbb, bbc) 22.90/8.43 new_sr0(Integer(xuu40000), Integer(xuu500010)) -> Integer(new_primMulInt(xuu40000, xuu500010)) 22.90/8.43 new_esEs35(xuu500000, xuu40000, ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.43 new_ltEs23(xuu87, xuu88, ty_Char) -> new_ltEs12(xuu87, xuu88) 22.90/8.43 new_lt22(xuu581, xuu591, app(ty_Ratio, ebg)) -> new_lt7(xuu581, xuu591, ebg) 22.90/8.43 new_esEs36(xuu500002, xuu40002, app(ty_[], fdb)) -> new_esEs20(xuu500002, xuu40002, fdb) 22.90/8.43 new_compare18(Float(xuu50000, Neg(xuu500010)), Float(xuu4000, Neg(xuu40010))) -> new_compare14(new_sr(xuu50000, Neg(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) 22.90/8.43 new_esEs6(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.43 new_esEs28(xuu70, xuu73, ty_@0) -> new_esEs24(xuu70, xuu73) 22.90/8.43 new_ltEs9(Nothing, Just(xuu590), deb) -> True 22.90/8.43 new_ltEs24(xuu100, xuu102, app(app(ty_Either, de), df)) -> new_ltEs18(xuu100, xuu102, de, df) 22.90/8.43 new_asAs(True, xuu117) -> xuu117 22.90/8.43 new_esEs27(xuu500000, xuu40000, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.43 new_esEs5(xuu50000, xuu4000, app(app(ty_Either, dce), dbb)) -> new_esEs14(xuu50000, xuu4000, dce, dbb) 22.90/8.43 new_esEs31(xuu581, xuu591, ty_Double) -> new_esEs15(xuu581, xuu591) 22.90/8.43 new_esEs29(xuu69, xuu72, ty_Float) -> new_esEs17(xuu69, xuu72) 22.90/8.43 new_esEs8(xuu50001, xuu4001, ty_Ordering) -> new_esEs13(xuu50001, xuu4001) 22.90/8.43 new_ltEs23(xuu87, xuu88, ty_Integer) -> new_ltEs11(xuu87, xuu88) 22.90/8.43 new_esEs4(xuu50001, xuu4001, ty_Double) -> new_esEs15(xuu50001, xuu4001) 22.90/8.43 new_ltEs18(Right(xuu580), Right(xuu590), beg, ty_Bool) -> new_ltEs15(xuu580, xuu590) 22.90/8.43 new_ltEs6(xuu58, xuu59, ty_Bool) -> new_ltEs15(xuu58, xuu59) 22.90/8.43 new_esEs39(xuu99, xuu101, app(ty_Ratio, dfg)) -> new_esEs22(xuu99, xuu101, dfg) 22.90/8.43 new_ltEs21(xuu582, xuu592, ty_Ordering) -> new_ltEs13(xuu582, xuu592) 22.90/8.43 new_compare7(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), ty_Integer) -> new_compare11(new_sr0(xuu50000, xuu4001), new_sr0(xuu4000, xuu50001)) 22.90/8.43 new_ltEs24(xuu100, xuu102, ty_Int) -> new_ltEs14(xuu100, xuu102) 22.90/8.43 new_esEs10(xuu50000, xuu4000, app(app(ty_@2, dab), dac)) -> new_esEs16(xuu50000, xuu4000, dab, dac) 22.90/8.43 new_esEs11(xuu50000, xuu4000, app(ty_[], cha)) -> new_esEs20(xuu50000, xuu4000, cha) 22.90/8.43 new_esEs30(xuu580, xuu590, ty_Float) -> new_esEs17(xuu580, xuu590) 22.90/8.43 new_ltEs23(xuu87, xuu88, app(ty_Maybe, cfd)) -> new_ltEs9(xuu87, xuu88, cfd) 22.90/8.43 new_compare16([], [], ccb) -> EQ 22.90/8.43 new_sr(xuu4000, xuu50001) -> new_primMulInt(xuu4000, xuu50001) 22.90/8.43 new_lt21(xuu580, xuu590, ty_Char) -> new_lt10(xuu580, xuu590) 22.90/8.43 new_compare19(Left(xuu50000), Right(xuu4000), ccd, cce) -> LT 22.90/8.43 new_primMulNat0(Zero, Zero) -> Zero 22.90/8.43 new_esEs39(xuu99, xuu101, ty_Double) -> new_esEs15(xuu99, xuu101) 22.90/8.43 new_ltEs6(xuu58, xuu59, ty_Char) -> new_ltEs12(xuu58, xuu59) 22.90/8.43 new_esEs7(xuu50002, xuu4002, app(ty_Ratio, eac)) -> new_esEs22(xuu50002, xuu4002, eac) 22.90/8.43 new_lt20(xuu580, xuu590, app(ty_[], eg)) -> new_lt16(xuu580, xuu590, eg) 22.90/8.43 new_esEs31(xuu581, xuu591, app(ty_[], bbh)) -> new_esEs20(xuu581, xuu591, bbh) 22.90/8.43 new_ltEs19(xuu71, xuu74, app(ty_Ratio, eba)) -> new_ltEs7(xuu71, xuu74, eba) 22.90/8.43 new_esEs4(xuu50001, xuu4001, app(app(ty_@2, ede), edf)) -> new_esEs16(xuu50001, xuu4001, ede, edf) 22.90/8.43 new_ltEs22(xuu80, xuu81, app(ty_Maybe, ceb)) -> new_ltEs9(xuu80, xuu81, ceb) 22.90/8.43 new_esEs29(xuu69, xuu72, ty_@0) -> new_esEs24(xuu69, xuu72) 22.90/8.43 new_esEs7(xuu50002, xuu4002, ty_Int) -> new_esEs25(xuu50002, xuu4002) 22.90/8.43 new_esEs5(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.43 new_esEs39(xuu99, xuu101, app(app(ty_@2, bb), bc)) -> new_esEs16(xuu99, xuu101, bb, bc) 22.90/8.43 new_esEs9(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.43 new_ltEs13(EQ, LT) -> False 22.90/8.43 new_ltEs18(Right(xuu580), Right(xuu590), beg, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs10(xuu580, xuu590, bfc, bfd, bfe) 22.90/8.43 new_esEs30(xuu580, xuu590, ty_@0) -> new_esEs24(xuu580, xuu590) 22.90/8.43 new_ltEs18(Left(xuu580), Left(xuu590), app(app(app(ty_@3, bea), beb), bec), bdg) -> new_ltEs10(xuu580, xuu590, bea, beb, bec) 22.90/8.43 new_primEqInt(Neg(Succ(xuu5000000)), Neg(Zero)) -> False 22.90/8.43 new_primEqInt(Neg(Zero), Neg(Succ(xuu400000))) -> False 22.90/8.43 new_lt20(xuu580, xuu590, ty_Double) -> new_lt6(xuu580, xuu590) 22.90/8.43 new_primEqInt(Pos(Succ(xuu5000000)), Pos(Succ(xuu400000))) -> new_primEqNat0(xuu5000000, xuu400000) 22.90/8.43 new_esEs39(xuu99, xuu101, ty_Ordering) -> new_esEs13(xuu99, xuu101) 22.90/8.43 new_compare114(xuu156, xuu157, xuu158, xuu159, False, xuu161, ebb, ebc) -> new_compare115(xuu156, xuu157, xuu158, xuu159, xuu161, ebb, ebc) 22.90/8.43 new_ltEs6(xuu58, xuu59, ty_@0) -> new_ltEs5(xuu58, xuu59) 22.90/8.43 new_ltEs23(xuu87, xuu88, ty_Int) -> new_ltEs14(xuu87, xuu88) 22.90/8.43 new_esEs34(xuu500000, xuu40000, app(app(ty_@2, ehc), ehd)) -> new_esEs16(xuu500000, xuu40000, ehc, ehd) 22.90/8.43 new_ltEs18(Right(xuu580), Right(xuu590), beg, ty_Char) -> new_ltEs12(xuu580, xuu590) 22.90/8.43 new_esEs14(Right(xuu500000), Right(xuu40000), dce, ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.43 new_ltEs19(xuu71, xuu74, ty_Ordering) -> new_ltEs13(xuu71, xuu74) 22.90/8.43 new_esEs18(Just(xuu500000), Just(xuu40000), app(app(ty_@2, fgf), fgg)) -> new_esEs16(xuu500000, xuu40000, fgf, fgg) 22.90/8.43 new_esEs4(xuu50001, xuu4001, ty_Ordering) -> new_esEs13(xuu50001, xuu4001) 22.90/8.43 new_primEqInt(Pos(Succ(xuu5000000)), Neg(xuu40000)) -> False 22.90/8.43 new_primEqInt(Neg(Succ(xuu5000000)), Pos(xuu40000)) -> False 22.90/8.43 new_ltEs20(xuu581, xuu591, app(ty_Ratio, ebe)) -> new_ltEs7(xuu581, xuu591, ebe) 22.90/8.43 new_ltEs18(Left(xuu580), Left(xuu590), ty_Double, bdg) -> new_ltEs4(xuu580, xuu590) 22.90/8.43 new_esEs10(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.43 new_primCmpInt(Neg(Zero), Neg(Succ(xuu40000))) -> new_primCmpNat0(Succ(xuu40000), Zero) 22.90/8.43 new_esEs8(xuu50001, xuu4001, app(ty_Ratio, ecg)) -> new_esEs22(xuu50001, xuu4001, ecg) 22.90/8.43 new_esEs13(LT, GT) -> False 22.90/8.43 new_esEs13(GT, LT) -> False 22.90/8.43 new_esEs20(:(xuu500000, xuu500001), [], eeh) -> False 22.90/8.43 new_esEs20([], :(xuu40000, xuu40001), eeh) -> False 22.90/8.43 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 22.90/8.43 new_esEs34(xuu500000, xuu40000, ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.43 new_esEs35(xuu500000, xuu40000, app(ty_[], fbe)) -> new_esEs20(xuu500000, xuu40000, fbe) 22.90/8.43 new_ltEs20(xuu581, xuu591, ty_Ordering) -> new_ltEs13(xuu581, xuu591) 22.90/8.43 new_esEs5(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.43 new_primCompAux00(xuu37, xuu38, LT, dfe) -> LT 22.90/8.43 new_compare113(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, False, xuu178, efd, efe, eff) -> new_compare116(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, xuu178, efd, efe, eff) 22.90/8.43 new_ltEs9(Just(xuu580), Just(xuu590), app(ty_Ratio, fag)) -> new_ltEs7(xuu580, xuu590, fag) 22.90/8.43 new_lt21(xuu580, xuu590, app(app(ty_@2, hf), hg)) -> new_lt13(xuu580, xuu590, hf, hg) 22.90/8.43 new_lt12(xuu70, xuu73, app(ty_Maybe, cab)) -> new_lt9(xuu70, xuu73, cab) 22.90/8.43 new_esEs11(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.43 new_lt11(xuu69, xuu72, ty_@0) -> new_lt17(xuu69, xuu72) 22.90/8.43 new_compare112(xuu142, xuu143, False, dhb, dhc) -> GT 22.90/8.43 new_ltEs24(xuu100, xuu102, ty_Char) -> new_ltEs12(xuu100, xuu102) 22.90/8.43 new_esEs38(xuu500000, xuu40000, app(ty_Ratio, ffg)) -> new_esEs22(xuu500000, xuu40000, ffg) 22.90/8.43 new_esEs28(xuu70, xuu73, ty_Integer) -> new_esEs19(xuu70, xuu73) 22.90/8.43 new_ltEs18(Right(xuu580), Right(xuu590), beg, ty_Integer) -> new_ltEs11(xuu580, xuu590) 22.90/8.43 new_esEs31(xuu581, xuu591, ty_Float) -> new_esEs17(xuu581, xuu591) 22.90/8.43 new_not(False) -> True 22.90/8.43 new_lt7(xuu99, xuu101, dfg) -> new_esEs13(new_compare7(xuu99, xuu101, dfg), LT) 22.90/8.43 new_esEs36(xuu500002, xuu40002, app(app(ty_@2, fcg), fch)) -> new_esEs16(xuu500002, xuu40002, fcg, fch) 22.90/8.43 new_esEs9(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.43 new_ltEs6(xuu58, xuu59, ty_Integer) -> new_ltEs11(xuu58, xuu59) 22.90/8.43 new_ltEs20(xuu581, xuu591, app(app(app(ty_@3, fg), fh), ga)) -> new_ltEs10(xuu581, xuu591, fg, fh, ga) 22.90/8.43 new_lt9(xuu99, xuu101, be) -> new_esEs13(new_compare9(xuu99, xuu101, be), LT) 22.90/8.43 new_esEs4(xuu50001, xuu4001, app(ty_Ratio, eea)) -> new_esEs22(xuu50001, xuu4001, eea) 22.90/8.43 new_ltEs24(xuu100, xuu102, ty_Integer) -> new_ltEs11(xuu100, xuu102) 22.90/8.43 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.43 new_ltEs7(xuu58, xuu59, dea) -> new_fsEs(new_compare7(xuu58, xuu59, dea)) 22.90/8.43 new_esEs38(xuu500000, xuu40000, app(app(ty_@2, ffc), ffd)) -> new_esEs16(xuu500000, xuu40000, ffc, ffd) 22.90/8.43 new_esEs14(Right(xuu500000), Right(xuu40000), dce, app(ty_Ratio, ddd)) -> new_esEs22(xuu500000, xuu40000, ddd) 22.90/8.43 new_ltEs19(xuu71, xuu74, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_ltEs10(xuu71, xuu74, cbd, cbe, cbf) 22.90/8.43 new_ltEs10(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, hh, baa) -> new_pePe(new_lt21(xuu580, xuu590, bba), new_asAs(new_esEs32(xuu580, xuu590, bba), new_pePe(new_lt22(xuu581, xuu591, hh), new_asAs(new_esEs31(xuu581, xuu591, hh), new_ltEs21(xuu582, xuu592, baa))))) 22.90/8.43 new_esEs14(Right(xuu500000), Right(xuu40000), dce, app(app(ty_Either, dcf), dcg)) -> new_esEs14(xuu500000, xuu40000, dcf, dcg) 22.90/8.43 new_primCompAux00(xuu37, xuu38, EQ, app(ty_[], cdd)) -> new_compare16(xuu37, xuu38, cdd) 22.90/8.43 new_ltEs22(xuu80, xuu81, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs10(xuu80, xuu81, cec, ced, cee) 22.90/8.43 new_esEs8(xuu50001, xuu4001, ty_Bool) -> new_esEs21(xuu50001, xuu4001) 22.90/8.43 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 22.90/8.43 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 22.90/8.43 new_ltEs23(xuu87, xuu88, ty_Bool) -> new_ltEs15(xuu87, xuu88) 22.90/8.43 new_lt12(xuu70, xuu73, ty_Float) -> new_lt18(xuu70, xuu73) 22.90/8.43 new_ltEs24(xuu100, xuu102, ty_@0) -> new_ltEs5(xuu100, xuu102) 22.90/8.43 new_esEs8(xuu50001, xuu4001, app(app(ty_Either, eca), ecb)) -> new_esEs14(xuu50001, xuu4001, eca, ecb) 22.90/8.43 new_lt12(xuu70, xuu73, app(app(ty_Either, cag), cah)) -> new_lt19(xuu70, xuu73, cag, cah) 22.90/8.43 new_lt21(xuu580, xuu590, ty_Double) -> new_lt6(xuu580, xuu590) 22.90/8.43 new_esEs8(xuu50001, xuu4001, ty_Int) -> new_esEs25(xuu50001, xuu4001) 22.90/8.43 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 22.90/8.43 new_compare6(Double(xuu50000, Pos(xuu500010)), Double(xuu4000, Neg(xuu40010))) -> new_compare14(new_sr(xuu50000, Pos(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) 22.90/8.43 new_compare6(Double(xuu50000, Neg(xuu500010)), Double(xuu4000, Pos(xuu40010))) -> new_compare14(new_sr(xuu50000, Neg(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) 22.90/8.43 new_primMulNat0(Succ(xuu400000), Succ(xuu5000100)) -> new_primPlusNat0(new_primMulNat0(xuu400000, Succ(xuu5000100)), xuu5000100) 22.90/8.43 new_esEs14(Left(xuu500000), Left(xuu40000), app(ty_Maybe, dbg), dbb) -> new_esEs18(xuu500000, xuu40000, dbg) 22.90/8.43 new_ltEs21(xuu582, xuu592, ty_Integer) -> new_ltEs11(xuu582, xuu592) 22.90/8.43 new_lt22(xuu581, xuu591, ty_Double) -> new_lt6(xuu581, xuu591) 22.90/8.43 new_ltEs13(LT, EQ) -> True 22.90/8.43 new_ltEs21(xuu582, xuu592, ty_Int) -> new_ltEs14(xuu582, xuu592) 22.90/8.43 new_esEs16(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), eee, eef) -> new_asAs(new_esEs34(xuu500000, xuu40000, eee), new_esEs33(xuu500001, xuu40001, eef)) 22.90/8.43 new_ltEs22(xuu80, xuu81, ty_@0) -> new_ltEs5(xuu80, xuu81) 22.90/8.43 new_ltEs23(xuu87, xuu88, ty_Ordering) -> new_ltEs13(xuu87, xuu88) 22.90/8.43 new_esEs6(xuu50000, xuu4000, app(ty_Ratio, dgf)) -> new_esEs22(xuu50000, xuu4000, dgf) 22.90/8.43 new_compare25(xuu87, xuu88, False, cfa, fae) -> new_compare112(xuu87, xuu88, new_ltEs23(xuu87, xuu88, fae), cfa, fae) 22.90/8.43 new_esEs32(xuu580, xuu590, app(ty_[], baf)) -> new_esEs20(xuu580, xuu590, baf) 22.90/8.43 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 22.90/8.43 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 22.90/8.43 new_lt23(xuu99, xuu101, ty_Double) -> new_lt6(xuu99, xuu101) 22.90/8.44 new_compare15(True, True) -> EQ 22.90/8.44 new_compare110(xuu135, xuu136, False, chf, chg) -> GT 22.90/8.44 new_ltEs21(xuu582, xuu592, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs10(xuu582, xuu592, bcf, bcg, bch) 22.90/8.44 new_esEs33(xuu500001, xuu40001, app(ty_[], egd)) -> new_esEs20(xuu500001, xuu40001, egd) 22.90/8.44 new_primEqNat0(Zero, Zero) -> True 22.90/8.44 new_esEs9(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.44 new_esEs7(xuu50002, xuu4002, ty_Ordering) -> new_esEs13(xuu50002, xuu4002) 22.90/8.44 new_ltEs9(Just(xuu580), Nothing, deb) -> False 22.90/8.44 new_ltEs9(Nothing, Nothing, deb) -> True 22.90/8.44 new_compare5(xuu5000, xuu400, app(ty_[], ccb)) -> new_compare16(xuu5000, xuu400, ccb) 22.90/8.44 new_esEs36(xuu500002, xuu40002, ty_Double) -> new_esEs15(xuu500002, xuu40002) 22.90/8.44 new_ltEs23(xuu87, xuu88, ty_@0) -> new_ltEs5(xuu87, xuu88) 22.90/8.44 new_esEs37(xuu500001, xuu40001, app(app(ty_@2, fea), feb)) -> new_esEs16(xuu500001, xuu40001, fea, feb) 22.90/8.44 new_ltEs22(xuu80, xuu81, ty_Char) -> new_ltEs12(xuu80, xuu81) 22.90/8.44 new_ltEs24(xuu100, xuu102, ty_Bool) -> new_ltEs15(xuu100, xuu102) 22.90/8.44 new_ltEs22(xuu80, xuu81, ty_Ordering) -> new_ltEs13(xuu80, xuu81) 22.90/8.44 new_compare18(Float(xuu50000, Pos(xuu500010)), Float(xuu4000, Neg(xuu40010))) -> new_compare14(new_sr(xuu50000, Pos(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) 22.90/8.44 new_compare18(Float(xuu50000, Neg(xuu500010)), Float(xuu4000, Pos(xuu40010))) -> new_compare14(new_sr(xuu50000, Neg(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) 22.90/8.44 new_esEs10(xuu50000, xuu4000, app(ty_[], dae)) -> new_esEs20(xuu50000, xuu4000, dae) 22.90/8.44 new_compare9(Nothing, Nothing, dg) -> EQ 22.90/8.44 new_asAs(False, xuu117) -> False 22.90/8.44 new_esEs13(LT, EQ) -> False 22.90/8.44 new_esEs13(EQ, LT) -> False 22.90/8.44 new_ltEs19(xuu71, xuu74, ty_Int) -> new_ltEs14(xuu71, xuu74) 22.90/8.44 new_ltEs24(xuu100, xuu102, app(ty_Maybe, cg)) -> new_ltEs9(xuu100, xuu102, cg) 22.90/8.44 new_esEs9(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.44 new_esEs9(xuu50000, xuu4000, app(app(ty_Either, dec), ded)) -> new_esEs14(xuu50000, xuu4000, dec, ded) 22.90/8.44 new_esEs5(xuu50000, xuu4000, app(ty_Ratio, dhd)) -> new_esEs22(xuu50000, xuu4000, dhd) 22.90/8.44 new_ltEs6(xuu58, xuu59, ty_Int) -> new_ltEs14(xuu58, xuu59) 22.90/8.44 new_esEs26(xuu500001, xuu40001, ty_Integer) -> new_esEs19(xuu500001, xuu40001) 22.90/8.44 new_esEs28(xuu70, xuu73, ty_Float) -> new_esEs17(xuu70, xuu73) 22.90/8.44 new_ltEs22(xuu80, xuu81, ty_Integer) -> new_ltEs11(xuu80, xuu81) 22.90/8.44 new_esEs7(xuu50002, xuu4002, ty_Char) -> new_esEs12(xuu50002, xuu4002) 22.90/8.44 new_esEs15(Double(xuu500000, xuu500001), Double(xuu40000, xuu40001)) -> new_esEs25(new_sr(xuu500000, xuu40001), new_sr(xuu500001, xuu40000)) 22.90/8.44 new_ltEs20(xuu581, xuu591, ty_Int) -> new_ltEs14(xuu581, xuu591) 22.90/8.44 22.90/8.44 The set Q consists of the following terms: 22.90/8.44 22.90/8.44 new_esEs35(x0, x1, app(ty_[], x2)) 22.90/8.44 new_ltEs18(Right(x0), Right(x1), x2, ty_Integer) 22.90/8.44 new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_ltEs22(x0, x1, ty_Integer) 22.90/8.44 new_esEs37(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs10(x0, x1, ty_Char) 22.90/8.44 new_primPlusNat1(Zero, Succ(x0)) 22.90/8.44 new_esEs35(x0, x1, ty_Char) 22.90/8.44 new_esEs6(x0, x1, ty_Char) 22.90/8.44 new_lt11(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_lt12(x0, x1, ty_Float) 22.90/8.44 new_primPlusNat1(Zero, Zero) 22.90/8.44 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 22.90/8.44 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_lt11(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_esEs14(Left(x0), Left(x1), ty_Double, x2) 22.90/8.44 new_ltEs24(x0, x1, ty_Integer) 22.90/8.44 new_compare26(x0, x1, True, x2) 22.90/8.44 new_esEs17(Float(x0, x1), Float(x2, x3)) 22.90/8.44 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_esEs35(x0, x1, ty_Ordering) 22.90/8.44 new_primEqInt(Pos(Zero), Pos(Zero)) 22.90/8.44 new_primCompAux00(x0, x1, EQ, ty_Bool) 22.90/8.44 new_esEs38(x0, x1, ty_Float) 22.90/8.44 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_lt22(x0, x1, app(ty_[], x2)) 22.90/8.44 new_primEqNat0(Succ(x0), Succ(x1)) 22.90/8.44 new_esEs28(x0, x1, ty_Char) 22.90/8.44 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs36(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_ltEs13(EQ, EQ) 22.90/8.44 new_esEs23(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.90/8.44 new_esEs38(x0, x1, app(ty_[], x2)) 22.90/8.44 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs13(LT, LT) 22.90/8.44 new_primEqInt(Neg(Zero), Neg(Zero)) 22.90/8.44 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 22.90/8.44 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_ltEs18(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.90/8.44 new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) 22.90/8.44 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_ltEs18(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.90/8.44 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_ltEs15(False, True) 22.90/8.44 new_ltEs15(True, False) 22.90/8.44 new_lt22(x0, x1, ty_Integer) 22.90/8.44 new_esEs28(x0, x1, ty_Ordering) 22.90/8.44 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_lt11(x0, x1, ty_Char) 22.90/8.44 new_ltEs24(x0, x1, ty_@0) 22.90/8.44 new_esEs6(x0, x1, ty_Double) 22.90/8.44 new_esEs9(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_esEs10(x0, x1, ty_Ordering) 22.90/8.44 new_compare116(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 22.90/8.44 new_esEs10(x0, x1, ty_Double) 22.90/8.44 new_ltEs22(x0, x1, ty_@0) 22.90/8.44 new_esEs18(Nothing, Just(x0), x1) 22.90/8.44 new_compare5(x0, x1, ty_Int) 22.90/8.44 new_esEs8(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_lt12(x0, x1, ty_Integer) 22.90/8.44 new_esEs29(x0, x1, ty_Ordering) 22.90/8.44 new_primCompAux00(x0, x1, EQ, ty_Integer) 22.90/8.44 new_ltEs6(x0, x1, ty_Integer) 22.90/8.44 new_compare15(False, True) 22.90/8.44 new_lt20(x0, x1, ty_Ordering) 22.90/8.44 new_compare15(True, False) 22.90/8.44 new_ltEs24(x0, x1, ty_Float) 22.90/8.44 new_compare5(x0, x1, ty_@0) 22.90/8.44 new_esEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.90/8.44 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_ltEs16(x0, x1, x2) 22.90/8.44 new_ltEs18(Right(x0), Right(x1), x2, ty_@0) 22.90/8.44 new_esEs14(Left(x0), Left(x1), ty_Char, x2) 22.90/8.44 new_primEqInt(Pos(Zero), Neg(Zero)) 22.90/8.44 new_primEqInt(Neg(Zero), Pos(Zero)) 22.90/8.44 new_esEs9(x0, x1, ty_Float) 22.90/8.44 new_esEs8(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_ltEs22(x0, x1, ty_Float) 22.90/8.44 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_ltEs5(x0, x1) 22.90/8.44 new_esEs9(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_ltEs18(Right(x0), Right(x1), x2, ty_Bool) 22.90/8.44 new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 22.90/8.44 new_esEs38(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 22.90/8.44 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 22.90/8.44 new_esEs21(True, True) 22.90/8.44 new_ltEs23(x0, x1, ty_Double) 22.90/8.44 new_asAs(False, x0) 22.90/8.44 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_ltEs23(x0, x1, ty_Char) 22.90/8.44 new_compare24(x0, x1, False, x2, x3) 22.90/8.44 new_esEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.90/8.44 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_compare115(x0, x1, x2, x3, True, x4, x5) 22.90/8.44 new_esEs36(x0, x1, ty_Double) 22.90/8.44 new_esEs7(x0, x1, ty_Ordering) 22.90/8.44 new_esEs9(x0, x1, ty_Integer) 22.90/8.44 new_ltEs18(Right(x0), Right(x1), x2, ty_Int) 22.90/8.44 new_ltEs24(x0, x1, app(ty_[], x2)) 22.90/8.44 new_lt11(x0, x1, ty_Ordering) 22.90/8.44 new_lt23(x0, x1, ty_Double) 22.90/8.44 new_esEs37(x0, x1, app(ty_[], x2)) 22.90/8.44 new_compare16(:(x0, x1), [], x2) 22.90/8.44 new_esEs7(x0, x1, ty_Float) 22.90/8.44 new_compare110(x0, x1, False, x2, x3) 22.90/8.44 new_lt12(x0, x1, ty_Bool) 22.90/8.44 new_ltEs4(x0, x1) 22.90/8.44 new_esEs9(x0, x1, ty_Bool) 22.90/8.44 new_esEs4(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs38(x0, x1, ty_@0) 22.90/8.44 new_lt23(x0, x1, app(ty_[], x2)) 22.90/8.44 new_lt12(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_ltEs18(Right(x0), Right(x1), x2, ty_Float) 22.90/8.44 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs28(x0, x1, ty_Double) 22.90/8.44 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_esEs18(Just(x0), Just(x1), ty_Int) 22.90/8.44 new_esEs36(x0, x1, ty_Ordering) 22.90/8.44 new_lt18(x0, x1) 22.90/8.44 new_lt22(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_ltEs24(x0, x1, ty_Int) 22.90/8.44 new_ltEs9(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_ltEs20(x0, x1, ty_Double) 22.90/8.44 new_ltEs9(Just(x0), Just(x1), ty_Char) 22.90/8.44 new_esEs5(x0, x1, ty_Double) 22.90/8.44 new_ltEs24(x0, x1, ty_Bool) 22.90/8.44 new_esEs7(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs14(Right(x0), Right(x1), x2, ty_Double) 22.90/8.44 new_esEs37(x0, x1, ty_Bool) 22.90/8.44 new_esEs30(x0, x1, ty_Bool) 22.90/8.44 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_compare5(x0, x1, ty_Bool) 22.90/8.44 new_esEs33(x0, x1, ty_Integer) 22.90/8.44 new_esEs5(x0, x1, ty_@0) 22.90/8.44 new_esEs37(x0, x1, ty_Float) 22.90/8.44 new_lt17(x0, x1) 22.90/8.44 new_esEs34(x0, x1, ty_Float) 22.90/8.44 new_esEs7(x0, x1, ty_Char) 22.90/8.44 new_ltEs12(x0, x1) 22.90/8.44 new_esEs30(x0, x1, ty_Float) 22.90/8.44 new_ltEs17(x0, x1) 22.90/8.44 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_esEs24(@0, @0) 22.90/8.44 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_esEs33(x0, x1, ty_Ordering) 22.90/8.44 new_esEs8(x0, x1, ty_Double) 22.90/8.44 new_esEs31(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_esEs6(x0, x1, app(ty_[], x2)) 22.90/8.44 new_compare5(x0, x1, ty_Integer) 22.90/8.44 new_primCompAux00(x0, x1, EQ, ty_Float) 22.90/8.44 new_esEs4(x0, x1, app(ty_[], x2)) 22.90/8.44 new_ltEs6(x0, x1, ty_@0) 22.90/8.44 new_esEs39(x0, x1, ty_Ordering) 22.90/8.44 new_esEs38(x0, x1, ty_Double) 22.90/8.44 new_ltEs19(x0, x1, ty_Int) 22.90/8.44 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs9(x0, x1, ty_Ordering) 22.90/8.44 new_compare12(Char(x0), Char(x1)) 22.90/8.44 new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 22.90/8.44 new_esEs4(x0, x1, ty_Float) 22.90/8.44 new_lt22(x0, x1, ty_@0) 22.90/8.44 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_lt20(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs14(Right(x0), Right(x1), x2, ty_@0) 22.90/8.44 new_esEs13(LT, EQ) 22.90/8.44 new_esEs13(EQ, LT) 22.90/8.44 new_ltEs20(x0, x1, ty_@0) 22.90/8.44 new_primCmpNat0(Succ(x0), Zero) 22.90/8.44 new_primCompAux00(x0, x1, EQ, ty_Int) 22.90/8.44 new_esEs32(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_lt20(x0, x1, ty_Double) 22.90/8.44 new_esEs29(x0, x1, ty_Char) 22.90/8.44 new_esEs22(:%(x0, x1), :%(x2, x3), x4) 22.90/8.44 new_esEs11(x0, x1, ty_Char) 22.90/8.44 new_ltEs20(x0, x1, ty_Char) 22.90/8.44 new_esEs13(EQ, EQ) 22.90/8.44 new_esEs5(x0, x1, ty_Char) 22.90/8.44 new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 22.90/8.44 new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 22.90/8.44 new_ltEs9(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.90/8.44 new_ltEs9(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.90/8.44 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_esEs36(x0, x1, ty_@0) 22.90/8.44 new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 22.90/8.44 new_esEs38(x0, x1, ty_Int) 22.90/8.44 new_esEs6(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 22.90/8.44 new_esEs21(False, True) 22.90/8.44 new_esEs21(True, False) 22.90/8.44 new_compare9(Just(x0), Just(x1), x2) 22.90/8.44 new_compare114(x0, x1, x2, x3, True, x4, x5, x6) 22.90/8.44 new_esEs33(x0, x1, ty_@0) 22.90/8.44 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_esEs14(Right(x0), Right(x1), x2, ty_Char) 22.90/8.44 new_esEs32(x0, x1, ty_Char) 22.90/8.44 new_esEs11(x0, x1, ty_Int) 22.90/8.44 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs8(x0, x1, ty_Char) 22.90/8.44 new_ltEs18(Left(x0), Left(x1), ty_Int, x2) 22.90/8.44 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs8(x0, x1, ty_@0) 22.90/8.44 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_esEs32(x0, x1, ty_Int) 22.90/8.44 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_ltEs21(x0, x1, ty_Bool) 22.90/8.44 new_primCompAux00(x0, x1, LT, x2) 22.90/8.44 new_esEs34(x0, x1, ty_Ordering) 22.90/8.44 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_compare13(GT, GT) 22.90/8.44 new_compare13(EQ, LT) 22.90/8.44 new_ltEs18(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.90/8.44 new_compare13(LT, EQ) 22.90/8.44 new_esEs29(x0, x1, ty_Float) 22.90/8.44 new_lt20(x0, x1, ty_Integer) 22.90/8.44 new_ltEs23(x0, x1, ty_Float) 22.90/8.44 new_ltEs23(x0, x1, ty_Integer) 22.90/8.44 new_lt11(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs18(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_lt5(x0, x1, x2, x3, x4) 22.90/8.44 new_esEs33(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_esEs39(x0, x1, ty_Double) 22.90/8.44 new_esEs8(x0, x1, ty_Int) 22.90/8.44 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_lt12(x0, x1, ty_Int) 22.90/8.44 new_esEs31(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_esEs34(x0, x1, app(ty_[], x2)) 22.90/8.44 new_ltEs18(Left(x0), Left(x1), ty_Char, x2) 22.90/8.44 new_compare25(x0, x1, True, x2, x3) 22.90/8.44 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_ltEs21(x0, x1, ty_Int) 22.90/8.44 new_esEs30(x0, x1, ty_Ordering) 22.90/8.44 new_ltEs18(Left(x0), Left(x1), ty_Bool, x2) 22.90/8.44 new_not(True) 22.90/8.44 new_esEs32(x0, x1, ty_Double) 22.90/8.44 new_lt21(x0, x1, ty_Double) 22.90/8.44 new_lt12(x0, x1, ty_Char) 22.90/8.44 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_primPlusNat1(Succ(x0), Succ(x1)) 22.90/8.44 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_esEs34(x0, x1, ty_Double) 22.90/8.44 new_ltEs13(EQ, GT) 22.90/8.44 new_ltEs13(GT, EQ) 22.90/8.44 new_esEs39(x0, x1, ty_Char) 22.90/8.44 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs20(:(x0, x1), [], x2) 22.90/8.44 new_esEs27(x0, x1, ty_Integer) 22.90/8.44 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_esEs18(Nothing, Nothing, x0) 22.90/8.44 new_primCompAux1(x0, x1, x2, x3, x4) 22.90/8.44 new_ltEs23(x0, x1, ty_Bool) 22.90/8.44 new_esEs38(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_compare113(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 22.90/8.44 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_ltEs19(x0, x1, app(ty_[], x2)) 22.90/8.44 new_ltEs21(x0, x1, ty_Char) 22.90/8.44 new_esEs39(x0, x1, ty_Int) 22.90/8.44 new_esEs26(x0, x1, ty_Integer) 22.90/8.44 new_ltEs23(x0, x1, ty_@0) 22.90/8.44 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs19(Integer(x0), Integer(x1)) 22.90/8.44 new_ltEs18(Left(x0), Left(x1), ty_Integer, x2) 22.90/8.44 new_esEs14(Left(x0), Left(x1), ty_Float, x2) 22.90/8.44 new_ltEs13(LT, LT) 22.90/8.44 new_lt4(x0, x1) 22.90/8.44 new_esEs35(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_lt22(x0, x1, ty_Ordering) 22.90/8.44 new_pePe(True, x0) 22.90/8.44 new_esEs14(Right(x0), Right(x1), x2, ty_Integer) 22.90/8.44 new_esEs9(x0, x1, ty_@0) 22.90/8.44 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_ltEs18(Right(x0), Right(x1), x2, ty_Double) 22.90/8.44 new_esEs32(x0, x1, ty_Bool) 22.90/8.44 new_esEs37(x0, x1, ty_Ordering) 22.90/8.44 new_esEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.90/8.44 new_esEs34(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_ltEs8(@2(x0, x1), @2(x2, x3), x4, x5) 22.90/8.44 new_compare112(x0, x1, False, x2, x3) 22.90/8.44 new_compare24(x0, x1, True, x2, x3) 22.90/8.44 new_lt12(x0, x1, ty_@0) 22.90/8.44 new_lt23(x0, x1, ty_Ordering) 22.90/8.44 new_esEs33(x0, x1, app(ty_[], x2)) 22.90/8.44 new_esEs21(False, False) 22.90/8.44 new_compare16([], :(x0, x1), x2) 22.90/8.44 new_esEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.90/8.44 new_esEs5(x0, x1, ty_Integer) 22.90/8.44 new_esEs5(x0, x1, app(ty_[], x2)) 22.90/8.44 new_ltEs20(x0, x1, ty_Integer) 22.90/8.44 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 22.90/8.44 new_esEs7(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_compare5(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 22.90/8.44 new_esEs14(Left(x0), Left(x1), ty_Integer, x2) 22.90/8.44 new_esEs18(Just(x0), Just(x1), ty_Double) 22.90/8.44 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_esEs7(x0, x1, ty_Double) 22.90/8.44 new_fsEs(x0) 22.90/8.44 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_ltEs21(x0, x1, ty_Double) 22.90/8.44 new_lt19(x0, x1, x2, x3) 22.90/8.44 new_ltEs18(Right(x0), Right(x1), x2, ty_Ordering) 22.90/8.44 new_esEs30(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_ltEs22(x0, x1, ty_Ordering) 22.90/8.44 new_esEs4(x0, x1, ty_Ordering) 22.90/8.44 new_compare16([], [], x0) 22.90/8.44 new_sr0(Integer(x0), Integer(x1)) 22.90/8.44 new_esEs14(Left(x0), Left(x1), ty_Bool, x2) 22.90/8.44 new_esEs8(x0, x1, ty_Float) 22.90/8.44 new_esEs8(x0, x1, ty_Integer) 22.90/8.44 new_compare114(x0, x1, x2, x3, False, x4, x5, x6) 22.90/8.44 new_esEs38(x0, x1, ty_Integer) 22.90/8.44 new_esEs5(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs4(x0, x1, ty_Double) 22.90/8.44 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 22.90/8.44 new_esEs11(x0, x1, ty_Integer) 22.90/8.44 new_primMulInt(Neg(x0), Neg(x1)) 22.90/8.44 new_esEs14(Right(x0), Right(x1), x2, ty_Bool) 22.90/8.44 new_esEs29(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_ltEs24(x0, x1, ty_Double) 22.90/8.44 new_esEs14(Right(x0), Right(x1), x2, ty_Float) 22.90/8.44 new_lt14(x0, x1) 22.90/8.44 new_primEqNat0(Zero, Zero) 22.90/8.44 new_lt20(x0, x1, ty_Bool) 22.90/8.44 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs32(x0, x1, ty_Float) 22.90/8.44 new_primEqNat0(Succ(x0), Zero) 22.90/8.44 new_not(False) 22.90/8.44 new_ltEs20(x0, x1, ty_Bool) 22.90/8.44 new_esEs13(EQ, GT) 22.90/8.44 new_esEs13(GT, EQ) 22.90/8.44 new_esEs35(x0, x1, ty_@0) 22.90/8.44 new_ltEs20(x0, x1, ty_Float) 22.90/8.44 new_esEs11(x0, x1, ty_Bool) 22.90/8.44 new_esEs28(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_lt20(x0, x1, ty_Float) 22.90/8.44 new_esEs18(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.90/8.44 new_esEs37(x0, x1, ty_Double) 22.90/8.44 new_ltEs6(x0, x1, ty_Float) 22.90/8.44 new_ltEs6(x0, x1, ty_Bool) 22.90/8.44 new_esEs30(x0, x1, ty_Double) 22.90/8.44 new_esEs6(x0, x1, ty_Ordering) 22.90/8.44 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 22.90/8.44 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 22.90/8.44 new_esEs5(x0, x1, ty_Bool) 22.90/8.44 new_ltEs19(x0, x1, ty_@0) 22.90/8.44 new_esEs5(x0, x1, ty_Float) 22.90/8.44 new_ltEs21(x0, x1, app(ty_[], x2)) 22.90/8.44 new_compare19(Right(x0), Right(x1), x2, x3) 22.90/8.44 new_ltEs18(Left(x0), Left(x1), ty_@0, x2) 22.90/8.44 new_esEs38(x0, x1, ty_Char) 22.90/8.44 new_esEs14(Right(x0), Right(x1), x2, ty_Int) 22.90/8.44 new_lt20(x0, x1, ty_Int) 22.90/8.44 new_ltEs20(x0, x1, ty_Int) 22.90/8.44 new_esEs28(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_compare11(Integer(x0), Integer(x1)) 22.90/8.44 new_compare19(Left(x0), Left(x1), x2, x3) 22.90/8.44 new_lt21(x0, x1, app(ty_[], x2)) 22.90/8.44 new_ltEs6(x0, x1, ty_Char) 22.90/8.44 new_ltEs6(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_compare113(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 22.90/8.44 new_ltEs6(x0, x1, ty_Int) 22.90/8.44 new_esEs37(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_esEs8(x0, x1, ty_Bool) 22.90/8.44 new_lt20(x0, x1, ty_Char) 22.90/8.44 new_primCompAux00(x0, x1, EQ, ty_@0) 22.90/8.44 new_lt21(x0, x1, ty_Ordering) 22.90/8.44 new_esEs5(x0, x1, ty_Int) 22.90/8.44 new_esEs29(x0, x1, ty_Double) 22.90/8.44 new_esEs31(x0, x1, ty_Ordering) 22.90/8.44 new_esEs38(x0, x1, ty_Bool) 22.90/8.44 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_compare14(x0, x1) 22.90/8.44 new_ltEs9(Just(x0), Nothing, x1) 22.90/8.44 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_ltEs9(Just(x0), Just(x1), ty_@0) 22.90/8.44 new_esEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.90/8.44 new_compare112(x0, x1, True, x2, x3) 22.90/8.44 new_esEs39(x0, x1, app(ty_[], x2)) 22.90/8.44 new_lt11(x0, x1, ty_@0) 22.90/8.44 new_ltEs9(Just(x0), Just(x1), ty_Bool) 22.90/8.44 new_lt12(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_esEs20([], :(x0, x1), x2) 22.90/8.44 new_esEs11(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_primCmpNat0(Zero, Succ(x0)) 22.90/8.44 new_compare110(x0, x1, True, x2, x3) 22.90/8.44 new_esEs35(x0, x1, ty_Int) 22.90/8.44 new_esEs6(x0, x1, ty_Int) 22.90/8.44 new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 22.90/8.44 new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 22.90/8.44 new_esEs28(x0, x1, ty_@0) 22.90/8.44 new_esEs26(x0, x1, ty_Int) 22.90/8.44 new_compare13(GT, LT) 22.90/8.44 new_compare13(LT, GT) 22.90/8.44 new_esEs25(x0, x1) 22.90/8.44 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_esEs28(x0, x1, ty_Int) 22.90/8.44 new_esEs29(x0, x1, app(ty_[], x2)) 22.90/8.44 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_compare17(@0, @0) 22.90/8.44 new_compare5(x0, x1, ty_Char) 22.90/8.44 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_esEs11(x0, x1, ty_Float) 22.90/8.44 new_lt23(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_lt11(x0, x1, ty_Bool) 22.90/8.44 new_esEs10(x0, x1, ty_Int) 22.90/8.44 new_primCompAux00(x0, x1, GT, x2) 22.90/8.44 new_pePe(False, x0) 22.90/8.44 new_lt21(x0, x1, ty_Float) 22.90/8.44 new_esEs6(x0, x1, ty_@0) 22.90/8.44 new_ltEs9(Nothing, Just(x0), x1) 22.90/8.44 new_lt21(x0, x1, ty_Bool) 22.90/8.44 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 22.90/8.44 new_esEs34(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_esEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.90/8.44 new_esEs15(Double(x0, x1), Double(x2, x3)) 22.90/8.44 new_ltEs15(True, True) 22.90/8.44 new_esEs12(Char(x0), Char(x1)) 22.90/8.44 new_ltEs23(x0, x1, ty_Int) 22.90/8.44 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 22.90/8.44 new_esEs28(x0, x1, ty_Bool) 22.90/8.44 new_ltEs9(Just(x0), Just(x1), app(ty_[], x2)) 22.90/8.44 new_esEs11(x0, x1, app(ty_[], x2)) 22.90/8.44 new_esEs28(x0, x1, ty_Integer) 22.90/8.44 new_esEs10(x0, x1, ty_Bool) 22.90/8.44 new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.90/8.44 new_lt20(x0, x1, app(ty_[], x2)) 22.90/8.44 new_primMulInt(Pos(x0), Pos(x1)) 22.90/8.44 new_esEs14(Left(x0), Left(x1), ty_@0, x2) 22.90/8.44 new_primMulNat0(Succ(x0), Succ(x1)) 22.90/8.44 new_lt11(x0, x1, ty_Int) 22.90/8.44 new_esEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.90/8.44 new_primCompAux00(x0, x1, EQ, ty_Ordering) 22.90/8.44 new_ltEs18(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.90/8.44 new_ltEs21(x0, x1, ty_Float) 22.90/8.44 new_ltEs9(Just(x0), Just(x1), ty_Integer) 22.90/8.44 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs39(x0, x1, ty_Float) 22.90/8.44 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_ltEs18(Right(x0), Right(x1), x2, ty_Char) 22.90/8.44 new_lt22(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_lt21(x0, x1, ty_@0) 22.90/8.44 new_esEs14(Left(x0), Left(x1), ty_Int, x2) 22.90/8.44 new_ltEs13(GT, LT) 22.90/8.44 new_ltEs13(LT, GT) 22.90/8.44 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_compare5(x0, x1, app(ty_[], x2)) 22.90/8.44 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs30(x0, x1, app(ty_[], x2)) 22.90/8.44 new_sr(x0, x1) 22.90/8.44 new_compare28(x0, x1, x2, x3, False, x4, x5) 22.90/8.44 new_esEs35(x0, x1, ty_Integer) 22.90/8.44 new_compare27(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 22.90/8.44 new_compare26(x0, x1, False, x2) 22.90/8.44 new_esEs16(@2(x0, x1), @2(x2, x3), x4, x5) 22.90/8.44 new_lt11(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_primCmpNat0(Succ(x0), Succ(x1)) 22.90/8.44 new_ltEs24(x0, x1, ty_Char) 22.90/8.44 new_esEs31(x0, x1, ty_Float) 22.90/8.44 new_lt12(x0, x1, app(ty_[], x2)) 22.90/8.44 new_esEs18(Just(x0), Just(x1), app(ty_[], x2)) 22.90/8.44 new_ltEs6(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs18(Just(x0), Just(x1), ty_Float) 22.90/8.44 new_esEs10(x0, x1, ty_Integer) 22.90/8.44 new_esEs31(x0, x1, ty_Double) 22.90/8.44 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_ltEs18(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.90/8.44 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_asAs(True, x0) 22.90/8.44 new_esEs7(x0, x1, app(ty_[], x2)) 22.90/8.44 new_ltEs9(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.90/8.44 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_ltEs20(x0, x1, app(ty_[], x2)) 22.90/8.44 new_compare15(False, False) 22.90/8.44 new_esEs32(x0, x1, app(ty_[], x2)) 22.90/8.44 new_esEs10(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_ltEs18(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.90/8.44 new_ltEs19(x0, x1, ty_Integer) 22.90/8.44 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 22.90/8.44 new_ltEs22(x0, x1, ty_Double) 22.90/8.44 new_ltEs24(x0, x1, ty_Ordering) 22.90/8.44 new_esEs39(x0, x1, ty_Bool) 22.90/8.44 new_esEs32(x0, x1, ty_Integer) 22.90/8.44 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 22.90/8.44 new_esEs18(Just(x0), Just(x1), ty_Ordering) 22.90/8.44 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_ltEs11(x0, x1) 22.90/8.44 new_primMulNat0(Zero, Succ(x0)) 22.90/8.44 new_primCmpInt(Neg(Zero), Neg(Zero)) 22.90/8.44 new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) 22.90/8.44 new_ltEs19(x0, x1, ty_Float) 22.90/8.44 new_esEs11(x0, x1, ty_Double) 22.90/8.44 new_esEs11(x0, x1, ty_@0) 22.90/8.44 new_esEs18(Just(x0), Just(x1), ty_Char) 22.90/8.44 new_esEs18(Just(x0), Just(x1), ty_Integer) 22.90/8.44 new_esEs10(x0, x1, ty_@0) 22.90/8.44 new_ltEs21(x0, x1, ty_Integer) 22.90/8.44 new_ltEs19(x0, x1, ty_Bool) 22.90/8.44 new_esEs32(x0, x1, ty_Ordering) 22.90/8.44 new_esEs27(x0, x1, ty_Int) 22.90/8.44 new_esEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.90/8.44 new_primCmpInt(Pos(Zero), Neg(Zero)) 22.90/8.44 new_primCmpInt(Neg(Zero), Pos(Zero)) 22.90/8.44 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_ltEs18(Left(x0), Left(x1), ty_Float, x2) 22.90/8.44 new_compare10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.90/8.44 new_esEs4(x0, x1, ty_Int) 22.90/8.44 new_lt20(x0, x1, ty_@0) 22.90/8.44 new_ltEs7(x0, x1, x2) 22.90/8.44 new_primPlusNat0(Succ(x0), x1) 22.90/8.44 new_esEs29(x0, x1, ty_Int) 22.90/8.44 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_lt23(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_compare13(GT, EQ) 22.90/8.44 new_compare13(EQ, GT) 22.90/8.44 new_lt20(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_esEs29(x0, x1, ty_Bool) 22.90/8.44 new_ltEs9(Just(x0), Just(x1), ty_Int) 22.90/8.44 new_esEs33(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_ltEs18(Left(x0), Left(x1), app(ty_[], x2), x3) 22.90/8.44 new_compare5(x0, x1, ty_Ordering) 22.90/8.44 new_ltEs15(False, False) 22.90/8.44 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_primEqNat0(Zero, Succ(x0)) 22.90/8.44 new_esEs5(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_esEs11(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs35(x0, x1, ty_Bool) 22.90/8.44 new_esEs18(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.90/8.44 new_primCompAux00(x0, x1, EQ, ty_Char) 22.90/8.44 new_ltEs6(x0, x1, ty_Double) 22.90/8.44 new_esEs37(x0, x1, ty_Int) 22.90/8.44 new_esEs20([], [], x0) 22.90/8.44 new_ltEs18(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.90/8.44 new_esEs18(Just(x0), Just(x1), ty_Bool) 22.90/8.44 new_lt11(x0, x1, ty_Integer) 22.90/8.44 new_esEs13(GT, GT) 22.90/8.44 new_esEs30(x0, x1, ty_Int) 22.90/8.44 new_ltEs21(x0, x1, ty_Ordering) 22.90/8.44 new_esEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.90/8.44 new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_ltEs9(Just(x0), Just(x1), ty_Float) 22.90/8.44 new_esEs39(x0, x1, ty_Integer) 22.90/8.44 new_esEs7(x0, x1, ty_Int) 22.90/8.44 new_primPlusNat1(Succ(x0), Zero) 22.90/8.44 new_esEs36(x0, x1, app(ty_[], x2)) 22.90/8.44 new_esEs9(x0, x1, ty_Int) 22.90/8.44 new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 22.90/8.44 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 22.90/8.44 new_lt9(x0, x1, x2) 22.90/8.44 new_esEs7(x0, x1, ty_Bool) 22.90/8.44 new_compare28(x0, x1, x2, x3, True, x4, x5) 22.90/8.44 new_esEs18(Just(x0), Just(x1), ty_@0) 22.90/8.44 new_compare115(x0, x1, x2, x3, False, x4, x5) 22.90/8.44 new_ltEs19(x0, x1, ty_Char) 22.90/8.44 new_esEs34(x0, x1, ty_Char) 22.90/8.44 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs36(x0, x1, ty_Bool) 22.90/8.44 new_compare27(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 22.90/8.44 new_lt12(x0, x1, ty_Double) 22.90/8.44 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 22.90/8.44 new_primMulNat0(Zero, Zero) 22.90/8.44 new_esEs30(x0, x1, ty_Char) 22.90/8.44 new_esEs9(x0, x1, ty_Char) 22.90/8.44 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_esEs4(x0, x1, ty_Bool) 22.90/8.44 new_esEs4(x0, x1, ty_@0) 22.90/8.44 new_esEs32(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_esEs37(x0, x1, ty_Char) 22.90/8.44 new_esEs18(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_lt7(x0, x1, x2) 22.90/8.44 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 22.90/8.44 new_esEs9(x0, x1, ty_Double) 22.90/8.44 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs29(x0, x1, ty_Integer) 22.90/8.44 new_lt12(x0, x1, ty_Ordering) 22.90/8.44 new_lt22(x0, x1, ty_Double) 22.90/8.44 new_esEs35(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_esEs38(x0, x1, ty_Ordering) 22.90/8.44 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_compare111(x0, x1, True, x2) 22.90/8.44 new_esEs31(x0, x1, ty_Bool) 22.90/8.44 new_esEs34(x0, x1, ty_Int) 22.90/8.44 new_lt23(x0, x1, ty_Bool) 22.90/8.44 new_lt6(x0, x1) 22.90/8.44 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_esEs4(x0, x1, ty_Char) 22.90/8.44 new_esEs9(x0, x1, app(ty_[], x2)) 22.90/8.44 new_esEs35(x0, x1, ty_Float) 22.90/8.44 new_esEs39(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_esEs4(x0, x1, ty_Integer) 22.90/8.44 new_esEs6(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_ltEs6(x0, x1, ty_Ordering) 22.90/8.44 new_esEs32(x0, x1, ty_@0) 22.90/8.44 new_esEs36(x0, x1, ty_Char) 22.90/8.44 new_compare5(x0, x1, ty_Float) 22.90/8.44 new_lt11(x0, x1, app(ty_[], x2)) 22.90/8.44 new_esEs33(x0, x1, ty_Int) 22.90/8.44 new_esEs5(x0, x1, ty_Ordering) 22.90/8.44 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_primMulNat0(Succ(x0), Zero) 22.90/8.44 new_lt13(x0, x1, x2, x3) 22.90/8.44 new_lt23(x0, x1, ty_Char) 22.90/8.44 new_esEs36(x0, x1, ty_Integer) 22.90/8.44 new_esEs18(Just(x0), Nothing, x1) 22.90/8.44 new_ltEs10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.90/8.44 new_esEs11(x0, x1, ty_Ordering) 22.90/8.44 new_ltEs18(Left(x0), Left(x1), ty_Ordering, x2) 22.90/8.44 new_esEs31(x0, x1, ty_Char) 22.90/8.44 new_ltEs18(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.90/8.44 new_compare9(Nothing, Just(x0), x1) 22.90/8.44 new_esEs28(x0, x1, app(ty_[], x2)) 22.90/8.44 new_ltEs19(x0, x1, ty_Ordering) 22.90/8.44 new_esEs34(x0, x1, ty_Bool) 22.90/8.44 new_compare13(LT, LT) 22.90/8.44 new_esEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.90/8.44 new_esEs10(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs33(x0, x1, ty_Bool) 22.90/8.44 new_esEs30(x0, x1, ty_Integer) 22.90/8.44 new_esEs37(x0, x1, ty_Integer) 22.90/8.44 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_esEs7(x0, x1, ty_Integer) 22.90/8.44 new_esEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.90/8.44 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_lt21(x0, x1, ty_Int) 22.90/8.44 new_lt23(x0, x1, ty_@0) 22.90/8.44 new_primPlusNat0(Zero, x0) 22.90/8.44 new_esEs31(x0, x1, ty_Int) 22.90/8.44 new_compare25(x0, x1, False, x2, x3) 22.90/8.44 new_esEs14(Right(x0), Right(x1), x2, ty_Ordering) 22.90/8.44 new_compare111(x0, x1, False, x2) 22.90/8.44 new_lt10(x0, x1) 22.90/8.44 new_esEs33(x0, x1, ty_Double) 22.90/8.44 new_esEs33(x0, x1, ty_Char) 22.90/8.44 new_lt23(x0, x1, ty_Float) 22.90/8.44 new_ltEs21(x0, x1, ty_@0) 22.90/8.44 new_esEs6(x0, x1, ty_Float) 22.90/8.44 new_esEs31(x0, x1, ty_@0) 22.90/8.44 new_primCmpInt(Pos(Zero), Pos(Zero)) 22.90/8.44 new_ltEs20(x0, x1, ty_Ordering) 22.90/8.44 new_compare13(EQ, EQ) 22.90/8.44 new_lt11(x0, x1, ty_Double) 22.90/8.44 new_esEs36(x0, x1, ty_Float) 22.90/8.44 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_lt11(x0, x1, ty_Float) 22.90/8.44 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_compare9(Nothing, Nothing, x0) 22.90/8.44 new_ltEs9(Just(x0), Just(x1), ty_Double) 22.90/8.44 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 22.90/8.44 new_esEs39(x0, x1, ty_@0) 22.90/8.44 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 22.90/8.44 new_ltEs22(x0, x1, ty_Int) 22.90/8.44 new_compare5(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_lt23(x0, x1, ty_Int) 22.90/8.44 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_ltEs23(x0, x1, app(ty_[], x2)) 22.90/8.44 new_ltEs9(Just(x0), Just(x1), ty_Ordering) 22.90/8.44 new_lt21(x0, x1, ty_Char) 22.90/8.44 new_esEs34(x0, x1, ty_Integer) 22.90/8.44 new_ltEs13(GT, GT) 22.90/8.44 new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_ltEs13(EQ, LT) 22.90/8.44 new_esEs13(LT, GT) 22.90/8.44 new_esEs13(GT, LT) 22.90/8.44 new_ltEs13(LT, EQ) 22.90/8.44 new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) 22.90/8.44 new_lt21(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_ltEs6(x0, x1, app(ty_[], x2)) 22.90/8.44 new_esEs14(Left(x0), Right(x1), x2, x3) 22.90/8.44 new_esEs14(Right(x0), Left(x1), x2, x3) 22.90/8.44 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs20(:(x0, x1), :(x2, x3), x4) 22.90/8.44 new_compare16(:(x0, x1), :(x2, x3), x4) 22.90/8.44 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs33(x0, x1, ty_Float) 22.90/8.44 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_esEs36(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_ltEs22(x0, x1, ty_Char) 22.90/8.44 new_esEs6(x0, x1, ty_Bool) 22.90/8.44 new_esEs39(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_compare5(x0, x1, ty_Double) 22.90/8.44 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_ltEs22(x0, x1, app(ty_[], x2)) 22.90/8.44 new_ltEs9(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.90/8.44 new_lt21(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs36(x0, x1, ty_Int) 22.90/8.44 new_esEs8(x0, x1, ty_Ordering) 22.90/8.44 new_ltEs9(Nothing, Nothing, x0) 22.90/8.44 new_lt22(x0, x1, ty_Bool) 22.90/8.44 new_esEs31(x0, x1, app(ty_[], x2)) 22.90/8.44 new_ltEs18(Left(x0), Left(x1), ty_Double, x2) 22.90/8.44 new_ltEs14(x0, x1) 22.90/8.44 new_lt16(x0, x1, x2) 22.90/8.44 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.90/8.44 new_ltEs19(x0, x1, ty_Double) 22.90/8.44 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_lt22(x0, x1, ty_Int) 22.90/8.44 new_esEs4(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_lt15(x0, x1) 22.90/8.44 new_esEs8(x0, x1, app(ty_[], x2)) 22.90/8.44 new_esEs30(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_compare19(Right(x0), Left(x1), x2, x3) 22.90/8.44 new_compare19(Left(x0), Right(x1), x2, x3) 22.90/8.44 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs34(x0, x1, ty_@0) 22.90/8.44 new_esEs14(Left(x0), Left(x1), app(ty_[], x2), x3) 22.90/8.44 new_esEs31(x0, x1, ty_Integer) 22.90/8.44 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 22.90/8.44 new_esEs28(x0, x1, ty_Float) 22.90/8.44 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_lt22(x0, x1, ty_Char) 22.90/8.44 new_compare15(True, True) 22.90/8.44 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 22.90/8.44 new_compare116(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 22.90/8.44 new_ltEs22(x0, x1, ty_Bool) 22.90/8.44 new_ltEs23(x0, x1, ty_Ordering) 22.90/8.44 new_esEs10(x0, x1, app(ty_[], x2)) 22.90/8.44 new_esEs10(x0, x1, ty_Float) 22.90/8.44 new_esEs18(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.90/8.44 new_esEs29(x0, x1, ty_@0) 22.90/8.44 new_lt23(x0, x1, ty_Integer) 22.90/8.44 new_ltEs18(Left(x0), Right(x1), x2, x3) 22.90/8.44 new_ltEs18(Right(x0), Left(x1), x2, x3) 22.90/8.44 new_primCompAux00(x0, x1, EQ, ty_Double) 22.90/8.44 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_primMulInt(Pos(x0), Neg(x1)) 22.90/8.44 new_primMulInt(Neg(x0), Pos(x1)) 22.90/8.44 new_esEs29(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_lt21(x0, x1, ty_Integer) 22.90/8.44 new_ltEs18(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.90/8.44 new_esEs35(x0, x1, ty_Double) 22.90/8.44 new_lt8(x0, x1) 22.90/8.44 new_esEs14(Left(x0), Left(x1), ty_Ordering, x2) 22.90/8.44 new_compare9(Just(x0), Nothing, x1) 22.90/8.44 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 22.90/8.44 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 22.90/8.44 new_esEs7(x0, x1, ty_@0) 22.90/8.44 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_lt22(x0, x1, ty_Float) 22.90/8.44 new_esEs6(x0, x1, ty_Integer) 22.90/8.44 new_esEs30(x0, x1, ty_@0) 22.90/8.44 new_primCmpNat0(Zero, Zero) 22.90/8.44 new_esEs37(x0, x1, ty_@0) 22.90/8.44 22.90/8.44 We have to consider all minimal (P,Q,R)-chains. 22.90/8.44 ---------------------------------------- 22.90/8.44 22.90/8.44 (24) DependencyGraphProof (EQUIVALENT) 22.90/8.44 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 4 less nodes. 22.90/8.44 ---------------------------------------- 22.90/8.44 22.90/8.44 (25) 22.90/8.44 Obligation: 22.90/8.44 Q DP problem: 22.90/8.44 The TRS P consists of the following rules: 22.90/8.44 22.90/8.44 new_ltEs2(xuu58, xuu59, bdd) -> new_compare3(xuu58, xuu59, bdd) 22.90/8.44 new_compare3(:(xuu50000, xuu50001), :(xuu4000, xuu4001), ccb) -> new_primCompAux(xuu50000, xuu4000, xuu50001, xuu4001, ccb) 22.90/8.44 new_primCompAux(xuu5000, xuu400, xuu5001, xuu401, ccc) -> new_primCompAux0(xuu5001, xuu401, new_compare5(xuu5000, xuu400, ccc), app(ty_[], ccc)) 22.90/8.44 new_primCompAux0(xuu37, xuu38, EQ, app(ty_[], cdd)) -> new_compare3(xuu37, xuu38, cdd) 22.90/8.44 new_primCompAux(Right(xuu50000), Right(xuu4000), xuu5001, xuu401, app(app(ty_Either, ccd), cce)) -> new_compare23(xuu50000, xuu4000, new_esEs11(xuu50000, xuu4000, cce), ccd, cce) 22.90/8.44 new_compare23(xuu87, xuu88, False, cfa, app(app(ty_@2, cfb), cfc)) -> new_ltEs(xuu87, xuu88, cfb, cfc) 22.90/8.44 new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), fb, app(app(ty_Either, gc), gd)) -> new_ltEs3(xuu581, xuu591, gc, gd) 22.90/8.44 new_ltEs3(Right(xuu580), Right(xuu590), beg, app(app(ty_@2, beh), bfa)) -> new_ltEs(xuu580, xuu590, beh, bfa) 22.90/8.44 new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), fb, app(ty_Maybe, ff)) -> new_ltEs0(xuu581, xuu591, ff) 22.90/8.44 new_ltEs0(Just(xuu580), Just(xuu590), app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs1(xuu580, xuu590, gh, ha, hb) 22.90/8.44 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, app(app(app(ty_@3, bbe), bbf), bbg), baa) -> new_lt1(xuu581, xuu591, bbe, bbf, bbg) 22.90/8.44 new_lt1(xuu99, xuu101, bf, bg, bh) -> new_compare1(xuu99, xuu101, bf, bg, bh) 22.90/8.44 new_compare1(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bga, bgb, bgc) -> new_compare21(xuu50000, xuu50001, xuu50002, xuu4000, xuu4001, xuu4002, new_asAs(new_esEs9(xuu50000, xuu4000, bga), new_asAs(new_esEs8(xuu50001, xuu4001, bgb), new_esEs7(xuu50002, xuu4002, bgc))), bga, bgb, bgc) 22.90/8.44 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, bgf, app(ty_[], cbg)) -> new_ltEs2(xuu71, xuu74, cbg) 22.90/8.44 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, app(ty_[], caf), bgg) -> new_lt2(xuu70, xuu73, caf) 22.90/8.44 new_lt2(xuu99, xuu101, ca) -> new_compare3(xuu99, xuu101, ca) 22.90/8.44 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, bgf, app(ty_Maybe, cbc)) -> new_ltEs0(xuu71, xuu74, cbc) 22.90/8.44 new_ltEs0(Just(xuu580), Just(xuu590), app(ty_Maybe, gg)) -> new_ltEs0(xuu580, xuu590, gg) 22.90/8.44 new_ltEs0(Just(xuu580), Just(xuu590), app(app(ty_@2, ge), gf)) -> new_ltEs(xuu580, xuu590, ge, gf) 22.90/8.44 new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), fb, app(app(app(ty_@3, fg), fh), ga)) -> new_ltEs1(xuu581, xuu591, fg, fh, ga) 22.90/8.44 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, app(ty_[], bbh), baa) -> new_lt2(xuu581, xuu591, bbh) 22.90/8.44 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(app(ty_@2, hf), hg), hh, baa) -> new_lt(xuu580, xuu590, hf, hg) 22.90/8.44 new_lt(xuu99, xuu101, bb, bc) -> new_compare(xuu99, xuu101, bb, bc) 22.90/8.44 new_compare(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), h, ba) -> new_compare2(xuu50000, xuu50001, xuu4000, xuu4001, new_asAs(new_esEs5(xuu50000, xuu4000, h), new_esEs4(xuu50001, xuu4001, ba)), h, ba) 22.90/8.44 new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(app(app(ty_@3, bf), bg), bh), bd) -> new_compare1(xuu99, xuu101, bf, bg, bh) 22.90/8.44 new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(ty_[], ca), bd) -> new_compare3(xuu99, xuu101, ca) 22.90/8.44 new_compare2(xuu99, xuu100, xuu101, xuu102, False, cd, app(app(app(ty_@3, da), db), dc)) -> new_ltEs1(xuu100, xuu102, da, db, dc) 22.90/8.44 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, hh, app(ty_[], bda)) -> new_ltEs2(xuu582, xuu592, bda) 22.90/8.44 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, app(app(ty_Either, bca), bcb), baa) -> new_lt3(xuu581, xuu591, bca, bcb) 22.90/8.44 new_lt3(xuu99, xuu101, cb, cc) -> new_compare4(xuu99, xuu101, cb, cc) 22.90/8.44 new_compare4(Right(xuu50000), Right(xuu4000), ccd, cce) -> new_compare23(xuu50000, xuu4000, new_esEs11(xuu50000, xuu4000, cce), ccd, cce) 22.90/8.44 new_compare23(xuu87, xuu88, False, cfa, app(ty_Maybe, cfd)) -> new_ltEs0(xuu87, xuu88, cfd) 22.90/8.44 new_ltEs0(Just(xuu580), Just(xuu590), app(app(ty_Either, hd), he)) -> new_ltEs3(xuu580, xuu590, hd, he) 22.90/8.44 new_ltEs3(Left(xuu580), Left(xuu590), app(app(ty_@2, bde), bdf), bdg) -> new_ltEs(xuu580, xuu590, bde, bdf) 22.90/8.44 new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), fb, app(app(ty_@2, fc), fd)) -> new_ltEs(xuu581, xuu591, fc, fd) 22.90/8.44 new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(app(ty_@2, dh), ea), eb) -> new_lt(xuu580, xuu590, dh, ea) 22.90/8.44 new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(app(app(ty_@3, ed), ee), ef), eb) -> new_lt1(xuu580, xuu590, ed, ee, ef) 22.90/8.44 new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(app(ty_Either, eh), fa), eb) -> new_lt3(xuu580, xuu590, eh, fa) 22.90/8.44 new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(ty_Maybe, ec), eb) -> new_lt0(xuu580, xuu590, ec) 22.90/8.44 new_lt0(xuu99, xuu101, be) -> new_compare0(xuu99, xuu101, be) 22.90/8.44 new_compare0(Just(xuu50000), Just(xuu4000), dg) -> new_compare20(xuu50000, xuu4000, new_esEs6(xuu50000, xuu4000, dg), dg) 22.90/8.44 new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(app(app(ty_@3, bea), beb), bec)), bdg)) -> new_ltEs1(xuu580, xuu590, bea, beb, bec) 22.90/8.44 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(app(app(ty_@3, bac), bad), bae), hh, baa) -> new_lt1(xuu580, xuu590, bac, bad, bae) 22.90/8.44 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, hh, app(app(ty_@2, bcc), bcd)) -> new_ltEs(xuu582, xuu592, bcc, bcd) 22.90/8.44 new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(ty_[], eg), eb) -> new_lt2(xuu580, xuu590, eg) 22.90/8.44 new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), fb, app(ty_[], gb)) -> new_ltEs2(xuu581, xuu591, gb) 22.90/8.44 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(app(ty_Either, bag), bah), hh, baa) -> new_lt3(xuu580, xuu590, bag, bah) 22.90/8.44 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, app(app(ty_@2, bbb), bbc), baa) -> new_lt(xuu581, xuu591, bbb, bbc) 22.90/8.44 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, hh, app(app(ty_Either, bdb), bdc)) -> new_ltEs3(xuu582, xuu592, bdb, bdc) 22.90/8.44 new_ltEs3(Right(xuu580), Right(xuu590), beg, app(ty_[], bff)) -> new_ltEs2(xuu580, xuu590, bff) 22.90/8.44 new_ltEs3(Left(xuu580), Left(xuu590), app(app(ty_Either, bee), bef), bdg) -> new_ltEs3(xuu580, xuu590, bee, bef) 22.90/8.44 new_ltEs3(Right(xuu580), Right(xuu590), beg, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs1(xuu580, xuu590, bfc, bfd, bfe) 22.90/8.44 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(ty_Maybe, bab), hh, baa) -> new_lt0(xuu580, xuu590, bab) 22.90/8.44 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, hh, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs1(xuu582, xuu592, bcf, bcg, bch) 22.90/8.44 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(ty_[], baf), hh, baa) -> new_lt2(xuu580, xuu590, baf) 22.90/8.44 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, app(ty_Maybe, bbd), baa) -> new_lt0(xuu581, xuu591, bbd) 22.90/8.44 new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, hh, app(ty_Maybe, bce)) -> new_ltEs0(xuu582, xuu592, bce) 22.90/8.44 new_ltEs0(Just(xuu580), Just(xuu590), app(ty_[], hc)) -> new_ltEs2(xuu580, xuu590, hc) 22.90/8.44 new_ltEs3(Right(xuu580), Right(xuu590), beg, app(app(ty_Either, bfg), bfh)) -> new_ltEs3(xuu580, xuu590, bfg, bfh) 22.90/8.44 new_ltEs3(Left(xuu580), Left(xuu590), app(app(app(ty_@3, bea), beb), bec), bdg) -> new_ltEs1(xuu580, xuu590, bea, beb, bec) 22.90/8.44 new_ltEs3(Left(xuu580), Left(xuu590), app(ty_Maybe, bdh), bdg) -> new_ltEs0(xuu580, xuu590, bdh) 22.90/8.44 new_ltEs3(Right(xuu580), Right(xuu590), beg, app(ty_Maybe, bfb)) -> new_ltEs0(xuu580, xuu590, bfb) 22.90/8.44 new_ltEs3(Left(xuu580), Left(xuu590), app(ty_[], bed), bdg) -> new_ltEs2(xuu580, xuu590, bed) 22.90/8.44 new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(ty_[], eg)), eb)) -> new_lt2(xuu580, xuu590, eg) 22.90/8.44 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(app(ty_Either, bag), bah)), hh), baa)) -> new_lt3(xuu580, xuu590, bag, bah) 22.90/8.44 new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(ty_[], bed)), bdg)) -> new_ltEs2(xuu580, xuu590, bed) 22.90/8.44 new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(ty_Maybe, gg))) -> new_ltEs0(xuu580, xuu590, gg) 22.90/8.44 new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(app(ty_Either, bee), bef)), bdg)) -> new_ltEs3(xuu580, xuu590, bee, bef) 22.90/8.44 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), app(app(app(ty_@3, bbe), bbf), bbg)), baa)) -> new_lt1(xuu581, xuu591, bbe, bbf, bbg) 22.90/8.44 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(app(app(ty_@3, bac), bad), bae)), hh), baa)) -> new_lt1(xuu580, xuu590, bac, bad, bae) 22.90/8.44 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(ty_[], baf)), hh), baa)) -> new_lt2(xuu580, xuu590, baf) 22.90/8.44 new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, fb), app(app(app(ty_@3, fg), fh), ga))) -> new_ltEs1(xuu581, xuu591, fg, fh, ga) 22.90/8.44 new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, fb), app(ty_[], gb))) -> new_ltEs2(xuu581, xuu591, gb) 22.90/8.44 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), hh), app(ty_[], bda))) -> new_ltEs2(xuu582, xuu592, bda) 22.90/8.44 new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(app(app(ty_@3, gh), ha), hb))) -> new_ltEs1(xuu580, xuu590, gh, ha, hb) 22.90/8.44 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), app(ty_[], bbh)), baa)) -> new_lt2(xuu581, xuu591, bbh) 22.90/8.44 new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, beg), app(app(ty_@2, beh), bfa))) -> new_ltEs(xuu580, xuu590, beh, bfa) 22.90/8.44 new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(app(app(ty_@3, ed), ee), ef)), eb)) -> new_lt1(xuu580, xuu590, ed, ee, ef) 22.90/8.44 new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(ty_Maybe, bdh)), bdg)) -> new_ltEs0(xuu580, xuu590, bdh) 22.90/8.44 new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(app(ty_@2, dh), ea)), eb)) -> new_lt(xuu580, xuu590, dh, ea) 22.90/8.44 new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(app(ty_Either, hd), he))) -> new_ltEs3(xuu580, xuu590, hd, he) 22.90/8.44 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), hh), app(app(ty_Either, bdb), bdc))) -> new_ltEs3(xuu582, xuu592, bdb, bdc) 22.90/8.44 new_compare20(xuu58, xuu59, False, app(ty_[], bdd)) -> new_compare3(xuu58, xuu59, bdd) 22.90/8.44 new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, beg), app(ty_[], bff))) -> new_ltEs2(xuu580, xuu590, bff) 22.90/8.44 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), hh), app(ty_Maybe, bce))) -> new_ltEs0(xuu582, xuu592, bce) 22.90/8.44 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(ty_Maybe, bab)), hh), baa)) -> new_lt0(xuu580, xuu590, bab) 22.90/8.44 new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(app(ty_@2, bde), bdf)), bdg)) -> new_ltEs(xuu580, xuu590, bde, bdf) 22.90/8.44 new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, beg), app(ty_Maybe, bfb))) -> new_ltEs0(xuu580, xuu590, bfb) 22.90/8.44 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), hh), app(app(ty_@2, bcc), bcd))) -> new_ltEs(xuu582, xuu592, bcc, bcd) 22.90/8.44 new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(ty_[], hc))) -> new_ltEs2(xuu580, xuu590, hc) 22.90/8.44 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), app(app(ty_Either, bca), bcb)), baa)) -> new_lt3(xuu581, xuu591, bca, bcb) 22.90/8.44 new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, beg), app(app(ty_Either, bfg), bfh))) -> new_ltEs3(xuu580, xuu590, bfg, bfh) 22.90/8.44 new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, fb), app(ty_Maybe, ff))) -> new_ltEs0(xuu581, xuu591, ff) 22.90/8.44 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), app(ty_Maybe, bbd)), baa)) -> new_lt0(xuu581, xuu591, bbd) 22.90/8.44 new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(app(ty_@2, ge), gf))) -> new_ltEs(xuu580, xuu590, ge, gf) 22.90/8.44 new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, fb), app(app(ty_@2, fc), fd))) -> new_ltEs(xuu581, xuu591, fc, fd) 22.90/8.44 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(app(ty_@2, hf), hg)), hh), baa)) -> new_lt(xuu580, xuu590, hf, hg) 22.90/8.44 new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(ty_Maybe, ec)), eb)) -> new_lt0(xuu580, xuu590, ec) 22.90/8.44 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), hh), app(app(app(ty_@3, bcf), bcg), bch))) -> new_ltEs1(xuu582, xuu592, bcf, bcg, bch) 22.90/8.44 new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, beg), app(app(app(ty_@3, bfc), bfd), bfe))) -> new_ltEs1(xuu580, xuu590, bfc, bfd, bfe) 22.90/8.44 new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, fb), app(app(ty_Either, gc), gd))) -> new_ltEs3(xuu581, xuu591, gc, gd) 22.90/8.44 new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(app(ty_Either, eh), fa)), eb)) -> new_lt3(xuu580, xuu590, eh, fa) 22.90/8.44 new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), app(app(ty_@2, bbb), bbc)), baa)) -> new_lt(xuu581, xuu591, bbb, bbc) 22.90/8.44 new_compare23(xuu87, xuu88, False, cfa, app(ty_[], cfh)) -> new_ltEs2(xuu87, xuu88, cfh) 22.90/8.44 new_compare23(xuu87, xuu88, False, cfa, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs1(xuu87, xuu88, cfe, cff, cfg) 22.90/8.44 new_compare23(xuu87, xuu88, False, cfa, app(app(ty_Either, cga), cgb)) -> new_ltEs3(xuu87, xuu88, cga, cgb) 22.90/8.44 new_compare4(Left(xuu50000), Left(xuu4000), ccd, cce) -> new_compare22(xuu50000, xuu4000, new_esEs10(xuu50000, xuu4000, ccd), ccd, cce) 22.90/8.44 new_compare22(xuu80, xuu81, False, app(app(app(ty_@3, cec), ced), cee), cea) -> new_ltEs1(xuu80, xuu81, cec, ced, cee) 22.90/8.44 new_compare22(xuu80, xuu81, False, app(ty_Maybe, ceb), cea) -> new_ltEs0(xuu80, xuu81, ceb) 22.90/8.44 new_compare22(xuu80, xuu81, False, app(ty_[], cef), cea) -> new_ltEs2(xuu80, xuu81, cef) 22.90/8.44 new_compare22(xuu80, xuu81, False, app(app(ty_Either, ceg), ceh), cea) -> new_ltEs3(xuu80, xuu81, ceg, ceh) 22.90/8.44 new_compare22(xuu80, xuu81, False, app(app(ty_@2, cdg), cdh), cea) -> new_ltEs(xuu80, xuu81, cdg, cdh) 22.90/8.44 new_compare2(xuu99, xuu100, xuu101, xuu102, False, cd, app(ty_[], dd)) -> new_ltEs2(xuu100, xuu102, dd) 22.90/8.44 new_compare2(xuu99, xuu100, xuu101, xuu102, False, cd, app(app(ty_@2, ce), cf)) -> new_ltEs(xuu100, xuu102, ce, cf) 22.90/8.44 new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(app(ty_@2, bb), bc), bd) -> new_compare(xuu99, xuu101, bb, bc) 22.90/8.44 new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(app(ty_Either, cb), cc), bd) -> new_compare4(xuu99, xuu101, cb, cc) 22.90/8.44 new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(ty_Maybe, be), bd) -> new_compare0(xuu99, xuu101, be) 22.90/8.44 new_compare2(xuu99, xuu100, xuu101, xuu102, False, cd, app(ty_Maybe, cg)) -> new_ltEs0(xuu100, xuu102, cg) 22.90/8.44 new_compare2(xuu99, xuu100, xuu101, xuu102, False, cd, app(app(ty_Either, de), df)) -> new_ltEs3(xuu100, xuu102, de, df) 22.90/8.44 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, bgf, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_ltEs1(xuu71, xuu74, cbd, cbe, cbf) 22.90/8.44 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(ty_Maybe, bgh), bgf, bgg) -> new_lt0(xuu69, xuu72, bgh) 22.90/8.44 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, app(app(ty_@2, bhh), caa), bgg) -> new_lt(xuu70, xuu73, bhh, caa) 22.90/8.44 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, bgf, app(app(ty_@2, cba), cbb)) -> new_ltEs(xuu71, xuu74, cba, cbb) 22.90/8.44 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(app(ty_@2, bgd), bge), bgf, bgg) -> new_lt(xuu69, xuu72, bgd, bge) 22.90/8.44 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(app(app(ty_@3, bha), bhb), bhc), bgf, bgg) -> new_lt1(xuu69, xuu72, bha, bhb, bhc) 22.90/8.44 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(ty_[], bhd), bgf, bgg) -> new_lt2(xuu69, xuu72, bhd) 22.90/8.44 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(app(ty_Either, bhe), bhf), bgf, bgg) -> new_lt3(xuu69, xuu72, bhe, bhf) 22.90/8.44 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, bgf, app(app(ty_Either, cbh), cca)) -> new_ltEs3(xuu71, xuu74, cbh, cca) 22.90/8.44 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, app(app(ty_Either, cag), cah), bgg) -> new_lt3(xuu70, xuu73, cag, cah) 22.90/8.44 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, app(ty_Maybe, cab), bgg) -> new_lt0(xuu70, xuu73, cab) 22.90/8.44 new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, app(app(app(ty_@3, cac), cad), cae), bgg) -> new_lt1(xuu70, xuu73, cac, cad, cae) 22.90/8.44 new_primCompAux(Left(xuu50000), Left(xuu4000), xuu5001, xuu401, app(app(ty_Either, ccd), cce)) -> new_compare22(xuu50000, xuu4000, new_esEs10(xuu50000, xuu4000, ccd), ccd, cce) 22.90/8.44 new_primCompAux(:(xuu50000, xuu50001), :(xuu4000, xuu4001), xuu5001, xuu401, app(ty_[], ccb)) -> new_primCompAux(xuu50000, xuu4000, xuu50001, xuu4001, ccb) 22.90/8.44 new_primCompAux(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), xuu5001, xuu401, app(app(app(ty_@3, bga), bgb), bgc)) -> new_compare21(xuu50000, xuu50001, xuu50002, xuu4000, xuu4001, xuu4002, new_asAs(new_esEs9(xuu50000, xuu4000, bga), new_asAs(new_esEs8(xuu50001, xuu4001, bgb), new_esEs7(xuu50002, xuu4002, bgc))), bga, bgb, bgc) 22.90/8.44 new_primCompAux(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), xuu5001, xuu401, app(app(ty_@2, h), ba)) -> new_compare2(xuu50000, xuu50001, xuu4000, xuu4001, new_asAs(new_esEs5(xuu50000, xuu4000, h), new_esEs4(xuu50001, xuu4001, ba)), h, ba) 22.90/8.44 new_primCompAux(Just(xuu50000), Just(xuu4000), xuu5001, xuu401, app(ty_Maybe, dg)) -> new_compare20(xuu50000, xuu4000, new_esEs6(xuu50000, xuu4000, dg), dg) 22.90/8.44 22.90/8.44 The TRS R consists of the following rules: 22.90/8.44 22.90/8.44 new_esEs14(Left(xuu500000), Left(xuu40000), app(app(ty_Either, dbc), dbd), dbb) -> new_esEs14(xuu500000, xuu40000, dbc, dbd) 22.90/8.44 new_ltEs19(xuu71, xuu74, ty_Integer) -> new_ltEs11(xuu71, xuu74) 22.90/8.44 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 22.90/8.44 new_ltEs18(Left(xuu580), Left(xuu590), app(ty_Maybe, bdh), bdg) -> new_ltEs9(xuu580, xuu590, bdh) 22.90/8.44 new_esEs23(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), efa, efb, efc) -> new_asAs(new_esEs38(xuu500000, xuu40000, efa), new_asAs(new_esEs37(xuu500001, xuu40001, efb), new_esEs36(xuu500002, xuu40002, efc))) 22.90/8.44 new_esEs24(@0, @0) -> True 22.90/8.44 new_esEs29(xuu69, xuu72, ty_Integer) -> new_esEs19(xuu69, xuu72) 22.90/8.44 new_pePe(True, xuu195) -> True 22.90/8.44 new_esEs7(xuu50002, xuu4002, app(app(ty_Either, dhe), dhf)) -> new_esEs14(xuu50002, xuu4002, dhe, dhf) 22.90/8.44 new_ltEs19(xuu71, xuu74, ty_@0) -> new_ltEs5(xuu71, xuu74) 22.90/8.44 new_esEs10(xuu50000, xuu4000, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs23(xuu50000, xuu4000, dag, dah, dba) 22.90/8.44 new_esEs8(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 22.90/8.44 new_ltEs23(xuu87, xuu88, app(ty_[], cfh)) -> new_ltEs16(xuu87, xuu88, cfh) 22.90/8.44 new_ltEs14(xuu58, xuu59) -> new_fsEs(new_compare14(xuu58, xuu59)) 22.90/8.44 new_esEs29(xuu69, xuu72, ty_Char) -> new_esEs12(xuu69, xuu72) 22.90/8.44 new_esEs9(xuu50000, xuu4000, app(ty_Maybe, deg)) -> new_esEs18(xuu50000, xuu4000, deg) 22.90/8.44 new_esEs38(xuu500000, xuu40000, ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.44 new_compare19(Right(xuu50000), Right(xuu4000), ccd, cce) -> new_compare25(xuu50000, xuu4000, new_esEs11(xuu50000, xuu4000, cce), ccd, cce) 22.90/8.44 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 22.90/8.44 new_ltEs6(xuu58, xuu59, ty_Ordering) -> new_ltEs13(xuu58, xuu59) 22.90/8.44 new_esEs6(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.44 new_esEs28(xuu70, xuu73, app(app(ty_Either, cag), cah)) -> new_esEs14(xuu70, xuu73, cag, cah) 22.90/8.44 new_esEs14(Right(xuu500000), Right(xuu40000), dce, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.44 new_esEs32(xuu580, xuu590, ty_@0) -> new_esEs24(xuu580, xuu590) 22.90/8.44 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Double, dbb) -> new_esEs15(xuu500000, xuu40000) 22.90/8.44 new_esEs37(xuu500001, xuu40001, app(ty_Ratio, fee)) -> new_esEs22(xuu500001, xuu40001, fee) 22.90/8.44 new_primCompAux00(xuu37, xuu38, EQ, ty_Int) -> new_compare14(xuu37, xuu38) 22.90/8.44 new_esEs5(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.44 new_esEs14(Right(xuu500000), Right(xuu40000), dce, ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.44 new_esEs6(xuu50000, xuu4000, app(app(ty_@2, dgb), dgc)) -> new_esEs16(xuu50000, xuu4000, dgb, dgc) 22.90/8.44 new_esEs35(xuu500000, xuu40000, app(app(app(ty_@3, fbg), fbh), fca)) -> new_esEs23(xuu500000, xuu40000, fbg, fbh, fca) 22.90/8.44 new_lt11(xuu69, xuu72, app(ty_[], bhd)) -> new_lt16(xuu69, xuu72, bhd) 22.90/8.44 new_lt23(xuu99, xuu101, ty_Char) -> new_lt10(xuu99, xuu101) 22.90/8.44 new_lt12(xuu70, xuu73, ty_Double) -> new_lt6(xuu70, xuu73) 22.90/8.44 new_lt15(xuu99, xuu101) -> new_esEs13(new_compare13(xuu99, xuu101), LT) 22.90/8.44 new_esEs37(xuu500001, xuu40001, ty_Double) -> new_esEs15(xuu500001, xuu40001) 22.90/8.44 new_compare5(xuu5000, xuu400, ty_Double) -> new_compare6(xuu5000, xuu400) 22.90/8.44 new_ltEs20(xuu581, xuu591, app(ty_Maybe, ff)) -> new_ltEs9(xuu581, xuu591, ff) 22.90/8.44 new_ltEs20(xuu581, xuu591, ty_Double) -> new_ltEs4(xuu581, xuu591) 22.90/8.44 new_esEs14(Right(xuu500000), Right(xuu40000), dce, app(app(ty_@2, dch), dda)) -> new_esEs16(xuu500000, xuu40000, dch, dda) 22.90/8.44 new_lt20(xuu580, xuu590, app(app(ty_@2, dh), ea)) -> new_lt13(xuu580, xuu590, dh, ea) 22.90/8.44 new_ltEs9(Just(xuu580), Just(xuu590), ty_Int) -> new_ltEs14(xuu580, xuu590) 22.90/8.44 new_esEs34(xuu500000, xuu40000, app(ty_[], ehf)) -> new_esEs20(xuu500000, xuu40000, ehf) 22.90/8.44 new_lt4(xuu99, xuu101) -> new_esEs13(new_compare15(xuu99, xuu101), LT) 22.90/8.44 new_esEs18(Just(xuu500000), Just(xuu40000), app(ty_[], fha)) -> new_esEs20(xuu500000, xuu40000, fha) 22.90/8.44 new_esEs21(False, False) -> True 22.90/8.44 new_primEqNat0(Succ(xuu5000000), Succ(xuu400000)) -> new_primEqNat0(xuu5000000, xuu400000) 22.90/8.44 new_esEs5(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.44 new_esEs26(xuu500001, xuu40001, ty_Int) -> new_esEs25(xuu500001, xuu40001) 22.90/8.44 new_esEs39(xuu99, xuu101, ty_Integer) -> new_esEs19(xuu99, xuu101) 22.90/8.44 new_not(True) -> False 22.90/8.44 new_lt20(xuu580, xuu590, app(ty_Ratio, ebd)) -> new_lt7(xuu580, xuu590, ebd) 22.90/8.44 new_ltEs21(xuu582, xuu592, ty_@0) -> new_ltEs5(xuu582, xuu592) 22.90/8.44 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.44 new_esEs4(xuu50001, xuu4001, app(ty_Maybe, edg)) -> new_esEs18(xuu50001, xuu4001, edg) 22.90/8.44 new_lt8(xuu99, xuu101) -> new_esEs13(new_compare14(xuu99, xuu101), LT) 22.90/8.44 new_esEs30(xuu580, xuu590, app(app(ty_Either, eh), fa)) -> new_esEs14(xuu580, xuu590, eh, fa) 22.90/8.44 new_ltEs22(xuu80, xuu81, ty_Bool) -> new_ltEs15(xuu80, xuu81) 22.90/8.44 new_esEs7(xuu50002, xuu4002, ty_Bool) -> new_esEs21(xuu50002, xuu4002) 22.90/8.44 new_ltEs18(Right(xuu580), Right(xuu590), beg, ty_Ordering) -> new_ltEs13(xuu580, xuu590) 22.90/8.44 new_lt23(xuu99, xuu101, ty_@0) -> new_lt17(xuu99, xuu101) 22.90/8.44 new_ltEs22(xuu80, xuu81, ty_Float) -> new_ltEs17(xuu80, xuu81) 22.90/8.44 new_esEs39(xuu99, xuu101, ty_Char) -> new_esEs12(xuu99, xuu101) 22.90/8.44 new_ltEs20(xuu581, xuu591, ty_Char) -> new_ltEs12(xuu581, xuu591) 22.90/8.44 new_primEqNat0(Succ(xuu5000000), Zero) -> False 22.90/8.44 new_primEqNat0(Zero, Succ(xuu400000)) -> False 22.90/8.44 new_esEs36(xuu500002, xuu40002, ty_Float) -> new_esEs17(xuu500002, xuu40002) 22.90/8.44 new_ltEs24(xuu100, xuu102, app(app(app(ty_@3, da), db), dc)) -> new_ltEs10(xuu100, xuu102, da, db, dc) 22.90/8.44 new_ltEs9(Just(xuu580), Just(xuu590), ty_Float) -> new_ltEs17(xuu580, xuu590) 22.90/8.44 new_primCompAux00(xuu37, xuu38, EQ, ty_Double) -> new_compare6(xuu37, xuu38) 22.90/8.44 new_lt20(xuu580, xuu590, ty_Integer) -> new_lt14(xuu580, xuu590) 22.90/8.44 new_compare5(xuu5000, xuu400, app(app(ty_Either, ccd), cce)) -> new_compare19(xuu5000, xuu400, ccd, cce) 22.90/8.44 new_ltEs22(xuu80, xuu81, ty_Int) -> new_ltEs14(xuu80, xuu81) 22.90/8.44 new_esEs34(xuu500000, xuu40000, ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.44 new_esEs6(xuu50000, xuu4000, app(ty_[], dge)) -> new_esEs20(xuu50000, xuu4000, dge) 22.90/8.44 new_esEs13(LT, LT) -> True 22.90/8.44 new_esEs4(xuu50001, xuu4001, app(app(app(ty_@3, eeb), eec), eed)) -> new_esEs23(xuu50001, xuu4001, eeb, eec, eed) 22.90/8.44 new_esEs25(xuu50000, xuu4000) -> new_primEqInt(xuu50000, xuu4000) 22.90/8.44 new_esEs9(xuu50000, xuu4000, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_esEs23(xuu50000, xuu4000, dfb, dfc, dfd) 22.90/8.44 new_compare13(LT, LT) -> EQ 22.90/8.44 new_primCmpInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> GT 22.90/8.44 new_lt11(xuu69, xuu72, ty_Float) -> new_lt18(xuu69, xuu72) 22.90/8.44 new_ltEs6(xuu58, xuu59, app(ty_Ratio, dea)) -> new_ltEs7(xuu58, xuu59, dea) 22.90/8.44 new_compare13(GT, EQ) -> GT 22.90/8.44 new_esEs32(xuu580, xuu590, app(ty_Ratio, ebf)) -> new_esEs22(xuu580, xuu590, ebf) 22.90/8.44 new_ltEs9(Just(xuu580), Just(xuu590), ty_Bool) -> new_ltEs15(xuu580, xuu590) 22.90/8.44 new_compare5(xuu5000, xuu400, app(ty_Maybe, dg)) -> new_compare9(xuu5000, xuu400, dg) 22.90/8.44 new_esEs29(xuu69, xuu72, app(ty_[], bhd)) -> new_esEs20(xuu69, xuu72, bhd) 22.90/8.44 new_primPlusNat1(Succ(xuu19700), Succ(xuu19600)) -> Succ(Succ(new_primPlusNat1(xuu19700, xuu19600))) 22.90/8.44 new_primCompAux00(xuu37, xuu38, GT, dfe) -> GT 22.90/8.44 new_lt16(xuu99, xuu101, ca) -> new_esEs13(new_compare16(xuu99, xuu101, ca), LT) 22.90/8.44 new_esEs36(xuu500002, xuu40002, ty_Int) -> new_esEs25(xuu500002, xuu40002) 22.90/8.44 new_ltEs18(Right(xuu580), Right(xuu590), beg, app(app(ty_Either, bfg), bfh)) -> new_ltEs18(xuu580, xuu590, bfg, bfh) 22.90/8.44 new_primCmpNat0(Zero, Succ(xuu40000)) -> LT 22.90/8.44 new_lt21(xuu580, xuu590, app(ty_[], baf)) -> new_lt16(xuu580, xuu590, baf) 22.90/8.44 new_ltEs23(xuu87, xuu88, app(app(ty_@2, cfb), cfc)) -> new_ltEs8(xuu87, xuu88, cfb, cfc) 22.90/8.44 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.44 new_esEs34(xuu500000, xuu40000, ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.44 new_compare16(:(xuu50000, xuu50001), [], ccb) -> GT 22.90/8.44 new_esEs22(:%(xuu500000, xuu500001), :%(xuu40000, xuu40001), dhd) -> new_asAs(new_esEs27(xuu500000, xuu40000, dhd), new_esEs26(xuu500001, xuu40001, dhd)) 22.90/8.44 new_esEs6(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.44 new_ltEs21(xuu582, xuu592, app(app(ty_@2, bcc), bcd)) -> new_ltEs8(xuu582, xuu592, bcc, bcd) 22.90/8.44 new_esEs30(xuu580, xuu590, ty_Bool) -> new_esEs21(xuu580, xuu590) 22.90/8.44 new_ltEs23(xuu87, xuu88, app(app(ty_Either, cga), cgb)) -> new_ltEs18(xuu87, xuu88, cga, cgb) 22.90/8.44 new_esEs13(GT, GT) -> True 22.90/8.44 new_esEs38(xuu500000, xuu40000, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.44 new_esEs7(xuu50002, xuu4002, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs23(xuu50002, xuu4002, ead, eae, eaf) 22.90/8.44 new_lt20(xuu580, xuu590, app(ty_Maybe, ec)) -> new_lt9(xuu580, xuu590, ec) 22.90/8.44 new_esEs9(xuu50000, xuu4000, app(app(ty_@2, dee), def)) -> new_esEs16(xuu50000, xuu4000, dee, def) 22.90/8.44 new_esEs36(xuu500002, xuu40002, ty_Char) -> new_esEs12(xuu500002, xuu40002) 22.90/8.44 new_ltEs20(xuu581, xuu591, ty_Bool) -> new_ltEs15(xuu581, xuu591) 22.90/8.44 new_lt12(xuu70, xuu73, app(app(app(ty_@3, cac), cad), cae)) -> new_lt5(xuu70, xuu73, cac, cad, cae) 22.90/8.44 new_esEs34(xuu500000, xuu40000, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.44 new_esEs9(xuu50000, xuu4000, app(ty_Ratio, dfa)) -> new_esEs22(xuu50000, xuu4000, dfa) 22.90/8.44 new_esEs10(xuu50000, xuu4000, app(ty_Maybe, dad)) -> new_esEs18(xuu50000, xuu4000, dad) 22.90/8.44 new_esEs32(xuu580, xuu590, ty_Double) -> new_esEs15(xuu580, xuu590) 22.90/8.44 new_compare5(xuu5000, xuu400, app(app(app(ty_@3, bga), bgb), bgc)) -> new_compare10(xuu5000, xuu400, bga, bgb, bgc) 22.90/8.44 new_ltEs9(Just(xuu580), Just(xuu590), app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs10(xuu580, xuu590, gh, ha, hb) 22.90/8.44 new_primEqInt(Neg(Succ(xuu5000000)), Neg(Succ(xuu400000))) -> new_primEqNat0(xuu5000000, xuu400000) 22.90/8.44 new_esEs28(xuu70, xuu73, app(app(app(ty_@3, cac), cad), cae)) -> new_esEs23(xuu70, xuu73, cac, cad, cae) 22.90/8.44 new_ltEs8(@2(xuu580, xuu581), @2(xuu590, xuu591), fb, eb) -> new_pePe(new_lt20(xuu580, xuu590, fb), new_asAs(new_esEs30(xuu580, xuu590, fb), new_ltEs20(xuu581, xuu591, eb))) 22.90/8.44 new_lt23(xuu99, xuu101, app(app(ty_@2, bb), bc)) -> new_lt13(xuu99, xuu101, bb, bc) 22.90/8.44 new_primCmpInt(Neg(Zero), Pos(Succ(xuu40000))) -> LT 22.90/8.44 new_lt23(xuu99, xuu101, app(ty_Ratio, dfg)) -> new_lt7(xuu99, xuu101, dfg) 22.90/8.44 new_esEs33(xuu500001, xuu40001, ty_Float) -> new_esEs17(xuu500001, xuu40001) 22.90/8.44 new_primMulInt(Pos(xuu40000), Pos(xuu500010)) -> Pos(new_primMulNat0(xuu40000, xuu500010)) 22.90/8.44 new_primCompAux00(xuu37, xuu38, EQ, app(ty_Maybe, cch)) -> new_compare9(xuu37, xuu38, cch) 22.90/8.44 new_compare13(EQ, LT) -> GT 22.90/8.44 new_esEs37(xuu500001, xuu40001, app(ty_[], fed)) -> new_esEs20(xuu500001, xuu40001, fed) 22.90/8.44 new_lt21(xuu580, xuu590, ty_Float) -> new_lt18(xuu580, xuu590) 22.90/8.44 new_esEs13(EQ, GT) -> False 22.90/8.44 new_esEs13(GT, EQ) -> False 22.90/8.44 new_esEs11(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.44 new_compare19(Right(xuu50000), Left(xuu4000), ccd, cce) -> GT 22.90/8.44 new_esEs14(Right(xuu500000), Right(xuu40000), dce, ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.44 new_lt22(xuu581, xuu591, ty_Int) -> new_lt8(xuu581, xuu591) 22.90/8.44 new_ltEs24(xuu100, xuu102, ty_Float) -> new_ltEs17(xuu100, xuu102) 22.90/8.44 new_esEs21(False, True) -> False 22.90/8.44 new_esEs21(True, False) -> False 22.90/8.44 new_esEs5(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.44 new_ltEs6(xuu58, xuu59, app(ty_Maybe, deb)) -> new_ltEs9(xuu58, xuu59, deb) 22.90/8.44 new_primMulNat0(Succ(xuu400000), Zero) -> Zero 22.90/8.44 new_primMulNat0(Zero, Succ(xuu5000100)) -> Zero 22.90/8.44 new_esEs32(xuu580, xuu590, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs23(xuu580, xuu590, bac, bad, bae) 22.90/8.44 new_lt22(xuu581, xuu591, ty_Integer) -> new_lt14(xuu581, xuu591) 22.90/8.44 new_esEs31(xuu581, xuu591, ty_Integer) -> new_esEs19(xuu581, xuu591) 22.90/8.44 new_compare13(GT, LT) -> GT 22.90/8.44 new_ltEs21(xuu582, xuu592, app(app(ty_Either, bdb), bdc)) -> new_ltEs18(xuu582, xuu592, bdb, bdc) 22.90/8.44 new_compare26(xuu58, xuu59, True, ddh) -> EQ 22.90/8.44 new_lt11(xuu69, xuu72, ty_Bool) -> new_lt4(xuu69, xuu72) 22.90/8.44 new_esEs11(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.44 new_esEs14(Left(xuu500000), Left(xuu40000), app(ty_[], dbh), dbb) -> new_esEs20(xuu500000, xuu40000, dbh) 22.90/8.44 new_ltEs6(xuu58, xuu59, app(ty_[], bdd)) -> new_ltEs16(xuu58, xuu59, bdd) 22.90/8.44 new_esEs14(Right(xuu500000), Right(xuu40000), dce, app(ty_Maybe, ddb)) -> new_esEs18(xuu500000, xuu40000, ddb) 22.90/8.44 new_lt12(xuu70, xuu73, ty_Int) -> new_lt8(xuu70, xuu73) 22.90/8.44 new_esEs37(xuu500001, xuu40001, ty_Ordering) -> new_esEs13(xuu500001, xuu40001) 22.90/8.44 new_compare13(EQ, EQ) -> EQ 22.90/8.44 new_esEs38(xuu500000, xuu40000, app(app(ty_Either, ffa), ffb)) -> new_esEs14(xuu500000, xuu40000, ffa, ffb) 22.90/8.44 new_esEs30(xuu580, xuu590, app(ty_Maybe, ec)) -> new_esEs18(xuu580, xuu590, ec) 22.90/8.44 new_esEs34(xuu500000, xuu40000, app(ty_Ratio, ehg)) -> new_esEs22(xuu500000, xuu40000, ehg) 22.90/8.44 new_esEs32(xuu580, xuu590, app(ty_Maybe, bab)) -> new_esEs18(xuu580, xuu590, bab) 22.90/8.44 new_ltEs13(GT, LT) -> False 22.90/8.44 new_esEs39(xuu99, xuu101, app(ty_[], ca)) -> new_esEs20(xuu99, xuu101, ca) 22.90/8.44 new_ltEs18(Left(xuu580), Left(xuu590), app(ty_[], bed), bdg) -> new_ltEs16(xuu580, xuu590, bed) 22.90/8.44 new_compare15(False, True) -> LT 22.90/8.44 new_primPlusNat1(Succ(xuu19700), Zero) -> Succ(xuu19700) 22.90/8.44 new_primPlusNat1(Zero, Succ(xuu19600)) -> Succ(xuu19600) 22.90/8.44 new_ltEs20(xuu581, xuu591, app(ty_[], gb)) -> new_ltEs16(xuu581, xuu591, gb) 22.90/8.44 new_esEs9(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.44 new_esEs32(xuu580, xuu590, app(app(ty_@2, hf), hg)) -> new_esEs16(xuu580, xuu590, hf, hg) 22.90/8.44 new_ltEs19(xuu71, xuu74, app(app(ty_@2, cba), cbb)) -> new_ltEs8(xuu71, xuu74, cba, cbb) 22.90/8.44 new_lt20(xuu580, xuu590, ty_Char) -> new_lt10(xuu580, xuu590) 22.90/8.44 new_compare9(Just(xuu50000), Just(xuu4000), dg) -> new_compare26(xuu50000, xuu4000, new_esEs6(xuu50000, xuu4000, dg), dg) 22.90/8.44 new_esEs6(xuu50000, xuu4000, app(ty_Maybe, dgd)) -> new_esEs18(xuu50000, xuu4000, dgd) 22.90/8.44 new_esEs28(xuu70, xuu73, ty_Int) -> new_esEs25(xuu70, xuu73) 22.90/8.44 new_ltEs4(xuu58, xuu59) -> new_fsEs(new_compare6(xuu58, xuu59)) 22.90/8.44 new_ltEs9(Just(xuu580), Just(xuu590), ty_Char) -> new_ltEs12(xuu580, xuu590) 22.90/8.44 new_esEs14(Left(xuu500000), Left(xuu40000), ty_@0, dbb) -> new_esEs24(xuu500000, xuu40000) 22.90/8.44 new_lt23(xuu99, xuu101, app(ty_[], ca)) -> new_lt16(xuu99, xuu101, ca) 22.90/8.44 new_esEs29(xuu69, xuu72, ty_Double) -> new_esEs15(xuu69, xuu72) 22.90/8.44 new_esEs4(xuu50001, xuu4001, ty_Bool) -> new_esEs21(xuu50001, xuu4001) 22.90/8.44 new_ltEs23(xuu87, xuu88, app(ty_Ratio, faf)) -> new_ltEs7(xuu87, xuu88, faf) 22.90/8.44 new_esEs30(xuu580, xuu590, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs23(xuu580, xuu590, ed, ee, ef) 22.90/8.44 new_esEs7(xuu50002, xuu4002, app(ty_Maybe, eaa)) -> new_esEs18(xuu50002, xuu4002, eaa) 22.90/8.44 new_lt23(xuu99, xuu101, ty_Ordering) -> new_lt15(xuu99, xuu101) 22.90/8.44 new_esEs28(xuu70, xuu73, ty_Bool) -> new_esEs21(xuu70, xuu73) 22.90/8.44 new_esEs19(Integer(xuu500000), Integer(xuu40000)) -> new_primEqInt(xuu500000, xuu40000) 22.90/8.44 new_compare24(xuu80, xuu81, False, fac, cea) -> new_compare110(xuu80, xuu81, new_ltEs22(xuu80, xuu81, fac), fac, cea) 22.90/8.44 new_lt12(xuu70, xuu73, ty_Bool) -> new_lt4(xuu70, xuu73) 22.90/8.44 new_compare6(Double(xuu50000, Neg(xuu500010)), Double(xuu4000, Neg(xuu40010))) -> new_compare14(new_sr(xuu50000, Neg(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) 22.90/8.44 new_compare5(xuu5000, xuu400, ty_Int) -> new_compare14(xuu5000, xuu400) 22.90/8.44 new_compare27(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, bgf, bgg) -> new_compare113(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, new_lt11(xuu69, xuu72, bhg), new_asAs(new_esEs29(xuu69, xuu72, bhg), new_pePe(new_lt12(xuu70, xuu73, bgf), new_asAs(new_esEs28(xuu70, xuu73, bgf), new_ltEs19(xuu71, xuu74, bgg)))), bhg, bgf, bgg) 22.90/8.44 new_esEs4(xuu50001, xuu4001, app(app(ty_Either, edc), edd)) -> new_esEs14(xuu50001, xuu4001, edc, edd) 22.90/8.44 new_esEs6(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.44 new_lt12(xuu70, xuu73, ty_Integer) -> new_lt14(xuu70, xuu73) 22.90/8.44 new_esEs10(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.44 new_ltEs6(xuu58, xuu59, app(app(ty_@2, fb), eb)) -> new_ltEs8(xuu58, xuu59, fb, eb) 22.90/8.44 new_lt11(xuu69, xuu72, ty_Ordering) -> new_lt15(xuu69, xuu72) 22.90/8.44 new_esEs14(Left(xuu500000), Right(xuu40000), dce, dbb) -> False 22.90/8.44 new_esEs14(Right(xuu500000), Left(xuu40000), dce, dbb) -> False 22.90/8.44 new_esEs8(xuu50001, xuu4001, ty_Integer) -> new_esEs19(xuu50001, xuu4001) 22.90/8.44 new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_Either, cde), cdf)) -> new_compare19(xuu37, xuu38, cde, cdf) 22.90/8.44 new_compare114(xuu156, xuu157, xuu158, xuu159, True, xuu161, ebb, ebc) -> new_compare115(xuu156, xuu157, xuu158, xuu159, True, ebb, ebc) 22.90/8.44 new_ltEs9(Just(xuu580), Just(xuu590), ty_Double) -> new_ltEs4(xuu580, xuu590) 22.90/8.44 new_esEs35(xuu500000, xuu40000, app(ty_Ratio, fbf)) -> new_esEs22(xuu500000, xuu40000, fbf) 22.90/8.44 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Integer, dbb) -> new_esEs19(xuu500000, xuu40000) 22.90/8.44 new_primCompAux00(xuu37, xuu38, EQ, app(ty_Ratio, dff)) -> new_compare7(xuu37, xuu38, dff) 22.90/8.44 new_esEs6(xuu50000, xuu4000, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs23(xuu50000, xuu4000, dgg, dgh, dha) 22.90/8.44 new_lt22(xuu581, xuu591, ty_Bool) -> new_lt4(xuu581, xuu591) 22.90/8.44 new_esEs30(xuu580, xuu590, ty_Int) -> new_esEs25(xuu580, xuu590) 22.90/8.44 new_esEs12(Char(xuu500000), Char(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) 22.90/8.44 new_esEs33(xuu500001, xuu40001, app(app(app(ty_@3, egf), egg), egh)) -> new_esEs23(xuu500001, xuu40001, egf, egg, egh) 22.90/8.44 new_esEs39(xuu99, xuu101, ty_Float) -> new_esEs17(xuu99, xuu101) 22.90/8.44 new_ltEs15(True, True) -> True 22.90/8.44 new_esEs8(xuu50001, xuu4001, ty_Double) -> new_esEs15(xuu50001, xuu4001) 22.90/8.44 new_esEs8(xuu50001, xuu4001, app(app(ty_@2, ecc), ecd)) -> new_esEs16(xuu50001, xuu4001, ecc, ecd) 22.90/8.44 new_esEs31(xuu581, xuu591, ty_Ordering) -> new_esEs13(xuu581, xuu591) 22.90/8.44 new_esEs11(xuu50000, xuu4000, app(app(ty_Either, cgd), cge)) -> new_esEs14(xuu50000, xuu4000, cgd, cge) 22.90/8.44 new_lt23(xuu99, xuu101, ty_Integer) -> new_lt14(xuu99, xuu101) 22.90/8.44 new_lt21(xuu580, xuu590, ty_Ordering) -> new_lt15(xuu580, xuu590) 22.90/8.44 new_esEs29(xuu69, xuu72, app(app(ty_@2, bgd), bge)) -> new_esEs16(xuu69, xuu72, bgd, bge) 22.90/8.44 new_esEs30(xuu580, xuu590, app(ty_Ratio, ebd)) -> new_esEs22(xuu580, xuu590, ebd) 22.90/8.44 new_lt23(xuu99, xuu101, app(app(app(ty_@3, bf), bg), bh)) -> new_lt5(xuu99, xuu101, bf, bg, bh) 22.90/8.44 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.44 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Char, dbb) -> new_esEs12(xuu500000, xuu40000) 22.90/8.44 new_esEs14(Right(xuu500000), Right(xuu40000), dce, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.44 new_esEs37(xuu500001, xuu40001, ty_Integer) -> new_esEs19(xuu500001, xuu40001) 22.90/8.44 new_esEs9(xuu50000, xuu4000, app(ty_[], deh)) -> new_esEs20(xuu50000, xuu4000, deh) 22.90/8.44 new_lt12(xuu70, xuu73, app(app(ty_@2, bhh), caa)) -> new_lt13(xuu70, xuu73, bhh, caa) 22.90/8.44 new_lt12(xuu70, xuu73, app(ty_Ratio, eah)) -> new_lt7(xuu70, xuu73, eah) 22.90/8.44 new_compare5(xuu5000, xuu400, app(ty_Ratio, cgc)) -> new_compare7(xuu5000, xuu400, cgc) 22.90/8.44 new_esEs38(xuu500000, xuu40000, app(ty_Maybe, ffe)) -> new_esEs18(xuu500000, xuu40000, ffe) 22.90/8.44 new_esEs32(xuu580, xuu590, app(app(ty_Either, bag), bah)) -> new_esEs14(xuu580, xuu590, bag, bah) 22.90/8.44 new_lt18(xuu99, xuu101) -> new_esEs13(new_compare18(xuu99, xuu101), LT) 22.90/8.44 new_ltEs21(xuu582, xuu592, app(ty_[], bda)) -> new_ltEs16(xuu582, xuu592, bda) 22.90/8.44 new_ltEs24(xuu100, xuu102, app(app(ty_@2, ce), cf)) -> new_ltEs8(xuu100, xuu102, ce, cf) 22.90/8.44 new_esEs18(Just(xuu500000), Just(xuu40000), app(ty_Ratio, fhb)) -> new_esEs22(xuu500000, xuu40000, fhb) 22.90/8.44 new_esEs10(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.44 new_esEs33(xuu500001, xuu40001, ty_Char) -> new_esEs12(xuu500001, xuu40001) 22.90/8.44 new_esEs35(xuu500000, xuu40000, ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.44 new_esEs18(Just(xuu500000), Just(xuu40000), ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.44 new_esEs7(xuu50002, xuu4002, ty_@0) -> new_esEs24(xuu50002, xuu4002) 22.90/8.44 new_esEs34(xuu500000, xuu40000, ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.44 new_esEs29(xuu69, xuu72, ty_Int) -> new_esEs25(xuu69, xuu72) 22.90/8.44 new_compare26(xuu58, xuu59, False, ddh) -> new_compare111(xuu58, xuu59, new_ltEs6(xuu58, xuu59, ddh), ddh) 22.90/8.44 new_ltEs23(xuu87, xuu88, ty_Double) -> new_ltEs4(xuu87, xuu88) 22.90/8.44 new_compare24(xuu80, xuu81, True, fac, cea) -> EQ 22.90/8.44 new_esEs30(xuu580, xuu590, app(app(ty_@2, dh), ea)) -> new_esEs16(xuu580, xuu590, dh, ea) 22.90/8.44 new_esEs14(Right(xuu500000), Right(xuu40000), dce, ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.44 new_primCmpInt(Pos(Succ(xuu500000)), Pos(xuu4000)) -> new_primCmpNat0(Succ(xuu500000), xuu4000) 22.90/8.44 new_compare16([], :(xuu4000, xuu4001), ccb) -> LT 22.90/8.44 new_lt20(xuu580, xuu590, ty_@0) -> new_lt17(xuu580, xuu590) 22.90/8.44 new_ltEs11(xuu58, xuu59) -> new_fsEs(new_compare11(xuu58, xuu59)) 22.90/8.44 new_esEs35(xuu500000, xuu40000, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.44 new_esEs5(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.44 new_compare5(xuu5000, xuu400, ty_Integer) -> new_compare11(xuu5000, xuu400) 22.90/8.44 new_esEs20(:(xuu500000, xuu500001), :(xuu40000, xuu40001), eeh) -> new_asAs(new_esEs35(xuu500000, xuu40000, eeh), new_esEs20(xuu500001, xuu40001, eeh)) 22.90/8.44 new_lt17(xuu99, xuu101) -> new_esEs13(new_compare17(xuu99, xuu101), LT) 22.90/8.44 new_esEs29(xuu69, xuu72, ty_Ordering) -> new_esEs13(xuu69, xuu72) 22.90/8.44 new_compare11(Integer(xuu50000), Integer(xuu4000)) -> new_primCmpInt(xuu50000, xuu4000) 22.90/8.44 new_esEs8(xuu50001, xuu4001, ty_Float) -> new_esEs17(xuu50001, xuu4001) 22.90/8.44 new_compare13(GT, GT) -> EQ 22.90/8.44 new_esEs18(Just(xuu500000), Just(xuu40000), app(ty_Maybe, fgh)) -> new_esEs18(xuu500000, xuu40000, fgh) 22.90/8.44 new_ltEs16(xuu58, xuu59, bdd) -> new_fsEs(new_compare16(xuu58, xuu59, bdd)) 22.90/8.44 new_ltEs18(Left(xuu580), Left(xuu590), app(ty_Ratio, fcb), bdg) -> new_ltEs7(xuu580, xuu590, fcb) 22.90/8.44 new_esEs5(xuu50000, xuu4000, app(ty_[], eeh)) -> new_esEs20(xuu50000, xuu4000, eeh) 22.90/8.44 new_esEs6(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.44 new_ltEs17(xuu58, xuu59) -> new_fsEs(new_compare18(xuu58, xuu59)) 22.90/8.44 new_esEs38(xuu500000, xuu40000, app(app(app(ty_@3, ffh), fga), fgb)) -> new_esEs23(xuu500000, xuu40000, ffh, fga, fgb) 22.90/8.44 new_esEs33(xuu500001, xuu40001, app(ty_Maybe, egc)) -> new_esEs18(xuu500001, xuu40001, egc) 22.90/8.44 new_esEs10(xuu50000, xuu4000, app(ty_Ratio, daf)) -> new_esEs22(xuu50000, xuu4000, daf) 22.90/8.44 new_esEs37(xuu500001, xuu40001, app(app(ty_Either, fdg), fdh)) -> new_esEs14(xuu500001, xuu40001, fdg, fdh) 22.90/8.44 new_ltEs18(Left(xuu580), Left(xuu590), ty_@0, bdg) -> new_ltEs5(xuu580, xuu590) 22.90/8.44 new_lt21(xuu580, xuu590, ty_Int) -> new_lt8(xuu580, xuu590) 22.90/8.44 new_esEs31(xuu581, xuu591, ty_Bool) -> new_esEs21(xuu581, xuu591) 22.90/8.44 new_esEs35(xuu500000, xuu40000, ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.44 new_lt19(xuu99, xuu101, cb, cc) -> new_esEs13(new_compare19(xuu99, xuu101, cb, cc), LT) 22.90/8.44 new_esEs14(Left(xuu500000), Left(xuu40000), app(ty_Ratio, dca), dbb) -> new_esEs22(xuu500000, xuu40000, dca) 22.90/8.44 new_lt11(xuu69, xuu72, ty_Char) -> new_lt10(xuu69, xuu72) 22.90/8.44 new_esEs36(xuu500002, xuu40002, app(app(ty_Either, fce), fcf)) -> new_esEs14(xuu500002, xuu40002, fce, fcf) 22.90/8.44 new_ltEs6(xuu58, xuu59, app(app(ty_Either, beg), bdg)) -> new_ltEs18(xuu58, xuu59, beg, bdg) 22.90/8.44 new_ltEs20(xuu581, xuu591, app(app(ty_Either, gc), gd)) -> new_ltEs18(xuu581, xuu591, gc, gd) 22.90/8.44 new_compare5(xuu5000, xuu400, ty_Char) -> new_compare12(xuu5000, xuu400) 22.90/8.44 new_esEs36(xuu500002, xuu40002, ty_Bool) -> new_esEs21(xuu500002, xuu40002) 22.90/8.44 new_ltEs18(Left(xuu580), Left(xuu590), ty_Ordering, bdg) -> new_ltEs13(xuu580, xuu590) 22.90/8.44 new_compare9(Nothing, Just(xuu4000), dg) -> LT 22.90/8.44 new_esEs34(xuu500000, xuu40000, app(ty_Maybe, ehe)) -> new_esEs18(xuu500000, xuu40000, ehe) 22.90/8.44 new_esEs39(xuu99, xuu101, app(ty_Maybe, be)) -> new_esEs18(xuu99, xuu101, be) 22.90/8.44 new_esEs31(xuu581, xuu591, ty_Int) -> new_esEs25(xuu581, xuu591) 22.90/8.44 new_esEs31(xuu581, xuu591, app(app(ty_Either, bca), bcb)) -> new_esEs14(xuu581, xuu591, bca, bcb) 22.90/8.44 new_compare8(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), h, ba) -> new_compare28(xuu50000, xuu50001, xuu4000, xuu4001, new_asAs(new_esEs5(xuu50000, xuu4000, h), new_esEs4(xuu50001, xuu4001, ba)), h, ba) 22.90/8.44 new_ltEs9(Just(xuu580), Just(xuu590), app(ty_Maybe, gg)) -> new_ltEs9(xuu580, xuu590, gg) 22.90/8.44 new_esEs11(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.44 new_compare14(xuu5000, xuu400) -> new_primCmpInt(xuu5000, xuu400) 22.90/8.44 new_primCompAux00(xuu37, xuu38, EQ, app(app(app(ty_@3, cda), cdb), cdc)) -> new_compare10(xuu37, xuu38, cda, cdb, cdc) 22.90/8.44 new_ltEs18(Left(xuu580), Left(xuu590), ty_Integer, bdg) -> new_ltEs11(xuu580, xuu590) 22.90/8.44 new_esEs11(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.44 new_ltEs19(xuu71, xuu74, app(app(ty_Either, cbh), cca)) -> new_ltEs18(xuu71, xuu74, cbh, cca) 22.90/8.44 new_lt21(xuu580, xuu590, ty_Bool) -> new_lt4(xuu580, xuu590) 22.90/8.44 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.44 new_esEs7(xuu50002, xuu4002, ty_Float) -> new_esEs17(xuu50002, xuu4002) 22.90/8.44 new_compare5(xuu5000, xuu400, ty_@0) -> new_compare17(xuu5000, xuu400) 22.90/8.44 new_lt20(xuu580, xuu590, ty_Ordering) -> new_lt15(xuu580, xuu590) 22.90/8.44 new_compare111(xuu125, xuu126, False, fcd) -> GT 22.90/8.44 new_esEs28(xuu70, xuu73, app(app(ty_@2, bhh), caa)) -> new_esEs16(xuu70, xuu73, bhh, caa) 22.90/8.44 new_esEs36(xuu500002, xuu40002, ty_Integer) -> new_esEs19(xuu500002, xuu40002) 22.90/8.44 new_esEs8(xuu50001, xuu4001, app(ty_[], ecf)) -> new_esEs20(xuu50001, xuu4001, ecf) 22.90/8.44 new_ltEs24(xuu100, xuu102, app(ty_[], dd)) -> new_ltEs16(xuu100, xuu102, dd) 22.90/8.44 new_lt22(xuu581, xuu591, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_lt5(xuu581, xuu591, bbe, bbf, bbg) 22.90/8.44 new_ltEs6(xuu58, xuu59, ty_Float) -> new_ltEs17(xuu58, xuu59) 22.90/8.44 new_compare9(Just(xuu50000), Nothing, dg) -> GT 22.90/8.44 new_ltEs18(Left(xuu580), Left(xuu590), ty_Char, bdg) -> new_ltEs12(xuu580, xuu590) 22.90/8.44 new_esEs4(xuu50001, xuu4001, ty_Float) -> new_esEs17(xuu50001, xuu4001) 22.90/8.44 new_ltEs18(Right(xuu580), Right(xuu590), beg, ty_Double) -> new_ltEs4(xuu580, xuu590) 22.90/8.44 new_esEs33(xuu500001, xuu40001, app(app(ty_Either, efg), efh)) -> new_esEs14(xuu500001, xuu40001, efg, efh) 22.90/8.44 new_esEs18(Just(xuu500000), Just(xuu40000), app(app(app(ty_@3, fhc), fhd), fhe)) -> new_esEs23(xuu500000, xuu40000, fhc, fhd, fhe) 22.90/8.44 new_esEs34(xuu500000, xuu40000, app(app(app(ty_@3, ehh), faa), fab)) -> new_esEs23(xuu500000, xuu40000, ehh, faa, fab) 22.90/8.44 new_esEs11(xuu50000, xuu4000, app(app(app(ty_@3, chc), chd), che)) -> new_esEs23(xuu50000, xuu4000, chc, chd, che) 22.90/8.44 new_esEs9(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.44 new_esEs32(xuu580, xuu590, ty_Ordering) -> new_esEs13(xuu580, xuu590) 22.90/8.44 new_ltEs13(LT, LT) -> True 22.90/8.44 new_esEs37(xuu500001, xuu40001, app(ty_Maybe, fec)) -> new_esEs18(xuu500001, xuu40001, fec) 22.90/8.44 new_lt20(xuu580, xuu590, app(app(ty_Either, eh), fa)) -> new_lt19(xuu580, xuu590, eh, fa) 22.90/8.44 new_esEs10(xuu50000, xuu4000, app(app(ty_Either, chh), daa)) -> new_esEs14(xuu50000, xuu4000, chh, daa) 22.90/8.44 new_esEs31(xuu581, xuu591, app(ty_Ratio, ebg)) -> new_esEs22(xuu581, xuu591, ebg) 22.90/8.44 new_primCompAux00(xuu37, xuu38, EQ, ty_Ordering) -> new_compare13(xuu37, xuu38) 22.90/8.44 new_compare116(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, efd, efe, eff) -> LT 22.90/8.44 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Bool, dbb) -> new_esEs21(xuu500000, xuu40000) 22.90/8.44 new_esEs6(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.44 new_ltEs15(False, True) -> True 22.90/8.44 new_esEs4(xuu50001, xuu4001, ty_@0) -> new_esEs24(xuu50001, xuu4001) 22.90/8.44 new_primPlusNat0(Succ(xuu2070), xuu5000100) -> Succ(Succ(new_primPlusNat1(xuu2070, xuu5000100))) 22.90/8.44 new_lt20(xuu580, xuu590, ty_Int) -> new_lt8(xuu580, xuu590) 22.90/8.44 new_esEs28(xuu70, xuu73, app(ty_Ratio, eah)) -> new_esEs22(xuu70, xuu73, eah) 22.90/8.44 new_ltEs6(xuu58, xuu59, ty_Double) -> new_ltEs4(xuu58, xuu59) 22.90/8.44 new_lt23(xuu99, xuu101, ty_Float) -> new_lt18(xuu99, xuu101) 22.90/8.44 new_lt13(xuu99, xuu101, bb, bc) -> new_esEs13(new_compare8(xuu99, xuu101, bb, bc), LT) 22.90/8.44 new_lt22(xuu581, xuu591, app(ty_Maybe, bbd)) -> new_lt9(xuu581, xuu591, bbd) 22.90/8.44 new_primCompAux00(xuu37, xuu38, EQ, ty_Char) -> new_compare12(xuu37, xuu38) 22.90/8.44 new_esEs38(xuu500000, xuu40000, ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.44 new_compare5(xuu5000, xuu400, ty_Bool) -> new_compare15(xuu5000, xuu400) 22.90/8.44 new_esEs32(xuu580, xuu590, ty_Bool) -> new_esEs21(xuu580, xuu590) 22.90/8.44 new_esEs4(xuu50001, xuu4001, ty_Integer) -> new_esEs19(xuu50001, xuu4001) 22.90/8.44 new_primPlusNat1(Zero, Zero) -> Zero 22.90/8.44 new_ltEs18(Left(xuu580), Left(xuu590), app(app(ty_@2, bde), bdf), bdg) -> new_ltEs8(xuu580, xuu590, bde, bdf) 22.90/8.44 new_esEs35(xuu500000, xuu40000, app(ty_Maybe, fbd)) -> new_esEs18(xuu500000, xuu40000, fbd) 22.90/8.44 new_esEs35(xuu500000, xuu40000, app(app(ty_Either, fah), fba)) -> new_esEs14(xuu500000, xuu40000, fah, fba) 22.90/8.44 new_compare111(xuu125, xuu126, True, fcd) -> LT 22.90/8.44 new_esEs30(xuu580, xuu590, ty_Ordering) -> new_esEs13(xuu580, xuu590) 22.90/8.44 new_esEs21(True, True) -> True 22.90/8.44 new_primCompAux00(xuu37, xuu38, EQ, ty_Integer) -> new_compare11(xuu37, xuu38) 22.90/8.44 new_esEs35(xuu500000, xuu40000, ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.44 new_ltEs21(xuu582, xuu592, ty_Float) -> new_ltEs17(xuu582, xuu592) 22.90/8.44 new_ltEs18(Left(xuu580), Right(xuu590), beg, bdg) -> True 22.90/8.44 new_esEs11(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.44 new_compare19(Left(xuu50000), Left(xuu4000), ccd, cce) -> new_compare24(xuu50000, xuu4000, new_esEs10(xuu50000, xuu4000, ccd), ccd, cce) 22.90/8.44 new_esEs14(Right(xuu500000), Right(xuu40000), dce, ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.44 new_ltEs18(Right(xuu580), Right(xuu590), beg, app(ty_[], bff)) -> new_ltEs16(xuu580, xuu590, bff) 22.90/8.44 new_esEs37(xuu500001, xuu40001, ty_@0) -> new_esEs24(xuu500001, xuu40001) 22.90/8.44 new_ltEs22(xuu80, xuu81, ty_Double) -> new_ltEs4(xuu80, xuu81) 22.90/8.44 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Ordering, dbb) -> new_esEs13(xuu500000, xuu40000) 22.90/8.44 new_primCompAux00(xuu37, xuu38, EQ, ty_Bool) -> new_compare15(xuu37, xuu38) 22.90/8.44 new_lt23(xuu99, xuu101, app(ty_Maybe, be)) -> new_lt9(xuu99, xuu101, be) 22.90/8.44 new_compare17(@0, @0) -> EQ 22.90/8.44 new_ltEs18(Right(xuu580), Left(xuu590), beg, bdg) -> False 22.90/8.44 new_esEs37(xuu500001, xuu40001, app(app(app(ty_@3, fef), feg), feh)) -> new_esEs23(xuu500001, xuu40001, fef, feg, feh) 22.90/8.44 new_esEs14(Right(xuu500000), Right(xuu40000), dce, app(ty_[], ddc)) -> new_esEs20(xuu500000, xuu40000, ddc) 22.90/8.44 new_esEs34(xuu500000, xuu40000, ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.44 new_esEs14(Left(xuu500000), Left(xuu40000), app(app(app(ty_@3, dcb), dcc), dcd), dbb) -> new_esEs23(xuu500000, xuu40000, dcb, dcc, dcd) 22.90/8.44 new_lt23(xuu99, xuu101, app(app(ty_Either, cb), cc)) -> new_lt19(xuu99, xuu101, cb, cc) 22.90/8.44 new_primCmpNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primCmpNat0(xuu500000, xuu40000) 22.90/8.44 new_esEs31(xuu581, xuu591, ty_Char) -> new_esEs12(xuu581, xuu591) 22.90/8.44 new_esEs10(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.44 new_ltEs18(Left(xuu580), Left(xuu590), ty_Bool, bdg) -> new_ltEs15(xuu580, xuu590) 22.90/8.44 new_lt22(xuu581, xuu591, ty_@0) -> new_lt17(xuu581, xuu591) 22.90/8.44 new_ltEs12(xuu58, xuu59) -> new_fsEs(new_compare12(xuu58, xuu59)) 22.90/8.44 new_esEs34(xuu500000, xuu40000, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.44 new_esEs39(xuu99, xuu101, ty_@0) -> new_esEs24(xuu99, xuu101) 22.90/8.44 new_ltEs21(xuu582, xuu592, ty_Double) -> new_ltEs4(xuu582, xuu592) 22.90/8.44 new_esEs33(xuu500001, xuu40001, ty_Bool) -> new_esEs21(xuu500001, xuu40001) 22.90/8.44 new_compare27(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, True, bhg, bgf, bgg) -> EQ 22.90/8.44 new_esEs32(xuu580, xuu590, ty_Char) -> new_esEs12(xuu580, xuu590) 22.90/8.44 new_esEs10(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.44 new_compare13(LT, GT) -> LT 22.90/8.44 new_lt21(xuu580, xuu590, ty_@0) -> new_lt17(xuu580, xuu590) 22.90/8.44 new_ltEs5(xuu58, xuu59) -> new_fsEs(new_compare17(xuu58, xuu59)) 22.90/8.44 new_ltEs18(Right(xuu580), Right(xuu590), beg, app(app(ty_@2, beh), bfa)) -> new_ltEs8(xuu580, xuu590, beh, bfa) 22.90/8.44 new_ltEs15(True, False) -> False 22.90/8.44 new_lt5(xuu99, xuu101, bf, bg, bh) -> new_esEs13(new_compare10(xuu99, xuu101, bf, bg, bh), LT) 22.90/8.44 new_ltEs18(Right(xuu580), Right(xuu590), beg, ty_Float) -> new_ltEs17(xuu580, xuu590) 22.90/8.44 new_esEs38(xuu500000, xuu40000, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.44 new_esEs33(xuu500001, xuu40001, ty_Int) -> new_esEs25(xuu500001, xuu40001) 22.90/8.44 new_esEs18(Just(xuu500000), Just(xuu40000), app(app(ty_Either, fgd), fge)) -> new_esEs14(xuu500000, xuu40000, fgd, fge) 22.90/8.44 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.44 new_esEs13(EQ, EQ) -> True 22.90/8.44 new_compare10(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bga, bgb, bgc) -> new_compare27(xuu50000, xuu50001, xuu50002, xuu4000, xuu4001, xuu4002, new_asAs(new_esEs9(xuu50000, xuu4000, bga), new_asAs(new_esEs8(xuu50001, xuu4001, bgb), new_esEs7(xuu50002, xuu4002, bgc))), bga, bgb, bgc) 22.90/8.44 new_ltEs20(xuu581, xuu591, ty_Float) -> new_ltEs17(xuu581, xuu591) 22.90/8.44 new_esEs11(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.44 new_lt11(xuu69, xuu72, ty_Double) -> new_lt6(xuu69, xuu72) 22.90/8.44 new_lt22(xuu581, xuu591, app(app(ty_Either, bca), bcb)) -> new_lt19(xuu581, xuu591, bca, bcb) 22.90/8.44 new_esEs38(xuu500000, xuu40000, ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.44 new_lt20(xuu580, xuu590, app(app(app(ty_@3, ed), ee), ef)) -> new_lt5(xuu580, xuu590, ed, ee, ef) 22.90/8.44 new_esEs29(xuu69, xuu72, app(ty_Ratio, eag)) -> new_esEs22(xuu69, xuu72, eag) 22.90/8.44 new_ltEs15(False, False) -> True 22.90/8.44 new_esEs36(xuu500002, xuu40002, app(app(app(ty_@3, fdd), fde), fdf)) -> new_esEs23(xuu500002, xuu40002, fdd, fde, fdf) 22.90/8.44 new_primCompAux1(xuu5000, xuu400, xuu5001, xuu401, ccc) -> new_primCompAux00(xuu5001, xuu401, new_compare5(xuu5000, xuu400, ccc), app(ty_[], ccc)) 22.90/8.44 new_ltEs19(xuu71, xuu74, ty_Float) -> new_ltEs17(xuu71, xuu74) 22.90/8.44 new_esEs17(Float(xuu500000, xuu500001), Float(xuu40000, xuu40001)) -> new_esEs25(new_sr(xuu500000, xuu40001), new_sr(xuu500001, xuu40000)) 22.90/8.44 new_esEs28(xuu70, xuu73, app(ty_[], caf)) -> new_esEs20(xuu70, xuu73, caf) 22.90/8.44 new_primCmpInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> LT 22.90/8.44 new_esEs34(xuu500000, xuu40000, app(app(ty_Either, eha), ehb)) -> new_esEs14(xuu500000, xuu40000, eha, ehb) 22.90/8.44 new_ltEs22(xuu80, xuu81, app(app(ty_Either, ceg), ceh)) -> new_ltEs18(xuu80, xuu81, ceg, ceh) 22.90/8.44 new_ltEs19(xuu71, xuu74, ty_Double) -> new_ltEs4(xuu71, xuu74) 22.90/8.44 new_ltEs22(xuu80, xuu81, app(app(ty_@2, cdg), cdh)) -> new_ltEs8(xuu80, xuu81, cdg, cdh) 22.90/8.44 new_compare15(True, False) -> GT 22.90/8.44 new_lt11(xuu69, xuu72, app(app(ty_Either, bhe), bhf)) -> new_lt19(xuu69, xuu72, bhe, bhf) 22.90/8.44 new_lt21(xuu580, xuu590, app(app(app(ty_@3, bac), bad), bae)) -> new_lt5(xuu580, xuu590, bac, bad, bae) 22.90/8.44 new_compare13(EQ, GT) -> LT 22.90/8.44 new_esEs35(xuu500000, xuu40000, ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.44 new_esEs36(xuu500002, xuu40002, app(ty_Maybe, fda)) -> new_esEs18(xuu500002, xuu40002, fda) 22.90/8.44 new_ltEs18(Right(xuu580), Right(xuu590), beg, app(ty_Maybe, bfb)) -> new_ltEs9(xuu580, xuu590, bfb) 22.90/8.44 new_ltEs18(Left(xuu580), Left(xuu590), ty_Int, bdg) -> new_ltEs14(xuu580, xuu590) 22.90/8.44 new_primCmpInt(Pos(Zero), Neg(Succ(xuu40000))) -> GT 22.90/8.44 new_primCmpInt(Neg(Succ(xuu500000)), Neg(xuu4000)) -> new_primCmpNat0(xuu4000, Succ(xuu500000)) 22.90/8.44 new_lt12(xuu70, xuu73, ty_@0) -> new_lt17(xuu70, xuu73) 22.90/8.44 new_ltEs9(Just(xuu580), Just(xuu590), app(app(ty_Either, hd), he)) -> new_ltEs18(xuu580, xuu590, hd, he) 22.90/8.44 new_esEs5(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.44 new_ltEs6(xuu58, xuu59, app(app(app(ty_@3, bba), hh), baa)) -> new_ltEs10(xuu58, xuu59, bba, hh, baa) 22.90/8.44 new_lt11(xuu69, xuu72, app(ty_Maybe, bgh)) -> new_lt9(xuu69, xuu72, bgh) 22.90/8.44 new_ltEs19(xuu71, xuu74, app(ty_Maybe, cbc)) -> new_ltEs9(xuu71, xuu74, cbc) 22.90/8.44 new_compare115(xuu156, xuu157, xuu158, xuu159, False, ebb, ebc) -> GT 22.90/8.44 new_ltEs13(GT, GT) -> True 22.90/8.44 new_lt23(xuu99, xuu101, ty_Int) -> new_lt8(xuu99, xuu101) 22.90/8.44 new_lt21(xuu580, xuu590, app(app(ty_Either, bag), bah)) -> new_lt19(xuu580, xuu590, bag, bah) 22.90/8.44 new_esEs37(xuu500001, xuu40001, ty_Int) -> new_esEs25(xuu500001, xuu40001) 22.90/8.44 new_esEs33(xuu500001, xuu40001, app(app(ty_@2, ega), egb)) -> new_esEs16(xuu500001, xuu40001, ega, egb) 22.90/8.44 new_esEs32(xuu580, xuu590, ty_Int) -> new_esEs25(xuu580, xuu590) 22.90/8.44 new_esEs8(xuu50001, xuu4001, app(app(app(ty_@3, ech), eda), edb)) -> new_esEs23(xuu50001, xuu4001, ech, eda, edb) 22.90/8.44 new_compare28(xuu99, xuu100, xuu101, xuu102, True, cd, bd) -> EQ 22.90/8.44 new_esEs11(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.44 new_lt20(xuu580, xuu590, ty_Bool) -> new_lt4(xuu580, xuu590) 22.90/8.44 new_esEs10(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.44 new_primEqInt(Pos(Succ(xuu5000000)), Pos(Zero)) -> False 22.90/8.44 new_primEqInt(Pos(Zero), Pos(Succ(xuu400000))) -> False 22.90/8.44 new_lt22(xuu581, xuu591, app(ty_[], bbh)) -> new_lt16(xuu581, xuu591, bbh) 22.90/8.44 new_ltEs13(EQ, GT) -> True 22.90/8.44 new_esEs33(xuu500001, xuu40001, ty_Ordering) -> new_esEs13(xuu500001, xuu40001) 22.90/8.44 new_compare28(xuu99, xuu100, xuu101, xuu102, False, cd, bd) -> new_compare114(xuu99, xuu100, xuu101, xuu102, new_lt23(xuu99, xuu101, cd), new_asAs(new_esEs39(xuu99, xuu101, cd), new_ltEs24(xuu100, xuu102, bd)), cd, bd) 22.90/8.44 new_ltEs9(Just(xuu580), Just(xuu590), app(app(ty_@2, ge), gf)) -> new_ltEs8(xuu580, xuu590, ge, gf) 22.90/8.44 new_esEs7(xuu50002, xuu4002, app(ty_[], eab)) -> new_esEs20(xuu50002, xuu4002, eab) 22.90/8.44 new_ltEs13(EQ, EQ) -> True 22.90/8.44 new_esEs30(xuu580, xuu590, ty_Char) -> new_esEs12(xuu580, xuu590) 22.90/8.44 new_lt12(xuu70, xuu73, ty_Char) -> new_lt10(xuu70, xuu73) 22.90/8.44 new_ltEs21(xuu582, xuu592, ty_Char) -> new_ltEs12(xuu582, xuu592) 22.90/8.44 new_esEs38(xuu500000, xuu40000, ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.44 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Int, dbb) -> new_esEs25(xuu500000, xuu40000) 22.90/8.44 new_ltEs23(xuu87, xuu88, ty_Float) -> new_ltEs17(xuu87, xuu88) 22.90/8.44 new_esEs4(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 22.90/8.44 new_primCmpNat0(Zero, Zero) -> EQ 22.90/8.44 new_ltEs23(xuu87, xuu88, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs10(xuu87, xuu88, cfe, cff, cfg) 22.90/8.44 new_esEs5(xuu50000, xuu4000, app(ty_Maybe, eeg)) -> new_esEs18(xuu50000, xuu4000, eeg) 22.90/8.44 new_ltEs24(xuu100, xuu102, ty_Ordering) -> new_ltEs13(xuu100, xuu102) 22.90/8.44 new_compare13(LT, EQ) -> LT 22.90/8.44 new_esEs5(xuu50000, xuu4000, app(app(ty_@2, eee), eef)) -> new_esEs16(xuu50000, xuu4000, eee, eef) 22.90/8.44 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Float, dbb) -> new_esEs17(xuu500000, xuu40000) 22.90/8.44 new_lt10(xuu99, xuu101) -> new_esEs13(new_compare12(xuu99, xuu101), LT) 22.90/8.44 new_esEs39(xuu99, xuu101, app(app(app(ty_@3, bf), bg), bh)) -> new_esEs23(xuu99, xuu101, bf, bg, bh) 22.90/8.44 new_ltEs21(xuu582, xuu592, ty_Bool) -> new_ltEs15(xuu582, xuu592) 22.90/8.44 new_esEs36(xuu500002, xuu40002, ty_@0) -> new_esEs24(xuu500002, xuu40002) 22.90/8.44 new_esEs30(xuu580, xuu590, ty_Integer) -> new_esEs19(xuu580, xuu590) 22.90/8.44 new_ltEs21(xuu582, xuu592, app(ty_Maybe, bce)) -> new_ltEs9(xuu582, xuu592, bce) 22.90/8.44 new_esEs6(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.44 new_esEs33(xuu500001, xuu40001, app(ty_Ratio, ege)) -> new_esEs22(xuu500001, xuu40001, ege) 22.90/8.44 new_ltEs20(xuu581, xuu591, ty_Integer) -> new_ltEs11(xuu581, xuu591) 22.90/8.44 new_ltEs24(xuu100, xuu102, ty_Double) -> new_ltEs4(xuu100, xuu102) 22.90/8.44 new_ltEs19(xuu71, xuu74, ty_Char) -> new_ltEs12(xuu71, xuu74) 22.90/8.44 new_esEs37(xuu500001, xuu40001, ty_Float) -> new_esEs17(xuu500001, xuu40001) 22.90/8.44 new_esEs32(xuu580, xuu590, ty_Float) -> new_esEs17(xuu580, xuu590) 22.90/8.44 new_ltEs9(Just(xuu580), Just(xuu590), app(ty_[], hc)) -> new_ltEs16(xuu580, xuu590, hc) 22.90/8.44 new_lt21(xuu580, xuu590, app(ty_Maybe, bab)) -> new_lt9(xuu580, xuu590, bab) 22.90/8.44 new_esEs6(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.44 new_lt21(xuu580, xuu590, ty_Integer) -> new_lt14(xuu580, xuu590) 22.90/8.44 new_compare116(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, False, efd, efe, eff) -> GT 22.90/8.44 new_compare110(xuu135, xuu136, True, chf, chg) -> LT 22.90/8.44 new_esEs11(xuu50000, xuu4000, app(ty_Maybe, cgh)) -> new_esEs18(xuu50000, xuu4000, cgh) 22.90/8.44 new_esEs28(xuu70, xuu73, ty_Ordering) -> new_esEs13(xuu70, xuu73) 22.90/8.44 new_esEs33(xuu500001, xuu40001, ty_Double) -> new_esEs15(xuu500001, xuu40001) 22.90/8.44 new_esEs35(xuu500000, xuu40000, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.44 new_lt11(xuu69, xuu72, app(app(app(ty_@3, bha), bhb), bhc)) -> new_lt5(xuu69, xuu72, bha, bhb, bhc) 22.90/8.44 new_ltEs20(xuu581, xuu591, ty_@0) -> new_ltEs5(xuu581, xuu591) 22.90/8.44 new_esEs38(xuu500000, xuu40000, ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.44 new_lt22(xuu581, xuu591, ty_Char) -> new_lt10(xuu581, xuu591) 22.90/8.44 new_ltEs18(Right(xuu580), Right(xuu590), beg, ty_@0) -> new_ltEs5(xuu580, xuu590) 22.90/8.44 new_esEs30(xuu580, xuu590, app(ty_[], eg)) -> new_esEs20(xuu580, xuu590, eg) 22.90/8.44 new_ltEs22(xuu80, xuu81, app(ty_[], cef)) -> new_ltEs16(xuu80, xuu81, cef) 22.90/8.44 new_esEs20([], [], eeh) -> True 22.90/8.44 new_ltEs13(LT, GT) -> True 22.90/8.44 new_lt6(xuu99, xuu101) -> new_esEs13(new_compare6(xuu99, xuu101), LT) 22.90/8.44 new_esEs28(xuu70, xuu73, ty_Char) -> new_esEs12(xuu70, xuu73) 22.90/8.44 new_lt22(xuu581, xuu591, ty_Float) -> new_lt18(xuu581, xuu591) 22.90/8.44 new_lt14(xuu99, xuu101) -> new_esEs13(new_compare11(xuu99, xuu101), LT) 22.90/8.44 new_primCmpNat0(Succ(xuu500000), Zero) -> GT 22.90/8.44 new_ltEs18(Left(xuu580), Left(xuu590), app(app(ty_Either, bee), bef), bdg) -> new_ltEs18(xuu580, xuu590, bee, bef) 22.90/8.44 new_primCompAux00(xuu37, xuu38, EQ, ty_Float) -> new_compare18(xuu37, xuu38) 22.90/8.44 new_pePe(False, xuu195) -> xuu195 22.90/8.44 new_esEs9(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.44 new_esEs33(xuu500001, xuu40001, ty_@0) -> new_esEs24(xuu500001, xuu40001) 22.90/8.44 new_compare7(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), ty_Int) -> new_compare14(new_sr(xuu50000, xuu4001), new_sr(xuu4000, xuu50001)) 22.90/8.44 new_esEs11(xuu50000, xuu4000, app(app(ty_@2, cgf), cgg)) -> new_esEs16(xuu50000, xuu4000, cgf, cgg) 22.90/8.44 new_compare25(xuu87, xuu88, True, cfa, fae) -> EQ 22.90/8.44 new_esEs14(Right(xuu500000), Right(xuu40000), dce, ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.44 new_compare5(xuu5000, xuu400, ty_Ordering) -> new_compare13(xuu5000, xuu400) 22.90/8.44 new_lt21(xuu580, xuu590, app(ty_Ratio, ebf)) -> new_lt7(xuu580, xuu590, ebf) 22.90/8.44 new_esEs4(xuu50001, xuu4001, ty_Int) -> new_esEs25(xuu50001, xuu4001) 22.90/8.44 new_compare112(xuu142, xuu143, True, dhb, dhc) -> LT 22.90/8.44 new_lt23(xuu99, xuu101, ty_Bool) -> new_lt4(xuu99, xuu101) 22.90/8.44 new_ltEs22(xuu80, xuu81, app(ty_Ratio, fad)) -> new_ltEs7(xuu80, xuu81, fad) 22.90/8.44 new_ltEs9(Just(xuu580), Just(xuu590), ty_Ordering) -> new_ltEs13(xuu580, xuu590) 22.90/8.44 new_compare15(False, False) -> EQ 22.90/8.44 new_esEs6(xuu50000, xuu4000, app(app(ty_Either, dfh), dga)) -> new_esEs14(xuu50000, xuu4000, dfh, dga) 22.90/8.44 new_ltEs19(xuu71, xuu74, ty_Bool) -> new_ltEs15(xuu71, xuu74) 22.90/8.44 new_primEqInt(Pos(Zero), Neg(Succ(xuu400000))) -> False 22.90/8.44 new_primEqInt(Neg(Zero), Pos(Succ(xuu400000))) -> False 22.90/8.44 new_compare5(xuu5000, xuu400, ty_Float) -> new_compare18(xuu5000, xuu400) 22.90/8.44 new_lt22(xuu581, xuu591, ty_Ordering) -> new_lt15(xuu581, xuu591) 22.90/8.44 new_compare6(Double(xuu50000, Pos(xuu500010)), Double(xuu4000, Pos(xuu40010))) -> new_compare14(new_sr(xuu50000, Pos(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) 22.90/8.44 new_esEs37(xuu500001, xuu40001, ty_Bool) -> new_esEs21(xuu500001, xuu40001) 22.90/8.44 new_ltEs18(Right(xuu580), Right(xuu590), beg, app(ty_Ratio, fcc)) -> new_ltEs7(xuu580, xuu590, fcc) 22.90/8.44 new_esEs5(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.44 new_lt12(xuu70, xuu73, ty_Ordering) -> new_lt15(xuu70, xuu73) 22.90/8.44 new_compare113(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, xuu178, efd, efe, eff) -> new_compare116(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, efd, efe, eff) 22.90/8.44 new_esEs7(xuu50002, xuu4002, ty_Integer) -> new_esEs19(xuu50002, xuu4002) 22.90/8.44 new_esEs31(xuu581, xuu591, ty_@0) -> new_esEs24(xuu581, xuu591) 22.90/8.44 new_lt11(xuu69, xuu72, app(ty_Ratio, eag)) -> new_lt7(xuu69, xuu72, eag) 22.90/8.44 new_lt11(xuu69, xuu72, app(app(ty_@2, bgd), bge)) -> new_lt13(xuu69, xuu72, bgd, bge) 22.90/8.44 new_esEs36(xuu500002, xuu40002, app(ty_Ratio, fdc)) -> new_esEs22(xuu500002, xuu40002, fdc) 22.90/8.44 new_compare5(xuu5000, xuu400, app(app(ty_@2, h), ba)) -> new_compare8(xuu5000, xuu400, h, ba) 22.90/8.44 new_esEs5(xuu50000, xuu4000, app(app(app(ty_@3, efa), efb), efc)) -> new_esEs23(xuu50000, xuu4000, efa, efb, efc) 22.90/8.44 new_esEs28(xuu70, xuu73, ty_Double) -> new_esEs15(xuu70, xuu73) 22.90/8.44 new_esEs11(xuu50000, xuu4000, app(ty_Ratio, chb)) -> new_esEs22(xuu50000, xuu4000, chb) 22.90/8.44 new_esEs10(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.44 new_primPlusNat0(Zero, xuu5000100) -> Succ(xuu5000100) 22.90/8.44 new_esEs29(xuu69, xuu72, app(app(ty_Either, bhe), bhf)) -> new_esEs14(xuu69, xuu72, bhe, bhf) 22.90/8.44 new_esEs38(xuu500000, xuu40000, ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.44 new_ltEs24(xuu100, xuu102, app(ty_Ratio, fgc)) -> new_ltEs7(xuu100, xuu102, fgc) 22.90/8.44 new_esEs29(xuu69, xuu72, ty_Bool) -> new_esEs21(xuu69, xuu72) 22.90/8.44 new_esEs7(xuu50002, xuu4002, ty_Double) -> new_esEs15(xuu50002, xuu4002) 22.90/8.44 new_esEs8(xuu50001, xuu4001, app(ty_Maybe, ece)) -> new_esEs18(xuu50001, xuu4001, ece) 22.90/8.44 new_esEs29(xuu69, xuu72, app(ty_Maybe, bgh)) -> new_esEs18(xuu69, xuu72, bgh) 22.90/8.44 new_fsEs(xuu190) -> new_not(new_esEs13(xuu190, GT)) 22.90/8.44 new_esEs31(xuu581, xuu591, app(ty_Maybe, bbd)) -> new_esEs18(xuu581, xuu591, bbd) 22.90/8.44 new_compare16(:(xuu50000, xuu50001), :(xuu4000, xuu4001), ccb) -> new_primCompAux1(xuu50000, xuu4000, xuu50001, xuu4001, ccb) 22.90/8.44 new_esEs14(Right(xuu500000), Right(xuu40000), dce, app(app(app(ty_@3, dde), ddf), ddg)) -> new_esEs23(xuu500000, xuu40000, dde, ddf, ddg) 22.90/8.44 new_lt11(xuu69, xuu72, ty_Integer) -> new_lt14(xuu69, xuu72) 22.90/8.44 new_esEs32(xuu580, xuu590, ty_Integer) -> new_esEs19(xuu580, xuu590) 22.90/8.44 new_lt11(xuu69, xuu72, ty_Int) -> new_lt8(xuu69, xuu72) 22.90/8.44 new_esEs4(xuu50001, xuu4001, app(ty_[], edh)) -> new_esEs20(xuu50001, xuu4001, edh) 22.90/8.44 new_ltEs9(Just(xuu580), Just(xuu590), ty_@0) -> new_ltEs5(xuu580, xuu590) 22.90/8.44 new_ltEs18(Left(xuu580), Left(xuu590), ty_Float, bdg) -> new_ltEs17(xuu580, xuu590) 22.90/8.44 new_esEs35(xuu500000, xuu40000, ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.44 new_esEs27(xuu500000, xuu40000, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.44 new_esEs31(xuu581, xuu591, app(app(ty_@2, bbb), bbc)) -> new_esEs16(xuu581, xuu591, bbb, bbc) 22.90/8.44 new_ltEs9(Just(xuu580), Just(xuu590), ty_Integer) -> new_ltEs11(xuu580, xuu590) 22.90/8.44 new_esEs9(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.44 new_primCompAux00(xuu37, xuu38, EQ, ty_@0) -> new_compare17(xuu37, xuu38) 22.90/8.44 new_esEs33(xuu500001, xuu40001, ty_Integer) -> new_esEs19(xuu500001, xuu40001) 22.90/8.44 new_esEs29(xuu69, xuu72, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs23(xuu69, xuu72, bha, bhb, bhc) 22.90/8.44 new_lt20(xuu580, xuu590, ty_Float) -> new_lt18(xuu580, xuu590) 22.90/8.44 new_esEs10(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.44 new_esEs36(xuu500002, xuu40002, ty_Ordering) -> new_esEs13(xuu500002, xuu40002) 22.90/8.44 new_ltEs19(xuu71, xuu74, app(ty_[], cbg)) -> new_ltEs16(xuu71, xuu74, cbg) 22.90/8.44 new_esEs8(xuu50001, xuu4001, ty_@0) -> new_esEs24(xuu50001, xuu4001) 22.90/8.44 new_esEs18(Nothing, Nothing, eeg) -> True 22.90/8.44 new_compare12(Char(xuu50000), Char(xuu4000)) -> new_primCmpNat0(xuu50000, xuu4000) 22.90/8.44 new_ltEs20(xuu581, xuu591, app(app(ty_@2, fc), fd)) -> new_ltEs8(xuu581, xuu591, fc, fd) 22.90/8.44 new_esEs31(xuu581, xuu591, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs23(xuu581, xuu591, bbe, bbf, bbg) 22.90/8.44 new_primMulInt(Neg(xuu40000), Neg(xuu500010)) -> Pos(new_primMulNat0(xuu40000, xuu500010)) 22.90/8.44 new_primCmpInt(Pos(Zero), Pos(Succ(xuu40000))) -> new_primCmpNat0(Zero, Succ(xuu40000)) 22.90/8.44 new_esEs18(Nothing, Just(xuu40000), eeg) -> False 22.90/8.44 new_esEs18(Just(xuu500000), Nothing, eeg) -> False 22.90/8.44 new_esEs37(xuu500001, xuu40001, ty_Char) -> new_esEs12(xuu500001, xuu40001) 22.90/8.44 new_ltEs13(GT, EQ) -> False 22.90/8.44 new_esEs14(Left(xuu500000), Left(xuu40000), app(app(ty_@2, dbe), dbf), dbb) -> new_esEs16(xuu500000, xuu40000, dbe, dbf) 22.90/8.44 new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_@2, ccf), ccg)) -> new_compare8(xuu37, xuu38, ccf, ccg) 22.90/8.44 new_lt12(xuu70, xuu73, app(ty_[], caf)) -> new_lt16(xuu70, xuu73, caf) 22.90/8.44 new_compare18(Float(xuu50000, Pos(xuu500010)), Float(xuu4000, Pos(xuu40010))) -> new_compare14(new_sr(xuu50000, Pos(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) 22.90/8.44 new_esEs30(xuu580, xuu590, ty_Double) -> new_esEs15(xuu580, xuu590) 22.90/8.44 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.44 new_esEs34(xuu500000, xuu40000, ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.44 new_esEs7(xuu50002, xuu4002, app(app(ty_@2, dhg), dhh)) -> new_esEs16(xuu50002, xuu4002, dhg, dhh) 22.90/8.44 new_esEs39(xuu99, xuu101, ty_Bool) -> new_esEs21(xuu99, xuu101) 22.90/8.44 new_compare115(xuu156, xuu157, xuu158, xuu159, True, ebb, ebc) -> LT 22.90/8.44 new_esEs39(xuu99, xuu101, app(app(ty_Either, cb), cc)) -> new_esEs14(xuu99, xuu101, cb, cc) 22.90/8.44 new_esEs38(xuu500000, xuu40000, app(ty_[], fff)) -> new_esEs20(xuu500000, xuu40000, fff) 22.90/8.44 new_esEs35(xuu500000, xuu40000, app(app(ty_@2, fbb), fbc)) -> new_esEs16(xuu500000, xuu40000, fbb, fbc) 22.90/8.44 new_esEs39(xuu99, xuu101, ty_Int) -> new_esEs25(xuu99, xuu101) 22.90/8.44 new_primMulInt(Pos(xuu40000), Neg(xuu500010)) -> Neg(new_primMulNat0(xuu40000, xuu500010)) 22.90/8.44 new_primMulInt(Neg(xuu40000), Pos(xuu500010)) -> Neg(new_primMulNat0(xuu40000, xuu500010)) 22.90/8.44 new_ltEs21(xuu582, xuu592, app(ty_Ratio, ebh)) -> new_ltEs7(xuu582, xuu592, ebh) 22.90/8.44 new_ltEs18(Right(xuu580), Right(xuu590), beg, ty_Int) -> new_ltEs14(xuu580, xuu590) 22.90/8.44 new_esEs28(xuu70, xuu73, app(ty_Maybe, cab)) -> new_esEs18(xuu70, xuu73, cab) 22.90/8.44 new_lt22(xuu581, xuu591, app(app(ty_@2, bbb), bbc)) -> new_lt13(xuu581, xuu591, bbb, bbc) 22.90/8.44 new_sr0(Integer(xuu40000), Integer(xuu500010)) -> Integer(new_primMulInt(xuu40000, xuu500010)) 22.90/8.44 new_esEs35(xuu500000, xuu40000, ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.44 new_ltEs23(xuu87, xuu88, ty_Char) -> new_ltEs12(xuu87, xuu88) 22.90/8.44 new_lt22(xuu581, xuu591, app(ty_Ratio, ebg)) -> new_lt7(xuu581, xuu591, ebg) 22.90/8.44 new_esEs36(xuu500002, xuu40002, app(ty_[], fdb)) -> new_esEs20(xuu500002, xuu40002, fdb) 22.90/8.44 new_compare18(Float(xuu50000, Neg(xuu500010)), Float(xuu4000, Neg(xuu40010))) -> new_compare14(new_sr(xuu50000, Neg(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) 22.90/8.44 new_esEs6(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.44 new_esEs28(xuu70, xuu73, ty_@0) -> new_esEs24(xuu70, xuu73) 22.90/8.44 new_ltEs9(Nothing, Just(xuu590), deb) -> True 22.90/8.44 new_ltEs24(xuu100, xuu102, app(app(ty_Either, de), df)) -> new_ltEs18(xuu100, xuu102, de, df) 22.90/8.44 new_asAs(True, xuu117) -> xuu117 22.90/8.44 new_esEs27(xuu500000, xuu40000, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.44 new_esEs5(xuu50000, xuu4000, app(app(ty_Either, dce), dbb)) -> new_esEs14(xuu50000, xuu4000, dce, dbb) 22.90/8.44 new_esEs31(xuu581, xuu591, ty_Double) -> new_esEs15(xuu581, xuu591) 22.90/8.44 new_esEs29(xuu69, xuu72, ty_Float) -> new_esEs17(xuu69, xuu72) 22.90/8.44 new_esEs8(xuu50001, xuu4001, ty_Ordering) -> new_esEs13(xuu50001, xuu4001) 22.90/8.44 new_ltEs23(xuu87, xuu88, ty_Integer) -> new_ltEs11(xuu87, xuu88) 22.90/8.44 new_esEs4(xuu50001, xuu4001, ty_Double) -> new_esEs15(xuu50001, xuu4001) 22.90/8.44 new_ltEs18(Right(xuu580), Right(xuu590), beg, ty_Bool) -> new_ltEs15(xuu580, xuu590) 22.90/8.44 new_ltEs6(xuu58, xuu59, ty_Bool) -> new_ltEs15(xuu58, xuu59) 22.90/8.44 new_esEs39(xuu99, xuu101, app(ty_Ratio, dfg)) -> new_esEs22(xuu99, xuu101, dfg) 22.90/8.44 new_ltEs21(xuu582, xuu592, ty_Ordering) -> new_ltEs13(xuu582, xuu592) 22.90/8.44 new_compare7(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), ty_Integer) -> new_compare11(new_sr0(xuu50000, xuu4001), new_sr0(xuu4000, xuu50001)) 22.90/8.44 new_ltEs24(xuu100, xuu102, ty_Int) -> new_ltEs14(xuu100, xuu102) 22.90/8.44 new_esEs10(xuu50000, xuu4000, app(app(ty_@2, dab), dac)) -> new_esEs16(xuu50000, xuu4000, dab, dac) 22.90/8.44 new_esEs11(xuu50000, xuu4000, app(ty_[], cha)) -> new_esEs20(xuu50000, xuu4000, cha) 22.90/8.44 new_esEs30(xuu580, xuu590, ty_Float) -> new_esEs17(xuu580, xuu590) 22.90/8.44 new_ltEs23(xuu87, xuu88, app(ty_Maybe, cfd)) -> new_ltEs9(xuu87, xuu88, cfd) 22.90/8.44 new_compare16([], [], ccb) -> EQ 22.90/8.44 new_sr(xuu4000, xuu50001) -> new_primMulInt(xuu4000, xuu50001) 22.90/8.44 new_lt21(xuu580, xuu590, ty_Char) -> new_lt10(xuu580, xuu590) 22.90/8.44 new_compare19(Left(xuu50000), Right(xuu4000), ccd, cce) -> LT 22.90/8.44 new_primMulNat0(Zero, Zero) -> Zero 22.90/8.44 new_esEs39(xuu99, xuu101, ty_Double) -> new_esEs15(xuu99, xuu101) 22.90/8.44 new_ltEs6(xuu58, xuu59, ty_Char) -> new_ltEs12(xuu58, xuu59) 22.90/8.44 new_esEs7(xuu50002, xuu4002, app(ty_Ratio, eac)) -> new_esEs22(xuu50002, xuu4002, eac) 22.90/8.44 new_lt20(xuu580, xuu590, app(ty_[], eg)) -> new_lt16(xuu580, xuu590, eg) 22.90/8.44 new_esEs31(xuu581, xuu591, app(ty_[], bbh)) -> new_esEs20(xuu581, xuu591, bbh) 22.90/8.44 new_ltEs19(xuu71, xuu74, app(ty_Ratio, eba)) -> new_ltEs7(xuu71, xuu74, eba) 22.90/8.44 new_esEs4(xuu50001, xuu4001, app(app(ty_@2, ede), edf)) -> new_esEs16(xuu50001, xuu4001, ede, edf) 22.90/8.44 new_ltEs22(xuu80, xuu81, app(ty_Maybe, ceb)) -> new_ltEs9(xuu80, xuu81, ceb) 22.90/8.44 new_esEs29(xuu69, xuu72, ty_@0) -> new_esEs24(xuu69, xuu72) 22.90/8.44 new_esEs7(xuu50002, xuu4002, ty_Int) -> new_esEs25(xuu50002, xuu4002) 22.90/8.44 new_esEs5(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.44 new_esEs39(xuu99, xuu101, app(app(ty_@2, bb), bc)) -> new_esEs16(xuu99, xuu101, bb, bc) 22.90/8.44 new_esEs9(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.44 new_ltEs13(EQ, LT) -> False 22.90/8.44 new_ltEs18(Right(xuu580), Right(xuu590), beg, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs10(xuu580, xuu590, bfc, bfd, bfe) 22.90/8.44 new_esEs30(xuu580, xuu590, ty_@0) -> new_esEs24(xuu580, xuu590) 22.90/8.44 new_ltEs18(Left(xuu580), Left(xuu590), app(app(app(ty_@3, bea), beb), bec), bdg) -> new_ltEs10(xuu580, xuu590, bea, beb, bec) 22.90/8.44 new_primEqInt(Neg(Succ(xuu5000000)), Neg(Zero)) -> False 22.90/8.44 new_primEqInt(Neg(Zero), Neg(Succ(xuu400000))) -> False 22.90/8.44 new_lt20(xuu580, xuu590, ty_Double) -> new_lt6(xuu580, xuu590) 22.90/8.44 new_primEqInt(Pos(Succ(xuu5000000)), Pos(Succ(xuu400000))) -> new_primEqNat0(xuu5000000, xuu400000) 22.90/8.44 new_esEs39(xuu99, xuu101, ty_Ordering) -> new_esEs13(xuu99, xuu101) 22.90/8.44 new_compare114(xuu156, xuu157, xuu158, xuu159, False, xuu161, ebb, ebc) -> new_compare115(xuu156, xuu157, xuu158, xuu159, xuu161, ebb, ebc) 22.90/8.44 new_ltEs6(xuu58, xuu59, ty_@0) -> new_ltEs5(xuu58, xuu59) 22.90/8.44 new_ltEs23(xuu87, xuu88, ty_Int) -> new_ltEs14(xuu87, xuu88) 22.90/8.44 new_esEs34(xuu500000, xuu40000, app(app(ty_@2, ehc), ehd)) -> new_esEs16(xuu500000, xuu40000, ehc, ehd) 22.90/8.44 new_ltEs18(Right(xuu580), Right(xuu590), beg, ty_Char) -> new_ltEs12(xuu580, xuu590) 22.90/8.44 new_esEs14(Right(xuu500000), Right(xuu40000), dce, ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.44 new_ltEs19(xuu71, xuu74, ty_Ordering) -> new_ltEs13(xuu71, xuu74) 22.90/8.44 new_esEs18(Just(xuu500000), Just(xuu40000), app(app(ty_@2, fgf), fgg)) -> new_esEs16(xuu500000, xuu40000, fgf, fgg) 22.90/8.44 new_esEs4(xuu50001, xuu4001, ty_Ordering) -> new_esEs13(xuu50001, xuu4001) 22.90/8.44 new_primEqInt(Pos(Succ(xuu5000000)), Neg(xuu40000)) -> False 22.90/8.44 new_primEqInt(Neg(Succ(xuu5000000)), Pos(xuu40000)) -> False 22.90/8.44 new_ltEs20(xuu581, xuu591, app(ty_Ratio, ebe)) -> new_ltEs7(xuu581, xuu591, ebe) 22.90/8.44 new_ltEs18(Left(xuu580), Left(xuu590), ty_Double, bdg) -> new_ltEs4(xuu580, xuu590) 22.90/8.44 new_esEs10(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.44 new_primCmpInt(Neg(Zero), Neg(Succ(xuu40000))) -> new_primCmpNat0(Succ(xuu40000), Zero) 22.90/8.44 new_esEs8(xuu50001, xuu4001, app(ty_Ratio, ecg)) -> new_esEs22(xuu50001, xuu4001, ecg) 22.90/8.44 new_esEs13(LT, GT) -> False 22.90/8.44 new_esEs13(GT, LT) -> False 22.90/8.44 new_esEs20(:(xuu500000, xuu500001), [], eeh) -> False 22.90/8.44 new_esEs20([], :(xuu40000, xuu40001), eeh) -> False 22.90/8.44 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 22.90/8.44 new_esEs34(xuu500000, xuu40000, ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.44 new_esEs35(xuu500000, xuu40000, app(ty_[], fbe)) -> new_esEs20(xuu500000, xuu40000, fbe) 22.90/8.44 new_ltEs20(xuu581, xuu591, ty_Ordering) -> new_ltEs13(xuu581, xuu591) 22.90/8.44 new_esEs5(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.44 new_primCompAux00(xuu37, xuu38, LT, dfe) -> LT 22.90/8.44 new_compare113(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, False, xuu178, efd, efe, eff) -> new_compare116(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, xuu178, efd, efe, eff) 22.90/8.44 new_ltEs9(Just(xuu580), Just(xuu590), app(ty_Ratio, fag)) -> new_ltEs7(xuu580, xuu590, fag) 22.90/8.44 new_lt21(xuu580, xuu590, app(app(ty_@2, hf), hg)) -> new_lt13(xuu580, xuu590, hf, hg) 22.90/8.44 new_lt12(xuu70, xuu73, app(ty_Maybe, cab)) -> new_lt9(xuu70, xuu73, cab) 22.90/8.44 new_esEs11(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.44 new_lt11(xuu69, xuu72, ty_@0) -> new_lt17(xuu69, xuu72) 22.90/8.44 new_compare112(xuu142, xuu143, False, dhb, dhc) -> GT 22.90/8.44 new_ltEs24(xuu100, xuu102, ty_Char) -> new_ltEs12(xuu100, xuu102) 22.90/8.44 new_esEs38(xuu500000, xuu40000, app(ty_Ratio, ffg)) -> new_esEs22(xuu500000, xuu40000, ffg) 22.90/8.44 new_esEs28(xuu70, xuu73, ty_Integer) -> new_esEs19(xuu70, xuu73) 22.90/8.44 new_ltEs18(Right(xuu580), Right(xuu590), beg, ty_Integer) -> new_ltEs11(xuu580, xuu590) 22.90/8.44 new_esEs31(xuu581, xuu591, ty_Float) -> new_esEs17(xuu581, xuu591) 22.90/8.44 new_not(False) -> True 22.90/8.44 new_lt7(xuu99, xuu101, dfg) -> new_esEs13(new_compare7(xuu99, xuu101, dfg), LT) 22.90/8.44 new_esEs36(xuu500002, xuu40002, app(app(ty_@2, fcg), fch)) -> new_esEs16(xuu500002, xuu40002, fcg, fch) 22.90/8.44 new_esEs9(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.44 new_ltEs6(xuu58, xuu59, ty_Integer) -> new_ltEs11(xuu58, xuu59) 22.90/8.44 new_ltEs20(xuu581, xuu591, app(app(app(ty_@3, fg), fh), ga)) -> new_ltEs10(xuu581, xuu591, fg, fh, ga) 22.90/8.44 new_lt9(xuu99, xuu101, be) -> new_esEs13(new_compare9(xuu99, xuu101, be), LT) 22.90/8.44 new_esEs4(xuu50001, xuu4001, app(ty_Ratio, eea)) -> new_esEs22(xuu50001, xuu4001, eea) 22.90/8.44 new_ltEs24(xuu100, xuu102, ty_Integer) -> new_ltEs11(xuu100, xuu102) 22.90/8.44 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.44 new_ltEs7(xuu58, xuu59, dea) -> new_fsEs(new_compare7(xuu58, xuu59, dea)) 22.90/8.44 new_esEs38(xuu500000, xuu40000, app(app(ty_@2, ffc), ffd)) -> new_esEs16(xuu500000, xuu40000, ffc, ffd) 22.90/8.44 new_esEs14(Right(xuu500000), Right(xuu40000), dce, app(ty_Ratio, ddd)) -> new_esEs22(xuu500000, xuu40000, ddd) 22.90/8.44 new_ltEs19(xuu71, xuu74, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_ltEs10(xuu71, xuu74, cbd, cbe, cbf) 22.90/8.44 new_ltEs10(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, hh, baa) -> new_pePe(new_lt21(xuu580, xuu590, bba), new_asAs(new_esEs32(xuu580, xuu590, bba), new_pePe(new_lt22(xuu581, xuu591, hh), new_asAs(new_esEs31(xuu581, xuu591, hh), new_ltEs21(xuu582, xuu592, baa))))) 22.90/8.44 new_esEs14(Right(xuu500000), Right(xuu40000), dce, app(app(ty_Either, dcf), dcg)) -> new_esEs14(xuu500000, xuu40000, dcf, dcg) 22.90/8.44 new_primCompAux00(xuu37, xuu38, EQ, app(ty_[], cdd)) -> new_compare16(xuu37, xuu38, cdd) 22.90/8.44 new_ltEs22(xuu80, xuu81, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs10(xuu80, xuu81, cec, ced, cee) 22.90/8.44 new_esEs8(xuu50001, xuu4001, ty_Bool) -> new_esEs21(xuu50001, xuu4001) 22.90/8.44 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 22.90/8.44 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 22.90/8.44 new_ltEs23(xuu87, xuu88, ty_Bool) -> new_ltEs15(xuu87, xuu88) 22.90/8.44 new_lt12(xuu70, xuu73, ty_Float) -> new_lt18(xuu70, xuu73) 22.90/8.44 new_ltEs24(xuu100, xuu102, ty_@0) -> new_ltEs5(xuu100, xuu102) 22.90/8.44 new_esEs8(xuu50001, xuu4001, app(app(ty_Either, eca), ecb)) -> new_esEs14(xuu50001, xuu4001, eca, ecb) 22.90/8.44 new_lt12(xuu70, xuu73, app(app(ty_Either, cag), cah)) -> new_lt19(xuu70, xuu73, cag, cah) 22.90/8.44 new_lt21(xuu580, xuu590, ty_Double) -> new_lt6(xuu580, xuu590) 22.90/8.44 new_esEs8(xuu50001, xuu4001, ty_Int) -> new_esEs25(xuu50001, xuu4001) 22.90/8.44 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 22.90/8.44 new_compare6(Double(xuu50000, Pos(xuu500010)), Double(xuu4000, Neg(xuu40010))) -> new_compare14(new_sr(xuu50000, Pos(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) 22.90/8.44 new_compare6(Double(xuu50000, Neg(xuu500010)), Double(xuu4000, Pos(xuu40010))) -> new_compare14(new_sr(xuu50000, Neg(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) 22.90/8.44 new_primMulNat0(Succ(xuu400000), Succ(xuu5000100)) -> new_primPlusNat0(new_primMulNat0(xuu400000, Succ(xuu5000100)), xuu5000100) 22.90/8.44 new_esEs14(Left(xuu500000), Left(xuu40000), app(ty_Maybe, dbg), dbb) -> new_esEs18(xuu500000, xuu40000, dbg) 22.90/8.44 new_ltEs21(xuu582, xuu592, ty_Integer) -> new_ltEs11(xuu582, xuu592) 22.90/8.44 new_lt22(xuu581, xuu591, ty_Double) -> new_lt6(xuu581, xuu591) 22.90/8.44 new_ltEs13(LT, EQ) -> True 22.90/8.44 new_ltEs21(xuu582, xuu592, ty_Int) -> new_ltEs14(xuu582, xuu592) 22.90/8.44 new_esEs16(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), eee, eef) -> new_asAs(new_esEs34(xuu500000, xuu40000, eee), new_esEs33(xuu500001, xuu40001, eef)) 22.90/8.44 new_ltEs22(xuu80, xuu81, ty_@0) -> new_ltEs5(xuu80, xuu81) 22.90/8.44 new_ltEs23(xuu87, xuu88, ty_Ordering) -> new_ltEs13(xuu87, xuu88) 22.90/8.44 new_esEs6(xuu50000, xuu4000, app(ty_Ratio, dgf)) -> new_esEs22(xuu50000, xuu4000, dgf) 22.90/8.44 new_compare25(xuu87, xuu88, False, cfa, fae) -> new_compare112(xuu87, xuu88, new_ltEs23(xuu87, xuu88, fae), cfa, fae) 22.90/8.44 new_esEs32(xuu580, xuu590, app(ty_[], baf)) -> new_esEs20(xuu580, xuu590, baf) 22.90/8.44 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 22.90/8.44 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 22.90/8.44 new_lt23(xuu99, xuu101, ty_Double) -> new_lt6(xuu99, xuu101) 22.90/8.44 new_compare15(True, True) -> EQ 22.90/8.44 new_compare110(xuu135, xuu136, False, chf, chg) -> GT 22.90/8.44 new_ltEs21(xuu582, xuu592, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs10(xuu582, xuu592, bcf, bcg, bch) 22.90/8.44 new_esEs33(xuu500001, xuu40001, app(ty_[], egd)) -> new_esEs20(xuu500001, xuu40001, egd) 22.90/8.44 new_primEqNat0(Zero, Zero) -> True 22.90/8.44 new_esEs9(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.44 new_esEs7(xuu50002, xuu4002, ty_Ordering) -> new_esEs13(xuu50002, xuu4002) 22.90/8.44 new_ltEs9(Just(xuu580), Nothing, deb) -> False 22.90/8.44 new_ltEs9(Nothing, Nothing, deb) -> True 22.90/8.44 new_compare5(xuu5000, xuu400, app(ty_[], ccb)) -> new_compare16(xuu5000, xuu400, ccb) 22.90/8.44 new_esEs36(xuu500002, xuu40002, ty_Double) -> new_esEs15(xuu500002, xuu40002) 22.90/8.44 new_ltEs23(xuu87, xuu88, ty_@0) -> new_ltEs5(xuu87, xuu88) 22.90/8.44 new_esEs37(xuu500001, xuu40001, app(app(ty_@2, fea), feb)) -> new_esEs16(xuu500001, xuu40001, fea, feb) 22.90/8.44 new_ltEs22(xuu80, xuu81, ty_Char) -> new_ltEs12(xuu80, xuu81) 22.90/8.44 new_ltEs24(xuu100, xuu102, ty_Bool) -> new_ltEs15(xuu100, xuu102) 22.90/8.44 new_ltEs22(xuu80, xuu81, ty_Ordering) -> new_ltEs13(xuu80, xuu81) 22.90/8.44 new_compare18(Float(xuu50000, Pos(xuu500010)), Float(xuu4000, Neg(xuu40010))) -> new_compare14(new_sr(xuu50000, Pos(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) 22.90/8.44 new_compare18(Float(xuu50000, Neg(xuu500010)), Float(xuu4000, Pos(xuu40010))) -> new_compare14(new_sr(xuu50000, Neg(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) 22.90/8.44 new_esEs10(xuu50000, xuu4000, app(ty_[], dae)) -> new_esEs20(xuu50000, xuu4000, dae) 22.90/8.44 new_compare9(Nothing, Nothing, dg) -> EQ 22.90/8.44 new_asAs(False, xuu117) -> False 22.90/8.44 new_esEs13(LT, EQ) -> False 22.90/8.44 new_esEs13(EQ, LT) -> False 22.90/8.44 new_ltEs19(xuu71, xuu74, ty_Int) -> new_ltEs14(xuu71, xuu74) 22.90/8.44 new_ltEs24(xuu100, xuu102, app(ty_Maybe, cg)) -> new_ltEs9(xuu100, xuu102, cg) 22.90/8.44 new_esEs9(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.44 new_esEs9(xuu50000, xuu4000, app(app(ty_Either, dec), ded)) -> new_esEs14(xuu50000, xuu4000, dec, ded) 22.90/8.44 new_esEs5(xuu50000, xuu4000, app(ty_Ratio, dhd)) -> new_esEs22(xuu50000, xuu4000, dhd) 22.90/8.44 new_ltEs6(xuu58, xuu59, ty_Int) -> new_ltEs14(xuu58, xuu59) 22.90/8.44 new_esEs26(xuu500001, xuu40001, ty_Integer) -> new_esEs19(xuu500001, xuu40001) 22.90/8.44 new_esEs28(xuu70, xuu73, ty_Float) -> new_esEs17(xuu70, xuu73) 22.90/8.44 new_ltEs22(xuu80, xuu81, ty_Integer) -> new_ltEs11(xuu80, xuu81) 22.90/8.44 new_esEs7(xuu50002, xuu4002, ty_Char) -> new_esEs12(xuu50002, xuu4002) 22.90/8.44 new_esEs15(Double(xuu500000, xuu500001), Double(xuu40000, xuu40001)) -> new_esEs25(new_sr(xuu500000, xuu40001), new_sr(xuu500001, xuu40000)) 22.90/8.44 new_ltEs20(xuu581, xuu591, ty_Int) -> new_ltEs14(xuu581, xuu591) 22.90/8.44 22.90/8.44 The set Q consists of the following terms: 22.90/8.44 22.90/8.44 new_esEs35(x0, x1, app(ty_[], x2)) 22.90/8.44 new_ltEs18(Right(x0), Right(x1), x2, ty_Integer) 22.90/8.44 new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_ltEs22(x0, x1, ty_Integer) 22.90/8.44 new_esEs37(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs10(x0, x1, ty_Char) 22.90/8.44 new_primPlusNat1(Zero, Succ(x0)) 22.90/8.44 new_esEs35(x0, x1, ty_Char) 22.90/8.44 new_esEs6(x0, x1, ty_Char) 22.90/8.44 new_lt11(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_lt12(x0, x1, ty_Float) 22.90/8.44 new_primPlusNat1(Zero, Zero) 22.90/8.44 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 22.90/8.44 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_lt11(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_esEs14(Left(x0), Left(x1), ty_Double, x2) 22.90/8.44 new_ltEs24(x0, x1, ty_Integer) 22.90/8.44 new_compare26(x0, x1, True, x2) 22.90/8.44 new_esEs17(Float(x0, x1), Float(x2, x3)) 22.90/8.44 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_esEs35(x0, x1, ty_Ordering) 22.90/8.44 new_primEqInt(Pos(Zero), Pos(Zero)) 22.90/8.44 new_primCompAux00(x0, x1, EQ, ty_Bool) 22.90/8.44 new_esEs38(x0, x1, ty_Float) 22.90/8.44 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_lt22(x0, x1, app(ty_[], x2)) 22.90/8.44 new_primEqNat0(Succ(x0), Succ(x1)) 22.90/8.44 new_esEs28(x0, x1, ty_Char) 22.90/8.44 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs36(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_ltEs13(EQ, EQ) 22.90/8.44 new_esEs23(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.90/8.44 new_esEs38(x0, x1, app(ty_[], x2)) 22.90/8.44 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs13(LT, LT) 22.90/8.44 new_primEqInt(Neg(Zero), Neg(Zero)) 22.90/8.44 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 22.90/8.44 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_ltEs18(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.90/8.44 new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) 22.90/8.44 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_ltEs18(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.90/8.44 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_ltEs15(False, True) 22.90/8.44 new_ltEs15(True, False) 22.90/8.44 new_lt22(x0, x1, ty_Integer) 22.90/8.44 new_esEs28(x0, x1, ty_Ordering) 22.90/8.44 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_lt11(x0, x1, ty_Char) 22.90/8.44 new_ltEs24(x0, x1, ty_@0) 22.90/8.44 new_esEs6(x0, x1, ty_Double) 22.90/8.44 new_esEs9(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_esEs10(x0, x1, ty_Ordering) 22.90/8.44 new_compare116(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 22.90/8.44 new_esEs10(x0, x1, ty_Double) 22.90/8.44 new_ltEs22(x0, x1, ty_@0) 22.90/8.44 new_esEs18(Nothing, Just(x0), x1) 22.90/8.44 new_compare5(x0, x1, ty_Int) 22.90/8.44 new_esEs8(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_lt12(x0, x1, ty_Integer) 22.90/8.44 new_esEs29(x0, x1, ty_Ordering) 22.90/8.44 new_primCompAux00(x0, x1, EQ, ty_Integer) 22.90/8.44 new_ltEs6(x0, x1, ty_Integer) 22.90/8.44 new_compare15(False, True) 22.90/8.44 new_lt20(x0, x1, ty_Ordering) 22.90/8.44 new_compare15(True, False) 22.90/8.44 new_ltEs24(x0, x1, ty_Float) 22.90/8.44 new_compare5(x0, x1, ty_@0) 22.90/8.44 new_esEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.90/8.44 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_ltEs16(x0, x1, x2) 22.90/8.44 new_ltEs18(Right(x0), Right(x1), x2, ty_@0) 22.90/8.44 new_esEs14(Left(x0), Left(x1), ty_Char, x2) 22.90/8.44 new_primEqInt(Pos(Zero), Neg(Zero)) 22.90/8.44 new_primEqInt(Neg(Zero), Pos(Zero)) 22.90/8.44 new_esEs9(x0, x1, ty_Float) 22.90/8.44 new_esEs8(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_ltEs22(x0, x1, ty_Float) 22.90/8.44 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_ltEs5(x0, x1) 22.90/8.44 new_esEs9(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_ltEs18(Right(x0), Right(x1), x2, ty_Bool) 22.90/8.44 new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 22.90/8.44 new_esEs38(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 22.90/8.44 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 22.90/8.44 new_esEs21(True, True) 22.90/8.44 new_ltEs23(x0, x1, ty_Double) 22.90/8.44 new_asAs(False, x0) 22.90/8.44 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_ltEs23(x0, x1, ty_Char) 22.90/8.44 new_compare24(x0, x1, False, x2, x3) 22.90/8.44 new_esEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.90/8.44 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_compare115(x0, x1, x2, x3, True, x4, x5) 22.90/8.44 new_esEs36(x0, x1, ty_Double) 22.90/8.44 new_esEs7(x0, x1, ty_Ordering) 22.90/8.44 new_esEs9(x0, x1, ty_Integer) 22.90/8.44 new_ltEs18(Right(x0), Right(x1), x2, ty_Int) 22.90/8.44 new_ltEs24(x0, x1, app(ty_[], x2)) 22.90/8.44 new_lt11(x0, x1, ty_Ordering) 22.90/8.44 new_lt23(x0, x1, ty_Double) 22.90/8.44 new_esEs37(x0, x1, app(ty_[], x2)) 22.90/8.44 new_compare16(:(x0, x1), [], x2) 22.90/8.44 new_esEs7(x0, x1, ty_Float) 22.90/8.44 new_compare110(x0, x1, False, x2, x3) 22.90/8.44 new_lt12(x0, x1, ty_Bool) 22.90/8.44 new_ltEs4(x0, x1) 22.90/8.44 new_esEs9(x0, x1, ty_Bool) 22.90/8.44 new_esEs4(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs38(x0, x1, ty_@0) 22.90/8.44 new_lt23(x0, x1, app(ty_[], x2)) 22.90/8.44 new_lt12(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_ltEs18(Right(x0), Right(x1), x2, ty_Float) 22.90/8.44 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs28(x0, x1, ty_Double) 22.90/8.44 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_esEs18(Just(x0), Just(x1), ty_Int) 22.90/8.44 new_esEs36(x0, x1, ty_Ordering) 22.90/8.44 new_lt18(x0, x1) 22.90/8.44 new_lt22(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_ltEs24(x0, x1, ty_Int) 22.90/8.44 new_ltEs9(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_ltEs20(x0, x1, ty_Double) 22.90/8.44 new_ltEs9(Just(x0), Just(x1), ty_Char) 22.90/8.44 new_esEs5(x0, x1, ty_Double) 22.90/8.44 new_ltEs24(x0, x1, ty_Bool) 22.90/8.44 new_esEs7(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs14(Right(x0), Right(x1), x2, ty_Double) 22.90/8.44 new_esEs37(x0, x1, ty_Bool) 22.90/8.44 new_esEs30(x0, x1, ty_Bool) 22.90/8.44 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_compare5(x0, x1, ty_Bool) 22.90/8.44 new_esEs33(x0, x1, ty_Integer) 22.90/8.44 new_esEs5(x0, x1, ty_@0) 22.90/8.44 new_esEs37(x0, x1, ty_Float) 22.90/8.44 new_lt17(x0, x1) 22.90/8.44 new_esEs34(x0, x1, ty_Float) 22.90/8.44 new_esEs7(x0, x1, ty_Char) 22.90/8.44 new_ltEs12(x0, x1) 22.90/8.44 new_esEs30(x0, x1, ty_Float) 22.90/8.44 new_ltEs17(x0, x1) 22.90/8.44 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_esEs24(@0, @0) 22.90/8.44 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_esEs33(x0, x1, ty_Ordering) 22.90/8.44 new_esEs8(x0, x1, ty_Double) 22.90/8.44 new_esEs31(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_esEs6(x0, x1, app(ty_[], x2)) 22.90/8.44 new_compare5(x0, x1, ty_Integer) 22.90/8.44 new_primCompAux00(x0, x1, EQ, ty_Float) 22.90/8.44 new_esEs4(x0, x1, app(ty_[], x2)) 22.90/8.44 new_ltEs6(x0, x1, ty_@0) 22.90/8.44 new_esEs39(x0, x1, ty_Ordering) 22.90/8.44 new_esEs38(x0, x1, ty_Double) 22.90/8.44 new_ltEs19(x0, x1, ty_Int) 22.90/8.44 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs9(x0, x1, ty_Ordering) 22.90/8.44 new_compare12(Char(x0), Char(x1)) 22.90/8.44 new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 22.90/8.44 new_esEs4(x0, x1, ty_Float) 22.90/8.44 new_lt22(x0, x1, ty_@0) 22.90/8.44 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_lt20(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs14(Right(x0), Right(x1), x2, ty_@0) 22.90/8.44 new_esEs13(LT, EQ) 22.90/8.44 new_esEs13(EQ, LT) 22.90/8.44 new_ltEs20(x0, x1, ty_@0) 22.90/8.44 new_primCmpNat0(Succ(x0), Zero) 22.90/8.44 new_primCompAux00(x0, x1, EQ, ty_Int) 22.90/8.44 new_esEs32(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_lt20(x0, x1, ty_Double) 22.90/8.44 new_esEs29(x0, x1, ty_Char) 22.90/8.44 new_esEs22(:%(x0, x1), :%(x2, x3), x4) 22.90/8.44 new_esEs11(x0, x1, ty_Char) 22.90/8.44 new_ltEs20(x0, x1, ty_Char) 22.90/8.44 new_esEs13(EQ, EQ) 22.90/8.44 new_esEs5(x0, x1, ty_Char) 22.90/8.44 new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 22.90/8.44 new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 22.90/8.44 new_ltEs9(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.90/8.44 new_ltEs9(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.90/8.44 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_esEs36(x0, x1, ty_@0) 22.90/8.44 new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 22.90/8.44 new_esEs38(x0, x1, ty_Int) 22.90/8.44 new_esEs6(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 22.90/8.44 new_esEs21(False, True) 22.90/8.44 new_esEs21(True, False) 22.90/8.44 new_compare9(Just(x0), Just(x1), x2) 22.90/8.44 new_compare114(x0, x1, x2, x3, True, x4, x5, x6) 22.90/8.44 new_esEs33(x0, x1, ty_@0) 22.90/8.44 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_esEs14(Right(x0), Right(x1), x2, ty_Char) 22.90/8.44 new_esEs32(x0, x1, ty_Char) 22.90/8.44 new_esEs11(x0, x1, ty_Int) 22.90/8.44 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs8(x0, x1, ty_Char) 22.90/8.44 new_ltEs18(Left(x0), Left(x1), ty_Int, x2) 22.90/8.44 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs8(x0, x1, ty_@0) 22.90/8.44 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_esEs32(x0, x1, ty_Int) 22.90/8.44 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_ltEs21(x0, x1, ty_Bool) 22.90/8.44 new_primCompAux00(x0, x1, LT, x2) 22.90/8.44 new_esEs34(x0, x1, ty_Ordering) 22.90/8.44 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_compare13(GT, GT) 22.90/8.44 new_compare13(EQ, LT) 22.90/8.44 new_ltEs18(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.90/8.44 new_compare13(LT, EQ) 22.90/8.44 new_esEs29(x0, x1, ty_Float) 22.90/8.44 new_lt20(x0, x1, ty_Integer) 22.90/8.44 new_ltEs23(x0, x1, ty_Float) 22.90/8.44 new_ltEs23(x0, x1, ty_Integer) 22.90/8.44 new_lt11(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_esEs18(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_lt5(x0, x1, x2, x3, x4) 22.90/8.44 new_esEs33(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_esEs39(x0, x1, ty_Double) 22.90/8.44 new_esEs8(x0, x1, ty_Int) 22.90/8.44 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_lt12(x0, x1, ty_Int) 22.90/8.44 new_esEs31(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_esEs34(x0, x1, app(ty_[], x2)) 22.90/8.44 new_ltEs18(Left(x0), Left(x1), ty_Char, x2) 22.90/8.44 new_compare25(x0, x1, True, x2, x3) 22.90/8.44 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_ltEs21(x0, x1, ty_Int) 22.90/8.44 new_esEs30(x0, x1, ty_Ordering) 22.90/8.44 new_ltEs18(Left(x0), Left(x1), ty_Bool, x2) 22.90/8.44 new_not(True) 22.90/8.44 new_esEs32(x0, x1, ty_Double) 22.90/8.44 new_lt21(x0, x1, ty_Double) 22.90/8.44 new_lt12(x0, x1, ty_Char) 22.90/8.44 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_primPlusNat1(Succ(x0), Succ(x1)) 22.90/8.44 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_esEs34(x0, x1, ty_Double) 22.90/8.44 new_ltEs13(EQ, GT) 22.90/8.44 new_ltEs13(GT, EQ) 22.90/8.44 new_esEs39(x0, x1, ty_Char) 22.90/8.44 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs20(:(x0, x1), [], x2) 22.90/8.44 new_esEs27(x0, x1, ty_Integer) 22.90/8.44 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_esEs18(Nothing, Nothing, x0) 22.90/8.44 new_primCompAux1(x0, x1, x2, x3, x4) 22.90/8.44 new_ltEs23(x0, x1, ty_Bool) 22.90/8.44 new_esEs38(x0, x1, app(ty_Maybe, x2)) 22.90/8.44 new_compare113(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 22.90/8.44 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_ltEs19(x0, x1, app(ty_[], x2)) 22.90/8.44 new_ltEs21(x0, x1, ty_Char) 22.90/8.44 new_esEs39(x0, x1, ty_Int) 22.90/8.44 new_esEs26(x0, x1, ty_Integer) 22.90/8.44 new_ltEs23(x0, x1, ty_@0) 22.90/8.44 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_esEs19(Integer(x0), Integer(x1)) 22.90/8.44 new_ltEs18(Left(x0), Left(x1), ty_Integer, x2) 22.90/8.44 new_esEs14(Left(x0), Left(x1), ty_Float, x2) 22.90/8.44 new_ltEs13(LT, LT) 22.90/8.44 new_lt4(x0, x1) 22.90/8.44 new_esEs35(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_lt22(x0, x1, ty_Ordering) 22.90/8.44 new_pePe(True, x0) 22.90/8.44 new_esEs14(Right(x0), Right(x1), x2, ty_Integer) 22.90/8.44 new_esEs9(x0, x1, ty_@0) 22.90/8.44 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.44 new_ltEs18(Right(x0), Right(x1), x2, ty_Double) 22.90/8.44 new_esEs32(x0, x1, ty_Bool) 22.90/8.44 new_esEs37(x0, x1, ty_Ordering) 22.90/8.44 new_esEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.90/8.44 new_esEs34(x0, x1, app(ty_Ratio, x2)) 22.90/8.44 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.44 new_ltEs8(@2(x0, x1), @2(x2, x3), x4, x5) 22.90/8.44 new_compare112(x0, x1, False, x2, x3) 22.90/8.44 new_compare24(x0, x1, True, x2, x3) 22.90/8.44 new_lt12(x0, x1, ty_@0) 22.90/8.44 new_lt23(x0, x1, ty_Ordering) 22.90/8.44 new_esEs33(x0, x1, app(ty_[], x2)) 22.90/8.44 new_esEs21(False, False) 22.90/8.44 new_compare16([], :(x0, x1), x2) 22.90/8.44 new_esEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.90/8.44 new_esEs5(x0, x1, ty_Integer) 22.90/8.44 new_esEs5(x0, x1, app(ty_[], x2)) 22.90/8.44 new_ltEs20(x0, x1, ty_Integer) 22.90/8.44 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.44 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 22.90/8.45 new_esEs7(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_compare5(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 22.90/8.45 new_esEs14(Left(x0), Left(x1), ty_Integer, x2) 22.90/8.45 new_esEs18(Just(x0), Just(x1), ty_Double) 22.90/8.45 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_esEs7(x0, x1, ty_Double) 22.90/8.45 new_fsEs(x0) 22.90/8.45 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.45 new_ltEs21(x0, x1, ty_Double) 22.90/8.45 new_lt19(x0, x1, x2, x3) 22.90/8.45 new_ltEs18(Right(x0), Right(x1), x2, ty_Ordering) 22.90/8.45 new_esEs30(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_ltEs22(x0, x1, ty_Ordering) 22.90/8.45 new_esEs4(x0, x1, ty_Ordering) 22.90/8.45 new_compare16([], [], x0) 22.90/8.45 new_sr0(Integer(x0), Integer(x1)) 22.90/8.45 new_esEs14(Left(x0), Left(x1), ty_Bool, x2) 22.90/8.45 new_esEs8(x0, x1, ty_Float) 22.90/8.45 new_esEs8(x0, x1, ty_Integer) 22.90/8.45 new_compare114(x0, x1, x2, x3, False, x4, x5, x6) 22.90/8.45 new_esEs38(x0, x1, ty_Integer) 22.90/8.45 new_esEs5(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_esEs4(x0, x1, ty_Double) 22.90/8.45 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 22.90/8.45 new_esEs11(x0, x1, ty_Integer) 22.90/8.45 new_primMulInt(Neg(x0), Neg(x1)) 22.90/8.45 new_esEs14(Right(x0), Right(x1), x2, ty_Bool) 22.90/8.45 new_esEs29(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_ltEs24(x0, x1, ty_Double) 22.90/8.45 new_esEs14(Right(x0), Right(x1), x2, ty_Float) 22.90/8.45 new_lt14(x0, x1) 22.90/8.45 new_primEqNat0(Zero, Zero) 22.90/8.45 new_lt20(x0, x1, ty_Bool) 22.90/8.45 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_esEs32(x0, x1, ty_Float) 22.90/8.45 new_primEqNat0(Succ(x0), Zero) 22.90/8.45 new_not(False) 22.90/8.45 new_ltEs20(x0, x1, ty_Bool) 22.90/8.45 new_esEs13(EQ, GT) 22.90/8.45 new_esEs13(GT, EQ) 22.90/8.45 new_esEs35(x0, x1, ty_@0) 22.90/8.45 new_ltEs20(x0, x1, ty_Float) 22.90/8.45 new_esEs11(x0, x1, ty_Bool) 22.90/8.45 new_esEs28(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_lt20(x0, x1, ty_Float) 22.90/8.45 new_esEs18(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.90/8.45 new_esEs37(x0, x1, ty_Double) 22.90/8.45 new_ltEs6(x0, x1, ty_Float) 22.90/8.45 new_ltEs6(x0, x1, ty_Bool) 22.90/8.45 new_esEs30(x0, x1, ty_Double) 22.90/8.45 new_esEs6(x0, x1, ty_Ordering) 22.90/8.45 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 22.90/8.45 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 22.90/8.45 new_esEs5(x0, x1, ty_Bool) 22.90/8.45 new_ltEs19(x0, x1, ty_@0) 22.90/8.45 new_esEs5(x0, x1, ty_Float) 22.90/8.45 new_ltEs21(x0, x1, app(ty_[], x2)) 22.90/8.45 new_compare19(Right(x0), Right(x1), x2, x3) 22.90/8.45 new_ltEs18(Left(x0), Left(x1), ty_@0, x2) 22.90/8.45 new_esEs38(x0, x1, ty_Char) 22.90/8.45 new_esEs14(Right(x0), Right(x1), x2, ty_Int) 22.90/8.45 new_lt20(x0, x1, ty_Int) 22.90/8.45 new_ltEs20(x0, x1, ty_Int) 22.90/8.45 new_esEs28(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.45 new_compare11(Integer(x0), Integer(x1)) 22.90/8.45 new_compare19(Left(x0), Left(x1), x2, x3) 22.90/8.45 new_lt21(x0, x1, app(ty_[], x2)) 22.90/8.45 new_ltEs6(x0, x1, ty_Char) 22.90/8.45 new_ltEs6(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_compare113(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 22.90/8.45 new_ltEs6(x0, x1, ty_Int) 22.90/8.45 new_esEs37(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_esEs8(x0, x1, ty_Bool) 22.90/8.45 new_lt20(x0, x1, ty_Char) 22.90/8.45 new_primCompAux00(x0, x1, EQ, ty_@0) 22.90/8.45 new_lt21(x0, x1, ty_Ordering) 22.90/8.45 new_esEs5(x0, x1, ty_Int) 22.90/8.45 new_esEs29(x0, x1, ty_Double) 22.90/8.45 new_esEs31(x0, x1, ty_Ordering) 22.90/8.45 new_esEs38(x0, x1, ty_Bool) 22.90/8.45 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_compare14(x0, x1) 22.90/8.45 new_ltEs9(Just(x0), Nothing, x1) 22.90/8.45 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.45 new_ltEs9(Just(x0), Just(x1), ty_@0) 22.90/8.45 new_esEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.90/8.45 new_compare112(x0, x1, True, x2, x3) 22.90/8.45 new_esEs39(x0, x1, app(ty_[], x2)) 22.90/8.45 new_lt11(x0, x1, ty_@0) 22.90/8.45 new_ltEs9(Just(x0), Just(x1), ty_Bool) 22.90/8.45 new_lt12(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_esEs20([], :(x0, x1), x2) 22.90/8.45 new_esEs11(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_primCmpNat0(Zero, Succ(x0)) 22.90/8.45 new_compare110(x0, x1, True, x2, x3) 22.90/8.45 new_esEs35(x0, x1, ty_Int) 22.90/8.45 new_esEs6(x0, x1, ty_Int) 22.90/8.45 new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 22.90/8.45 new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 22.90/8.45 new_esEs28(x0, x1, ty_@0) 22.90/8.45 new_esEs26(x0, x1, ty_Int) 22.90/8.45 new_compare13(GT, LT) 22.90/8.45 new_compare13(LT, GT) 22.90/8.45 new_esEs25(x0, x1) 22.90/8.45 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_esEs28(x0, x1, ty_Int) 22.90/8.45 new_esEs29(x0, x1, app(ty_[], x2)) 22.90/8.45 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_compare17(@0, @0) 22.90/8.45 new_compare5(x0, x1, ty_Char) 22.90/8.45 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_esEs11(x0, x1, ty_Float) 22.90/8.45 new_lt23(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_lt11(x0, x1, ty_Bool) 22.90/8.45 new_esEs10(x0, x1, ty_Int) 22.90/8.45 new_primCompAux00(x0, x1, GT, x2) 22.90/8.45 new_pePe(False, x0) 22.90/8.45 new_lt21(x0, x1, ty_Float) 22.90/8.45 new_esEs6(x0, x1, ty_@0) 22.90/8.45 new_ltEs9(Nothing, Just(x0), x1) 22.90/8.45 new_lt21(x0, x1, ty_Bool) 22.90/8.45 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 22.90/8.45 new_esEs34(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_esEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.90/8.45 new_esEs15(Double(x0, x1), Double(x2, x3)) 22.90/8.45 new_ltEs15(True, True) 22.90/8.45 new_esEs12(Char(x0), Char(x1)) 22.90/8.45 new_ltEs23(x0, x1, ty_Int) 22.90/8.45 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 22.90/8.45 new_esEs28(x0, x1, ty_Bool) 22.90/8.45 new_ltEs9(Just(x0), Just(x1), app(ty_[], x2)) 22.90/8.45 new_esEs11(x0, x1, app(ty_[], x2)) 22.90/8.45 new_esEs28(x0, x1, ty_Integer) 22.90/8.45 new_esEs10(x0, x1, ty_Bool) 22.90/8.45 new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.90/8.45 new_lt20(x0, x1, app(ty_[], x2)) 22.90/8.45 new_primMulInt(Pos(x0), Pos(x1)) 22.90/8.45 new_esEs14(Left(x0), Left(x1), ty_@0, x2) 22.90/8.45 new_primMulNat0(Succ(x0), Succ(x1)) 22.90/8.45 new_lt11(x0, x1, ty_Int) 22.90/8.45 new_esEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.90/8.45 new_primCompAux00(x0, x1, EQ, ty_Ordering) 22.90/8.45 new_ltEs18(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.90/8.45 new_ltEs21(x0, x1, ty_Float) 22.90/8.45 new_ltEs9(Just(x0), Just(x1), ty_Integer) 22.90/8.45 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_esEs39(x0, x1, ty_Float) 22.90/8.45 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_ltEs18(Right(x0), Right(x1), x2, ty_Char) 22.90/8.45 new_lt22(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_lt21(x0, x1, ty_@0) 22.90/8.45 new_esEs14(Left(x0), Left(x1), ty_Int, x2) 22.90/8.45 new_ltEs13(GT, LT) 22.90/8.45 new_ltEs13(LT, GT) 22.90/8.45 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.45 new_compare5(x0, x1, app(ty_[], x2)) 22.90/8.45 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.45 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.45 new_esEs30(x0, x1, app(ty_[], x2)) 22.90/8.45 new_sr(x0, x1) 22.90/8.45 new_compare28(x0, x1, x2, x3, False, x4, x5) 22.90/8.45 new_esEs35(x0, x1, ty_Integer) 22.90/8.45 new_compare27(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 22.90/8.45 new_compare26(x0, x1, False, x2) 22.90/8.45 new_esEs16(@2(x0, x1), @2(x2, x3), x4, x5) 22.90/8.45 new_lt11(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.45 new_primCmpNat0(Succ(x0), Succ(x1)) 22.90/8.45 new_ltEs24(x0, x1, ty_Char) 22.90/8.45 new_esEs31(x0, x1, ty_Float) 22.90/8.45 new_lt12(x0, x1, app(ty_[], x2)) 22.90/8.45 new_esEs18(Just(x0), Just(x1), app(ty_[], x2)) 22.90/8.45 new_ltEs6(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_esEs18(Just(x0), Just(x1), ty_Float) 22.90/8.45 new_esEs10(x0, x1, ty_Integer) 22.90/8.45 new_esEs31(x0, x1, ty_Double) 22.90/8.45 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.45 new_ltEs18(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.90/8.45 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.45 new_asAs(True, x0) 22.90/8.45 new_esEs7(x0, x1, app(ty_[], x2)) 22.90/8.45 new_ltEs9(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.90/8.45 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_ltEs20(x0, x1, app(ty_[], x2)) 22.90/8.45 new_compare15(False, False) 22.90/8.45 new_esEs32(x0, x1, app(ty_[], x2)) 22.90/8.45 new_esEs10(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_ltEs18(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.90/8.45 new_ltEs19(x0, x1, ty_Integer) 22.90/8.45 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 22.90/8.45 new_ltEs22(x0, x1, ty_Double) 22.90/8.45 new_ltEs24(x0, x1, ty_Ordering) 22.90/8.45 new_esEs39(x0, x1, ty_Bool) 22.90/8.45 new_esEs32(x0, x1, ty_Integer) 22.90/8.45 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 22.90/8.45 new_esEs18(Just(x0), Just(x1), ty_Ordering) 22.90/8.45 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.45 new_ltEs11(x0, x1) 22.90/8.45 new_primMulNat0(Zero, Succ(x0)) 22.90/8.45 new_primCmpInt(Neg(Zero), Neg(Zero)) 22.90/8.45 new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) 22.90/8.45 new_ltEs19(x0, x1, ty_Float) 22.90/8.45 new_esEs11(x0, x1, ty_Double) 22.90/8.45 new_esEs11(x0, x1, ty_@0) 22.90/8.45 new_esEs18(Just(x0), Just(x1), ty_Char) 22.90/8.45 new_esEs18(Just(x0), Just(x1), ty_Integer) 22.90/8.45 new_esEs10(x0, x1, ty_@0) 22.90/8.45 new_ltEs21(x0, x1, ty_Integer) 22.90/8.45 new_ltEs19(x0, x1, ty_Bool) 22.90/8.45 new_esEs32(x0, x1, ty_Ordering) 22.90/8.45 new_esEs27(x0, x1, ty_Int) 22.90/8.45 new_esEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.90/8.45 new_primCmpInt(Pos(Zero), Neg(Zero)) 22.90/8.45 new_primCmpInt(Neg(Zero), Pos(Zero)) 22.90/8.45 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_ltEs18(Left(x0), Left(x1), ty_Float, x2) 22.90/8.45 new_compare10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.90/8.45 new_esEs4(x0, x1, ty_Int) 22.90/8.45 new_lt20(x0, x1, ty_@0) 22.90/8.45 new_ltEs7(x0, x1, x2) 22.90/8.45 new_primPlusNat0(Succ(x0), x1) 22.90/8.45 new_esEs29(x0, x1, ty_Int) 22.90/8.45 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.45 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_lt23(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_compare13(GT, EQ) 22.90/8.45 new_compare13(EQ, GT) 22.90/8.45 new_lt20(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_esEs29(x0, x1, ty_Bool) 22.90/8.45 new_ltEs9(Just(x0), Just(x1), ty_Int) 22.90/8.45 new_esEs33(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_ltEs18(Left(x0), Left(x1), app(ty_[], x2), x3) 22.90/8.45 new_compare5(x0, x1, ty_Ordering) 22.90/8.45 new_ltEs15(False, False) 22.90/8.45 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.45 new_primEqNat0(Zero, Succ(x0)) 22.90/8.45 new_esEs5(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_esEs11(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_esEs35(x0, x1, ty_Bool) 22.90/8.45 new_esEs18(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.90/8.45 new_primCompAux00(x0, x1, EQ, ty_Char) 22.90/8.45 new_ltEs6(x0, x1, ty_Double) 22.90/8.45 new_esEs37(x0, x1, ty_Int) 22.90/8.45 new_esEs20([], [], x0) 22.90/8.45 new_ltEs18(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.90/8.45 new_esEs18(Just(x0), Just(x1), ty_Bool) 22.90/8.45 new_lt11(x0, x1, ty_Integer) 22.90/8.45 new_esEs13(GT, GT) 22.90/8.45 new_esEs30(x0, x1, ty_Int) 22.90/8.45 new_ltEs21(x0, x1, ty_Ordering) 22.90/8.45 new_esEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.90/8.45 new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_ltEs9(Just(x0), Just(x1), ty_Float) 22.90/8.45 new_esEs39(x0, x1, ty_Integer) 22.90/8.45 new_esEs7(x0, x1, ty_Int) 22.90/8.45 new_primPlusNat1(Succ(x0), Zero) 22.90/8.45 new_esEs36(x0, x1, app(ty_[], x2)) 22.90/8.45 new_esEs9(x0, x1, ty_Int) 22.90/8.45 new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 22.90/8.45 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 22.90/8.45 new_lt9(x0, x1, x2) 22.90/8.45 new_esEs7(x0, x1, ty_Bool) 22.90/8.45 new_compare28(x0, x1, x2, x3, True, x4, x5) 22.90/8.45 new_esEs18(Just(x0), Just(x1), ty_@0) 22.90/8.45 new_compare115(x0, x1, x2, x3, False, x4, x5) 22.90/8.45 new_ltEs19(x0, x1, ty_Char) 22.90/8.45 new_esEs34(x0, x1, ty_Char) 22.90/8.45 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.45 new_esEs36(x0, x1, ty_Bool) 22.90/8.45 new_compare27(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 22.90/8.45 new_lt12(x0, x1, ty_Double) 22.90/8.45 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 22.90/8.45 new_primMulNat0(Zero, Zero) 22.90/8.45 new_esEs30(x0, x1, ty_Char) 22.90/8.45 new_esEs9(x0, x1, ty_Char) 22.90/8.45 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.45 new_esEs4(x0, x1, ty_Bool) 22.90/8.45 new_esEs4(x0, x1, ty_@0) 22.90/8.45 new_esEs32(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_esEs37(x0, x1, ty_Char) 22.90/8.45 new_esEs18(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.90/8.45 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.45 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_lt7(x0, x1, x2) 22.90/8.45 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 22.90/8.45 new_esEs9(x0, x1, ty_Double) 22.90/8.45 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_esEs29(x0, x1, ty_Integer) 22.90/8.45 new_lt12(x0, x1, ty_Ordering) 22.90/8.45 new_lt22(x0, x1, ty_Double) 22.90/8.45 new_esEs35(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.45 new_esEs38(x0, x1, ty_Ordering) 22.90/8.45 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.45 new_compare111(x0, x1, True, x2) 22.90/8.45 new_esEs31(x0, x1, ty_Bool) 22.90/8.45 new_esEs34(x0, x1, ty_Int) 22.90/8.45 new_lt23(x0, x1, ty_Bool) 22.90/8.45 new_lt6(x0, x1) 22.90/8.45 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.45 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_esEs4(x0, x1, ty_Char) 22.90/8.45 new_esEs9(x0, x1, app(ty_[], x2)) 22.90/8.45 new_esEs35(x0, x1, ty_Float) 22.90/8.45 new_esEs39(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_esEs4(x0, x1, ty_Integer) 22.90/8.45 new_esEs6(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_ltEs6(x0, x1, ty_Ordering) 22.90/8.45 new_esEs32(x0, x1, ty_@0) 22.90/8.45 new_esEs36(x0, x1, ty_Char) 22.90/8.45 new_compare5(x0, x1, ty_Float) 22.90/8.45 new_lt11(x0, x1, app(ty_[], x2)) 22.90/8.45 new_esEs33(x0, x1, ty_Int) 22.90/8.45 new_esEs5(x0, x1, ty_Ordering) 22.90/8.45 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_primMulNat0(Succ(x0), Zero) 22.90/8.45 new_lt13(x0, x1, x2, x3) 22.90/8.45 new_lt23(x0, x1, ty_Char) 22.90/8.45 new_esEs36(x0, x1, ty_Integer) 22.90/8.45 new_esEs18(Just(x0), Nothing, x1) 22.90/8.45 new_ltEs10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.90/8.45 new_esEs11(x0, x1, ty_Ordering) 22.90/8.45 new_ltEs18(Left(x0), Left(x1), ty_Ordering, x2) 22.90/8.45 new_esEs31(x0, x1, ty_Char) 22.90/8.45 new_ltEs18(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.90/8.45 new_compare9(Nothing, Just(x0), x1) 22.90/8.45 new_esEs28(x0, x1, app(ty_[], x2)) 22.90/8.45 new_ltEs19(x0, x1, ty_Ordering) 22.90/8.45 new_esEs34(x0, x1, ty_Bool) 22.90/8.45 new_compare13(LT, LT) 22.90/8.45 new_esEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.90/8.45 new_esEs10(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_esEs33(x0, x1, ty_Bool) 22.90/8.45 new_esEs30(x0, x1, ty_Integer) 22.90/8.45 new_esEs37(x0, x1, ty_Integer) 22.90/8.45 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.45 new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.45 new_esEs7(x0, x1, ty_Integer) 22.90/8.45 new_esEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.90/8.45 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.45 new_lt21(x0, x1, ty_Int) 22.90/8.45 new_lt23(x0, x1, ty_@0) 22.90/8.45 new_primPlusNat0(Zero, x0) 22.90/8.45 new_esEs31(x0, x1, ty_Int) 22.90/8.45 new_compare25(x0, x1, False, x2, x3) 22.90/8.45 new_esEs14(Right(x0), Right(x1), x2, ty_Ordering) 22.90/8.45 new_compare111(x0, x1, False, x2) 22.90/8.45 new_lt10(x0, x1) 22.90/8.45 new_esEs33(x0, x1, ty_Double) 22.90/8.45 new_esEs33(x0, x1, ty_Char) 22.90/8.45 new_lt23(x0, x1, ty_Float) 22.90/8.45 new_ltEs21(x0, x1, ty_@0) 22.90/8.45 new_esEs6(x0, x1, ty_Float) 22.90/8.45 new_esEs31(x0, x1, ty_@0) 22.90/8.45 new_primCmpInt(Pos(Zero), Pos(Zero)) 22.90/8.45 new_ltEs20(x0, x1, ty_Ordering) 22.90/8.45 new_compare13(EQ, EQ) 22.90/8.45 new_lt11(x0, x1, ty_Double) 22.90/8.45 new_esEs36(x0, x1, ty_Float) 22.90/8.45 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.45 new_lt11(x0, x1, ty_Float) 22.90/8.45 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.45 new_compare9(Nothing, Nothing, x0) 22.90/8.45 new_ltEs9(Just(x0), Just(x1), ty_Double) 22.90/8.45 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 22.90/8.45 new_esEs39(x0, x1, ty_@0) 22.90/8.45 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 22.90/8.45 new_ltEs22(x0, x1, ty_Int) 22.90/8.45 new_compare5(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.45 new_lt23(x0, x1, ty_Int) 22.90/8.45 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_ltEs23(x0, x1, app(ty_[], x2)) 22.90/8.45 new_ltEs9(Just(x0), Just(x1), ty_Ordering) 22.90/8.45 new_lt21(x0, x1, ty_Char) 22.90/8.45 new_esEs34(x0, x1, ty_Integer) 22.90/8.45 new_ltEs13(GT, GT) 22.90/8.45 new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_ltEs13(EQ, LT) 22.90/8.45 new_esEs13(LT, GT) 22.90/8.45 new_esEs13(GT, LT) 22.90/8.45 new_ltEs13(LT, EQ) 22.90/8.45 new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) 22.90/8.45 new_lt21(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_ltEs6(x0, x1, app(ty_[], x2)) 22.90/8.45 new_esEs14(Left(x0), Right(x1), x2, x3) 22.90/8.45 new_esEs14(Right(x0), Left(x1), x2, x3) 22.90/8.45 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.45 new_esEs20(:(x0, x1), :(x2, x3), x4) 22.90/8.45 new_compare16(:(x0, x1), :(x2, x3), x4) 22.90/8.45 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.45 new_esEs33(x0, x1, ty_Float) 22.90/8.45 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_esEs36(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_ltEs22(x0, x1, ty_Char) 22.90/8.45 new_esEs6(x0, x1, ty_Bool) 22.90/8.45 new_esEs39(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_compare5(x0, x1, ty_Double) 22.90/8.45 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.45 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_ltEs22(x0, x1, app(ty_[], x2)) 22.90/8.45 new_ltEs9(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.90/8.45 new_lt21(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_esEs36(x0, x1, ty_Int) 22.90/8.45 new_esEs8(x0, x1, ty_Ordering) 22.90/8.45 new_ltEs9(Nothing, Nothing, x0) 22.90/8.45 new_lt22(x0, x1, ty_Bool) 22.90/8.45 new_esEs31(x0, x1, app(ty_[], x2)) 22.90/8.45 new_ltEs18(Left(x0), Left(x1), ty_Double, x2) 22.90/8.45 new_ltEs14(x0, x1) 22.90/8.45 new_lt16(x0, x1, x2) 22.90/8.45 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.45 new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.90/8.45 new_ltEs19(x0, x1, ty_Double) 22.90/8.45 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_lt22(x0, x1, ty_Int) 22.90/8.45 new_esEs4(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_lt15(x0, x1) 22.90/8.45 new_esEs8(x0, x1, app(ty_[], x2)) 22.90/8.45 new_esEs30(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.45 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.45 new_compare19(Right(x0), Left(x1), x2, x3) 22.90/8.45 new_compare19(Left(x0), Right(x1), x2, x3) 22.90/8.45 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.45 new_esEs34(x0, x1, ty_@0) 22.90/8.45 new_esEs14(Left(x0), Left(x1), app(ty_[], x2), x3) 22.90/8.45 new_esEs31(x0, x1, ty_Integer) 22.90/8.45 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 22.90/8.45 new_esEs28(x0, x1, ty_Float) 22.90/8.45 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_lt22(x0, x1, ty_Char) 22.90/8.45 new_compare15(True, True) 22.90/8.45 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 22.90/8.45 new_compare116(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 22.90/8.45 new_ltEs22(x0, x1, ty_Bool) 22.90/8.45 new_ltEs23(x0, x1, ty_Ordering) 22.90/8.45 new_esEs10(x0, x1, app(ty_[], x2)) 22.90/8.45 new_esEs10(x0, x1, ty_Float) 22.90/8.45 new_esEs18(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.90/8.45 new_esEs29(x0, x1, ty_@0) 22.90/8.45 new_lt23(x0, x1, ty_Integer) 22.90/8.45 new_ltEs18(Left(x0), Right(x1), x2, x3) 22.90/8.45 new_ltEs18(Right(x0), Left(x1), x2, x3) 22.90/8.45 new_primCompAux00(x0, x1, EQ, ty_Double) 22.90/8.45 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.45 new_primMulInt(Pos(x0), Neg(x1)) 22.90/8.45 new_primMulInt(Neg(x0), Pos(x1)) 22.90/8.45 new_esEs29(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_lt21(x0, x1, ty_Integer) 22.90/8.45 new_ltEs18(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.90/8.45 new_esEs35(x0, x1, ty_Double) 22.90/8.45 new_lt8(x0, x1) 22.90/8.45 new_esEs14(Left(x0), Left(x1), ty_Ordering, x2) 22.90/8.45 new_compare9(Just(x0), Nothing, x1) 22.90/8.45 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 22.90/8.45 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 22.90/8.45 new_esEs7(x0, x1, ty_@0) 22.90/8.45 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_lt22(x0, x1, ty_Float) 22.90/8.45 new_esEs6(x0, x1, ty_Integer) 22.90/8.45 new_esEs30(x0, x1, ty_@0) 22.90/8.45 new_primCmpNat0(Zero, Zero) 22.90/8.45 new_esEs37(x0, x1, ty_@0) 22.90/8.45 22.90/8.45 We have to consider all minimal (P,Q,R)-chains. 22.90/8.45 ---------------------------------------- 22.90/8.45 22.90/8.45 (26) QDPSizeChangeProof (EQUIVALENT) 22.90/8.45 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. 22.90/8.45 22.90/8.45 From the DPs we obtained the following set of size-change graphs: 22.90/8.45 *new_compare3(:(xuu50000, xuu50001), :(xuu4000, xuu4001), ccb) -> new_primCompAux(xuu50000, xuu4000, xuu50001, xuu4001, ccb) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 1 > 3, 2 > 4, 3 >= 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_primCompAux(:(xuu50000, xuu50001), :(xuu4000, xuu4001), xuu5001, xuu401, app(ty_[], ccb)) -> new_primCompAux(xuu50000, xuu4000, xuu50001, xuu4001, ccb) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 1 > 3, 2 > 4, 5 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_primCompAux0(xuu37, xuu38, EQ, app(ty_[], cdd)) -> new_compare3(xuu37, xuu38, cdd) 22.90/8.45 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_primCompAux(xuu5000, xuu400, xuu5001, xuu401, ccc) -> new_primCompAux0(xuu5001, xuu401, new_compare5(xuu5000, xuu400, ccc), app(ty_[], ccc)) 22.90/8.45 The graph contains the following edges 3 >= 1, 4 >= 2 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare23(xuu87, xuu88, False, cfa, app(ty_[], cfh)) -> new_ltEs2(xuu87, xuu88, cfh) 22.90/8.45 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), fb, app(ty_[], gb)) -> new_ltEs2(xuu581, xuu591, gb) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_primCompAux(Right(xuu50000), Right(xuu4000), xuu5001, xuu401, app(app(ty_Either, ccd), cce)) -> new_compare23(xuu50000, xuu4000, new_esEs11(xuu50000, xuu4000, cce), ccd, cce) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 5 > 4, 5 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare4(Right(xuu50000), Right(xuu4000), ccd, cce) -> new_compare23(xuu50000, xuu4000, new_esEs11(xuu50000, xuu4000, cce), ccd, cce) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare23(xuu87, xuu88, False, cfa, app(app(ty_@2, cfb), cfc)) -> new_ltEs(xuu87, xuu88, cfb, cfc) 22.90/8.45 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), fb, app(app(ty_@2, fc), fd)) -> new_ltEs(xuu581, xuu591, fc, fd) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare23(xuu87, xuu88, False, cfa, app(app(ty_Either, cga), cgb)) -> new_ltEs3(xuu87, xuu88, cga, cgb) 22.90/8.45 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), fb, app(app(ty_Either, gc), gd)) -> new_ltEs3(xuu581, xuu591, gc, gd) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs0(Just(xuu580), Just(xuu590), app(ty_[], hc)) -> new_ltEs2(xuu580, xuu590, hc) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs0(Just(xuu580), Just(xuu590), app(app(ty_@2, ge), gf)) -> new_ltEs(xuu580, xuu590, ge, gf) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs0(Just(xuu580), Just(xuu590), app(app(ty_Either, hd), he)) -> new_ltEs3(xuu580, xuu590, hd, he) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, hh, app(ty_[], bda)) -> new_ltEs2(xuu582, xuu592, bda) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare23(xuu87, xuu88, False, cfa, app(ty_Maybe, cfd)) -> new_ltEs0(xuu87, xuu88, cfd) 22.90/8.45 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare23(xuu87, xuu88, False, cfa, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs1(xuu87, xuu88, cfe, cff, cfg) 22.90/8.45 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), fb, app(ty_Maybe, ff)) -> new_ltEs0(xuu581, xuu591, ff) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, hh, app(app(ty_@2, bcc), bcd)) -> new_ltEs(xuu582, xuu592, bcc, bcd) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, hh, app(app(ty_Either, bdb), bdc)) -> new_ltEs3(xuu582, xuu592, bdb, bdc) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs0(Just(xuu580), Just(xuu590), app(ty_Maybe, gg)) -> new_ltEs0(xuu580, xuu590, gg) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs0(Just(xuu580), Just(xuu590), app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs1(xuu580, xuu590, gh, ha, hb) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, hh, app(ty_Maybe, bce)) -> new_ltEs0(xuu582, xuu592, bce) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), fb, app(app(app(ty_@3, fg), fh), ga)) -> new_ltEs1(xuu581, xuu591, fg, fh, ga) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, hh, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs1(xuu582, xuu592, bcf, bcg, bch) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_lt1(xuu99, xuu101, bf, bg, bh) -> new_compare1(xuu99, xuu101, bf, bg, bh) 22.90/8.45 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(app(app(ty_@3, ed), ee), ef), eb) -> new_lt1(xuu580, xuu590, ed, ee, ef) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare1(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bga, bgb, bgc) -> new_compare21(xuu50000, xuu50001, xuu50002, xuu4000, xuu4001, xuu4002, new_asAs(new_esEs9(xuu50000, xuu4000, bga), new_asAs(new_esEs8(xuu50001, xuu4001, bgb), new_esEs7(xuu50002, xuu4002, bgc))), bga, bgb, bgc) 22.90/8.45 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, bgf, app(ty_[], cbg)) -> new_ltEs2(xuu71, xuu74, cbg) 22.90/8.45 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, bgf, app(app(ty_@2, cba), cbb)) -> new_ltEs(xuu71, xuu74, cba, cbb) 22.90/8.45 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, bgf, app(app(ty_Either, cbh), cca)) -> new_ltEs3(xuu71, xuu74, cbh, cca) 22.90/8.45 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, bgf, app(ty_Maybe, cbc)) -> new_ltEs0(xuu71, xuu74, cbc) 22.90/8.45 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, bgf, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_ltEs1(xuu71, xuu74, cbd, cbe, cbf) 22.90/8.45 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(app(app(ty_@3, bf), bg), bh), bd) -> new_compare1(xuu99, xuu101, bf, bg, bh) 22.90/8.45 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_primCompAux(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), xuu5001, xuu401, app(app(app(ty_@3, bga), bgb), bgc)) -> new_compare21(xuu50000, xuu50001, xuu50002, xuu4000, xuu4001, xuu4002, new_asAs(new_esEs9(xuu50000, xuu4000, bga), new_asAs(new_esEs8(xuu50001, xuu4001, bgb), new_esEs7(xuu50002, xuu4002, bgc))), bga, bgb, bgc) 22.90/8.45 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 5 > 8, 5 > 9, 5 > 10 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs2(xuu58, xuu59, bdd) -> new_compare3(xuu58, xuu59, bdd) 22.90/8.45 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_lt2(xuu99, xuu101, ca) -> new_compare3(xuu99, xuu101, ca) 22.90/8.45 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(ty_[], eg), eb) -> new_lt2(xuu580, xuu590, eg) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_lt(xuu99, xuu101, bb, bc) -> new_compare(xuu99, xuu101, bb, bc) 22.90/8.45 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(app(ty_@2, dh), ea), eb) -> new_lt(xuu580, xuu590, dh, ea) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), h, ba) -> new_compare2(xuu50000, xuu50001, xuu4000, xuu4001, new_asAs(new_esEs5(xuu50000, xuu4000, h), new_esEs4(xuu50001, xuu4001, ba)), h, ba) 22.90/8.45 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare2(xuu99, xuu100, xuu101, xuu102, False, cd, app(ty_[], dd)) -> new_ltEs2(xuu100, xuu102, dd) 22.90/8.45 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(ty_[], ca), bd) -> new_compare3(xuu99, xuu101, ca) 22.90/8.45 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(xuu58, xuu59, False, app(ty_[], bdd)) -> new_compare3(xuu58, xuu59, bdd) 22.90/8.45 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare2(xuu99, xuu100, xuu101, xuu102, False, cd, app(app(ty_@2, ce), cf)) -> new_ltEs(xuu100, xuu102, ce, cf) 22.90/8.45 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare2(xuu99, xuu100, xuu101, xuu102, False, cd, app(app(ty_Either, de), df)) -> new_ltEs3(xuu100, xuu102, de, df) 22.90/8.45 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare2(xuu99, xuu100, xuu101, xuu102, False, cd, app(ty_Maybe, cg)) -> new_ltEs0(xuu100, xuu102, cg) 22.90/8.45 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare2(xuu99, xuu100, xuu101, xuu102, False, cd, app(app(app(ty_@3, da), db), dc)) -> new_ltEs1(xuu100, xuu102, da, db, dc) 22.90/8.45 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(app(ty_@2, bb), bc), bd) -> new_compare(xuu99, xuu101, bb, bc) 22.90/8.45 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_primCompAux(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), xuu5001, xuu401, app(app(ty_@2, h), ba)) -> new_compare2(xuu50000, xuu50001, xuu4000, xuu4001, new_asAs(new_esEs5(xuu50000, xuu4000, h), new_esEs4(xuu50001, xuu4001, ba)), h, ba) 22.90/8.45 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 5 > 6, 5 > 7 22.90/8.45 22.90/8.45 22.90/8.45 *new_lt3(xuu99, xuu101, cb, cc) -> new_compare4(xuu99, xuu101, cb, cc) 22.90/8.45 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(app(ty_Either, eh), fa), eb) -> new_lt3(xuu580, xuu590, eh, fa) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(ty_Maybe, ec), eb) -> new_lt0(xuu580, xuu590, ec) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare4(Left(xuu50000), Left(xuu4000), ccd, cce) -> new_compare22(xuu50000, xuu4000, new_esEs10(xuu50000, xuu4000, ccd), ccd, cce) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(app(ty_Either, cb), cc), bd) -> new_compare4(xuu99, xuu101, cb, cc) 22.90/8.45 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(ty_Maybe, be), bd) -> new_compare0(xuu99, xuu101, be) 22.90/8.45 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_lt0(xuu99, xuu101, be) -> new_compare0(xuu99, xuu101, be) 22.90/8.45 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare0(Just(xuu50000), Just(xuu4000), dg) -> new_compare20(xuu50000, xuu4000, new_esEs6(xuu50000, xuu4000, dg), dg) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare22(xuu80, xuu81, False, app(ty_[], cef), cea) -> new_ltEs2(xuu80, xuu81, cef) 22.90/8.45 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare22(xuu80, xuu81, False, app(app(ty_@2, cdg), cdh), cea) -> new_ltEs(xuu80, xuu81, cdg, cdh) 22.90/8.45 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare22(xuu80, xuu81, False, app(app(ty_Either, ceg), ceh), cea) -> new_ltEs3(xuu80, xuu81, ceg, ceh) 22.90/8.45 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare22(xuu80, xuu81, False, app(ty_Maybe, ceb), cea) -> new_ltEs0(xuu80, xuu81, ceb) 22.90/8.45 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare22(xuu80, xuu81, False, app(app(app(ty_@3, cec), ced), cee), cea) -> new_ltEs1(xuu80, xuu81, cec, ced, cee) 22.90/8.45 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_primCompAux(Just(xuu50000), Just(xuu4000), xuu5001, xuu401, app(ty_Maybe, dg)) -> new_compare20(xuu50000, xuu4000, new_esEs6(xuu50000, xuu4000, dg), dg) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 5 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_primCompAux(Left(xuu50000), Left(xuu4000), xuu5001, xuu401, app(app(ty_Either, ccd), cce)) -> new_compare22(xuu50000, xuu4000, new_esEs10(xuu50000, xuu4000, ccd), ccd, cce) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 5 > 4, 5 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs3(Right(xuu580), Right(xuu590), beg, app(ty_[], bff)) -> new_ltEs2(xuu580, xuu590, bff) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs3(Left(xuu580), Left(xuu590), app(ty_[], bed), bdg) -> new_ltEs2(xuu580, xuu590, bed) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(ty_[], bed)), bdg)) -> new_ltEs2(xuu580, xuu590, bed) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, fb), app(ty_[], gb))) -> new_ltEs2(xuu581, xuu591, gb) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), hh), app(ty_[], bda))) -> new_ltEs2(xuu582, xuu592, bda) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, beg), app(ty_[], bff))) -> new_ltEs2(xuu580, xuu590, bff) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(ty_[], hc))) -> new_ltEs2(xuu580, xuu590, hc) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs3(Right(xuu580), Right(xuu590), beg, app(app(ty_@2, beh), bfa)) -> new_ltEs(xuu580, xuu590, beh, bfa) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs3(Left(xuu580), Left(xuu590), app(app(ty_@2, bde), bdf), bdg) -> new_ltEs(xuu580, xuu590, bde, bdf) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs3(Left(xuu580), Left(xuu590), app(app(ty_Either, bee), bef), bdg) -> new_ltEs3(xuu580, xuu590, bee, bef) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs3(Right(xuu580), Right(xuu590), beg, app(app(ty_Either, bfg), bfh)) -> new_ltEs3(xuu580, xuu590, bfg, bfh) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs3(Left(xuu580), Left(xuu590), app(ty_Maybe, bdh), bdg) -> new_ltEs0(xuu580, xuu590, bdh) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs3(Right(xuu580), Right(xuu590), beg, app(ty_Maybe, bfb)) -> new_ltEs0(xuu580, xuu590, bfb) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs3(Right(xuu580), Right(xuu590), beg, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs1(xuu580, xuu590, bfc, bfd, bfe) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs3(Left(xuu580), Left(xuu590), app(app(app(ty_@3, bea), beb), bec), bdg) -> new_ltEs1(xuu580, xuu590, bea, beb, bec) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, beg), app(app(ty_@2, beh), bfa))) -> new_ltEs(xuu580, xuu590, beh, bfa) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(app(ty_@2, bde), bdf)), bdg)) -> new_ltEs(xuu580, xuu590, bde, bdf) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), hh), app(app(ty_@2, bcc), bcd))) -> new_ltEs(xuu582, xuu592, bcc, bcd) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(app(ty_@2, ge), gf))) -> new_ltEs(xuu580, xuu590, ge, gf) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, fb), app(app(ty_@2, fc), fd))) -> new_ltEs(xuu581, xuu591, fc, fd) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(app(ty_Either, bee), bef)), bdg)) -> new_ltEs3(xuu580, xuu590, bee, bef) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(app(ty_Either, hd), he))) -> new_ltEs3(xuu580, xuu590, hd, he) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), hh), app(app(ty_Either, bdb), bdc))) -> new_ltEs3(xuu582, xuu592, bdb, bdc) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, beg), app(app(ty_Either, bfg), bfh))) -> new_ltEs3(xuu580, xuu590, bfg, bfh) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, fb), app(app(ty_Either, gc), gd))) -> new_ltEs3(xuu581, xuu591, gc, gd) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, app(app(app(ty_@3, bbe), bbf), bbg), baa) -> new_lt1(xuu581, xuu591, bbe, bbf, bbg) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(app(app(ty_@3, bac), bad), bae), hh, baa) -> new_lt1(xuu580, xuu590, bac, bad, bae) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, app(ty_[], bbh), baa) -> new_lt2(xuu581, xuu591, bbh) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(ty_[], baf), hh, baa) -> new_lt2(xuu580, xuu590, baf) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(app(ty_@2, hf), hg), hh, baa) -> new_lt(xuu580, xuu590, hf, hg) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, app(app(ty_@2, bbb), bbc), baa) -> new_lt(xuu581, xuu591, bbb, bbc) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, app(app(ty_Either, bca), bcb), baa) -> new_lt3(xuu581, xuu591, bca, bcb) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(app(ty_Either, bag), bah), hh, baa) -> new_lt3(xuu580, xuu590, bag, bah) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(ty_Maybe, bab), hh, baa) -> new_lt0(xuu580, xuu590, bab) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_ltEs1(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bba, app(ty_Maybe, bbd), baa) -> new_lt0(xuu581, xuu591, bbd) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(ty_Maybe, gg))) -> new_ltEs0(xuu580, xuu590, gg) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(ty_Maybe, bdh)), bdg)) -> new_ltEs0(xuu580, xuu590, bdh) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), hh), app(ty_Maybe, bce))) -> new_ltEs0(xuu582, xuu592, bce) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, beg), app(ty_Maybe, bfb))) -> new_ltEs0(xuu580, xuu590, bfb) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, fb), app(ty_Maybe, ff))) -> new_ltEs0(xuu581, xuu591, ff) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(app(app(ty_@3, bea), beb), bec)), bdg)) -> new_ltEs1(xuu580, xuu590, bea, beb, bec) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, fb), app(app(app(ty_@3, fg), fh), ga))) -> new_ltEs1(xuu581, xuu591, fg, fh, ga) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(app(app(ty_@3, gh), ha), hb))) -> new_ltEs1(xuu580, xuu590, gh, ha, hb) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), hh), app(app(app(ty_@3, bcf), bcg), bch))) -> new_ltEs1(xuu582, xuu592, bcf, bcg, bch) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, beg), app(app(app(ty_@3, bfc), bfd), bfe))) -> new_ltEs1(xuu580, xuu590, bfc, bfd, bfe) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(app(app(ty_@3, bha), bhb), bhc), bgf, bgg) -> new_lt1(xuu69, xuu72, bha, bhb, bhc) 22.90/8.45 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, app(app(app(ty_@3, cac), cad), cae), bgg) -> new_lt1(xuu70, xuu73, cac, cad, cae) 22.90/8.45 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), app(app(app(ty_@3, bbe), bbf), bbg)), baa)) -> new_lt1(xuu581, xuu591, bbe, bbf, bbg) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(app(app(ty_@3, bac), bad), bae)), hh), baa)) -> new_lt1(xuu580, xuu590, bac, bad, bae) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(app(app(ty_@3, ed), ee), ef)), eb)) -> new_lt1(xuu580, xuu590, ed, ee, ef) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, app(ty_[], caf), bgg) -> new_lt2(xuu70, xuu73, caf) 22.90/8.45 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(ty_[], bhd), bgf, bgg) -> new_lt2(xuu69, xuu72, bhd) 22.90/8.45 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, app(app(ty_@2, bhh), caa), bgg) -> new_lt(xuu70, xuu73, bhh, caa) 22.90/8.45 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(app(ty_@2, bgd), bge), bgf, bgg) -> new_lt(xuu69, xuu72, bgd, bge) 22.90/8.45 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(app(ty_Either, bhe), bhf), bgf, bgg) -> new_lt3(xuu69, xuu72, bhe, bhf) 22.90/8.45 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, app(app(ty_Either, cag), cah), bgg) -> new_lt3(xuu70, xuu73, cag, cah) 22.90/8.45 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(ty_Maybe, bgh), bgf, bgg) -> new_lt0(xuu69, xuu72, bgh) 22.90/8.45 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bhg, app(ty_Maybe, cab), bgg) -> new_lt0(xuu70, xuu73, cab) 22.90/8.45 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(ty_[], eg)), eb)) -> new_lt2(xuu580, xuu590, eg) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(ty_[], baf)), hh), baa)) -> new_lt2(xuu580, xuu590, baf) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), app(ty_[], bbh)), baa)) -> new_lt2(xuu581, xuu591, bbh) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(app(ty_@2, dh), ea)), eb)) -> new_lt(xuu580, xuu590, dh, ea) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(app(ty_@2, hf), hg)), hh), baa)) -> new_lt(xuu580, xuu590, hf, hg) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), app(app(ty_@2, bbb), bbc)), baa)) -> new_lt(xuu581, xuu591, bbb, bbc) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(app(ty_Either, bag), bah)), hh), baa)) -> new_lt3(xuu580, xuu590, bag, bah) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), app(app(ty_Either, bca), bcb)), baa)) -> new_lt3(xuu581, xuu591, bca, bcb) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(app(ty_Either, eh), fa)), eb)) -> new_lt3(xuu580, xuu590, eh, fa) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(ty_Maybe, bab)), hh), baa)) -> new_lt0(xuu580, xuu590, bab) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bba), app(ty_Maybe, bbd)), baa)) -> new_lt0(xuu581, xuu591, bbd) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 *new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(ty_Maybe, ec)), eb)) -> new_lt0(xuu580, xuu590, ec) 22.90/8.45 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.90/8.45 22.90/8.45 22.90/8.45 ---------------------------------------- 22.90/8.45 22.90/8.45 (27) 22.90/8.45 YES 22.90/8.45 22.90/8.45 ---------------------------------------- 22.90/8.45 22.90/8.45 (28) 22.90/8.45 Obligation: 22.90/8.45 Q DP problem: 22.90/8.45 The TRS P consists of the following rules: 22.90/8.45 22.90/8.45 new_primMulNat(Succ(xuu400000), Succ(xuu5000100)) -> new_primMulNat(xuu400000, Succ(xuu5000100)) 22.90/8.45 22.90/8.45 R is empty. 22.90/8.45 Q is empty. 22.90/8.45 We have to consider all minimal (P,Q,R)-chains. 22.90/8.45 ---------------------------------------- 22.90/8.45 22.90/8.45 (29) QDPSizeChangeProof (EQUIVALENT) 22.90/8.45 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. 22.90/8.45 22.90/8.45 From the DPs we obtained the following set of size-change graphs: 22.90/8.45 *new_primMulNat(Succ(xuu400000), Succ(xuu5000100)) -> new_primMulNat(xuu400000, Succ(xuu5000100)) 22.90/8.45 The graph contains the following edges 1 > 1, 2 >= 2 22.90/8.45 22.90/8.45 22.90/8.45 ---------------------------------------- 22.90/8.45 22.90/8.45 (30) 22.90/8.45 YES 22.90/8.45 22.90/8.45 ---------------------------------------- 22.90/8.45 22.90/8.45 (31) 22.90/8.45 Obligation: 22.90/8.45 Q DP problem: 22.90/8.45 The TRS P consists of the following rules: 22.90/8.45 22.90/8.45 new_addToFM_C2(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, h, ba) -> new_addToFM_C20(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, h, ba) 22.90/8.45 new_addToFM_C2(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, LT, h, ba) -> new_addToFM_C(xuu18, xuu23, :(xuu25, xuu26), xuu27, h, ba) 22.90/8.45 new_addToFM_C1(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, h, ba) -> new_addToFM_C(xuu18, xuu24, :(xuu25, xuu26), xuu27, h, ba) 22.90/8.45 new_addToFM_C(xuu3, Branch([], xuu41, xuu42, xuu43, xuu44), [], xuu501, bb, bc) -> new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu501, EQ, bb, bc) 22.90/8.45 new_addToFM_C2(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, EQ, h, ba) -> new_addToFM_C1(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare16(:(xuu25, xuu26), :(xuu19, xuu20), h), h, ba) 22.90/8.45 new_addToFM_C(xuu3, Branch(:(xuu400, xuu401), xuu41, xuu42, xuu43, xuu44), :(xuu5000, xuu5001), xuu501, bb, bc) -> new_addToFM_C2(xuu3, xuu400, xuu401, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu5001, xuu501, new_primCompAux1(xuu5000, xuu400, xuu5001, xuu401, bb), bb, bc) 22.90/8.45 new_addToFM_C(xuu3, Branch([], xuu41, xuu42, xuu43, xuu44), :(xuu5000, xuu5001), xuu501, bb, bc) -> new_addToFM_C10(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu5001, xuu501, GT, bb, bc) 22.90/8.45 new_addToFM_C10(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu5001, xuu501, GT, bb, bc) -> new_addToFM_C(xuu3, xuu44, :(xuu5000, xuu5001), xuu501, bb, bc) 22.90/8.45 new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu501, GT, bb, bc) -> new_addToFM_C(xuu3, xuu44, [], xuu501, bb, bc) 22.90/8.45 new_addToFM_C(xuu3, Branch(:(xuu400, xuu401), xuu41, xuu42, xuu43, xuu44), [], xuu501, bb, bc) -> new_addToFM_C(xuu3, xuu43, [], xuu501, bb, bc) 22.90/8.45 new_addToFM_C20(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, h, ba) -> new_addToFM_C1(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare16(:(xuu25, xuu26), :(xuu19, xuu20), h), h, ba) 22.90/8.45 22.90/8.45 The TRS R consists of the following rules: 22.90/8.45 22.90/8.45 new_esEs14(Left(xuu500000), Left(xuu40000), app(app(ty_Either, gb), gc), ga) -> new_esEs14(xuu500000, xuu40000, gb, gc) 22.90/8.45 new_ltEs19(xuu71, xuu74, ty_Integer) -> new_ltEs11(xuu71, xuu74) 22.90/8.45 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 22.90/8.45 new_ltEs18(Left(xuu580), Left(xuu590), app(ty_Maybe, edc), fh) -> new_ltEs9(xuu580, xuu590, edc) 22.90/8.45 new_esEs23(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), dae, daf, dag) -> new_asAs(new_esEs38(xuu500000, xuu40000, dae), new_asAs(new_esEs37(xuu500001, xuu40001, daf), new_esEs36(xuu500002, xuu40002, dag))) 22.90/8.45 new_esEs24(@0, @0) -> True 22.90/8.45 new_esEs29(xuu69, xuu72, ty_Integer) -> new_esEs19(xuu69, xuu72) 22.90/8.45 new_pePe(True, xuu195) -> True 22.90/8.45 new_esEs7(xuu50002, xuu4002, app(app(ty_Either, efd), efe)) -> new_esEs14(xuu50002, xuu4002, efd, efe) 22.90/8.45 new_ltEs19(xuu71, xuu74, ty_@0) -> new_ltEs5(xuu71, xuu74) 22.90/8.45 new_esEs10(xuu50000, xuu4000, app(app(app(ty_@3, cg), da), db)) -> new_esEs23(xuu50000, xuu4000, cg, da, db) 22.90/8.45 new_ltEs23(xuu87, xuu88, app(ty_[], dhg)) -> new_ltEs16(xuu87, xuu88, dhg) 22.90/8.45 new_esEs8(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 22.90/8.45 new_ltEs14(xuu58, xuu59) -> new_fsEs(new_compare14(xuu58, xuu59)) 22.90/8.45 new_esEs29(xuu69, xuu72, ty_Char) -> new_esEs12(xuu69, xuu72) 22.90/8.45 new_esEs9(xuu50000, xuu4000, app(ty_Maybe, fad)) -> new_esEs18(xuu50000, xuu4000, fad) 22.90/8.45 new_esEs38(xuu500000, xuu40000, ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.45 new_compare19(Right(xuu50000), Right(xuu4000), bf, bg) -> new_compare25(xuu50000, xuu4000, new_esEs11(xuu50000, xuu4000, bg), bf, bg) 22.90/8.45 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 22.90/8.45 new_ltEs6(xuu58, xuu59, ty_Ordering) -> new_ltEs13(xuu58, xuu59) 22.90/8.45 new_esEs6(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.45 new_esEs28(xuu70, xuu73, app(app(ty_Either, bgg), bgh)) -> new_esEs14(xuu70, xuu73, bgg, bgh) 22.90/8.45 new_esEs14(Right(xuu500000), Right(xuu40000), hd, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.45 new_esEs32(xuu580, xuu590, ty_@0) -> new_esEs24(xuu580, xuu590) 22.90/8.45 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Double, ga) -> new_esEs15(xuu500000, xuu40000) 22.90/8.45 new_esEs37(xuu500001, xuu40001, app(ty_Ratio, fdc)) -> new_esEs22(xuu500001, xuu40001, fdc) 22.90/8.45 new_primCompAux00(xuu37, xuu38, EQ, ty_Int) -> new_compare14(xuu37, xuu38) 22.90/8.45 new_esEs5(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.45 new_esEs14(Right(xuu500000), Right(xuu40000), hd, ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.45 new_esEs6(xuu50000, xuu4000, app(app(ty_@2, dbe), dbf)) -> new_esEs16(xuu50000, xuu4000, dbe, dbf) 22.90/8.45 new_esEs35(xuu500000, xuu40000, app(app(app(ty_@3, ece), ecf), ecg)) -> new_esEs23(xuu500000, xuu40000, ece, ecf, ecg) 22.90/8.45 new_lt11(xuu69, xuu72, app(ty_[], bfd)) -> new_lt16(xuu69, xuu72, bfd) 22.90/8.45 new_lt23(xuu99, xuu101, ty_Char) -> new_lt10(xuu99, xuu101) 22.90/8.45 new_lt12(xuu70, xuu73, ty_Double) -> new_lt6(xuu70, xuu73) 22.90/8.45 new_lt15(xuu99, xuu101) -> new_esEs13(new_compare13(xuu99, xuu101), LT) 22.90/8.45 new_esEs37(xuu500001, xuu40001, ty_Double) -> new_esEs15(xuu500001, xuu40001) 22.90/8.45 new_compare5(xuu5000, xuu400, ty_Double) -> new_compare6(xuu5000, xuu400) 22.90/8.45 new_ltEs20(xuu581, xuu591, app(ty_Maybe, ccb)) -> new_ltEs9(xuu581, xuu591, ccb) 22.90/8.45 new_ltEs20(xuu581, xuu591, ty_Double) -> new_ltEs4(xuu581, xuu591) 22.90/8.45 new_esEs14(Right(xuu500000), Right(xuu40000), hd, app(app(ty_@2, hg), hh)) -> new_esEs16(xuu500000, xuu40000, hg, hh) 22.90/8.45 new_lt20(xuu580, xuu590, app(app(ty_@2, caf), cag)) -> new_lt13(xuu580, xuu590, caf, cag) 22.90/8.45 new_ltEs9(Just(xuu580), Just(xuu590), ty_Int) -> new_ltEs14(xuu580, xuu590) 22.90/8.45 new_esEs34(xuu500000, xuu40000, app(ty_[], ded)) -> new_esEs20(xuu500000, xuu40000, ded) 22.90/8.45 new_lt4(xuu99, xuu101) -> new_esEs13(new_compare15(xuu99, xuu101), LT) 22.90/8.45 new_esEs18(Just(xuu500000), Just(xuu40000), app(ty_[], fhd)) -> new_esEs20(xuu500000, xuu40000, fhd) 22.90/8.45 new_esEs21(False, False) -> True 22.90/8.45 new_primEqNat0(Succ(xuu5000000), Succ(xuu400000)) -> new_primEqNat0(xuu5000000, xuu400000) 22.90/8.45 new_esEs5(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.45 new_esEs26(xuu500001, xuu40001, ty_Int) -> new_esEs25(xuu500001, xuu40001) 22.90/8.45 new_esEs39(xuu99, xuu101, ty_Integer) -> new_esEs19(xuu99, xuu101) 22.90/8.45 new_not(True) -> False 22.90/8.45 new_lt20(xuu580, xuu590, app(ty_Ratio, cae)) -> new_lt7(xuu580, xuu590, cae) 22.90/8.45 new_ltEs21(xuu582, xuu592, ty_@0) -> new_ltEs5(xuu582, xuu592) 22.90/8.45 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.45 new_esEs4(xuu50001, xuu4001, app(ty_Maybe, chc)) -> new_esEs18(xuu50001, xuu4001, chc) 22.90/8.45 new_lt8(xuu99, xuu101) -> new_esEs13(new_compare14(xuu99, xuu101), LT) 22.90/8.45 new_esEs30(xuu580, xuu590, app(app(ty_Either, cbe), cbf)) -> new_esEs14(xuu580, xuu590, cbe, cbf) 22.90/8.45 new_ltEs22(xuu80, xuu81, ty_Bool) -> new_ltEs15(xuu80, xuu81) 22.90/8.45 new_esEs7(xuu50002, xuu4002, ty_Bool) -> new_esEs21(xuu50002, xuu4002) 22.90/8.45 new_ltEs18(Right(xuu580), Right(xuu590), fg, ty_Ordering) -> new_ltEs13(xuu580, xuu590) 22.90/8.45 new_lt23(xuu99, xuu101, ty_@0) -> new_lt17(xuu99, xuu101) 22.90/8.45 new_ltEs22(xuu80, xuu81, ty_Float) -> new_ltEs17(xuu80, xuu81) 22.90/8.45 new_esEs39(xuu99, xuu101, ty_Char) -> new_esEs12(xuu99, xuu101) 22.90/8.45 new_ltEs20(xuu581, xuu591, ty_Char) -> new_ltEs12(xuu581, xuu591) 22.90/8.45 new_primEqNat0(Succ(xuu5000000), Zero) -> False 22.90/8.45 new_primEqNat0(Zero, Succ(xuu400000)) -> False 22.90/8.45 new_esEs36(xuu500002, xuu40002, ty_Float) -> new_esEs17(xuu500002, xuu40002) 22.90/8.45 new_ltEs24(xuu100, xuu102, app(app(app(ty_@3, fga), fgb), fgc)) -> new_ltEs10(xuu100, xuu102, fga, fgb, fgc) 22.90/8.45 new_ltEs9(Just(xuu580), Just(xuu590), ty_Float) -> new_ltEs17(xuu580, xuu590) 22.90/8.45 new_primCompAux00(xuu37, xuu38, EQ, ty_Double) -> new_compare6(xuu37, xuu38) 22.90/8.45 new_lt20(xuu580, xuu590, ty_Integer) -> new_lt14(xuu580, xuu590) 22.90/8.45 new_compare5(xuu5000, xuu400, app(app(ty_Either, bf), bg)) -> new_compare19(xuu5000, xuu400, bf, bg) 22.90/8.45 new_ltEs22(xuu80, xuu81, ty_Int) -> new_ltEs14(xuu80, xuu81) 22.90/8.45 new_esEs34(xuu500000, xuu40000, ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.45 new_esEs6(xuu50000, xuu4000, app(ty_[], dbh)) -> new_esEs20(xuu50000, xuu4000, dbh) 22.90/8.45 new_esEs13(LT, LT) -> True 22.90/8.45 new_esEs4(xuu50001, xuu4001, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs23(xuu50001, xuu4001, chf, chg, chh) 22.90/8.45 new_esEs25(xuu50000, xuu4000) -> new_primEqInt(xuu50000, xuu4000) 22.90/8.45 new_esEs9(xuu50000, xuu4000, app(app(app(ty_@3, fag), fah), fba)) -> new_esEs23(xuu50000, xuu4000, fag, fah, fba) 22.90/8.45 new_compare13(LT, LT) -> EQ 22.90/8.45 new_primCmpInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> GT 22.90/8.45 new_lt11(xuu69, xuu72, ty_Float) -> new_lt18(xuu69, xuu72) 22.90/8.45 new_ltEs6(xuu58, xuu59, app(ty_Ratio, ef)) -> new_ltEs7(xuu58, xuu59, ef) 22.90/8.45 new_compare13(GT, EQ) -> GT 22.90/8.45 new_esEs32(xuu580, xuu590, app(ty_Ratio, cda)) -> new_esEs22(xuu580, xuu590, cda) 22.90/8.45 new_ltEs9(Just(xuu580), Just(xuu590), ty_Bool) -> new_ltEs15(xuu580, xuu590) 22.90/8.45 new_compare5(xuu5000, xuu400, app(ty_Maybe, bda)) -> new_compare9(xuu5000, xuu400, bda) 22.90/8.45 new_esEs29(xuu69, xuu72, app(ty_[], bfd)) -> new_esEs20(xuu69, xuu72, bfd) 22.90/8.45 new_primPlusNat1(Succ(xuu19700), Succ(xuu19600)) -> Succ(Succ(new_primPlusNat1(xuu19700, xuu19600))) 22.90/8.45 new_primCompAux00(xuu37, xuu38, GT, bag) -> GT 22.90/8.45 new_lt16(xuu99, xuu101, dge) -> new_esEs13(new_compare16(xuu99, xuu101, dge), LT) 22.90/8.45 new_esEs36(xuu500002, xuu40002, ty_Int) -> new_esEs25(xuu500002, xuu40002) 22.90/8.45 new_ltEs18(Right(xuu580), Right(xuu590), fg, app(app(ty_Either, efb), efc)) -> new_ltEs18(xuu580, xuu590, efb, efc) 22.90/8.45 new_primCmpNat0(Zero, Succ(xuu40000)) -> LT 22.90/8.45 new_lt21(xuu580, xuu590, app(ty_[], cdh)) -> new_lt16(xuu580, xuu590, cdh) 22.90/8.45 new_ltEs23(xuu87, xuu88, app(app(ty_@2, dha), dhb)) -> new_ltEs8(xuu87, xuu88, dha, dhb) 22.90/8.45 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.45 new_esEs34(xuu500000, xuu40000, ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.45 new_compare16(:(xuu50000, xuu50001), [], bde) -> GT 22.90/8.45 new_esEs22(:%(xuu500000, xuu500001), :%(xuu40000, xuu40001), bdh) -> new_asAs(new_esEs27(xuu500000, xuu40000, bdh), new_esEs26(xuu500001, xuu40001, bdh)) 22.90/8.45 new_esEs6(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.45 new_ltEs21(xuu582, xuu592, app(app(ty_@2, cff), cfg)) -> new_ltEs8(xuu582, xuu592, cff, cfg) 22.90/8.45 new_esEs30(xuu580, xuu590, ty_Bool) -> new_esEs21(xuu580, xuu590) 22.90/8.45 new_ltEs23(xuu87, xuu88, app(app(ty_Either, dhh), eaa)) -> new_ltEs18(xuu87, xuu88, dhh, eaa) 22.90/8.45 new_esEs13(GT, GT) -> True 22.90/8.45 new_esEs38(xuu500000, xuu40000, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.45 new_lt20(xuu580, xuu590, app(ty_Maybe, cah)) -> new_lt9(xuu580, xuu590, cah) 22.90/8.45 new_esEs7(xuu50002, xuu4002, app(app(app(ty_@3, egc), egd), ege)) -> new_esEs23(xuu50002, xuu4002, egc, egd, ege) 22.90/8.45 new_esEs9(xuu50000, xuu4000, app(app(ty_@2, fab), fac)) -> new_esEs16(xuu50000, xuu4000, fab, fac) 22.90/8.45 new_esEs36(xuu500002, xuu40002, ty_Char) -> new_esEs12(xuu500002, xuu40002) 22.90/8.45 new_ltEs20(xuu581, xuu591, ty_Bool) -> new_ltEs15(xuu581, xuu591) 22.90/8.45 new_lt12(xuu70, xuu73, app(app(app(ty_@3, bgc), bgd), bge)) -> new_lt5(xuu70, xuu73, bgc, bgd, bge) 22.90/8.45 new_esEs34(xuu500000, xuu40000, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.45 new_esEs9(xuu50000, xuu4000, app(ty_Ratio, faf)) -> new_esEs22(xuu50000, xuu4000, faf) 22.90/8.45 new_esEs10(xuu50000, xuu4000, app(ty_Maybe, cd)) -> new_esEs18(xuu50000, xuu4000, cd) 22.90/8.45 new_esEs32(xuu580, xuu590, ty_Double) -> new_esEs15(xuu580, xuu590) 22.90/8.45 new_compare5(xuu5000, xuu400, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_compare10(xuu5000, xuu400, bdb, bdc, bdd) 22.90/8.45 new_ltEs9(Just(xuu580), Just(xuu590), app(app(app(ty_@3, eaf), eag), eah)) -> new_ltEs10(xuu580, xuu590, eaf, eag, eah) 22.90/8.45 new_primEqInt(Neg(Succ(xuu5000000)), Neg(Succ(xuu400000))) -> new_primEqNat0(xuu5000000, xuu400000) 22.90/8.45 new_esEs28(xuu70, xuu73, app(app(app(ty_@3, bgc), bgd), bge)) -> new_esEs23(xuu70, xuu73, bgc, bgd, bge) 22.90/8.45 new_ltEs8(@2(xuu580, xuu581), @2(xuu590, xuu591), eg, eh) -> new_pePe(new_lt20(xuu580, xuu590, eg), new_asAs(new_esEs30(xuu580, xuu590, eg), new_ltEs20(xuu581, xuu591, eh))) 22.90/8.45 new_lt23(xuu99, xuu101, app(app(ty_@2, ebd), ebe)) -> new_lt13(xuu99, xuu101, ebd, ebe) 22.90/8.45 new_primCmpInt(Neg(Zero), Pos(Succ(xuu40000))) -> LT 22.90/8.45 new_lt23(xuu99, xuu101, app(ty_Ratio, bce)) -> new_lt7(xuu99, xuu101, bce) 22.90/8.45 new_esEs33(xuu500001, xuu40001, ty_Float) -> new_esEs17(xuu500001, xuu40001) 22.90/8.45 new_primMulInt(Pos(xuu40000), Pos(xuu500010)) -> Pos(new_primMulNat0(xuu40000, xuu500010)) 22.90/8.45 new_primCompAux00(xuu37, xuu38, EQ, app(ty_Maybe, bbc)) -> new_compare9(xuu37, xuu38, bbc) 22.90/8.45 new_compare13(EQ, LT) -> GT 22.90/8.45 new_esEs37(xuu500001, xuu40001, app(ty_[], fdb)) -> new_esEs20(xuu500001, xuu40001, fdb) 22.90/8.45 new_lt21(xuu580, xuu590, ty_Float) -> new_lt18(xuu580, xuu590) 22.90/8.45 new_esEs13(EQ, GT) -> False 22.90/8.45 new_esEs13(GT, EQ) -> False 22.90/8.45 new_esEs11(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.45 new_compare19(Right(xuu50000), Left(xuu4000), bf, bg) -> GT 22.90/8.45 new_esEs14(Right(xuu500000), Right(xuu40000), hd, ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.45 new_lt22(xuu581, xuu591, ty_Int) -> new_lt8(xuu581, xuu591) 22.90/8.45 new_ltEs24(xuu100, xuu102, ty_Float) -> new_ltEs17(xuu100, xuu102) 22.90/8.45 new_esEs21(False, True) -> False 22.90/8.45 new_esEs21(True, False) -> False 22.90/8.45 new_esEs5(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.45 new_ltEs6(xuu58, xuu59, app(ty_Maybe, fa)) -> new_ltEs9(xuu58, xuu59, fa) 22.90/8.45 new_primMulNat0(Succ(xuu400000), Zero) -> Zero 22.90/8.45 new_primMulNat0(Zero, Succ(xuu5000100)) -> Zero 22.90/8.45 new_esEs32(xuu580, xuu590, app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs23(xuu580, xuu590, cde, cdf, cdg) 22.90/8.45 new_lt22(xuu581, xuu591, ty_Integer) -> new_lt14(xuu581, xuu591) 22.90/8.45 new_esEs31(xuu581, xuu591, ty_Integer) -> new_esEs19(xuu581, xuu591) 22.90/8.45 new_compare13(GT, LT) -> GT 22.90/8.45 new_ltEs21(xuu582, xuu592, app(app(ty_Either, cge), cgf)) -> new_ltEs18(xuu582, xuu592, cge, cgf) 22.90/8.45 new_compare26(xuu58, xuu59, True, ee) -> EQ 22.90/8.45 new_lt11(xuu69, xuu72, ty_Bool) -> new_lt4(xuu69, xuu72) 22.90/8.45 new_esEs11(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.45 new_ltEs6(xuu58, xuu59, app(ty_[], ff)) -> new_ltEs16(xuu58, xuu59, ff) 22.90/8.45 new_esEs14(Left(xuu500000), Left(xuu40000), app(ty_[], gg), ga) -> new_esEs20(xuu500000, xuu40000, gg) 22.90/8.45 new_esEs14(Right(xuu500000), Right(xuu40000), hd, app(ty_Maybe, baa)) -> new_esEs18(xuu500000, xuu40000, baa) 22.90/8.45 new_lt12(xuu70, xuu73, ty_Int) -> new_lt8(xuu70, xuu73) 22.90/8.45 new_esEs37(xuu500001, xuu40001, ty_Ordering) -> new_esEs13(xuu500001, xuu40001) 22.90/8.45 new_compare13(EQ, EQ) -> EQ 22.90/8.45 new_esEs38(xuu500000, xuu40000, app(app(ty_Either, fdg), fdh)) -> new_esEs14(xuu500000, xuu40000, fdg, fdh) 22.90/8.45 new_esEs30(xuu580, xuu590, app(ty_Maybe, cah)) -> new_esEs18(xuu580, xuu590, cah) 22.90/8.45 new_esEs34(xuu500000, xuu40000, app(ty_Ratio, dee)) -> new_esEs22(xuu500000, xuu40000, dee) 22.90/8.45 new_esEs32(xuu580, xuu590, app(ty_Maybe, cdd)) -> new_esEs18(xuu580, xuu590, cdd) 22.90/8.45 new_ltEs13(GT, LT) -> False 22.90/8.45 new_esEs39(xuu99, xuu101, app(ty_[], dge)) -> new_esEs20(xuu99, xuu101, dge) 22.90/8.45 new_ltEs18(Left(xuu580), Left(xuu590), app(ty_[], edg), fh) -> new_ltEs16(xuu580, xuu590, edg) 22.90/8.45 new_compare15(False, True) -> LT 22.90/8.45 new_primPlusNat1(Succ(xuu19700), Zero) -> Succ(xuu19700) 22.90/8.45 new_primPlusNat1(Zero, Succ(xuu19600)) -> Succ(xuu19600) 22.90/8.45 new_ltEs20(xuu581, xuu591, app(ty_[], ccf)) -> new_ltEs16(xuu581, xuu591, ccf) 22.90/8.45 new_esEs32(xuu580, xuu590, app(app(ty_@2, cdb), cdc)) -> new_esEs16(xuu580, xuu590, cdb, cdc) 22.90/8.45 new_esEs9(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.45 new_ltEs19(xuu71, xuu74, app(app(ty_@2, bhb), bhc)) -> new_ltEs8(xuu71, xuu74, bhb, bhc) 22.90/8.45 new_lt20(xuu580, xuu590, ty_Char) -> new_lt10(xuu580, xuu590) 22.90/8.45 new_compare9(Just(xuu50000), Just(xuu4000), bda) -> new_compare26(xuu50000, xuu4000, new_esEs6(xuu50000, xuu4000, bda), bda) 22.90/8.45 new_esEs6(xuu50000, xuu4000, app(ty_Maybe, dbg)) -> new_esEs18(xuu50000, xuu4000, dbg) 22.90/8.45 new_esEs28(xuu70, xuu73, ty_Int) -> new_esEs25(xuu70, xuu73) 22.90/8.45 new_ltEs4(xuu58, xuu59) -> new_fsEs(new_compare6(xuu58, xuu59)) 22.90/8.45 new_ltEs9(Just(xuu580), Just(xuu590), ty_Char) -> new_ltEs12(xuu580, xuu590) 22.90/8.45 new_esEs14(Left(xuu500000), Left(xuu40000), ty_@0, ga) -> new_esEs24(xuu500000, xuu40000) 22.90/8.45 new_lt23(xuu99, xuu101, app(ty_[], dge)) -> new_lt16(xuu99, xuu101, dge) 22.90/8.45 new_esEs29(xuu69, xuu72, ty_Double) -> new_esEs15(xuu69, xuu72) 22.90/8.45 new_esEs4(xuu50001, xuu4001, ty_Bool) -> new_esEs21(xuu50001, xuu4001) 22.90/8.45 new_ltEs23(xuu87, xuu88, app(ty_Ratio, dgh)) -> new_ltEs7(xuu87, xuu88, dgh) 22.90/8.45 new_esEs30(xuu580, xuu590, app(app(app(ty_@3, cba), cbb), cbc)) -> new_esEs23(xuu580, xuu590, cba, cbb, cbc) 22.90/8.45 new_esEs7(xuu50002, xuu4002, app(ty_Maybe, efh)) -> new_esEs18(xuu50002, xuu4002, efh) 22.90/8.45 new_lt23(xuu99, xuu101, ty_Ordering) -> new_lt15(xuu99, xuu101) 22.90/8.45 new_esEs28(xuu70, xuu73, ty_Bool) -> new_esEs21(xuu70, xuu73) 22.90/8.45 new_esEs19(Integer(xuu500000), Integer(xuu40000)) -> new_primEqInt(xuu500000, xuu40000) 22.90/8.45 new_compare24(xuu80, xuu81, False, dfa, dfb) -> new_compare110(xuu80, xuu81, new_ltEs22(xuu80, xuu81, dfa), dfa, dfb) 22.90/8.45 new_lt12(xuu70, xuu73, ty_Bool) -> new_lt4(xuu70, xuu73) 22.90/8.45 new_compare6(Double(xuu50000, Neg(xuu500010)), Double(xuu4000, Neg(xuu40010))) -> new_compare14(new_sr(xuu50000, Neg(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) 22.90/8.45 new_compare5(xuu5000, xuu400, ty_Int) -> new_compare14(xuu5000, xuu400) 22.90/8.45 new_compare27(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, beb, bec, bed) -> new_compare113(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, new_lt11(xuu69, xuu72, beb), new_asAs(new_esEs29(xuu69, xuu72, beb), new_pePe(new_lt12(xuu70, xuu73, bec), new_asAs(new_esEs28(xuu70, xuu73, bec), new_ltEs19(xuu71, xuu74, bed)))), beb, bec, bed) 22.90/8.45 new_esEs4(xuu50001, xuu4001, app(app(ty_Either, cgg), cgh)) -> new_esEs14(xuu50001, xuu4001, cgg, cgh) 22.90/8.45 new_lt12(xuu70, xuu73, ty_Integer) -> new_lt14(xuu70, xuu73) 22.90/8.45 new_esEs6(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.45 new_esEs10(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.45 new_ltEs6(xuu58, xuu59, app(app(ty_@2, eg), eh)) -> new_ltEs8(xuu58, xuu59, eg, eh) 22.90/8.45 new_lt11(xuu69, xuu72, ty_Ordering) -> new_lt15(xuu69, xuu72) 22.90/8.45 new_esEs14(Left(xuu500000), Right(xuu40000), hd, ga) -> False 22.90/8.45 new_esEs14(Right(xuu500000), Left(xuu40000), hd, ga) -> False 22.90/8.45 new_esEs8(xuu50001, xuu4001, ty_Integer) -> new_esEs19(xuu50001, xuu4001) 22.90/8.45 new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_Either, bbh), bca)) -> new_compare19(xuu37, xuu38, bbh, bca) 22.90/8.45 new_compare114(xuu156, xuu157, xuu158, xuu159, True, xuu161, cac, cad) -> new_compare115(xuu156, xuu157, xuu158, xuu159, True, cac, cad) 22.90/8.45 new_ltEs9(Just(xuu580), Just(xuu590), ty_Double) -> new_ltEs4(xuu580, xuu590) 22.90/8.45 new_esEs35(xuu500000, xuu40000, app(ty_Ratio, ecd)) -> new_esEs22(xuu500000, xuu40000, ecd) 22.90/8.45 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Integer, ga) -> new_esEs19(xuu500000, xuu40000) 22.90/8.45 new_primCompAux00(xuu37, xuu38, EQ, app(ty_Ratio, bah)) -> new_compare7(xuu37, xuu38, bah) 22.90/8.45 new_esEs6(xuu50000, xuu4000, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs23(xuu50000, xuu4000, dcb, dcc, dcd) 22.90/8.45 new_lt22(xuu581, xuu591, ty_Bool) -> new_lt4(xuu581, xuu591) 22.90/8.45 new_esEs30(xuu580, xuu590, ty_Int) -> new_esEs25(xuu580, xuu590) 22.90/8.45 new_esEs12(Char(xuu500000), Char(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) 22.90/8.45 new_esEs33(xuu500001, xuu40001, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs23(xuu500001, xuu40001, ddd, dde, ddf) 22.90/8.45 new_esEs39(xuu99, xuu101, ty_Float) -> new_esEs17(xuu99, xuu101) 22.90/8.45 new_ltEs15(True, True) -> True 22.90/8.45 new_esEs8(xuu50001, xuu4001, ty_Double) -> new_esEs15(xuu50001, xuu4001) 22.90/8.45 new_esEs8(xuu50001, xuu4001, app(app(ty_@2, egh), eha)) -> new_esEs16(xuu50001, xuu4001, egh, eha) 22.90/8.45 new_esEs31(xuu581, xuu591, ty_Ordering) -> new_esEs13(xuu581, xuu591) 22.90/8.45 new_esEs11(xuu50000, xuu4000, app(app(ty_Either, dc), dd)) -> new_esEs14(xuu50000, xuu4000, dc, dd) 22.90/8.45 new_lt23(xuu99, xuu101, ty_Integer) -> new_lt14(xuu99, xuu101) 22.90/8.45 new_lt21(xuu580, xuu590, ty_Ordering) -> new_lt15(xuu580, xuu590) 22.90/8.45 new_esEs29(xuu69, xuu72, app(app(ty_@2, bef), beg)) -> new_esEs16(xuu69, xuu72, bef, beg) 22.90/8.45 new_esEs30(xuu580, xuu590, app(ty_Ratio, cae)) -> new_esEs22(xuu580, xuu590, cae) 22.90/8.45 new_lt23(xuu99, xuu101, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_lt5(xuu99, xuu101, bcb, bcc, bcd) 22.90/8.45 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.45 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Char, ga) -> new_esEs12(xuu500000, xuu40000) 22.90/8.45 new_esEs14(Right(xuu500000), Right(xuu40000), hd, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.45 new_esEs37(xuu500001, xuu40001, ty_Integer) -> new_esEs19(xuu500001, xuu40001) 22.90/8.45 new_esEs9(xuu50000, xuu4000, app(ty_[], fae)) -> new_esEs20(xuu50000, xuu4000, fae) 22.90/8.45 new_lt12(xuu70, xuu73, app(app(ty_@2, bfh), bga)) -> new_lt13(xuu70, xuu73, bfh, bga) 22.90/8.45 new_lt12(xuu70, xuu73, app(ty_Ratio, bfg)) -> new_lt7(xuu70, xuu73, bfg) 22.90/8.45 new_compare5(xuu5000, xuu400, app(ty_Ratio, bcf)) -> new_compare7(xuu5000, xuu400, bcf) 22.90/8.45 new_esEs38(xuu500000, xuu40000, app(ty_Maybe, fec)) -> new_esEs18(xuu500000, xuu40000, fec) 22.90/8.45 new_esEs32(xuu580, xuu590, app(app(ty_Either, cea), ceb)) -> new_esEs14(xuu580, xuu590, cea, ceb) 22.90/8.45 new_lt18(xuu99, xuu101) -> new_esEs13(new_compare18(xuu99, xuu101), LT) 22.90/8.45 new_ltEs21(xuu582, xuu592, app(ty_[], cgd)) -> new_ltEs16(xuu582, xuu592, cgd) 22.90/8.45 new_ltEs24(xuu100, xuu102, app(app(ty_@2, fff), ffg)) -> new_ltEs8(xuu100, xuu102, fff, ffg) 22.90/8.45 new_esEs18(Just(xuu500000), Just(xuu40000), app(ty_Ratio, fhe)) -> new_esEs22(xuu500000, xuu40000, fhe) 22.90/8.45 new_esEs10(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.45 new_esEs33(xuu500001, xuu40001, ty_Char) -> new_esEs12(xuu500001, xuu40001) 22.90/8.45 new_esEs35(xuu500000, xuu40000, ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.45 new_esEs18(Just(xuu500000), Just(xuu40000), ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.45 new_esEs7(xuu50002, xuu4002, ty_@0) -> new_esEs24(xuu50002, xuu4002) 22.90/8.45 new_esEs34(xuu500000, xuu40000, ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.45 new_esEs29(xuu69, xuu72, ty_Int) -> new_esEs25(xuu69, xuu72) 22.90/8.45 new_compare26(xuu58, xuu59, False, ee) -> new_compare111(xuu58, xuu59, new_ltEs6(xuu58, xuu59, ee), ee) 22.90/8.45 new_ltEs23(xuu87, xuu88, ty_Double) -> new_ltEs4(xuu87, xuu88) 22.90/8.45 new_compare24(xuu80, xuu81, True, dfa, dfb) -> EQ 22.90/8.45 new_esEs30(xuu580, xuu590, app(app(ty_@2, caf), cag)) -> new_esEs16(xuu580, xuu590, caf, cag) 22.90/8.45 new_esEs14(Right(xuu500000), Right(xuu40000), hd, ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.45 new_primCmpInt(Pos(Succ(xuu500000)), Pos(xuu4000)) -> new_primCmpNat0(Succ(xuu500000), xuu4000) 22.90/8.45 new_compare16([], :(xuu4000, xuu4001), bde) -> LT 22.90/8.45 new_lt20(xuu580, xuu590, ty_@0) -> new_lt17(xuu580, xuu590) 22.90/8.45 new_ltEs11(xuu58, xuu59) -> new_fsEs(new_compare11(xuu58, xuu59)) 22.90/8.45 new_esEs35(xuu500000, xuu40000, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.45 new_esEs5(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.45 new_compare5(xuu5000, xuu400, ty_Integer) -> new_compare11(xuu5000, xuu400) 22.90/8.45 new_esEs20(:(xuu500000, xuu500001), :(xuu40000, xuu40001), dad) -> new_asAs(new_esEs35(xuu500000, xuu40000, dad), new_esEs20(xuu500001, xuu40001, dad)) 22.90/8.45 new_lt17(xuu99, xuu101) -> new_esEs13(new_compare17(xuu99, xuu101), LT) 22.90/8.45 new_esEs29(xuu69, xuu72, ty_Ordering) -> new_esEs13(xuu69, xuu72) 22.90/8.45 new_compare11(Integer(xuu50000), Integer(xuu4000)) -> new_primCmpInt(xuu50000, xuu4000) 22.90/8.45 new_esEs8(xuu50001, xuu4001, ty_Float) -> new_esEs17(xuu50001, xuu4001) 22.90/8.45 new_compare13(GT, GT) -> EQ 22.90/8.45 new_esEs18(Just(xuu500000), Just(xuu40000), app(ty_Maybe, fhc)) -> new_esEs18(xuu500000, xuu40000, fhc) 22.90/8.45 new_ltEs16(xuu58, xuu59, ff) -> new_fsEs(new_compare16(xuu58, xuu59, ff)) 22.90/8.45 new_ltEs18(Left(xuu580), Left(xuu590), app(ty_Ratio, ech), fh) -> new_ltEs7(xuu580, xuu590, ech) 22.90/8.45 new_esEs5(xuu50000, xuu4000, app(ty_[], dad)) -> new_esEs20(xuu50000, xuu4000, dad) 22.90/8.45 new_esEs6(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.45 new_ltEs17(xuu58, xuu59) -> new_fsEs(new_compare18(xuu58, xuu59)) 22.90/8.45 new_esEs38(xuu500000, xuu40000, app(app(app(ty_@3, fef), feg), feh)) -> new_esEs23(xuu500000, xuu40000, fef, feg, feh) 22.90/8.45 new_esEs33(xuu500001, xuu40001, app(ty_Maybe, dda)) -> new_esEs18(xuu500001, xuu40001, dda) 22.90/8.45 new_esEs10(xuu50000, xuu4000, app(ty_Ratio, cf)) -> new_esEs22(xuu50000, xuu4000, cf) 22.90/8.45 new_esEs37(xuu500001, xuu40001, app(app(ty_Either, fce), fcf)) -> new_esEs14(xuu500001, xuu40001, fce, fcf) 22.90/8.45 new_ltEs18(Left(xuu580), Left(xuu590), ty_@0, fh) -> new_ltEs5(xuu580, xuu590) 22.90/8.45 new_lt21(xuu580, xuu590, ty_Int) -> new_lt8(xuu580, xuu590) 22.90/8.45 new_esEs31(xuu581, xuu591, ty_Bool) -> new_esEs21(xuu581, xuu591) 22.90/8.45 new_esEs35(xuu500000, xuu40000, ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.45 new_lt19(xuu99, xuu101, ffc, ffd) -> new_esEs13(new_compare19(xuu99, xuu101, ffc, ffd), LT) 22.90/8.45 new_esEs14(Left(xuu500000), Left(xuu40000), app(ty_Ratio, gh), ga) -> new_esEs22(xuu500000, xuu40000, gh) 22.90/8.45 new_lt11(xuu69, xuu72, ty_Char) -> new_lt10(xuu69, xuu72) 22.90/8.45 new_esEs36(xuu500002, xuu40002, app(app(ty_Either, fbc), fbd)) -> new_esEs14(xuu500002, xuu40002, fbc, fbd) 22.90/8.45 new_ltEs6(xuu58, xuu59, app(app(ty_Either, fg), fh)) -> new_ltEs18(xuu58, xuu59, fg, fh) 22.90/8.45 new_ltEs20(xuu581, xuu591, app(app(ty_Either, ccg), cch)) -> new_ltEs18(xuu581, xuu591, ccg, cch) 22.90/8.45 new_compare5(xuu5000, xuu400, ty_Char) -> new_compare12(xuu5000, xuu400) 22.90/8.45 new_esEs36(xuu500002, xuu40002, ty_Bool) -> new_esEs21(xuu500002, xuu40002) 22.90/8.45 new_ltEs18(Left(xuu580), Left(xuu590), ty_Ordering, fh) -> new_ltEs13(xuu580, xuu590) 22.90/8.45 new_compare9(Nothing, Just(xuu4000), bda) -> LT 22.90/8.45 new_esEs34(xuu500000, xuu40000, app(ty_Maybe, dec)) -> new_esEs18(xuu500000, xuu40000, dec) 22.90/8.45 new_esEs39(xuu99, xuu101, app(ty_Maybe, bea)) -> new_esEs18(xuu99, xuu101, bea) 22.90/8.45 new_esEs31(xuu581, xuu591, ty_Int) -> new_esEs25(xuu581, xuu591) 22.90/8.45 new_esEs31(xuu581, xuu591, app(app(ty_Either, cfc), cfd)) -> new_esEs14(xuu581, xuu591, cfc, cfd) 22.90/8.45 new_compare8(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), bcg, bch) -> new_compare28(xuu50000, xuu50001, xuu4000, xuu4001, new_asAs(new_esEs5(xuu50000, xuu4000, bcg), new_esEs4(xuu50001, xuu4001, bch)), bcg, bch) 22.90/8.45 new_ltEs9(Just(xuu580), Just(xuu590), app(ty_Maybe, eae)) -> new_ltEs9(xuu580, xuu590, eae) 22.90/8.45 new_esEs11(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.45 new_compare14(xuu5000, xuu400) -> new_primCmpInt(xuu5000, xuu400) 22.90/8.45 new_primCompAux00(xuu37, xuu38, EQ, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_compare10(xuu37, xuu38, bbd, bbe, bbf) 22.90/8.45 new_ltEs18(Left(xuu580), Left(xuu590), ty_Integer, fh) -> new_ltEs11(xuu580, xuu590) 22.90/8.45 new_esEs11(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.45 new_ltEs19(xuu71, xuu74, app(app(ty_Either, caa), cab)) -> new_ltEs18(xuu71, xuu74, caa, cab) 22.90/8.45 new_lt21(xuu580, xuu590, ty_Bool) -> new_lt4(xuu580, xuu590) 22.90/8.45 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.45 new_esEs7(xuu50002, xuu4002, ty_Float) -> new_esEs17(xuu50002, xuu4002) 22.90/8.45 new_compare5(xuu5000, xuu400, ty_@0) -> new_compare17(xuu5000, xuu400) 22.90/8.45 new_lt20(xuu580, xuu590, ty_Ordering) -> new_lt15(xuu580, xuu590) 22.90/8.45 new_compare111(xuu125, xuu126, False, fbb) -> GT 22.90/8.45 new_esEs28(xuu70, xuu73, app(app(ty_@2, bfh), bga)) -> new_esEs16(xuu70, xuu73, bfh, bga) 22.90/8.45 new_esEs36(xuu500002, xuu40002, ty_Integer) -> new_esEs19(xuu500002, xuu40002) 22.90/8.45 new_esEs8(xuu50001, xuu4001, app(ty_[], ehc)) -> new_esEs20(xuu50001, xuu4001, ehc) 22.90/8.45 new_ltEs24(xuu100, xuu102, app(ty_[], fgd)) -> new_ltEs16(xuu100, xuu102, fgd) 22.90/8.45 new_lt22(xuu581, xuu591, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_lt5(xuu581, xuu591, ceg, ceh, cfa) 22.90/8.45 new_ltEs6(xuu58, xuu59, ty_Float) -> new_ltEs17(xuu58, xuu59) 22.90/8.45 new_compare9(Just(xuu50000), Nothing, bda) -> GT 22.90/8.45 new_ltEs18(Left(xuu580), Left(xuu590), ty_Char, fh) -> new_ltEs12(xuu580, xuu590) 22.90/8.45 new_esEs4(xuu50001, xuu4001, ty_Float) -> new_esEs17(xuu50001, xuu4001) 22.90/8.45 new_ltEs18(Right(xuu580), Right(xuu590), fg, ty_Double) -> new_ltEs4(xuu580, xuu590) 22.90/8.45 new_esEs33(xuu500001, xuu40001, app(app(ty_Either, dce), dcf)) -> new_esEs14(xuu500001, xuu40001, dce, dcf) 22.90/8.45 new_esEs18(Just(xuu500000), Just(xuu40000), app(app(app(ty_@3, fhf), fhg), fhh)) -> new_esEs23(xuu500000, xuu40000, fhf, fhg, fhh) 22.90/8.45 new_esEs34(xuu500000, xuu40000, app(app(app(ty_@3, def), deg), deh)) -> new_esEs23(xuu500000, xuu40000, def, deg, deh) 22.90/8.45 new_esEs11(xuu50000, xuu4000, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs23(xuu50000, xuu4000, eb, ec, ed) 22.90/8.45 new_esEs9(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.45 new_esEs32(xuu580, xuu590, ty_Ordering) -> new_esEs13(xuu580, xuu590) 22.90/8.45 new_ltEs13(LT, LT) -> True 22.90/8.45 new_esEs37(xuu500001, xuu40001, app(ty_Maybe, fda)) -> new_esEs18(xuu500001, xuu40001, fda) 22.90/8.45 new_lt20(xuu580, xuu590, app(app(ty_Either, cbe), cbf)) -> new_lt19(xuu580, xuu590, cbe, cbf) 22.90/8.45 new_esEs10(xuu50000, xuu4000, app(app(ty_Either, bh), ca)) -> new_esEs14(xuu50000, xuu4000, bh, ca) 22.90/8.45 new_esEs31(xuu581, xuu591, app(ty_Ratio, cec)) -> new_esEs22(xuu581, xuu591, cec) 22.90/8.45 new_primCompAux00(xuu37, xuu38, EQ, ty_Ordering) -> new_compare13(xuu37, xuu38) 22.90/8.45 new_compare116(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, dah, dba, dbb) -> LT 22.90/8.45 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Bool, ga) -> new_esEs21(xuu500000, xuu40000) 22.90/8.45 new_esEs6(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.45 new_ltEs15(False, True) -> True 22.90/8.45 new_esEs4(xuu50001, xuu4001, ty_@0) -> new_esEs24(xuu50001, xuu4001) 22.90/8.45 new_primPlusNat0(Succ(xuu2070), xuu5000100) -> Succ(Succ(new_primPlusNat1(xuu2070, xuu5000100))) 22.90/8.45 new_lt20(xuu580, xuu590, ty_Int) -> new_lt8(xuu580, xuu590) 22.90/8.45 new_esEs28(xuu70, xuu73, app(ty_Ratio, bfg)) -> new_esEs22(xuu70, xuu73, bfg) 22.90/8.45 new_ltEs6(xuu58, xuu59, ty_Double) -> new_ltEs4(xuu58, xuu59) 22.90/8.45 new_lt23(xuu99, xuu101, ty_Float) -> new_lt18(xuu99, xuu101) 22.90/8.45 new_lt13(xuu99, xuu101, ebd, ebe) -> new_esEs13(new_compare8(xuu99, xuu101, ebd, ebe), LT) 22.90/8.45 new_lt22(xuu581, xuu591, app(ty_Maybe, cef)) -> new_lt9(xuu581, xuu591, cef) 22.90/8.45 new_primCompAux00(xuu37, xuu38, EQ, ty_Char) -> new_compare12(xuu37, xuu38) 22.90/8.45 new_esEs38(xuu500000, xuu40000, ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.45 new_compare5(xuu5000, xuu400, ty_Bool) -> new_compare15(xuu5000, xuu400) 22.90/8.45 new_esEs32(xuu580, xuu590, ty_Bool) -> new_esEs21(xuu580, xuu590) 22.90/8.45 new_esEs4(xuu50001, xuu4001, ty_Integer) -> new_esEs19(xuu50001, xuu4001) 22.90/8.45 new_primPlusNat1(Zero, Zero) -> Zero 22.90/8.45 new_ltEs18(Left(xuu580), Left(xuu590), app(app(ty_@2, eda), edb), fh) -> new_ltEs8(xuu580, xuu590, eda, edb) 22.90/8.45 new_esEs35(xuu500000, xuu40000, app(ty_Maybe, ecb)) -> new_esEs18(xuu500000, xuu40000, ecb) 22.90/8.45 new_esEs35(xuu500000, xuu40000, app(app(ty_Either, ebf), ebg)) -> new_esEs14(xuu500000, xuu40000, ebf, ebg) 22.90/8.45 new_compare111(xuu125, xuu126, True, fbb) -> LT 22.90/8.45 new_esEs30(xuu580, xuu590, ty_Ordering) -> new_esEs13(xuu580, xuu590) 22.90/8.45 new_esEs21(True, True) -> True 22.90/8.45 new_primCompAux00(xuu37, xuu38, EQ, ty_Integer) -> new_compare11(xuu37, xuu38) 22.90/8.45 new_esEs35(xuu500000, xuu40000, ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.45 new_ltEs21(xuu582, xuu592, ty_Float) -> new_ltEs17(xuu582, xuu592) 22.90/8.45 new_ltEs18(Left(xuu580), Right(xuu590), fg, fh) -> True 22.90/8.45 new_esEs11(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.45 new_compare19(Left(xuu50000), Left(xuu4000), bf, bg) -> new_compare24(xuu50000, xuu4000, new_esEs10(xuu50000, xuu4000, bf), bf, bg) 22.90/8.45 new_esEs14(Right(xuu500000), Right(xuu40000), hd, ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.45 new_ltEs18(Right(xuu580), Right(xuu590), fg, app(ty_[], efa)) -> new_ltEs16(xuu580, xuu590, efa) 22.90/8.45 new_esEs37(xuu500001, xuu40001, ty_@0) -> new_esEs24(xuu500001, xuu40001) 22.90/8.45 new_ltEs22(xuu80, xuu81, ty_Double) -> new_ltEs4(xuu80, xuu81) 22.90/8.45 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Ordering, ga) -> new_esEs13(xuu500000, xuu40000) 22.90/8.45 new_primCompAux00(xuu37, xuu38, EQ, ty_Bool) -> new_compare15(xuu37, xuu38) 22.90/8.45 new_lt23(xuu99, xuu101, app(ty_Maybe, bea)) -> new_lt9(xuu99, xuu101, bea) 22.90/8.45 new_compare17(@0, @0) -> EQ 22.90/8.45 new_ltEs18(Right(xuu580), Left(xuu590), fg, fh) -> False 22.90/8.45 new_esEs37(xuu500001, xuu40001, app(app(app(ty_@3, fdd), fde), fdf)) -> new_esEs23(xuu500001, xuu40001, fdd, fde, fdf) 22.90/8.45 new_esEs14(Right(xuu500000), Right(xuu40000), hd, app(ty_[], bab)) -> new_esEs20(xuu500000, xuu40000, bab) 22.90/8.45 new_esEs34(xuu500000, xuu40000, ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.45 new_esEs14(Left(xuu500000), Left(xuu40000), app(app(app(ty_@3, ha), hb), hc), ga) -> new_esEs23(xuu500000, xuu40000, ha, hb, hc) 22.90/8.45 new_lt23(xuu99, xuu101, app(app(ty_Either, ffc), ffd)) -> new_lt19(xuu99, xuu101, ffc, ffd) 22.90/8.45 new_primCmpNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primCmpNat0(xuu500000, xuu40000) 22.90/8.45 new_esEs31(xuu581, xuu591, ty_Char) -> new_esEs12(xuu581, xuu591) 22.90/8.45 new_esEs10(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.45 new_ltEs18(Left(xuu580), Left(xuu590), ty_Bool, fh) -> new_ltEs15(xuu580, xuu590) 22.90/8.45 new_lt22(xuu581, xuu591, ty_@0) -> new_lt17(xuu581, xuu591) 22.90/8.45 new_ltEs12(xuu58, xuu59) -> new_fsEs(new_compare12(xuu58, xuu59)) 22.90/8.45 new_esEs34(xuu500000, xuu40000, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.45 new_esEs39(xuu99, xuu101, ty_@0) -> new_esEs24(xuu99, xuu101) 22.90/8.45 new_ltEs21(xuu582, xuu592, ty_Double) -> new_ltEs4(xuu582, xuu592) 22.90/8.45 new_esEs33(xuu500001, xuu40001, ty_Bool) -> new_esEs21(xuu500001, xuu40001) 22.90/8.45 new_compare27(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, True, beb, bec, bed) -> EQ 22.90/8.45 new_esEs32(xuu580, xuu590, ty_Char) -> new_esEs12(xuu580, xuu590) 22.90/8.45 new_esEs10(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.45 new_compare13(LT, GT) -> LT 22.90/8.45 new_lt21(xuu580, xuu590, ty_@0) -> new_lt17(xuu580, xuu590) 22.90/8.45 new_ltEs5(xuu58, xuu59) -> new_fsEs(new_compare17(xuu58, xuu59)) 22.90/8.45 new_ltEs18(Right(xuu580), Right(xuu590), fg, app(app(ty_@2, eec), eed)) -> new_ltEs8(xuu580, xuu590, eec, eed) 22.90/8.45 new_ltEs15(True, False) -> False 22.90/8.45 new_lt5(xuu99, xuu101, bcb, bcc, bcd) -> new_esEs13(new_compare10(xuu99, xuu101, bcb, bcc, bcd), LT) 22.90/8.45 new_ltEs18(Right(xuu580), Right(xuu590), fg, ty_Float) -> new_ltEs17(xuu580, xuu590) 22.90/8.45 new_esEs38(xuu500000, xuu40000, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.45 new_esEs33(xuu500001, xuu40001, ty_Int) -> new_esEs25(xuu500001, xuu40001) 22.90/8.45 new_esEs18(Just(xuu500000), Just(xuu40000), app(app(ty_Either, fgg), fgh)) -> new_esEs14(xuu500000, xuu40000, fgg, fgh) 22.90/8.45 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.45 new_esEs13(EQ, EQ) -> True 22.90/8.45 new_compare10(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bdb, bdc, bdd) -> new_compare27(xuu50000, xuu50001, xuu50002, xuu4000, xuu4001, xuu4002, new_asAs(new_esEs9(xuu50000, xuu4000, bdb), new_asAs(new_esEs8(xuu50001, xuu4001, bdc), new_esEs7(xuu50002, xuu4002, bdd))), bdb, bdc, bdd) 22.90/8.45 new_ltEs20(xuu581, xuu591, ty_Float) -> new_ltEs17(xuu581, xuu591) 22.90/8.45 new_esEs11(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.45 new_lt11(xuu69, xuu72, ty_Double) -> new_lt6(xuu69, xuu72) 22.90/8.45 new_lt22(xuu581, xuu591, app(app(ty_Either, cfc), cfd)) -> new_lt19(xuu581, xuu591, cfc, cfd) 22.90/8.45 new_esEs38(xuu500000, xuu40000, ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.45 new_lt20(xuu580, xuu590, app(app(app(ty_@3, cba), cbb), cbc)) -> new_lt5(xuu580, xuu590, cba, cbb, cbc) 22.90/8.45 new_esEs29(xuu69, xuu72, app(ty_Ratio, bee)) -> new_esEs22(xuu69, xuu72, bee) 22.90/8.45 new_ltEs15(False, False) -> True 22.90/8.45 new_esEs36(xuu500002, xuu40002, app(app(app(ty_@3, fcb), fcc), fcd)) -> new_esEs23(xuu500002, xuu40002, fcb, fcc, fcd) 22.90/8.45 new_primCompAux1(xuu5000, xuu400, xuu5001, xuu401, bb) -> new_primCompAux00(xuu5001, xuu401, new_compare5(xuu5000, xuu400, bb), app(ty_[], bb)) 22.90/8.45 new_ltEs19(xuu71, xuu74, ty_Float) -> new_ltEs17(xuu71, xuu74) 22.90/8.45 new_esEs17(Float(xuu500000, xuu500001), Float(xuu40000, xuu40001)) -> new_esEs25(new_sr(xuu500000, xuu40001), new_sr(xuu500001, xuu40000)) 22.90/8.45 new_esEs28(xuu70, xuu73, app(ty_[], bgf)) -> new_esEs20(xuu70, xuu73, bgf) 22.90/8.45 new_primCmpInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> LT 22.90/8.45 new_esEs34(xuu500000, xuu40000, app(app(ty_Either, ddg), ddh)) -> new_esEs14(xuu500000, xuu40000, ddg, ddh) 22.90/8.45 new_ltEs22(xuu80, xuu81, app(app(ty_Either, dgc), dgd)) -> new_ltEs18(xuu80, xuu81, dgc, dgd) 22.90/8.45 new_ltEs19(xuu71, xuu74, ty_Double) -> new_ltEs4(xuu71, xuu74) 22.90/8.45 new_ltEs22(xuu80, xuu81, app(app(ty_@2, dfd), dfe)) -> new_ltEs8(xuu80, xuu81, dfd, dfe) 22.90/8.45 new_compare15(True, False) -> GT 22.90/8.45 new_lt11(xuu69, xuu72, app(app(ty_Either, bfe), bff)) -> new_lt19(xuu69, xuu72, bfe, bff) 22.90/8.45 new_lt21(xuu580, xuu590, app(app(app(ty_@3, cde), cdf), cdg)) -> new_lt5(xuu580, xuu590, cde, cdf, cdg) 22.90/8.45 new_compare13(EQ, GT) -> LT 22.90/8.45 new_esEs35(xuu500000, xuu40000, ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.45 new_esEs36(xuu500002, xuu40002, app(ty_Maybe, fbg)) -> new_esEs18(xuu500002, xuu40002, fbg) 22.90/8.45 new_ltEs18(Right(xuu580), Right(xuu590), fg, app(ty_Maybe, eee)) -> new_ltEs9(xuu580, xuu590, eee) 22.90/8.45 new_ltEs18(Left(xuu580), Left(xuu590), ty_Int, fh) -> new_ltEs14(xuu580, xuu590) 22.90/8.45 new_primCmpInt(Pos(Zero), Neg(Succ(xuu40000))) -> GT 22.90/8.45 new_primCmpInt(Neg(Succ(xuu500000)), Neg(xuu4000)) -> new_primCmpNat0(xuu4000, Succ(xuu500000)) 22.90/8.45 new_lt12(xuu70, xuu73, ty_@0) -> new_lt17(xuu70, xuu73) 22.90/8.45 new_ltEs9(Just(xuu580), Just(xuu590), app(app(ty_Either, ebb), ebc)) -> new_ltEs18(xuu580, xuu590, ebb, ebc) 22.90/8.45 new_esEs5(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.45 new_ltEs6(xuu58, xuu59, app(app(app(ty_@3, fb), fc), fd)) -> new_ltEs10(xuu58, xuu59, fb, fc, fd) 22.90/8.45 new_lt11(xuu69, xuu72, app(ty_Maybe, beh)) -> new_lt9(xuu69, xuu72, beh) 22.90/8.45 new_ltEs19(xuu71, xuu74, app(ty_Maybe, bhd)) -> new_ltEs9(xuu71, xuu74, bhd) 22.90/8.45 new_compare115(xuu156, xuu157, xuu158, xuu159, False, cac, cad) -> GT 22.90/8.45 new_ltEs13(GT, GT) -> True 22.90/8.45 new_lt23(xuu99, xuu101, ty_Int) -> new_lt8(xuu99, xuu101) 22.90/8.45 new_lt21(xuu580, xuu590, app(app(ty_Either, cea), ceb)) -> new_lt19(xuu580, xuu590, cea, ceb) 22.90/8.45 new_esEs37(xuu500001, xuu40001, ty_Int) -> new_esEs25(xuu500001, xuu40001) 22.90/8.45 new_esEs33(xuu500001, xuu40001, app(app(ty_@2, dcg), dch)) -> new_esEs16(xuu500001, xuu40001, dcg, dch) 22.90/8.45 new_esEs32(xuu580, xuu590, ty_Int) -> new_esEs25(xuu580, xuu590) 22.90/8.45 new_esEs8(xuu50001, xuu4001, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_esEs23(xuu50001, xuu4001, ehe, ehf, ehg) 22.90/8.45 new_compare28(xuu99, xuu100, xuu101, xuu102, True, ffa, ffb) -> EQ 22.90/8.45 new_esEs11(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.45 new_lt20(xuu580, xuu590, ty_Bool) -> new_lt4(xuu580, xuu590) 22.90/8.45 new_esEs10(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.45 new_primEqInt(Pos(Succ(xuu5000000)), Pos(Zero)) -> False 22.90/8.45 new_primEqInt(Pos(Zero), Pos(Succ(xuu400000))) -> False 22.90/8.45 new_lt22(xuu581, xuu591, app(ty_[], cfb)) -> new_lt16(xuu581, xuu591, cfb) 22.90/8.45 new_ltEs13(EQ, GT) -> True 22.90/8.45 new_esEs33(xuu500001, xuu40001, ty_Ordering) -> new_esEs13(xuu500001, xuu40001) 22.90/8.45 new_compare28(xuu99, xuu100, xuu101, xuu102, False, ffa, ffb) -> new_compare114(xuu99, xuu100, xuu101, xuu102, new_lt23(xuu99, xuu101, ffa), new_asAs(new_esEs39(xuu99, xuu101, ffa), new_ltEs24(xuu100, xuu102, ffb)), ffa, ffb) 22.90/8.45 new_ltEs9(Just(xuu580), Just(xuu590), app(app(ty_@2, eac), ead)) -> new_ltEs8(xuu580, xuu590, eac, ead) 22.90/8.45 new_esEs7(xuu50002, xuu4002, app(ty_[], ega)) -> new_esEs20(xuu50002, xuu4002, ega) 22.90/8.45 new_ltEs13(EQ, EQ) -> True 22.90/8.45 new_esEs30(xuu580, xuu590, ty_Char) -> new_esEs12(xuu580, xuu590) 22.90/8.45 new_lt12(xuu70, xuu73, ty_Char) -> new_lt10(xuu70, xuu73) 22.90/8.45 new_ltEs21(xuu582, xuu592, ty_Char) -> new_ltEs12(xuu582, xuu592) 22.90/8.45 new_esEs38(xuu500000, xuu40000, ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.45 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Int, ga) -> new_esEs25(xuu500000, xuu40000) 22.90/8.45 new_ltEs23(xuu87, xuu88, ty_Float) -> new_ltEs17(xuu87, xuu88) 22.90/8.45 new_esEs4(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 22.90/8.45 new_primCmpNat0(Zero, Zero) -> EQ 22.90/8.45 new_ltEs23(xuu87, xuu88, app(app(app(ty_@3, dhd), dhe), dhf)) -> new_ltEs10(xuu87, xuu88, dhd, dhe, dhf) 22.90/8.45 new_esEs5(xuu50000, xuu4000, app(ty_Maybe, dac)) -> new_esEs18(xuu50000, xuu4000, dac) 22.90/8.45 new_ltEs24(xuu100, xuu102, ty_Ordering) -> new_ltEs13(xuu100, xuu102) 22.90/8.45 new_compare13(LT, EQ) -> LT 22.90/8.45 new_esEs5(xuu50000, xuu4000, app(app(ty_@2, daa), dab)) -> new_esEs16(xuu50000, xuu4000, daa, dab) 22.90/8.45 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Float, ga) -> new_esEs17(xuu500000, xuu40000) 22.90/8.45 new_lt10(xuu99, xuu101) -> new_esEs13(new_compare12(xuu99, xuu101), LT) 22.90/8.45 new_esEs39(xuu99, xuu101, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs23(xuu99, xuu101, bcb, bcc, bcd) 22.90/8.45 new_ltEs21(xuu582, xuu592, ty_Bool) -> new_ltEs15(xuu582, xuu592) 22.90/8.45 new_esEs36(xuu500002, xuu40002, ty_@0) -> new_esEs24(xuu500002, xuu40002) 22.90/8.45 new_esEs30(xuu580, xuu590, ty_Integer) -> new_esEs19(xuu580, xuu590) 22.90/8.45 new_ltEs21(xuu582, xuu592, app(ty_Maybe, cfh)) -> new_ltEs9(xuu582, xuu592, cfh) 22.90/8.45 new_esEs6(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.45 new_esEs33(xuu500001, xuu40001, app(ty_Ratio, ddc)) -> new_esEs22(xuu500001, xuu40001, ddc) 22.90/8.45 new_ltEs20(xuu581, xuu591, ty_Integer) -> new_ltEs11(xuu581, xuu591) 22.90/8.45 new_ltEs24(xuu100, xuu102, ty_Double) -> new_ltEs4(xuu100, xuu102) 22.90/8.45 new_ltEs19(xuu71, xuu74, ty_Char) -> new_ltEs12(xuu71, xuu74) 22.90/8.45 new_esEs37(xuu500001, xuu40001, ty_Float) -> new_esEs17(xuu500001, xuu40001) 22.90/8.45 new_esEs32(xuu580, xuu590, ty_Float) -> new_esEs17(xuu580, xuu590) 22.90/8.45 new_ltEs9(Just(xuu580), Just(xuu590), app(ty_[], eba)) -> new_ltEs16(xuu580, xuu590, eba) 22.90/8.45 new_lt21(xuu580, xuu590, app(ty_Maybe, cdd)) -> new_lt9(xuu580, xuu590, cdd) 22.90/8.45 new_esEs6(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.45 new_lt21(xuu580, xuu590, ty_Integer) -> new_lt14(xuu580, xuu590) 22.90/8.45 new_compare116(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, False, dah, dba, dbb) -> GT 22.90/8.45 new_compare110(xuu135, xuu136, True, bd, be) -> LT 22.90/8.45 new_esEs11(xuu50000, xuu4000, app(ty_Maybe, dg)) -> new_esEs18(xuu50000, xuu4000, dg) 22.90/8.45 new_esEs28(xuu70, xuu73, ty_Ordering) -> new_esEs13(xuu70, xuu73) 22.90/8.45 new_esEs33(xuu500001, xuu40001, ty_Double) -> new_esEs15(xuu500001, xuu40001) 22.90/8.45 new_esEs35(xuu500000, xuu40000, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.45 new_lt11(xuu69, xuu72, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_lt5(xuu69, xuu72, bfa, bfb, bfc) 22.90/8.45 new_ltEs20(xuu581, xuu591, ty_@0) -> new_ltEs5(xuu581, xuu591) 22.90/8.45 new_esEs38(xuu500000, xuu40000, ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.45 new_lt22(xuu581, xuu591, ty_Char) -> new_lt10(xuu581, xuu591) 22.90/8.45 new_ltEs18(Right(xuu580), Right(xuu590), fg, ty_@0) -> new_ltEs5(xuu580, xuu590) 22.90/8.45 new_esEs30(xuu580, xuu590, app(ty_[], cbd)) -> new_esEs20(xuu580, xuu590, cbd) 22.90/8.45 new_ltEs22(xuu80, xuu81, app(ty_[], dgb)) -> new_ltEs16(xuu80, xuu81, dgb) 22.90/8.45 new_esEs20([], [], dad) -> True 22.90/8.45 new_ltEs13(LT, GT) -> True 22.90/8.45 new_lt6(xuu99, xuu101) -> new_esEs13(new_compare6(xuu99, xuu101), LT) 22.90/8.45 new_esEs28(xuu70, xuu73, ty_Char) -> new_esEs12(xuu70, xuu73) 22.90/8.45 new_lt22(xuu581, xuu591, ty_Float) -> new_lt18(xuu581, xuu591) 22.90/8.45 new_lt14(xuu99, xuu101) -> new_esEs13(new_compare11(xuu99, xuu101), LT) 22.90/8.45 new_primCmpNat0(Succ(xuu500000), Zero) -> GT 22.90/8.45 new_ltEs18(Left(xuu580), Left(xuu590), app(app(ty_Either, edh), eea), fh) -> new_ltEs18(xuu580, xuu590, edh, eea) 22.90/8.45 new_primCompAux00(xuu37, xuu38, EQ, ty_Float) -> new_compare18(xuu37, xuu38) 22.90/8.45 new_pePe(False, xuu195) -> xuu195 22.90/8.45 new_esEs33(xuu500001, xuu40001, ty_@0) -> new_esEs24(xuu500001, xuu40001) 22.90/8.45 new_esEs9(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.45 new_compare7(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), ty_Int) -> new_compare14(new_sr(xuu50000, xuu4001), new_sr(xuu4000, xuu50001)) 22.90/8.45 new_esEs11(xuu50000, xuu4000, app(app(ty_@2, de), df)) -> new_esEs16(xuu50000, xuu4000, de, df) 22.90/8.45 new_compare25(xuu87, xuu88, True, dgf, dgg) -> EQ 22.90/8.45 new_esEs14(Right(xuu500000), Right(xuu40000), hd, ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.45 new_compare5(xuu5000, xuu400, ty_Ordering) -> new_compare13(xuu5000, xuu400) 22.90/8.45 new_lt21(xuu580, xuu590, app(ty_Ratio, cda)) -> new_lt7(xuu580, xuu590, cda) 22.90/8.45 new_esEs4(xuu50001, xuu4001, ty_Int) -> new_esEs25(xuu50001, xuu4001) 22.90/8.45 new_compare112(xuu142, xuu143, True, bdf, bdg) -> LT 22.90/8.45 new_lt23(xuu99, xuu101, ty_Bool) -> new_lt4(xuu99, xuu101) 22.90/8.45 new_ltEs22(xuu80, xuu81, app(ty_Ratio, dfc)) -> new_ltEs7(xuu80, xuu81, dfc) 22.90/8.45 new_ltEs9(Just(xuu580), Just(xuu590), ty_Ordering) -> new_ltEs13(xuu580, xuu590) 22.90/8.45 new_compare15(False, False) -> EQ 22.90/8.45 new_esEs6(xuu50000, xuu4000, app(app(ty_Either, dbc), dbd)) -> new_esEs14(xuu50000, xuu4000, dbc, dbd) 22.90/8.45 new_ltEs19(xuu71, xuu74, ty_Bool) -> new_ltEs15(xuu71, xuu74) 22.90/8.45 new_primEqInt(Pos(Zero), Neg(Succ(xuu400000))) -> False 22.90/8.45 new_primEqInt(Neg(Zero), Pos(Succ(xuu400000))) -> False 22.90/8.45 new_compare5(xuu5000, xuu400, ty_Float) -> new_compare18(xuu5000, xuu400) 22.90/8.45 new_lt22(xuu581, xuu591, ty_Ordering) -> new_lt15(xuu581, xuu591) 22.90/8.45 new_compare6(Double(xuu50000, Pos(xuu500010)), Double(xuu4000, Pos(xuu40010))) -> new_compare14(new_sr(xuu50000, Pos(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) 22.90/8.45 new_esEs37(xuu500001, xuu40001, ty_Bool) -> new_esEs21(xuu500001, xuu40001) 22.90/8.45 new_ltEs18(Right(xuu580), Right(xuu590), fg, app(ty_Ratio, eeb)) -> new_ltEs7(xuu580, xuu590, eeb) 22.90/8.45 new_esEs5(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.45 new_lt12(xuu70, xuu73, ty_Ordering) -> new_lt15(xuu70, xuu73) 22.90/8.45 new_compare113(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, xuu178, dah, dba, dbb) -> new_compare116(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, dah, dba, dbb) 22.90/8.45 new_esEs7(xuu50002, xuu4002, ty_Integer) -> new_esEs19(xuu50002, xuu4002) 22.90/8.45 new_esEs31(xuu581, xuu591, ty_@0) -> new_esEs24(xuu581, xuu591) 22.90/8.45 new_lt11(xuu69, xuu72, app(ty_Ratio, bee)) -> new_lt7(xuu69, xuu72, bee) 22.90/8.45 new_lt11(xuu69, xuu72, app(app(ty_@2, bef), beg)) -> new_lt13(xuu69, xuu72, bef, beg) 22.90/8.45 new_esEs36(xuu500002, xuu40002, app(ty_Ratio, fca)) -> new_esEs22(xuu500002, xuu40002, fca) 22.90/8.45 new_compare5(xuu5000, xuu400, app(app(ty_@2, bcg), bch)) -> new_compare8(xuu5000, xuu400, bcg, bch) 22.90/8.45 new_esEs5(xuu50000, xuu4000, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs23(xuu50000, xuu4000, dae, daf, dag) 22.90/8.45 new_esEs28(xuu70, xuu73, ty_Double) -> new_esEs15(xuu70, xuu73) 22.90/8.45 new_esEs11(xuu50000, xuu4000, app(ty_Ratio, ea)) -> new_esEs22(xuu50000, xuu4000, ea) 22.90/8.45 new_esEs10(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.45 new_primPlusNat0(Zero, xuu5000100) -> Succ(xuu5000100) 22.90/8.45 new_esEs29(xuu69, xuu72, app(app(ty_Either, bfe), bff)) -> new_esEs14(xuu69, xuu72, bfe, bff) 22.90/8.45 new_esEs38(xuu500000, xuu40000, ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.45 new_ltEs24(xuu100, xuu102, app(ty_Ratio, ffe)) -> new_ltEs7(xuu100, xuu102, ffe) 22.90/8.45 new_esEs29(xuu69, xuu72, ty_Bool) -> new_esEs21(xuu69, xuu72) 22.90/8.45 new_esEs7(xuu50002, xuu4002, ty_Double) -> new_esEs15(xuu50002, xuu4002) 22.90/8.45 new_esEs8(xuu50001, xuu4001, app(ty_Maybe, ehb)) -> new_esEs18(xuu50001, xuu4001, ehb) 22.90/8.45 new_esEs29(xuu69, xuu72, app(ty_Maybe, beh)) -> new_esEs18(xuu69, xuu72, beh) 22.90/8.45 new_fsEs(xuu190) -> new_not(new_esEs13(xuu190, GT)) 22.90/8.45 new_esEs31(xuu581, xuu591, app(ty_Maybe, cef)) -> new_esEs18(xuu581, xuu591, cef) 22.90/8.45 new_compare16(:(xuu50000, xuu50001), :(xuu4000, xuu4001), bde) -> new_primCompAux1(xuu50000, xuu4000, xuu50001, xuu4001, bde) 22.90/8.45 new_esEs14(Right(xuu500000), Right(xuu40000), hd, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs23(xuu500000, xuu40000, bad, bae, baf) 22.90/8.45 new_lt11(xuu69, xuu72, ty_Integer) -> new_lt14(xuu69, xuu72) 22.90/8.45 new_esEs32(xuu580, xuu590, ty_Integer) -> new_esEs19(xuu580, xuu590) 22.90/8.45 new_lt11(xuu69, xuu72, ty_Int) -> new_lt8(xuu69, xuu72) 22.90/8.45 new_esEs4(xuu50001, xuu4001, app(ty_[], chd)) -> new_esEs20(xuu50001, xuu4001, chd) 22.90/8.45 new_ltEs9(Just(xuu580), Just(xuu590), ty_@0) -> new_ltEs5(xuu580, xuu590) 22.90/8.45 new_ltEs18(Left(xuu580), Left(xuu590), ty_Float, fh) -> new_ltEs17(xuu580, xuu590) 22.90/8.45 new_esEs35(xuu500000, xuu40000, ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.45 new_esEs27(xuu500000, xuu40000, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.45 new_esEs31(xuu581, xuu591, app(app(ty_@2, ced), cee)) -> new_esEs16(xuu581, xuu591, ced, cee) 22.90/8.45 new_ltEs9(Just(xuu580), Just(xuu590), ty_Integer) -> new_ltEs11(xuu580, xuu590) 22.90/8.45 new_esEs9(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.45 new_primCompAux00(xuu37, xuu38, EQ, ty_@0) -> new_compare17(xuu37, xuu38) 22.90/8.45 new_esEs33(xuu500001, xuu40001, ty_Integer) -> new_esEs19(xuu500001, xuu40001) 22.90/8.45 new_esEs29(xuu69, xuu72, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs23(xuu69, xuu72, bfa, bfb, bfc) 22.90/8.45 new_lt20(xuu580, xuu590, ty_Float) -> new_lt18(xuu580, xuu590) 22.90/8.45 new_esEs10(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.45 new_esEs36(xuu500002, xuu40002, ty_Ordering) -> new_esEs13(xuu500002, xuu40002) 22.90/8.45 new_ltEs19(xuu71, xuu74, app(ty_[], bhh)) -> new_ltEs16(xuu71, xuu74, bhh) 22.90/8.45 new_esEs8(xuu50001, xuu4001, ty_@0) -> new_esEs24(xuu50001, xuu4001) 22.90/8.45 new_esEs18(Nothing, Nothing, dac) -> True 22.90/8.45 new_compare12(Char(xuu50000), Char(xuu4000)) -> new_primCmpNat0(xuu50000, xuu4000) 22.90/8.45 new_ltEs20(xuu581, xuu591, app(app(ty_@2, cbh), cca)) -> new_ltEs8(xuu581, xuu591, cbh, cca) 22.90/8.45 new_esEs31(xuu581, xuu591, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs23(xuu581, xuu591, ceg, ceh, cfa) 22.90/8.45 new_primMulInt(Neg(xuu40000), Neg(xuu500010)) -> Pos(new_primMulNat0(xuu40000, xuu500010)) 22.90/8.45 new_primCmpInt(Pos(Zero), Pos(Succ(xuu40000))) -> new_primCmpNat0(Zero, Succ(xuu40000)) 22.90/8.45 new_esEs18(Nothing, Just(xuu40000), dac) -> False 22.90/8.45 new_esEs18(Just(xuu500000), Nothing, dac) -> False 22.90/8.45 new_esEs37(xuu500001, xuu40001, ty_Char) -> new_esEs12(xuu500001, xuu40001) 22.90/8.45 new_ltEs13(GT, EQ) -> False 22.90/8.45 new_esEs14(Left(xuu500000), Left(xuu40000), app(app(ty_@2, gd), ge), ga) -> new_esEs16(xuu500000, xuu40000, gd, ge) 22.90/8.45 new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_@2, bba), bbb)) -> new_compare8(xuu37, xuu38, bba, bbb) 22.90/8.45 new_lt12(xuu70, xuu73, app(ty_[], bgf)) -> new_lt16(xuu70, xuu73, bgf) 22.90/8.45 new_compare18(Float(xuu50000, Pos(xuu500010)), Float(xuu4000, Pos(xuu40010))) -> new_compare14(new_sr(xuu50000, Pos(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) 22.90/8.45 new_esEs30(xuu580, xuu590, ty_Double) -> new_esEs15(xuu580, xuu590) 22.90/8.45 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.45 new_esEs34(xuu500000, xuu40000, ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.45 new_esEs7(xuu50002, xuu4002, app(app(ty_@2, eff), efg)) -> new_esEs16(xuu50002, xuu4002, eff, efg) 22.90/8.45 new_esEs39(xuu99, xuu101, ty_Bool) -> new_esEs21(xuu99, xuu101) 22.90/8.45 new_compare115(xuu156, xuu157, xuu158, xuu159, True, cac, cad) -> LT 22.90/8.45 new_esEs39(xuu99, xuu101, app(app(ty_Either, ffc), ffd)) -> new_esEs14(xuu99, xuu101, ffc, ffd) 22.90/8.45 new_esEs38(xuu500000, xuu40000, app(ty_[], fed)) -> new_esEs20(xuu500000, xuu40000, fed) 22.90/8.45 new_esEs35(xuu500000, xuu40000, app(app(ty_@2, ebh), eca)) -> new_esEs16(xuu500000, xuu40000, ebh, eca) 22.90/8.45 new_esEs39(xuu99, xuu101, ty_Int) -> new_esEs25(xuu99, xuu101) 22.90/8.45 new_primMulInt(Pos(xuu40000), Neg(xuu500010)) -> Neg(new_primMulNat0(xuu40000, xuu500010)) 22.90/8.45 new_primMulInt(Neg(xuu40000), Pos(xuu500010)) -> Neg(new_primMulNat0(xuu40000, xuu500010)) 22.90/8.45 new_ltEs21(xuu582, xuu592, app(ty_Ratio, cfe)) -> new_ltEs7(xuu582, xuu592, cfe) 22.90/8.45 new_ltEs18(Right(xuu580), Right(xuu590), fg, ty_Int) -> new_ltEs14(xuu580, xuu590) 22.90/8.45 new_esEs28(xuu70, xuu73, app(ty_Maybe, bgb)) -> new_esEs18(xuu70, xuu73, bgb) 22.90/8.45 new_lt22(xuu581, xuu591, app(app(ty_@2, ced), cee)) -> new_lt13(xuu581, xuu591, ced, cee) 22.90/8.45 new_sr0(Integer(xuu40000), Integer(xuu500010)) -> Integer(new_primMulInt(xuu40000, xuu500010)) 22.90/8.45 new_esEs35(xuu500000, xuu40000, ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.45 new_ltEs23(xuu87, xuu88, ty_Char) -> new_ltEs12(xuu87, xuu88) 22.90/8.45 new_lt22(xuu581, xuu591, app(ty_Ratio, cec)) -> new_lt7(xuu581, xuu591, cec) 22.90/8.45 new_esEs36(xuu500002, xuu40002, app(ty_[], fbh)) -> new_esEs20(xuu500002, xuu40002, fbh) 22.90/8.45 new_compare18(Float(xuu50000, Neg(xuu500010)), Float(xuu4000, Neg(xuu40010))) -> new_compare14(new_sr(xuu50000, Neg(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) 22.90/8.45 new_esEs6(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.45 new_esEs28(xuu70, xuu73, ty_@0) -> new_esEs24(xuu70, xuu73) 22.90/8.45 new_ltEs9(Nothing, Just(xuu590), fa) -> True 22.90/8.45 new_ltEs24(xuu100, xuu102, app(app(ty_Either, fge), fgf)) -> new_ltEs18(xuu100, xuu102, fge, fgf) 22.90/8.45 new_asAs(True, xuu117) -> xuu117 22.90/8.45 new_esEs27(xuu500000, xuu40000, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.45 new_esEs5(xuu50000, xuu4000, app(app(ty_Either, hd), ga)) -> new_esEs14(xuu50000, xuu4000, hd, ga) 22.90/8.45 new_esEs31(xuu581, xuu591, ty_Double) -> new_esEs15(xuu581, xuu591) 22.90/8.45 new_esEs29(xuu69, xuu72, ty_Float) -> new_esEs17(xuu69, xuu72) 22.90/8.45 new_esEs8(xuu50001, xuu4001, ty_Ordering) -> new_esEs13(xuu50001, xuu4001) 22.90/8.45 new_ltEs23(xuu87, xuu88, ty_Integer) -> new_ltEs11(xuu87, xuu88) 22.90/8.45 new_esEs4(xuu50001, xuu4001, ty_Double) -> new_esEs15(xuu50001, xuu4001) 22.90/8.45 new_ltEs18(Right(xuu580), Right(xuu590), fg, ty_Bool) -> new_ltEs15(xuu580, xuu590) 22.90/8.45 new_ltEs6(xuu58, xuu59, ty_Bool) -> new_ltEs15(xuu58, xuu59) 22.90/8.45 new_esEs39(xuu99, xuu101, app(ty_Ratio, bce)) -> new_esEs22(xuu99, xuu101, bce) 22.90/8.45 new_ltEs21(xuu582, xuu592, ty_Ordering) -> new_ltEs13(xuu582, xuu592) 22.90/8.45 new_compare7(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), ty_Integer) -> new_compare11(new_sr0(xuu50000, xuu4001), new_sr0(xuu4000, xuu50001)) 22.90/8.45 new_ltEs24(xuu100, xuu102, ty_Int) -> new_ltEs14(xuu100, xuu102) 22.90/8.45 new_esEs10(xuu50000, xuu4000, app(app(ty_@2, cb), cc)) -> new_esEs16(xuu50000, xuu4000, cb, cc) 22.90/8.45 new_esEs11(xuu50000, xuu4000, app(ty_[], dh)) -> new_esEs20(xuu50000, xuu4000, dh) 22.90/8.45 new_esEs30(xuu580, xuu590, ty_Float) -> new_esEs17(xuu580, xuu590) 22.90/8.45 new_ltEs23(xuu87, xuu88, app(ty_Maybe, dhc)) -> new_ltEs9(xuu87, xuu88, dhc) 22.90/8.45 new_compare16([], [], bde) -> EQ 22.90/8.45 new_sr(xuu4000, xuu50001) -> new_primMulInt(xuu4000, xuu50001) 22.90/8.45 new_lt21(xuu580, xuu590, ty_Char) -> new_lt10(xuu580, xuu590) 22.90/8.45 new_compare19(Left(xuu50000), Right(xuu4000), bf, bg) -> LT 22.90/8.45 new_primMulNat0(Zero, Zero) -> Zero 22.90/8.45 new_esEs39(xuu99, xuu101, ty_Double) -> new_esEs15(xuu99, xuu101) 22.90/8.45 new_ltEs6(xuu58, xuu59, ty_Char) -> new_ltEs12(xuu58, xuu59) 22.90/8.45 new_lt20(xuu580, xuu590, app(ty_[], cbd)) -> new_lt16(xuu580, xuu590, cbd) 22.90/8.45 new_esEs31(xuu581, xuu591, app(ty_[], cfb)) -> new_esEs20(xuu581, xuu591, cfb) 22.90/8.45 new_esEs7(xuu50002, xuu4002, app(ty_Ratio, egb)) -> new_esEs22(xuu50002, xuu4002, egb) 22.90/8.45 new_ltEs19(xuu71, xuu74, app(ty_Ratio, bha)) -> new_ltEs7(xuu71, xuu74, bha) 22.90/8.45 new_esEs4(xuu50001, xuu4001, app(app(ty_@2, cha), chb)) -> new_esEs16(xuu50001, xuu4001, cha, chb) 22.90/8.45 new_ltEs22(xuu80, xuu81, app(ty_Maybe, dff)) -> new_ltEs9(xuu80, xuu81, dff) 22.90/8.45 new_esEs29(xuu69, xuu72, ty_@0) -> new_esEs24(xuu69, xuu72) 22.90/8.45 new_esEs5(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.45 new_esEs7(xuu50002, xuu4002, ty_Int) -> new_esEs25(xuu50002, xuu4002) 22.90/8.45 new_esEs39(xuu99, xuu101, app(app(ty_@2, ebd), ebe)) -> new_esEs16(xuu99, xuu101, ebd, ebe) 22.90/8.45 new_esEs9(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.45 new_ltEs13(EQ, LT) -> False 22.90/8.45 new_ltEs18(Right(xuu580), Right(xuu590), fg, app(app(app(ty_@3, eef), eeg), eeh)) -> new_ltEs10(xuu580, xuu590, eef, eeg, eeh) 22.90/8.45 new_esEs30(xuu580, xuu590, ty_@0) -> new_esEs24(xuu580, xuu590) 22.90/8.45 new_ltEs18(Left(xuu580), Left(xuu590), app(app(app(ty_@3, edd), ede), edf), fh) -> new_ltEs10(xuu580, xuu590, edd, ede, edf) 22.90/8.45 new_primEqInt(Neg(Succ(xuu5000000)), Neg(Zero)) -> False 22.90/8.45 new_primEqInt(Neg(Zero), Neg(Succ(xuu400000))) -> False 22.90/8.45 new_lt20(xuu580, xuu590, ty_Double) -> new_lt6(xuu580, xuu590) 22.90/8.45 new_primEqInt(Pos(Succ(xuu5000000)), Pos(Succ(xuu400000))) -> new_primEqNat0(xuu5000000, xuu400000) 22.90/8.45 new_esEs39(xuu99, xuu101, ty_Ordering) -> new_esEs13(xuu99, xuu101) 22.90/8.45 new_compare114(xuu156, xuu157, xuu158, xuu159, False, xuu161, cac, cad) -> new_compare115(xuu156, xuu157, xuu158, xuu159, xuu161, cac, cad) 22.90/8.45 new_ltEs6(xuu58, xuu59, ty_@0) -> new_ltEs5(xuu58, xuu59) 22.90/8.45 new_ltEs23(xuu87, xuu88, ty_Int) -> new_ltEs14(xuu87, xuu88) 22.90/8.45 new_esEs34(xuu500000, xuu40000, app(app(ty_@2, dea), deb)) -> new_esEs16(xuu500000, xuu40000, dea, deb) 22.90/8.45 new_ltEs18(Right(xuu580), Right(xuu590), fg, ty_Char) -> new_ltEs12(xuu580, xuu590) 22.90/8.45 new_esEs14(Right(xuu500000), Right(xuu40000), hd, ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.45 new_ltEs19(xuu71, xuu74, ty_Ordering) -> new_ltEs13(xuu71, xuu74) 22.90/8.45 new_esEs18(Just(xuu500000), Just(xuu40000), app(app(ty_@2, fha), fhb)) -> new_esEs16(xuu500000, xuu40000, fha, fhb) 22.90/8.45 new_esEs4(xuu50001, xuu4001, ty_Ordering) -> new_esEs13(xuu50001, xuu4001) 22.90/8.45 new_primEqInt(Pos(Succ(xuu5000000)), Neg(xuu40000)) -> False 22.90/8.45 new_primEqInt(Neg(Succ(xuu5000000)), Pos(xuu40000)) -> False 22.90/8.45 new_ltEs20(xuu581, xuu591, app(ty_Ratio, cbg)) -> new_ltEs7(xuu581, xuu591, cbg) 22.90/8.45 new_ltEs18(Left(xuu580), Left(xuu590), ty_Double, fh) -> new_ltEs4(xuu580, xuu590) 22.90/8.45 new_esEs10(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.45 new_primCmpInt(Neg(Zero), Neg(Succ(xuu40000))) -> new_primCmpNat0(Succ(xuu40000), Zero) 22.90/8.45 new_esEs8(xuu50001, xuu4001, app(ty_Ratio, ehd)) -> new_esEs22(xuu50001, xuu4001, ehd) 22.90/8.45 new_esEs13(LT, GT) -> False 22.90/8.45 new_esEs13(GT, LT) -> False 22.90/8.45 new_esEs20(:(xuu500000, xuu500001), [], dad) -> False 22.90/8.45 new_esEs20([], :(xuu40000, xuu40001), dad) -> False 22.90/8.45 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 22.90/8.45 new_esEs34(xuu500000, xuu40000, ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.45 new_esEs35(xuu500000, xuu40000, app(ty_[], ecc)) -> new_esEs20(xuu500000, xuu40000, ecc) 22.90/8.45 new_ltEs20(xuu581, xuu591, ty_Ordering) -> new_ltEs13(xuu581, xuu591) 22.90/8.45 new_esEs5(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.45 new_primCompAux00(xuu37, xuu38, LT, bag) -> LT 22.90/8.45 new_compare113(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, False, xuu178, dah, dba, dbb) -> new_compare116(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, xuu178, dah, dba, dbb) 22.90/8.45 new_ltEs9(Just(xuu580), Just(xuu590), app(ty_Ratio, eab)) -> new_ltEs7(xuu580, xuu590, eab) 22.90/8.45 new_lt21(xuu580, xuu590, app(app(ty_@2, cdb), cdc)) -> new_lt13(xuu580, xuu590, cdb, cdc) 22.90/8.45 new_lt12(xuu70, xuu73, app(ty_Maybe, bgb)) -> new_lt9(xuu70, xuu73, bgb) 22.90/8.45 new_esEs11(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.45 new_lt11(xuu69, xuu72, ty_@0) -> new_lt17(xuu69, xuu72) 22.90/8.45 new_compare112(xuu142, xuu143, False, bdf, bdg) -> GT 22.90/8.45 new_ltEs24(xuu100, xuu102, ty_Char) -> new_ltEs12(xuu100, xuu102) 22.90/8.45 new_esEs38(xuu500000, xuu40000, app(ty_Ratio, fee)) -> new_esEs22(xuu500000, xuu40000, fee) 22.90/8.45 new_esEs28(xuu70, xuu73, ty_Integer) -> new_esEs19(xuu70, xuu73) 22.90/8.45 new_ltEs18(Right(xuu580), Right(xuu590), fg, ty_Integer) -> new_ltEs11(xuu580, xuu590) 22.90/8.45 new_esEs31(xuu581, xuu591, ty_Float) -> new_esEs17(xuu581, xuu591) 22.90/8.45 new_not(False) -> True 22.90/8.45 new_lt7(xuu99, xuu101, bce) -> new_esEs13(new_compare7(xuu99, xuu101, bce), LT) 22.90/8.45 new_esEs36(xuu500002, xuu40002, app(app(ty_@2, fbe), fbf)) -> new_esEs16(xuu500002, xuu40002, fbe, fbf) 22.90/8.45 new_esEs9(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.45 new_ltEs6(xuu58, xuu59, ty_Integer) -> new_ltEs11(xuu58, xuu59) 22.90/8.45 new_ltEs20(xuu581, xuu591, app(app(app(ty_@3, ccc), ccd), cce)) -> new_ltEs10(xuu581, xuu591, ccc, ccd, cce) 22.90/8.45 new_lt9(xuu99, xuu101, bea) -> new_esEs13(new_compare9(xuu99, xuu101, bea), LT) 22.90/8.45 new_esEs4(xuu50001, xuu4001, app(ty_Ratio, che)) -> new_esEs22(xuu50001, xuu4001, che) 22.90/8.45 new_ltEs24(xuu100, xuu102, ty_Integer) -> new_ltEs11(xuu100, xuu102) 22.90/8.45 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.45 new_ltEs7(xuu58, xuu59, ef) -> new_fsEs(new_compare7(xuu58, xuu59, ef)) 22.90/8.45 new_esEs38(xuu500000, xuu40000, app(app(ty_@2, fea), feb)) -> new_esEs16(xuu500000, xuu40000, fea, feb) 22.90/8.45 new_esEs14(Right(xuu500000), Right(xuu40000), hd, app(ty_Ratio, bac)) -> new_esEs22(xuu500000, xuu40000, bac) 22.90/8.45 new_ltEs19(xuu71, xuu74, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_ltEs10(xuu71, xuu74, bhe, bhf, bhg) 22.90/8.45 new_ltEs10(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), fb, fc, fd) -> new_pePe(new_lt21(xuu580, xuu590, fb), new_asAs(new_esEs32(xuu580, xuu590, fb), new_pePe(new_lt22(xuu581, xuu591, fc), new_asAs(new_esEs31(xuu581, xuu591, fc), new_ltEs21(xuu582, xuu592, fd))))) 22.90/8.45 new_esEs14(Right(xuu500000), Right(xuu40000), hd, app(app(ty_Either, he), hf)) -> new_esEs14(xuu500000, xuu40000, he, hf) 22.90/8.45 new_primCompAux00(xuu37, xuu38, EQ, app(ty_[], bbg)) -> new_compare16(xuu37, xuu38, bbg) 22.90/8.45 new_ltEs22(xuu80, xuu81, app(app(app(ty_@3, dfg), dfh), dga)) -> new_ltEs10(xuu80, xuu81, dfg, dfh, dga) 22.90/8.45 new_esEs8(xuu50001, xuu4001, ty_Bool) -> new_esEs21(xuu50001, xuu4001) 22.90/8.45 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 22.90/8.45 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 22.90/8.45 new_ltEs23(xuu87, xuu88, ty_Bool) -> new_ltEs15(xuu87, xuu88) 22.90/8.45 new_lt12(xuu70, xuu73, ty_Float) -> new_lt18(xuu70, xuu73) 22.90/8.45 new_ltEs24(xuu100, xuu102, ty_@0) -> new_ltEs5(xuu100, xuu102) 22.90/8.45 new_esEs8(xuu50001, xuu4001, app(app(ty_Either, egf), egg)) -> new_esEs14(xuu50001, xuu4001, egf, egg) 22.90/8.45 new_lt12(xuu70, xuu73, app(app(ty_Either, bgg), bgh)) -> new_lt19(xuu70, xuu73, bgg, bgh) 22.90/8.45 new_lt21(xuu580, xuu590, ty_Double) -> new_lt6(xuu580, xuu590) 22.90/8.45 new_esEs8(xuu50001, xuu4001, ty_Int) -> new_esEs25(xuu50001, xuu4001) 22.90/8.45 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 22.90/8.45 new_compare6(Double(xuu50000, Pos(xuu500010)), Double(xuu4000, Neg(xuu40010))) -> new_compare14(new_sr(xuu50000, Pos(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) 22.90/8.45 new_compare6(Double(xuu50000, Neg(xuu500010)), Double(xuu4000, Pos(xuu40010))) -> new_compare14(new_sr(xuu50000, Neg(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) 22.90/8.45 new_primMulNat0(Succ(xuu400000), Succ(xuu5000100)) -> new_primPlusNat0(new_primMulNat0(xuu400000, Succ(xuu5000100)), xuu5000100) 22.90/8.45 new_esEs14(Left(xuu500000), Left(xuu40000), app(ty_Maybe, gf), ga) -> new_esEs18(xuu500000, xuu40000, gf) 22.90/8.45 new_ltEs21(xuu582, xuu592, ty_Integer) -> new_ltEs11(xuu582, xuu592) 22.90/8.45 new_lt22(xuu581, xuu591, ty_Double) -> new_lt6(xuu581, xuu591) 22.90/8.45 new_ltEs13(LT, EQ) -> True 22.90/8.45 new_ltEs21(xuu582, xuu592, ty_Int) -> new_ltEs14(xuu582, xuu592) 22.90/8.45 new_esEs16(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), daa, dab) -> new_asAs(new_esEs34(xuu500000, xuu40000, daa), new_esEs33(xuu500001, xuu40001, dab)) 22.90/8.45 new_ltEs22(xuu80, xuu81, ty_@0) -> new_ltEs5(xuu80, xuu81) 22.90/8.45 new_ltEs23(xuu87, xuu88, ty_Ordering) -> new_ltEs13(xuu87, xuu88) 22.90/8.45 new_esEs6(xuu50000, xuu4000, app(ty_Ratio, dca)) -> new_esEs22(xuu50000, xuu4000, dca) 22.90/8.45 new_compare25(xuu87, xuu88, False, dgf, dgg) -> new_compare112(xuu87, xuu88, new_ltEs23(xuu87, xuu88, dgg), dgf, dgg) 22.90/8.45 new_esEs32(xuu580, xuu590, app(ty_[], cdh)) -> new_esEs20(xuu580, xuu590, cdh) 22.90/8.45 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 22.90/8.45 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 22.90/8.45 new_lt23(xuu99, xuu101, ty_Double) -> new_lt6(xuu99, xuu101) 22.90/8.45 new_compare15(True, True) -> EQ 22.90/8.45 new_compare110(xuu135, xuu136, False, bd, be) -> GT 22.90/8.45 new_ltEs21(xuu582, xuu592, app(app(app(ty_@3, cga), cgb), cgc)) -> new_ltEs10(xuu582, xuu592, cga, cgb, cgc) 22.90/8.45 new_esEs33(xuu500001, xuu40001, app(ty_[], ddb)) -> new_esEs20(xuu500001, xuu40001, ddb) 22.90/8.45 new_primEqNat0(Zero, Zero) -> True 22.90/8.45 new_ltEs9(Just(xuu580), Nothing, fa) -> False 22.90/8.45 new_esEs7(xuu50002, xuu4002, ty_Ordering) -> new_esEs13(xuu50002, xuu4002) 22.90/8.45 new_esEs9(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.45 new_ltEs9(Nothing, Nothing, fa) -> True 22.90/8.45 new_compare5(xuu5000, xuu400, app(ty_[], bde)) -> new_compare16(xuu5000, xuu400, bde) 22.90/8.45 new_esEs36(xuu500002, xuu40002, ty_Double) -> new_esEs15(xuu500002, xuu40002) 22.90/8.45 new_ltEs23(xuu87, xuu88, ty_@0) -> new_ltEs5(xuu87, xuu88) 22.90/8.45 new_esEs37(xuu500001, xuu40001, app(app(ty_@2, fcg), fch)) -> new_esEs16(xuu500001, xuu40001, fcg, fch) 22.90/8.45 new_ltEs22(xuu80, xuu81, ty_Char) -> new_ltEs12(xuu80, xuu81) 22.90/8.45 new_ltEs24(xuu100, xuu102, ty_Bool) -> new_ltEs15(xuu100, xuu102) 22.90/8.45 new_ltEs22(xuu80, xuu81, ty_Ordering) -> new_ltEs13(xuu80, xuu81) 22.90/8.45 new_compare18(Float(xuu50000, Pos(xuu500010)), Float(xuu4000, Neg(xuu40010))) -> new_compare14(new_sr(xuu50000, Pos(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) 22.90/8.45 new_compare18(Float(xuu50000, Neg(xuu500010)), Float(xuu4000, Pos(xuu40010))) -> new_compare14(new_sr(xuu50000, Neg(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) 22.90/8.45 new_esEs10(xuu50000, xuu4000, app(ty_[], ce)) -> new_esEs20(xuu50000, xuu4000, ce) 22.90/8.45 new_compare9(Nothing, Nothing, bda) -> EQ 22.90/8.45 new_asAs(False, xuu117) -> False 22.90/8.45 new_esEs13(LT, EQ) -> False 22.90/8.45 new_esEs13(EQ, LT) -> False 22.90/8.45 new_ltEs19(xuu71, xuu74, ty_Int) -> new_ltEs14(xuu71, xuu74) 22.90/8.45 new_ltEs24(xuu100, xuu102, app(ty_Maybe, ffh)) -> new_ltEs9(xuu100, xuu102, ffh) 22.90/8.45 new_esEs9(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.45 new_esEs9(xuu50000, xuu4000, app(app(ty_Either, ehh), faa)) -> new_esEs14(xuu50000, xuu4000, ehh, faa) 22.90/8.45 new_esEs5(xuu50000, xuu4000, app(ty_Ratio, bdh)) -> new_esEs22(xuu50000, xuu4000, bdh) 22.90/8.45 new_ltEs6(xuu58, xuu59, ty_Int) -> new_ltEs14(xuu58, xuu59) 22.90/8.45 new_esEs26(xuu500001, xuu40001, ty_Integer) -> new_esEs19(xuu500001, xuu40001) 22.90/8.45 new_esEs28(xuu70, xuu73, ty_Float) -> new_esEs17(xuu70, xuu73) 22.90/8.45 new_ltEs22(xuu80, xuu81, ty_Integer) -> new_ltEs11(xuu80, xuu81) 22.90/8.45 new_esEs7(xuu50002, xuu4002, ty_Char) -> new_esEs12(xuu50002, xuu4002) 22.90/8.45 new_esEs15(Double(xuu500000, xuu500001), Double(xuu40000, xuu40001)) -> new_esEs25(new_sr(xuu500000, xuu40001), new_sr(xuu500001, xuu40000)) 22.90/8.45 new_ltEs20(xuu581, xuu591, ty_Int) -> new_ltEs14(xuu581, xuu591) 22.90/8.45 22.90/8.45 The set Q consists of the following terms: 22.90/8.45 22.90/8.45 new_esEs39(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_esEs20([], :(x0, x1), x2) 22.90/8.45 new_esEs14(Left(x0), Right(x1), x2, x3) 22.90/8.45 new_esEs14(Right(x0), Left(x1), x2, x3) 22.90/8.45 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.45 new_ltEs22(x0, x1, ty_Integer) 22.90/8.45 new_lt20(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_esEs10(x0, x1, ty_Char) 22.90/8.45 new_primPlusNat1(Zero, Succ(x0)) 22.90/8.45 new_esEs35(x0, x1, ty_Char) 22.90/8.45 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_esEs6(x0, x1, ty_Char) 22.90/8.45 new_esEs9(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_compare24(x0, x1, True, x2, x3) 22.90/8.45 new_ltEs18(Right(x0), Right(x1), x2, ty_Integer) 22.90/8.45 new_lt12(x0, x1, ty_Float) 22.90/8.45 new_primPlusNat1(Zero, Zero) 22.90/8.45 new_compare114(x0, x1, x2, x3, True, x4, x5, x6) 22.90/8.45 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 22.90/8.45 new_esEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.90/8.45 new_ltEs18(Left(x0), Left(x1), ty_Double, x2) 22.90/8.45 new_ltEs24(x0, x1, ty_Integer) 22.90/8.45 new_esEs17(Float(x0, x1), Float(x2, x3)) 22.90/8.45 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_compare19(Right(x0), Left(x1), x2, x3) 22.90/8.45 new_compare19(Left(x0), Right(x1), x2, x3) 22.90/8.45 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_esEs35(x0, x1, ty_Ordering) 22.90/8.45 new_esEs8(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_primEqInt(Pos(Zero), Pos(Zero)) 22.90/8.45 new_primCompAux00(x0, x1, EQ, ty_Bool) 22.90/8.45 new_esEs38(x0, x1, ty_Float) 22.90/8.45 new_primEqNat0(Succ(x0), Succ(x1)) 22.90/8.45 new_lt21(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_esEs28(x0, x1, ty_Char) 22.90/8.45 new_ltEs13(EQ, EQ) 22.90/8.45 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.45 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.45 new_esEs13(LT, LT) 22.90/8.45 new_esEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.90/8.45 new_esEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.90/8.45 new_ltEs18(Left(x0), Left(x1), ty_Ordering, x2) 22.90/8.45 new_primEqInt(Neg(Zero), Neg(Zero)) 22.90/8.45 new_esEs8(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_lt11(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 22.90/8.45 new_esEs10(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_esEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.90/8.45 new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) 22.90/8.45 new_ltEs22(x0, x1, app(ty_[], x2)) 22.90/8.45 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.45 new_ltEs18(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.90/8.45 new_compare19(Right(x0), Right(x1), x2, x3) 22.90/8.45 new_ltEs15(False, True) 22.90/8.45 new_ltEs15(True, False) 22.90/8.45 new_lt22(x0, x1, ty_Integer) 22.90/8.45 new_esEs14(Left(x0), Left(x1), ty_Bool, x2) 22.90/8.45 new_esEs28(x0, x1, ty_Ordering) 22.90/8.45 new_lt11(x0, x1, ty_Char) 22.90/8.45 new_ltEs24(x0, x1, ty_@0) 22.90/8.45 new_esEs6(x0, x1, ty_Double) 22.90/8.45 new_esEs10(x0, x1, ty_Ordering) 22.90/8.45 new_ltEs24(x0, x1, app(ty_[], x2)) 22.90/8.45 new_esEs10(x0, x1, ty_Double) 22.90/8.45 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.45 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 22.90/8.45 new_ltEs22(x0, x1, ty_@0) 22.90/8.45 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.45 new_ltEs18(Right(x0), Right(x1), x2, ty_Bool) 22.90/8.45 new_compare5(x0, x1, ty_Int) 22.90/8.45 new_lt12(x0, x1, ty_Integer) 22.90/8.45 new_esEs29(x0, x1, ty_Ordering) 22.90/8.45 new_primCompAux00(x0, x1, EQ, ty_Integer) 22.90/8.45 new_ltEs6(x0, x1, ty_Integer) 22.90/8.45 new_esEs32(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_esEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.90/8.45 new_compare15(False, True) 22.90/8.45 new_lt20(x0, x1, ty_Ordering) 22.90/8.45 new_compare15(True, False) 22.90/8.45 new_ltEs24(x0, x1, ty_Float) 22.90/8.45 new_compare5(x0, x1, ty_@0) 22.90/8.45 new_esEs38(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_esEs10(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_primEqInt(Pos(Zero), Neg(Zero)) 22.90/8.45 new_primEqInt(Neg(Zero), Pos(Zero)) 22.90/8.45 new_lt20(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_esEs9(x0, x1, ty_Float) 22.90/8.45 new_ltEs22(x0, x1, ty_Float) 22.90/8.45 new_esEs18(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.90/8.45 new_compare9(Nothing, Nothing, x0) 22.90/8.45 new_ltEs5(x0, x1) 22.90/8.45 new_esEs32(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.45 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.45 new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 22.90/8.45 new_esEs18(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.90/8.45 new_ltEs9(Nothing, Just(x0), x1) 22.90/8.45 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 22.90/8.45 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 22.90/8.45 new_esEs14(Left(x0), Left(x1), ty_@0, x2) 22.90/8.45 new_esEs21(True, True) 22.90/8.45 new_ltEs23(x0, x1, ty_Double) 22.90/8.45 new_asAs(False, x0) 22.90/8.45 new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.45 new_ltEs23(x0, x1, ty_Char) 22.90/8.45 new_esEs14(Left(x0), Left(x1), ty_Int, x2) 22.90/8.45 new_esEs36(x0, x1, ty_Double) 22.90/8.45 new_lt19(x0, x1, x2, x3) 22.90/8.45 new_esEs30(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_esEs7(x0, x1, ty_Ordering) 22.90/8.45 new_esEs9(x0, x1, ty_Integer) 22.90/8.45 new_lt11(x0, x1, ty_Ordering) 22.90/8.45 new_lt23(x0, x1, ty_Double) 22.90/8.45 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_esEs7(x0, x1, ty_Float) 22.90/8.45 new_lt12(x0, x1, ty_Bool) 22.90/8.45 new_ltEs18(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.90/8.45 new_ltEs4(x0, x1) 22.90/8.45 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_esEs9(x0, x1, ty_Bool) 22.90/8.45 new_esEs38(x0, x1, ty_@0) 22.90/8.45 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.45 new_esEs31(x0, x1, app(ty_Ratio, x2)) 22.90/8.45 new_ltEs16(x0, x1, x2) 22.90/8.45 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_esEs28(x0, x1, ty_Double) 22.90/8.45 new_esEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.90/8.45 new_compare9(Nothing, Just(x0), x1) 22.90/8.45 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_ltEs18(Right(x0), Right(x1), x2, ty_Int) 22.90/8.45 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.45 new_esEs18(Just(x0), Just(x1), ty_Int) 22.90/8.45 new_esEs36(x0, x1, ty_Ordering) 22.90/8.45 new_compare25(x0, x1, True, x2, x3) 22.90/8.45 new_lt11(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_lt18(x0, x1) 22.90/8.45 new_esEs38(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_ltEs24(x0, x1, ty_Int) 22.90/8.45 new_ltEs20(x0, x1, ty_Double) 22.90/8.45 new_ltEs9(Just(x0), Just(x1), ty_Char) 22.90/8.45 new_esEs5(x0, x1, ty_Double) 22.90/8.45 new_ltEs24(x0, x1, ty_Bool) 22.90/8.45 new_ltEs18(Right(x0), Right(x1), x2, ty_Float) 22.90/8.45 new_esEs37(x0, x1, ty_Bool) 22.90/8.45 new_esEs30(x0, x1, ty_Bool) 22.90/8.45 new_compare5(x0, x1, ty_Bool) 22.90/8.45 new_esEs33(x0, x1, ty_Integer) 22.90/8.45 new_esEs8(x0, x1, app(ty_[], x2)) 22.90/8.45 new_esEs5(x0, x1, ty_@0) 22.90/8.45 new_esEs37(x0, x1, ty_Float) 22.90/8.45 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_lt17(x0, x1) 22.90/8.45 new_esEs34(x0, x1, ty_Float) 22.90/8.45 new_esEs7(x0, x1, ty_Char) 22.90/8.45 new_ltEs12(x0, x1) 22.90/8.45 new_esEs30(x0, x1, ty_Float) 22.90/8.45 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.45 new_ltEs17(x0, x1) 22.90/8.45 new_esEs24(@0, @0) 22.90/8.45 new_esEs33(x0, x1, ty_Ordering) 22.90/8.45 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 22.90/8.45 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.45 new_ltEs9(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.90/8.45 new_ltEs18(Left(x0), Left(x1), ty_Char, x2) 22.90/8.45 new_esEs8(x0, x1, ty_Double) 22.90/8.45 new_esEs14(Left(x0), Left(x1), ty_Integer, x2) 22.90/8.45 new_compare5(x0, x1, ty_Integer) 22.90/8.45 new_primCompAux00(x0, x1, EQ, ty_Float) 22.90/8.45 new_ltEs6(x0, x1, ty_@0) 22.90/8.46 new_esEs39(x0, x1, ty_Ordering) 22.90/8.46 new_esEs7(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs38(x0, x1, ty_Double) 22.90/8.46 new_ltEs19(x0, x1, ty_Int) 22.90/8.46 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs9(x0, x1, ty_Ordering) 22.90/8.46 new_compare12(Char(x0), Char(x1)) 22.90/8.46 new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 22.90/8.46 new_esEs4(x0, x1, ty_Float) 22.90/8.46 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_lt22(x0, x1, ty_@0) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, ty_Int) 22.90/8.46 new_ltEs9(Just(x0), Just(x1), app(ty_[], x2)) 22.90/8.46 new_esEs37(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_compare27(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 22.90/8.46 new_esEs13(LT, EQ) 22.90/8.46 new_esEs13(EQ, LT) 22.90/8.46 new_lt23(x0, x1, app(ty_[], x2)) 22.90/8.46 new_ltEs20(x0, x1, ty_@0) 22.90/8.46 new_primCmpNat0(Succ(x0), Zero) 22.90/8.46 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_primCompAux00(x0, x1, EQ, ty_Int) 22.90/8.46 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_lt20(x0, x1, ty_Double) 22.90/8.46 new_esEs29(x0, x1, ty_Char) 22.90/8.46 new_esEs11(x0, x1, ty_Char) 22.90/8.46 new_ltEs18(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.90/8.46 new_ltEs20(x0, x1, ty_Char) 22.90/8.46 new_esEs13(EQ, EQ) 22.90/8.46 new_esEs5(x0, x1, ty_Char) 22.90/8.46 new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 22.90/8.46 new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 22.90/8.46 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 22.90/8.46 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs36(x0, x1, ty_@0) 22.90/8.46 new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 22.90/8.46 new_esEs38(x0, x1, ty_Int) 22.90/8.46 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 22.90/8.46 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs11(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs21(False, True) 22.90/8.46 new_esEs21(True, False) 22.90/8.46 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 22.90/8.46 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs33(x0, x1, ty_@0) 22.90/8.46 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_esEs5(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs32(x0, x1, ty_Char) 22.90/8.46 new_esEs29(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs11(x0, x1, ty_Int) 22.90/8.46 new_esEs8(x0, x1, ty_Char) 22.90/8.46 new_esEs31(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs8(x0, x1, ty_@0) 22.90/8.46 new_esEs32(x0, x1, ty_Int) 22.90/8.46 new_ltEs21(x0, x1, ty_Bool) 22.90/8.46 new_esEs34(x0, x1, ty_Ordering) 22.90/8.46 new_esEs9(x0, x1, app(ty_[], x2)) 22.90/8.46 new_compare13(GT, GT) 22.90/8.46 new_compare13(EQ, LT) 22.90/8.46 new_compare13(LT, EQ) 22.90/8.46 new_esEs7(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs29(x0, x1, ty_Float) 22.90/8.46 new_lt20(x0, x1, ty_Integer) 22.90/8.46 new_ltEs23(x0, x1, ty_Float) 22.90/8.46 new_ltEs23(x0, x1, ty_Integer) 22.90/8.46 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs39(x0, x1, ty_Double) 22.90/8.46 new_esEs8(x0, x1, ty_Int) 22.90/8.46 new_lt12(x0, x1, ty_Int) 22.90/8.46 new_esEs6(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.90/8.46 new_esEs18(Just(x0), Just(x1), app(ty_[], x2)) 22.90/8.46 new_esEs18(Nothing, Nothing, x0) 22.90/8.46 new_lt12(x0, x1, app(ty_[], x2)) 22.90/8.46 new_ltEs21(x0, x1, ty_Int) 22.90/8.46 new_esEs30(x0, x1, ty_Ordering) 22.90/8.46 new_not(True) 22.90/8.46 new_lt21(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs32(x0, x1, ty_Double) 22.90/8.46 new_lt21(x0, x1, ty_Double) 22.90/8.46 new_lt12(x0, x1, ty_Char) 22.90/8.46 new_primPlusNat1(Succ(x0), Succ(x1)) 22.90/8.46 new_esEs34(x0, x1, ty_Double) 22.90/8.46 new_ltEs13(EQ, GT) 22.90/8.46 new_ltEs13(GT, EQ) 22.90/8.46 new_ltEs18(Left(x0), Right(x1), x2, x3) 22.90/8.46 new_ltEs18(Right(x0), Left(x1), x2, x3) 22.90/8.46 new_esEs39(x0, x1, ty_Char) 22.90/8.46 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs27(x0, x1, ty_Integer) 22.90/8.46 new_ltEs23(x0, x1, ty_Bool) 22.90/8.46 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_ltEs9(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.90/8.46 new_esEs14(Left(x0), Left(x1), ty_Float, x2) 22.90/8.46 new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_ltEs21(x0, x1, ty_Char) 22.90/8.46 new_esEs18(Just(x0), Nothing, x1) 22.90/8.46 new_esEs39(x0, x1, ty_Int) 22.90/8.46 new_ltEs6(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs14(Left(x0), Left(x1), app(ty_[], x2), x3) 22.90/8.46 new_esEs26(x0, x1, ty_Integer) 22.90/8.46 new_ltEs23(x0, x1, ty_@0) 22.90/8.46 new_esEs19(Integer(x0), Integer(x1)) 22.90/8.46 new_ltEs13(LT, LT) 22.90/8.46 new_lt4(x0, x1) 22.90/8.46 new_esEs30(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_lt22(x0, x1, ty_Ordering) 22.90/8.46 new_esEs36(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_pePe(True, x0) 22.90/8.46 new_esEs9(x0, x1, ty_@0) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, ty_Ordering) 22.90/8.46 new_esEs32(x0, x1, ty_Bool) 22.90/8.46 new_esEs37(x0, x1, ty_Ordering) 22.90/8.46 new_compare5(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_compare19(Left(x0), Left(x1), x2, x3) 22.90/8.46 new_esEs5(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_lt12(x0, x1, ty_@0) 22.90/8.46 new_lt23(x0, x1, ty_Ordering) 22.90/8.46 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs21(False, False) 22.90/8.46 new_esEs5(x0, x1, ty_Integer) 22.90/8.46 new_ltEs20(x0, x1, ty_Integer) 22.90/8.46 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 22.90/8.46 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 22.90/8.46 new_esEs36(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs18(Just(x0), Just(x1), ty_Double) 22.90/8.46 new_esEs7(x0, x1, ty_Double) 22.90/8.46 new_fsEs(x0) 22.90/8.46 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_ltEs21(x0, x1, ty_Double) 22.90/8.46 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, ty_Double) 22.90/8.46 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_ltEs22(x0, x1, ty_Ordering) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.90/8.46 new_ltEs18(Left(x0), Left(x1), ty_@0, x2) 22.90/8.46 new_esEs4(x0, x1, ty_Ordering) 22.90/8.46 new_compare111(x0, x1, False, x2) 22.90/8.46 new_compare16(:(x0, x1), [], x2) 22.90/8.46 new_esEs11(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_sr0(Integer(x0), Integer(x1)) 22.90/8.46 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs8(x0, x1, ty_Float) 22.90/8.46 new_lt22(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs8(x0, x1, ty_Integer) 22.90/8.46 new_esEs38(x0, x1, ty_Integer) 22.90/8.46 new_esEs31(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs4(x0, x1, ty_Double) 22.90/8.46 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs11(x0, x1, ty_Integer) 22.90/8.46 new_esEs33(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_primMulInt(Neg(x0), Neg(x1)) 22.90/8.46 new_ltEs24(x0, x1, ty_Double) 22.90/8.46 new_lt14(x0, x1) 22.90/8.46 new_primEqNat0(Zero, Zero) 22.90/8.46 new_lt20(x0, x1, ty_Bool) 22.90/8.46 new_lt9(x0, x1, x2) 22.90/8.46 new_ltEs18(Right(x0), Right(x1), x2, ty_@0) 22.90/8.46 new_lt11(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs32(x0, x1, ty_Float) 22.90/8.46 new_primEqNat0(Succ(x0), Zero) 22.90/8.46 new_not(False) 22.90/8.46 new_ltEs20(x0, x1, ty_Bool) 22.90/8.46 new_esEs13(EQ, GT) 22.90/8.46 new_esEs13(GT, EQ) 22.90/8.46 new_esEs35(x0, x1, ty_@0) 22.90/8.46 new_ltEs20(x0, x1, ty_Float) 22.90/8.46 new_esEs11(x0, x1, ty_Bool) 22.90/8.46 new_lt20(x0, x1, ty_Float) 22.90/8.46 new_compare25(x0, x1, False, x2, x3) 22.90/8.46 new_esEs37(x0, x1, ty_Double) 22.90/8.46 new_ltEs6(x0, x1, ty_Float) 22.90/8.46 new_ltEs6(x0, x1, ty_Bool) 22.90/8.46 new_lt5(x0, x1, x2, x3, x4) 22.90/8.46 new_esEs30(x0, x1, ty_Double) 22.90/8.46 new_esEs6(x0, x1, ty_Ordering) 22.90/8.46 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 22.90/8.46 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 22.90/8.46 new_esEs5(x0, x1, ty_Bool) 22.90/8.46 new_ltEs19(x0, x1, ty_@0) 22.90/8.46 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs5(x0, x1, ty_Float) 22.90/8.46 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs22(:%(x0, x1), :%(x2, x3), x4) 22.90/8.46 new_ltEs21(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs38(x0, x1, ty_Char) 22.90/8.46 new_esEs6(x0, x1, app(ty_[], x2)) 22.90/8.46 new_lt20(x0, x1, ty_Int) 22.90/8.46 new_ltEs20(x0, x1, ty_Int) 22.90/8.46 new_compare11(Integer(x0), Integer(x1)) 22.90/8.46 new_ltEs6(x0, x1, ty_Char) 22.90/8.46 new_compare114(x0, x1, x2, x3, False, x4, x5, x6) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.90/8.46 new_ltEs6(x0, x1, ty_Int) 22.90/8.46 new_esEs8(x0, x1, ty_Bool) 22.90/8.46 new_lt20(x0, x1, ty_Char) 22.90/8.46 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_primCompAux00(x0, x1, EQ, ty_@0) 22.90/8.46 new_compare113(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 22.90/8.46 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_lt21(x0, x1, ty_Ordering) 22.90/8.46 new_esEs5(x0, x1, ty_Int) 22.90/8.46 new_esEs9(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs29(x0, x1, ty_Double) 22.90/8.46 new_esEs31(x0, x1, ty_Ordering) 22.90/8.46 new_esEs38(x0, x1, ty_Bool) 22.90/8.46 new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.90/8.46 new_ltEs20(x0, x1, app(ty_[], x2)) 22.90/8.46 new_compare14(x0, x1) 22.90/8.46 new_esEs7(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_ltEs9(Just(x0), Just(x1), ty_@0) 22.90/8.46 new_lt12(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_lt11(x0, x1, ty_@0) 22.90/8.46 new_ltEs9(Just(x0), Just(x1), ty_Bool) 22.90/8.46 new_primCmpNat0(Zero, Succ(x0)) 22.90/8.46 new_esEs23(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.90/8.46 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs4(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_compare115(x0, x1, x2, x3, False, x4, x5) 22.90/8.46 new_esEs35(x0, x1, ty_Int) 22.90/8.46 new_esEs6(x0, x1, ty_Int) 22.90/8.46 new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 22.90/8.46 new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 22.90/8.46 new_esEs28(x0, x1, ty_@0) 22.90/8.46 new_esEs28(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs26(x0, x1, ty_Int) 22.90/8.46 new_esEs29(x0, x1, app(ty_[], x2)) 22.90/8.46 new_lt22(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_compare13(GT, LT) 22.90/8.46 new_compare13(LT, GT) 22.90/8.46 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs25(x0, x1) 22.90/8.46 new_ltEs18(Left(x0), Left(x1), ty_Int, x2) 22.90/8.46 new_esEs28(x0, x1, ty_Int) 22.90/8.46 new_esEs18(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_compare17(@0, @0) 22.90/8.46 new_compare5(x0, x1, ty_Char) 22.90/8.46 new_esEs11(x0, x1, ty_Float) 22.90/8.46 new_ltEs18(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.90/8.46 new_compare113(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 22.90/8.46 new_compare116(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 22.90/8.46 new_lt11(x0, x1, ty_Bool) 22.90/8.46 new_lt22(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs10(x0, x1, ty_Int) 22.90/8.46 new_esEs34(x0, x1, app(ty_[], x2)) 22.90/8.46 new_pePe(False, x0) 22.90/8.46 new_lt21(x0, x1, ty_Float) 22.90/8.46 new_esEs6(x0, x1, ty_@0) 22.90/8.46 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_lt21(x0, x1, ty_Bool) 22.90/8.46 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 22.90/8.46 new_esEs15(Double(x0, x1), Double(x2, x3)) 22.90/8.46 new_ltEs15(True, True) 22.90/8.46 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs12(Char(x0), Char(x1)) 22.90/8.46 new_ltEs23(x0, x1, ty_Int) 22.90/8.46 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 22.90/8.46 new_ltEs18(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.90/8.46 new_esEs14(Left(x0), Left(x1), ty_Double, x2) 22.90/8.46 new_esEs33(x0, x1, app(ty_[], x2)) 22.90/8.46 new_ltEs6(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs28(x0, x1, ty_Bool) 22.90/8.46 new_esEs35(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs28(x0, x1, ty_Integer) 22.90/8.46 new_esEs10(x0, x1, ty_Bool) 22.90/8.46 new_esEs36(x0, x1, app(ty_[], x2)) 22.90/8.46 new_primMulInt(Pos(x0), Pos(x1)) 22.90/8.46 new_primMulNat0(Succ(x0), Succ(x1)) 22.90/8.46 new_primCompAux00(x0, x1, LT, x2) 22.90/8.46 new_lt11(x0, x1, ty_Int) 22.90/8.46 new_primCompAux00(x0, x1, EQ, ty_Ordering) 22.90/8.46 new_esEs14(Left(x0), Left(x1), ty_Char, x2) 22.90/8.46 new_ltEs21(x0, x1, ty_Float) 22.90/8.46 new_ltEs9(Just(x0), Just(x1), ty_Integer) 22.90/8.46 new_esEs39(x0, x1, ty_Float) 22.90/8.46 new_compare112(x0, x1, True, x2, x3) 22.90/8.46 new_lt21(x0, x1, ty_@0) 22.90/8.46 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_ltEs13(GT, LT) 22.90/8.46 new_ltEs13(LT, GT) 22.90/8.46 new_compare5(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_sr(x0, x1) 22.90/8.46 new_ltEs18(Right(x0), Right(x1), x2, ty_Char) 22.90/8.46 new_ltEs10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.90/8.46 new_esEs35(x0, x1, ty_Integer) 22.90/8.46 new_compare9(Just(x0), Just(x1), x2) 22.90/8.46 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_lt11(x0, x1, app(ty_[], x2)) 22.90/8.46 new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) 22.90/8.46 new_lt11(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, ty_Float) 22.90/8.46 new_primCmpNat0(Succ(x0), Succ(x1)) 22.90/8.46 new_ltEs24(x0, x1, ty_Char) 22.90/8.46 new_esEs31(x0, x1, ty_Float) 22.90/8.46 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs18(Just(x0), Just(x1), ty_Float) 22.90/8.46 new_compare16(:(x0, x1), :(x2, x3), x4) 22.90/8.46 new_esEs10(x0, x1, ty_Integer) 22.90/8.46 new_compare24(x0, x1, False, x2, x3) 22.90/8.46 new_esEs16(@2(x0, x1), @2(x2, x3), x4, x5) 22.90/8.46 new_esEs31(x0, x1, ty_Double) 22.90/8.46 new_esEs4(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_lt23(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_asAs(True, x0) 22.90/8.46 new_esEs5(x0, x1, app(ty_[], x2)) 22.90/8.46 new_ltEs18(Left(x0), Left(x1), ty_Integer, x2) 22.90/8.46 new_primCompAux00(x0, x1, GT, x2) 22.90/8.46 new_compare15(False, False) 22.90/8.46 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs28(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_ltEs19(x0, x1, ty_Integer) 22.90/8.46 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 22.90/8.46 new_ltEs22(x0, x1, ty_Double) 22.90/8.46 new_ltEs24(x0, x1, ty_Ordering) 22.90/8.46 new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.90/8.46 new_ltEs9(Just(x0), Nothing, x1) 22.90/8.46 new_esEs39(x0, x1, ty_Bool) 22.90/8.46 new_esEs32(x0, x1, ty_Integer) 22.90/8.46 new_esEs18(Just(x0), Just(x1), ty_Ordering) 22.90/8.46 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs20(:(x0, x1), :(x2, x3), x4) 22.90/8.46 new_ltEs11(x0, x1) 22.90/8.46 new_primMulNat0(Zero, Succ(x0)) 22.90/8.46 new_primCmpInt(Neg(Zero), Neg(Zero)) 22.90/8.46 new_ltEs8(@2(x0, x1), @2(x2, x3), x4, x5) 22.90/8.46 new_esEs14(Left(x0), Left(x1), ty_Ordering, x2) 22.90/8.46 new_ltEs19(x0, x1, ty_Float) 22.90/8.46 new_esEs11(x0, x1, ty_Double) 22.90/8.46 new_esEs11(x0, x1, ty_@0) 22.90/8.46 new_esEs18(Just(x0), Just(x1), ty_Char) 22.90/8.46 new_esEs18(Just(x0), Just(x1), ty_Integer) 22.90/8.46 new_esEs10(x0, x1, ty_@0) 22.90/8.46 new_ltEs21(x0, x1, ty_Integer) 22.90/8.46 new_ltEs19(x0, x1, ty_Bool) 22.90/8.46 new_esEs32(x0, x1, ty_Ordering) 22.90/8.46 new_esEs27(x0, x1, ty_Int) 22.90/8.46 new_primCmpInt(Pos(Zero), Neg(Zero)) 22.90/8.46 new_primCmpInt(Neg(Zero), Pos(Zero)) 22.90/8.46 new_ltEs9(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.90/8.46 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs4(x0, x1, ty_Int) 22.90/8.46 new_lt20(x0, x1, ty_@0) 22.90/8.46 new_primPlusNat0(Succ(x0), x1) 22.90/8.46 new_esEs29(x0, x1, ty_Int) 22.90/8.46 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_compare13(GT, EQ) 22.90/8.46 new_compare13(EQ, GT) 22.90/8.46 new_esEs11(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs29(x0, x1, ty_Bool) 22.90/8.46 new_ltEs19(x0, x1, app(ty_[], x2)) 22.90/8.46 new_ltEs9(Just(x0), Just(x1), ty_Int) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, ty_Char) 22.90/8.46 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs30(x0, x1, app(ty_[], x2)) 22.90/8.46 new_compare5(x0, x1, ty_Ordering) 22.90/8.46 new_ltEs15(False, False) 22.90/8.46 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_primEqNat0(Zero, Succ(x0)) 22.90/8.46 new_compare26(x0, x1, False, x2) 22.90/8.46 new_esEs35(x0, x1, ty_Bool) 22.90/8.46 new_primCompAux00(x0, x1, EQ, ty_Char) 22.90/8.46 new_compare111(x0, x1, True, x2) 22.90/8.46 new_ltEs6(x0, x1, ty_Double) 22.90/8.46 new_esEs37(x0, x1, ty_Int) 22.90/8.46 new_esEs34(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.90/8.46 new_esEs18(Just(x0), Just(x1), ty_Bool) 22.90/8.46 new_lt11(x0, x1, ty_Integer) 22.90/8.46 new_ltEs18(Left(x0), Left(x1), ty_Bool, x2) 22.90/8.46 new_esEs13(GT, GT) 22.90/8.46 new_esEs30(x0, x1, ty_Int) 22.90/8.46 new_ltEs21(x0, x1, ty_Ordering) 22.90/8.46 new_compare16([], :(x0, x1), x2) 22.90/8.46 new_ltEs9(Just(x0), Just(x1), ty_Float) 22.90/8.46 new_esEs39(x0, x1, ty_Integer) 22.90/8.46 new_esEs7(x0, x1, ty_Int) 22.90/8.46 new_primPlusNat1(Succ(x0), Zero) 22.90/8.46 new_esEs9(x0, x1, ty_Int) 22.90/8.46 new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 22.90/8.46 new_ltEs18(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.90/8.46 new_esEs4(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs7(x0, x1, ty_Bool) 22.90/8.46 new_esEs18(Just(x0), Just(x1), ty_@0) 22.90/8.46 new_ltEs19(x0, x1, ty_Char) 22.90/8.46 new_ltEs9(Nothing, Nothing, x0) 22.90/8.46 new_esEs34(x0, x1, ty_Char) 22.90/8.46 new_esEs36(x0, x1, ty_Bool) 22.90/8.46 new_lt12(x0, x1, ty_Double) 22.90/8.46 new_compare10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.90/8.46 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs18(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.90/8.46 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 22.90/8.46 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_compare5(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs35(x0, x1, app(ty_[], x2)) 22.90/8.46 new_compare28(x0, x1, x2, x3, True, x4, x5) 22.90/8.46 new_primMulNat0(Zero, Zero) 22.90/8.46 new_esEs30(x0, x1, ty_Char) 22.90/8.46 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs9(x0, x1, ty_Char) 22.90/8.46 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_esEs4(x0, x1, ty_Bool) 22.90/8.46 new_esEs4(x0, x1, ty_@0) 22.90/8.46 new_esEs37(x0, x1, ty_Char) 22.90/8.46 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 22.90/8.46 new_lt23(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs9(x0, x1, ty_Double) 22.90/8.46 new_esEs29(x0, x1, ty_Integer) 22.90/8.46 new_lt12(x0, x1, ty_Ordering) 22.90/8.46 new_compare112(x0, x1, False, x2, x3) 22.90/8.46 new_lt22(x0, x1, ty_Double) 22.90/8.46 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs37(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs38(x0, x1, ty_Ordering) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, ty_Bool) 22.90/8.46 new_ltEs18(Left(x0), Left(x1), ty_Float, x2) 22.90/8.46 new_compare27(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 22.90/8.46 new_esEs31(x0, x1, ty_Bool) 22.90/8.46 new_esEs34(x0, x1, ty_Int) 22.90/8.46 new_lt23(x0, x1, ty_Bool) 22.90/8.46 new_lt6(x0, x1) 22.90/8.46 new_esEs4(x0, x1, ty_Char) 22.90/8.46 new_esEs35(x0, x1, ty_Float) 22.90/8.46 new_lt16(x0, x1, x2) 22.90/8.46 new_esEs4(x0, x1, ty_Integer) 22.90/8.46 new_ltEs9(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.90/8.46 new_ltEs6(x0, x1, ty_Ordering) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, ty_Integer) 22.90/8.46 new_esEs32(x0, x1, ty_@0) 22.90/8.46 new_esEs36(x0, x1, ty_Char) 22.90/8.46 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_compare5(x0, x1, ty_Float) 22.90/8.46 new_ltEs23(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs33(x0, x1, ty_Int) 22.90/8.46 new_esEs5(x0, x1, ty_Ordering) 22.90/8.46 new_esEs10(x0, x1, app(ty_[], x2)) 22.90/8.46 new_ltEs18(Right(x0), Right(x1), x2, ty_Ordering) 22.90/8.46 new_primMulNat0(Succ(x0), Zero) 22.90/8.46 new_esEs20(:(x0, x1), [], x2) 22.90/8.46 new_lt23(x0, x1, ty_Char) 22.90/8.46 new_esEs36(x0, x1, ty_Integer) 22.90/8.46 new_esEs33(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs11(x0, x1, ty_Ordering) 22.90/8.46 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_esEs31(x0, x1, ty_Char) 22.90/8.46 new_compare16([], [], x0) 22.90/8.46 new_ltEs19(x0, x1, ty_Ordering) 22.90/8.46 new_esEs34(x0, x1, ty_Bool) 22.90/8.46 new_compare13(LT, LT) 22.90/8.46 new_esEs33(x0, x1, ty_Bool) 22.90/8.46 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs30(x0, x1, ty_Integer) 22.90/8.46 new_esEs37(x0, x1, ty_Integer) 22.90/8.46 new_primCompAux1(x0, x1, x2, x3, x4) 22.90/8.46 new_esEs7(x0, x1, ty_Integer) 22.90/8.46 new_compare110(x0, x1, False, x2, x3) 22.90/8.46 new_lt21(x0, x1, ty_Int) 22.90/8.46 new_esEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.90/8.46 new_lt23(x0, x1, ty_@0) 22.90/8.46 new_esEs29(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_primPlusNat0(Zero, x0) 22.90/8.46 new_lt7(x0, x1, x2) 22.90/8.46 new_esEs31(x0, x1, ty_Int) 22.90/8.46 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_lt10(x0, x1) 22.90/8.46 new_esEs33(x0, x1, ty_Double) 22.90/8.46 new_ltEs7(x0, x1, x2) 22.90/8.46 new_esEs33(x0, x1, ty_Char) 22.90/8.46 new_lt23(x0, x1, ty_Float) 22.90/8.46 new_ltEs21(x0, x1, ty_@0) 22.90/8.46 new_esEs6(x0, x1, ty_Float) 22.90/8.46 new_esEs31(x0, x1, ty_@0) 22.90/8.46 new_primCmpInt(Pos(Zero), Pos(Zero)) 22.90/8.46 new_ltEs20(x0, x1, ty_Ordering) 22.90/8.46 new_compare13(EQ, EQ) 22.90/8.46 new_lt11(x0, x1, ty_Double) 22.90/8.46 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 22.90/8.46 new_esEs36(x0, x1, ty_Float) 22.90/8.46 new_lt11(x0, x1, ty_Float) 22.90/8.46 new_ltEs18(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.90/8.46 new_ltEs9(Just(x0), Just(x1), ty_Double) 22.90/8.46 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 22.90/8.46 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_esEs39(x0, x1, ty_@0) 22.90/8.46 new_compare116(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 22.90/8.46 new_ltEs22(x0, x1, ty_Int) 22.90/8.46 new_ltEs9(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.90/8.46 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_compare115(x0, x1, x2, x3, True, x4, x5) 22.90/8.46 new_ltEs18(Left(x0), Left(x1), app(ty_[], x2), x3) 22.90/8.46 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_lt23(x0, x1, ty_Int) 22.90/8.46 new_ltEs9(Just(x0), Just(x1), ty_Ordering) 22.90/8.46 new_lt21(x0, x1, ty_Char) 22.90/8.46 new_esEs34(x0, x1, ty_Integer) 22.90/8.46 new_esEs6(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_ltEs13(GT, GT) 22.90/8.46 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_ltEs13(EQ, LT) 22.90/8.46 new_esEs13(LT, GT) 22.90/8.46 new_esEs13(GT, LT) 22.90/8.46 new_ltEs13(LT, EQ) 22.90/8.46 new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) 22.90/8.46 new_esEs33(x0, x1, ty_Float) 22.90/8.46 new_esEs18(Nothing, Just(x0), x1) 22.90/8.46 new_lt12(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_ltEs22(x0, x1, ty_Char) 22.90/8.46 new_compare28(x0, x1, x2, x3, False, x4, x5) 22.90/8.46 new_esEs35(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs6(x0, x1, ty_Bool) 22.90/8.46 new_compare5(x0, x1, ty_Double) 22.90/8.46 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_lt13(x0, x1, x2, x3) 22.90/8.46 new_compare26(x0, x1, True, x2) 22.90/8.46 new_ltEs18(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.90/8.46 new_ltEs18(Right(x0), Right(x1), x2, ty_Double) 22.90/8.46 new_esEs36(x0, x1, ty_Int) 22.90/8.46 new_esEs28(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs8(x0, x1, ty_Ordering) 22.90/8.46 new_lt22(x0, x1, ty_Bool) 22.90/8.46 new_ltEs14(x0, x1) 22.90/8.46 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 22.90/8.46 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_ltEs19(x0, x1, ty_Double) 22.90/8.46 new_lt22(x0, x1, ty_Int) 22.90/8.46 new_esEs32(x0, x1, app(ty_[], x2)) 22.90/8.46 new_lt15(x0, x1) 22.90/8.46 new_compare9(Just(x0), Nothing, x1) 22.90/8.46 new_esEs34(x0, x1, ty_@0) 22.90/8.46 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs39(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_ltEs18(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.90/8.46 new_esEs31(x0, x1, ty_Integer) 22.90/8.46 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 22.90/8.46 new_esEs28(x0, x1, ty_Float) 22.90/8.46 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_lt22(x0, x1, ty_Char) 22.90/8.46 new_compare15(True, True) 22.90/8.46 new_lt21(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_ltEs22(x0, x1, ty_Bool) 22.90/8.46 new_ltEs23(x0, x1, ty_Ordering) 22.90/8.46 new_compare110(x0, x1, True, x2, x3) 22.90/8.46 new_esEs10(x0, x1, ty_Float) 22.90/8.46 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs29(x0, x1, ty_@0) 22.90/8.46 new_lt23(x0, x1, ty_Integer) 22.90/8.46 new_primCompAux00(x0, x1, EQ, ty_Double) 22.90/8.46 new_esEs37(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs20([], [], x0) 22.90/8.46 new_esEs18(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs38(x0, x1, app(ty_[], x2)) 22.90/8.46 new_primMulInt(Pos(x0), Neg(x1)) 22.90/8.46 new_primMulInt(Neg(x0), Pos(x1)) 22.90/8.46 new_lt21(x0, x1, ty_Integer) 22.90/8.46 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_esEs34(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs35(x0, x1, ty_Double) 22.90/8.46 new_lt8(x0, x1) 22.90/8.46 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 22.90/8.46 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 22.90/8.46 new_esEs7(x0, x1, ty_@0) 22.90/8.46 new_lt20(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs39(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_lt22(x0, x1, ty_Float) 22.90/8.46 new_esEs6(x0, x1, ty_Integer) 22.90/8.46 new_ltEs6(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs30(x0, x1, ty_@0) 22.90/8.46 new_primCmpNat0(Zero, Zero) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, ty_@0) 22.90/8.46 new_esEs37(x0, x1, ty_@0) 22.90/8.46 22.90/8.46 We have to consider all minimal (P,Q,R)-chains. 22.90/8.46 ---------------------------------------- 22.90/8.46 22.90/8.46 (32) DependencyGraphProof (EQUIVALENT) 22.90/8.46 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs with 2 less nodes. 22.90/8.46 ---------------------------------------- 22.90/8.46 22.90/8.46 (33) 22.90/8.46 Complex Obligation (AND) 22.90/8.46 22.90/8.46 ---------------------------------------- 22.90/8.46 22.90/8.46 (34) 22.90/8.46 Obligation: 22.90/8.46 Q DP problem: 22.90/8.46 The TRS P consists of the following rules: 22.90/8.46 22.90/8.46 new_addToFM_C(xuu3, Branch(:(xuu400, xuu401), xuu41, xuu42, xuu43, xuu44), [], xuu501, bb, bc) -> new_addToFM_C(xuu3, xuu43, [], xuu501, bb, bc) 22.90/8.46 22.90/8.46 The TRS R consists of the following rules: 22.90/8.46 22.90/8.46 new_esEs14(Left(xuu500000), Left(xuu40000), app(app(ty_Either, gb), gc), ga) -> new_esEs14(xuu500000, xuu40000, gb, gc) 22.90/8.46 new_ltEs19(xuu71, xuu74, ty_Integer) -> new_ltEs11(xuu71, xuu74) 22.90/8.46 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 22.90/8.46 new_ltEs18(Left(xuu580), Left(xuu590), app(ty_Maybe, edc), fh) -> new_ltEs9(xuu580, xuu590, edc) 22.90/8.46 new_esEs23(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), dae, daf, dag) -> new_asAs(new_esEs38(xuu500000, xuu40000, dae), new_asAs(new_esEs37(xuu500001, xuu40001, daf), new_esEs36(xuu500002, xuu40002, dag))) 22.90/8.46 new_esEs24(@0, @0) -> True 22.90/8.46 new_esEs29(xuu69, xuu72, ty_Integer) -> new_esEs19(xuu69, xuu72) 22.90/8.46 new_pePe(True, xuu195) -> True 22.90/8.46 new_esEs7(xuu50002, xuu4002, app(app(ty_Either, efd), efe)) -> new_esEs14(xuu50002, xuu4002, efd, efe) 22.90/8.46 new_ltEs19(xuu71, xuu74, ty_@0) -> new_ltEs5(xuu71, xuu74) 22.90/8.46 new_esEs10(xuu50000, xuu4000, app(app(app(ty_@3, cg), da), db)) -> new_esEs23(xuu50000, xuu4000, cg, da, db) 22.90/8.46 new_ltEs23(xuu87, xuu88, app(ty_[], dhg)) -> new_ltEs16(xuu87, xuu88, dhg) 22.90/8.46 new_esEs8(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 22.90/8.46 new_ltEs14(xuu58, xuu59) -> new_fsEs(new_compare14(xuu58, xuu59)) 22.90/8.46 new_esEs29(xuu69, xuu72, ty_Char) -> new_esEs12(xuu69, xuu72) 22.90/8.46 new_esEs9(xuu50000, xuu4000, app(ty_Maybe, fad)) -> new_esEs18(xuu50000, xuu4000, fad) 22.90/8.46 new_esEs38(xuu500000, xuu40000, ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.46 new_compare19(Right(xuu50000), Right(xuu4000), bf, bg) -> new_compare25(xuu50000, xuu4000, new_esEs11(xuu50000, xuu4000, bg), bf, bg) 22.90/8.46 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 22.90/8.46 new_ltEs6(xuu58, xuu59, ty_Ordering) -> new_ltEs13(xuu58, xuu59) 22.90/8.46 new_esEs6(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.46 new_esEs28(xuu70, xuu73, app(app(ty_Either, bgg), bgh)) -> new_esEs14(xuu70, xuu73, bgg, bgh) 22.90/8.46 new_esEs14(Right(xuu500000), Right(xuu40000), hd, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.46 new_esEs32(xuu580, xuu590, ty_@0) -> new_esEs24(xuu580, xuu590) 22.90/8.46 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Double, ga) -> new_esEs15(xuu500000, xuu40000) 22.90/8.46 new_esEs37(xuu500001, xuu40001, app(ty_Ratio, fdc)) -> new_esEs22(xuu500001, xuu40001, fdc) 22.90/8.46 new_primCompAux00(xuu37, xuu38, EQ, ty_Int) -> new_compare14(xuu37, xuu38) 22.90/8.46 new_esEs5(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.46 new_esEs14(Right(xuu500000), Right(xuu40000), hd, ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.46 new_esEs6(xuu50000, xuu4000, app(app(ty_@2, dbe), dbf)) -> new_esEs16(xuu50000, xuu4000, dbe, dbf) 22.90/8.46 new_esEs35(xuu500000, xuu40000, app(app(app(ty_@3, ece), ecf), ecg)) -> new_esEs23(xuu500000, xuu40000, ece, ecf, ecg) 22.90/8.46 new_lt11(xuu69, xuu72, app(ty_[], bfd)) -> new_lt16(xuu69, xuu72, bfd) 22.90/8.46 new_lt23(xuu99, xuu101, ty_Char) -> new_lt10(xuu99, xuu101) 22.90/8.46 new_lt12(xuu70, xuu73, ty_Double) -> new_lt6(xuu70, xuu73) 22.90/8.46 new_lt15(xuu99, xuu101) -> new_esEs13(new_compare13(xuu99, xuu101), LT) 22.90/8.46 new_esEs37(xuu500001, xuu40001, ty_Double) -> new_esEs15(xuu500001, xuu40001) 22.90/8.46 new_compare5(xuu5000, xuu400, ty_Double) -> new_compare6(xuu5000, xuu400) 22.90/8.46 new_ltEs20(xuu581, xuu591, app(ty_Maybe, ccb)) -> new_ltEs9(xuu581, xuu591, ccb) 22.90/8.46 new_ltEs20(xuu581, xuu591, ty_Double) -> new_ltEs4(xuu581, xuu591) 22.90/8.46 new_esEs14(Right(xuu500000), Right(xuu40000), hd, app(app(ty_@2, hg), hh)) -> new_esEs16(xuu500000, xuu40000, hg, hh) 22.90/8.46 new_lt20(xuu580, xuu590, app(app(ty_@2, caf), cag)) -> new_lt13(xuu580, xuu590, caf, cag) 22.90/8.46 new_ltEs9(Just(xuu580), Just(xuu590), ty_Int) -> new_ltEs14(xuu580, xuu590) 22.90/8.46 new_esEs34(xuu500000, xuu40000, app(ty_[], ded)) -> new_esEs20(xuu500000, xuu40000, ded) 22.90/8.46 new_lt4(xuu99, xuu101) -> new_esEs13(new_compare15(xuu99, xuu101), LT) 22.90/8.46 new_esEs18(Just(xuu500000), Just(xuu40000), app(ty_[], fhd)) -> new_esEs20(xuu500000, xuu40000, fhd) 22.90/8.46 new_esEs21(False, False) -> True 22.90/8.46 new_primEqNat0(Succ(xuu5000000), Succ(xuu400000)) -> new_primEqNat0(xuu5000000, xuu400000) 22.90/8.46 new_esEs5(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.46 new_esEs26(xuu500001, xuu40001, ty_Int) -> new_esEs25(xuu500001, xuu40001) 22.90/8.46 new_esEs39(xuu99, xuu101, ty_Integer) -> new_esEs19(xuu99, xuu101) 22.90/8.46 new_not(True) -> False 22.90/8.46 new_lt20(xuu580, xuu590, app(ty_Ratio, cae)) -> new_lt7(xuu580, xuu590, cae) 22.90/8.46 new_ltEs21(xuu582, xuu592, ty_@0) -> new_ltEs5(xuu582, xuu592) 22.90/8.46 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.46 new_esEs4(xuu50001, xuu4001, app(ty_Maybe, chc)) -> new_esEs18(xuu50001, xuu4001, chc) 22.90/8.46 new_lt8(xuu99, xuu101) -> new_esEs13(new_compare14(xuu99, xuu101), LT) 22.90/8.46 new_esEs30(xuu580, xuu590, app(app(ty_Either, cbe), cbf)) -> new_esEs14(xuu580, xuu590, cbe, cbf) 22.90/8.46 new_ltEs22(xuu80, xuu81, ty_Bool) -> new_ltEs15(xuu80, xuu81) 22.90/8.46 new_esEs7(xuu50002, xuu4002, ty_Bool) -> new_esEs21(xuu50002, xuu4002) 22.90/8.46 new_ltEs18(Right(xuu580), Right(xuu590), fg, ty_Ordering) -> new_ltEs13(xuu580, xuu590) 22.90/8.46 new_lt23(xuu99, xuu101, ty_@0) -> new_lt17(xuu99, xuu101) 22.90/8.46 new_ltEs22(xuu80, xuu81, ty_Float) -> new_ltEs17(xuu80, xuu81) 22.90/8.46 new_esEs39(xuu99, xuu101, ty_Char) -> new_esEs12(xuu99, xuu101) 22.90/8.46 new_ltEs20(xuu581, xuu591, ty_Char) -> new_ltEs12(xuu581, xuu591) 22.90/8.46 new_primEqNat0(Succ(xuu5000000), Zero) -> False 22.90/8.46 new_primEqNat0(Zero, Succ(xuu400000)) -> False 22.90/8.46 new_esEs36(xuu500002, xuu40002, ty_Float) -> new_esEs17(xuu500002, xuu40002) 22.90/8.46 new_ltEs24(xuu100, xuu102, app(app(app(ty_@3, fga), fgb), fgc)) -> new_ltEs10(xuu100, xuu102, fga, fgb, fgc) 22.90/8.46 new_ltEs9(Just(xuu580), Just(xuu590), ty_Float) -> new_ltEs17(xuu580, xuu590) 22.90/8.46 new_primCompAux00(xuu37, xuu38, EQ, ty_Double) -> new_compare6(xuu37, xuu38) 22.90/8.46 new_lt20(xuu580, xuu590, ty_Integer) -> new_lt14(xuu580, xuu590) 22.90/8.46 new_compare5(xuu5000, xuu400, app(app(ty_Either, bf), bg)) -> new_compare19(xuu5000, xuu400, bf, bg) 22.90/8.46 new_ltEs22(xuu80, xuu81, ty_Int) -> new_ltEs14(xuu80, xuu81) 22.90/8.46 new_esEs34(xuu500000, xuu40000, ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.46 new_esEs6(xuu50000, xuu4000, app(ty_[], dbh)) -> new_esEs20(xuu50000, xuu4000, dbh) 22.90/8.46 new_esEs13(LT, LT) -> True 22.90/8.46 new_esEs4(xuu50001, xuu4001, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs23(xuu50001, xuu4001, chf, chg, chh) 22.90/8.46 new_esEs25(xuu50000, xuu4000) -> new_primEqInt(xuu50000, xuu4000) 22.90/8.46 new_esEs9(xuu50000, xuu4000, app(app(app(ty_@3, fag), fah), fba)) -> new_esEs23(xuu50000, xuu4000, fag, fah, fba) 22.90/8.46 new_compare13(LT, LT) -> EQ 22.90/8.46 new_primCmpInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> GT 22.90/8.46 new_lt11(xuu69, xuu72, ty_Float) -> new_lt18(xuu69, xuu72) 22.90/8.46 new_ltEs6(xuu58, xuu59, app(ty_Ratio, ef)) -> new_ltEs7(xuu58, xuu59, ef) 22.90/8.46 new_compare13(GT, EQ) -> GT 22.90/8.46 new_esEs32(xuu580, xuu590, app(ty_Ratio, cda)) -> new_esEs22(xuu580, xuu590, cda) 22.90/8.46 new_ltEs9(Just(xuu580), Just(xuu590), ty_Bool) -> new_ltEs15(xuu580, xuu590) 22.90/8.46 new_compare5(xuu5000, xuu400, app(ty_Maybe, bda)) -> new_compare9(xuu5000, xuu400, bda) 22.90/8.46 new_esEs29(xuu69, xuu72, app(ty_[], bfd)) -> new_esEs20(xuu69, xuu72, bfd) 22.90/8.46 new_primPlusNat1(Succ(xuu19700), Succ(xuu19600)) -> Succ(Succ(new_primPlusNat1(xuu19700, xuu19600))) 22.90/8.46 new_primCompAux00(xuu37, xuu38, GT, bag) -> GT 22.90/8.46 new_lt16(xuu99, xuu101, dge) -> new_esEs13(new_compare16(xuu99, xuu101, dge), LT) 22.90/8.46 new_esEs36(xuu500002, xuu40002, ty_Int) -> new_esEs25(xuu500002, xuu40002) 22.90/8.46 new_ltEs18(Right(xuu580), Right(xuu590), fg, app(app(ty_Either, efb), efc)) -> new_ltEs18(xuu580, xuu590, efb, efc) 22.90/8.46 new_primCmpNat0(Zero, Succ(xuu40000)) -> LT 22.90/8.46 new_lt21(xuu580, xuu590, app(ty_[], cdh)) -> new_lt16(xuu580, xuu590, cdh) 22.90/8.46 new_ltEs23(xuu87, xuu88, app(app(ty_@2, dha), dhb)) -> new_ltEs8(xuu87, xuu88, dha, dhb) 22.90/8.46 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.46 new_esEs34(xuu500000, xuu40000, ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.46 new_compare16(:(xuu50000, xuu50001), [], bde) -> GT 22.90/8.46 new_esEs22(:%(xuu500000, xuu500001), :%(xuu40000, xuu40001), bdh) -> new_asAs(new_esEs27(xuu500000, xuu40000, bdh), new_esEs26(xuu500001, xuu40001, bdh)) 22.90/8.46 new_esEs6(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.46 new_ltEs21(xuu582, xuu592, app(app(ty_@2, cff), cfg)) -> new_ltEs8(xuu582, xuu592, cff, cfg) 22.90/8.46 new_esEs30(xuu580, xuu590, ty_Bool) -> new_esEs21(xuu580, xuu590) 22.90/8.46 new_ltEs23(xuu87, xuu88, app(app(ty_Either, dhh), eaa)) -> new_ltEs18(xuu87, xuu88, dhh, eaa) 22.90/8.46 new_esEs13(GT, GT) -> True 22.90/8.46 new_esEs38(xuu500000, xuu40000, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.46 new_lt20(xuu580, xuu590, app(ty_Maybe, cah)) -> new_lt9(xuu580, xuu590, cah) 22.90/8.46 new_esEs7(xuu50002, xuu4002, app(app(app(ty_@3, egc), egd), ege)) -> new_esEs23(xuu50002, xuu4002, egc, egd, ege) 22.90/8.46 new_esEs9(xuu50000, xuu4000, app(app(ty_@2, fab), fac)) -> new_esEs16(xuu50000, xuu4000, fab, fac) 22.90/8.46 new_esEs36(xuu500002, xuu40002, ty_Char) -> new_esEs12(xuu500002, xuu40002) 22.90/8.46 new_ltEs20(xuu581, xuu591, ty_Bool) -> new_ltEs15(xuu581, xuu591) 22.90/8.46 new_lt12(xuu70, xuu73, app(app(app(ty_@3, bgc), bgd), bge)) -> new_lt5(xuu70, xuu73, bgc, bgd, bge) 22.90/8.46 new_esEs34(xuu500000, xuu40000, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.46 new_esEs9(xuu50000, xuu4000, app(ty_Ratio, faf)) -> new_esEs22(xuu50000, xuu4000, faf) 22.90/8.46 new_esEs10(xuu50000, xuu4000, app(ty_Maybe, cd)) -> new_esEs18(xuu50000, xuu4000, cd) 22.90/8.46 new_esEs32(xuu580, xuu590, ty_Double) -> new_esEs15(xuu580, xuu590) 22.90/8.46 new_compare5(xuu5000, xuu400, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_compare10(xuu5000, xuu400, bdb, bdc, bdd) 22.90/8.46 new_ltEs9(Just(xuu580), Just(xuu590), app(app(app(ty_@3, eaf), eag), eah)) -> new_ltEs10(xuu580, xuu590, eaf, eag, eah) 22.90/8.46 new_primEqInt(Neg(Succ(xuu5000000)), Neg(Succ(xuu400000))) -> new_primEqNat0(xuu5000000, xuu400000) 22.90/8.46 new_esEs28(xuu70, xuu73, app(app(app(ty_@3, bgc), bgd), bge)) -> new_esEs23(xuu70, xuu73, bgc, bgd, bge) 22.90/8.46 new_ltEs8(@2(xuu580, xuu581), @2(xuu590, xuu591), eg, eh) -> new_pePe(new_lt20(xuu580, xuu590, eg), new_asAs(new_esEs30(xuu580, xuu590, eg), new_ltEs20(xuu581, xuu591, eh))) 22.90/8.46 new_lt23(xuu99, xuu101, app(app(ty_@2, ebd), ebe)) -> new_lt13(xuu99, xuu101, ebd, ebe) 22.90/8.46 new_primCmpInt(Neg(Zero), Pos(Succ(xuu40000))) -> LT 22.90/8.46 new_lt23(xuu99, xuu101, app(ty_Ratio, bce)) -> new_lt7(xuu99, xuu101, bce) 22.90/8.46 new_esEs33(xuu500001, xuu40001, ty_Float) -> new_esEs17(xuu500001, xuu40001) 22.90/8.46 new_primMulInt(Pos(xuu40000), Pos(xuu500010)) -> Pos(new_primMulNat0(xuu40000, xuu500010)) 22.90/8.46 new_primCompAux00(xuu37, xuu38, EQ, app(ty_Maybe, bbc)) -> new_compare9(xuu37, xuu38, bbc) 22.90/8.46 new_compare13(EQ, LT) -> GT 22.90/8.46 new_esEs37(xuu500001, xuu40001, app(ty_[], fdb)) -> new_esEs20(xuu500001, xuu40001, fdb) 22.90/8.46 new_lt21(xuu580, xuu590, ty_Float) -> new_lt18(xuu580, xuu590) 22.90/8.46 new_esEs13(EQ, GT) -> False 22.90/8.46 new_esEs13(GT, EQ) -> False 22.90/8.46 new_esEs11(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.46 new_compare19(Right(xuu50000), Left(xuu4000), bf, bg) -> GT 22.90/8.46 new_esEs14(Right(xuu500000), Right(xuu40000), hd, ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.46 new_lt22(xuu581, xuu591, ty_Int) -> new_lt8(xuu581, xuu591) 22.90/8.46 new_ltEs24(xuu100, xuu102, ty_Float) -> new_ltEs17(xuu100, xuu102) 22.90/8.46 new_esEs21(False, True) -> False 22.90/8.46 new_esEs21(True, False) -> False 22.90/8.46 new_esEs5(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.46 new_ltEs6(xuu58, xuu59, app(ty_Maybe, fa)) -> new_ltEs9(xuu58, xuu59, fa) 22.90/8.46 new_primMulNat0(Succ(xuu400000), Zero) -> Zero 22.90/8.46 new_primMulNat0(Zero, Succ(xuu5000100)) -> Zero 22.90/8.46 new_esEs32(xuu580, xuu590, app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs23(xuu580, xuu590, cde, cdf, cdg) 22.90/8.46 new_lt22(xuu581, xuu591, ty_Integer) -> new_lt14(xuu581, xuu591) 22.90/8.46 new_esEs31(xuu581, xuu591, ty_Integer) -> new_esEs19(xuu581, xuu591) 22.90/8.46 new_compare13(GT, LT) -> GT 22.90/8.46 new_ltEs21(xuu582, xuu592, app(app(ty_Either, cge), cgf)) -> new_ltEs18(xuu582, xuu592, cge, cgf) 22.90/8.46 new_compare26(xuu58, xuu59, True, ee) -> EQ 22.90/8.46 new_lt11(xuu69, xuu72, ty_Bool) -> new_lt4(xuu69, xuu72) 22.90/8.46 new_esEs11(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.46 new_ltEs6(xuu58, xuu59, app(ty_[], ff)) -> new_ltEs16(xuu58, xuu59, ff) 22.90/8.46 new_esEs14(Left(xuu500000), Left(xuu40000), app(ty_[], gg), ga) -> new_esEs20(xuu500000, xuu40000, gg) 22.90/8.46 new_esEs14(Right(xuu500000), Right(xuu40000), hd, app(ty_Maybe, baa)) -> new_esEs18(xuu500000, xuu40000, baa) 22.90/8.46 new_lt12(xuu70, xuu73, ty_Int) -> new_lt8(xuu70, xuu73) 22.90/8.46 new_esEs37(xuu500001, xuu40001, ty_Ordering) -> new_esEs13(xuu500001, xuu40001) 22.90/8.46 new_compare13(EQ, EQ) -> EQ 22.90/8.46 new_esEs38(xuu500000, xuu40000, app(app(ty_Either, fdg), fdh)) -> new_esEs14(xuu500000, xuu40000, fdg, fdh) 22.90/8.46 new_esEs30(xuu580, xuu590, app(ty_Maybe, cah)) -> new_esEs18(xuu580, xuu590, cah) 22.90/8.46 new_esEs34(xuu500000, xuu40000, app(ty_Ratio, dee)) -> new_esEs22(xuu500000, xuu40000, dee) 22.90/8.46 new_esEs32(xuu580, xuu590, app(ty_Maybe, cdd)) -> new_esEs18(xuu580, xuu590, cdd) 22.90/8.46 new_ltEs13(GT, LT) -> False 22.90/8.46 new_esEs39(xuu99, xuu101, app(ty_[], dge)) -> new_esEs20(xuu99, xuu101, dge) 22.90/8.46 new_ltEs18(Left(xuu580), Left(xuu590), app(ty_[], edg), fh) -> new_ltEs16(xuu580, xuu590, edg) 22.90/8.46 new_compare15(False, True) -> LT 22.90/8.46 new_primPlusNat1(Succ(xuu19700), Zero) -> Succ(xuu19700) 22.90/8.46 new_primPlusNat1(Zero, Succ(xuu19600)) -> Succ(xuu19600) 22.90/8.46 new_ltEs20(xuu581, xuu591, app(ty_[], ccf)) -> new_ltEs16(xuu581, xuu591, ccf) 22.90/8.46 new_esEs32(xuu580, xuu590, app(app(ty_@2, cdb), cdc)) -> new_esEs16(xuu580, xuu590, cdb, cdc) 22.90/8.46 new_esEs9(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.46 new_ltEs19(xuu71, xuu74, app(app(ty_@2, bhb), bhc)) -> new_ltEs8(xuu71, xuu74, bhb, bhc) 22.90/8.46 new_lt20(xuu580, xuu590, ty_Char) -> new_lt10(xuu580, xuu590) 22.90/8.46 new_compare9(Just(xuu50000), Just(xuu4000), bda) -> new_compare26(xuu50000, xuu4000, new_esEs6(xuu50000, xuu4000, bda), bda) 22.90/8.46 new_esEs6(xuu50000, xuu4000, app(ty_Maybe, dbg)) -> new_esEs18(xuu50000, xuu4000, dbg) 22.90/8.46 new_esEs28(xuu70, xuu73, ty_Int) -> new_esEs25(xuu70, xuu73) 22.90/8.46 new_ltEs4(xuu58, xuu59) -> new_fsEs(new_compare6(xuu58, xuu59)) 22.90/8.46 new_ltEs9(Just(xuu580), Just(xuu590), ty_Char) -> new_ltEs12(xuu580, xuu590) 22.90/8.46 new_esEs14(Left(xuu500000), Left(xuu40000), ty_@0, ga) -> new_esEs24(xuu500000, xuu40000) 22.90/8.46 new_lt23(xuu99, xuu101, app(ty_[], dge)) -> new_lt16(xuu99, xuu101, dge) 22.90/8.46 new_esEs29(xuu69, xuu72, ty_Double) -> new_esEs15(xuu69, xuu72) 22.90/8.46 new_esEs4(xuu50001, xuu4001, ty_Bool) -> new_esEs21(xuu50001, xuu4001) 22.90/8.46 new_ltEs23(xuu87, xuu88, app(ty_Ratio, dgh)) -> new_ltEs7(xuu87, xuu88, dgh) 22.90/8.46 new_esEs30(xuu580, xuu590, app(app(app(ty_@3, cba), cbb), cbc)) -> new_esEs23(xuu580, xuu590, cba, cbb, cbc) 22.90/8.46 new_esEs7(xuu50002, xuu4002, app(ty_Maybe, efh)) -> new_esEs18(xuu50002, xuu4002, efh) 22.90/8.46 new_lt23(xuu99, xuu101, ty_Ordering) -> new_lt15(xuu99, xuu101) 22.90/8.46 new_esEs28(xuu70, xuu73, ty_Bool) -> new_esEs21(xuu70, xuu73) 22.90/8.46 new_esEs19(Integer(xuu500000), Integer(xuu40000)) -> new_primEqInt(xuu500000, xuu40000) 22.90/8.46 new_compare24(xuu80, xuu81, False, dfa, dfb) -> new_compare110(xuu80, xuu81, new_ltEs22(xuu80, xuu81, dfa), dfa, dfb) 22.90/8.46 new_lt12(xuu70, xuu73, ty_Bool) -> new_lt4(xuu70, xuu73) 22.90/8.46 new_compare6(Double(xuu50000, Neg(xuu500010)), Double(xuu4000, Neg(xuu40010))) -> new_compare14(new_sr(xuu50000, Neg(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) 22.90/8.46 new_compare5(xuu5000, xuu400, ty_Int) -> new_compare14(xuu5000, xuu400) 22.90/8.46 new_compare27(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, beb, bec, bed) -> new_compare113(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, new_lt11(xuu69, xuu72, beb), new_asAs(new_esEs29(xuu69, xuu72, beb), new_pePe(new_lt12(xuu70, xuu73, bec), new_asAs(new_esEs28(xuu70, xuu73, bec), new_ltEs19(xuu71, xuu74, bed)))), beb, bec, bed) 22.90/8.46 new_esEs4(xuu50001, xuu4001, app(app(ty_Either, cgg), cgh)) -> new_esEs14(xuu50001, xuu4001, cgg, cgh) 22.90/8.46 new_lt12(xuu70, xuu73, ty_Integer) -> new_lt14(xuu70, xuu73) 22.90/8.46 new_esEs6(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.46 new_esEs10(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.46 new_ltEs6(xuu58, xuu59, app(app(ty_@2, eg), eh)) -> new_ltEs8(xuu58, xuu59, eg, eh) 22.90/8.46 new_lt11(xuu69, xuu72, ty_Ordering) -> new_lt15(xuu69, xuu72) 22.90/8.46 new_esEs14(Left(xuu500000), Right(xuu40000), hd, ga) -> False 22.90/8.46 new_esEs14(Right(xuu500000), Left(xuu40000), hd, ga) -> False 22.90/8.46 new_esEs8(xuu50001, xuu4001, ty_Integer) -> new_esEs19(xuu50001, xuu4001) 22.90/8.46 new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_Either, bbh), bca)) -> new_compare19(xuu37, xuu38, bbh, bca) 22.90/8.46 new_compare114(xuu156, xuu157, xuu158, xuu159, True, xuu161, cac, cad) -> new_compare115(xuu156, xuu157, xuu158, xuu159, True, cac, cad) 22.90/8.46 new_ltEs9(Just(xuu580), Just(xuu590), ty_Double) -> new_ltEs4(xuu580, xuu590) 22.90/8.46 new_esEs35(xuu500000, xuu40000, app(ty_Ratio, ecd)) -> new_esEs22(xuu500000, xuu40000, ecd) 22.90/8.46 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Integer, ga) -> new_esEs19(xuu500000, xuu40000) 22.90/8.46 new_primCompAux00(xuu37, xuu38, EQ, app(ty_Ratio, bah)) -> new_compare7(xuu37, xuu38, bah) 22.90/8.46 new_esEs6(xuu50000, xuu4000, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs23(xuu50000, xuu4000, dcb, dcc, dcd) 22.90/8.46 new_lt22(xuu581, xuu591, ty_Bool) -> new_lt4(xuu581, xuu591) 22.90/8.46 new_esEs30(xuu580, xuu590, ty_Int) -> new_esEs25(xuu580, xuu590) 22.90/8.46 new_esEs12(Char(xuu500000), Char(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) 22.90/8.46 new_esEs33(xuu500001, xuu40001, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs23(xuu500001, xuu40001, ddd, dde, ddf) 22.90/8.46 new_esEs39(xuu99, xuu101, ty_Float) -> new_esEs17(xuu99, xuu101) 22.90/8.46 new_ltEs15(True, True) -> True 22.90/8.46 new_esEs8(xuu50001, xuu4001, ty_Double) -> new_esEs15(xuu50001, xuu4001) 22.90/8.46 new_esEs8(xuu50001, xuu4001, app(app(ty_@2, egh), eha)) -> new_esEs16(xuu50001, xuu4001, egh, eha) 22.90/8.46 new_esEs31(xuu581, xuu591, ty_Ordering) -> new_esEs13(xuu581, xuu591) 22.90/8.46 new_esEs11(xuu50000, xuu4000, app(app(ty_Either, dc), dd)) -> new_esEs14(xuu50000, xuu4000, dc, dd) 22.90/8.46 new_lt23(xuu99, xuu101, ty_Integer) -> new_lt14(xuu99, xuu101) 22.90/8.46 new_lt21(xuu580, xuu590, ty_Ordering) -> new_lt15(xuu580, xuu590) 22.90/8.46 new_esEs29(xuu69, xuu72, app(app(ty_@2, bef), beg)) -> new_esEs16(xuu69, xuu72, bef, beg) 22.90/8.46 new_esEs30(xuu580, xuu590, app(ty_Ratio, cae)) -> new_esEs22(xuu580, xuu590, cae) 22.90/8.46 new_lt23(xuu99, xuu101, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_lt5(xuu99, xuu101, bcb, bcc, bcd) 22.90/8.46 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.46 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Char, ga) -> new_esEs12(xuu500000, xuu40000) 22.90/8.46 new_esEs14(Right(xuu500000), Right(xuu40000), hd, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.46 new_esEs37(xuu500001, xuu40001, ty_Integer) -> new_esEs19(xuu500001, xuu40001) 22.90/8.46 new_esEs9(xuu50000, xuu4000, app(ty_[], fae)) -> new_esEs20(xuu50000, xuu4000, fae) 22.90/8.46 new_lt12(xuu70, xuu73, app(app(ty_@2, bfh), bga)) -> new_lt13(xuu70, xuu73, bfh, bga) 22.90/8.46 new_lt12(xuu70, xuu73, app(ty_Ratio, bfg)) -> new_lt7(xuu70, xuu73, bfg) 22.90/8.46 new_compare5(xuu5000, xuu400, app(ty_Ratio, bcf)) -> new_compare7(xuu5000, xuu400, bcf) 22.90/8.46 new_esEs38(xuu500000, xuu40000, app(ty_Maybe, fec)) -> new_esEs18(xuu500000, xuu40000, fec) 22.90/8.46 new_esEs32(xuu580, xuu590, app(app(ty_Either, cea), ceb)) -> new_esEs14(xuu580, xuu590, cea, ceb) 22.90/8.46 new_lt18(xuu99, xuu101) -> new_esEs13(new_compare18(xuu99, xuu101), LT) 22.90/8.46 new_ltEs21(xuu582, xuu592, app(ty_[], cgd)) -> new_ltEs16(xuu582, xuu592, cgd) 22.90/8.46 new_ltEs24(xuu100, xuu102, app(app(ty_@2, fff), ffg)) -> new_ltEs8(xuu100, xuu102, fff, ffg) 22.90/8.46 new_esEs18(Just(xuu500000), Just(xuu40000), app(ty_Ratio, fhe)) -> new_esEs22(xuu500000, xuu40000, fhe) 22.90/8.46 new_esEs10(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.46 new_esEs33(xuu500001, xuu40001, ty_Char) -> new_esEs12(xuu500001, xuu40001) 22.90/8.46 new_esEs35(xuu500000, xuu40000, ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.46 new_esEs18(Just(xuu500000), Just(xuu40000), ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.46 new_esEs7(xuu50002, xuu4002, ty_@0) -> new_esEs24(xuu50002, xuu4002) 22.90/8.46 new_esEs34(xuu500000, xuu40000, ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.46 new_esEs29(xuu69, xuu72, ty_Int) -> new_esEs25(xuu69, xuu72) 22.90/8.46 new_compare26(xuu58, xuu59, False, ee) -> new_compare111(xuu58, xuu59, new_ltEs6(xuu58, xuu59, ee), ee) 22.90/8.46 new_ltEs23(xuu87, xuu88, ty_Double) -> new_ltEs4(xuu87, xuu88) 22.90/8.46 new_compare24(xuu80, xuu81, True, dfa, dfb) -> EQ 22.90/8.46 new_esEs30(xuu580, xuu590, app(app(ty_@2, caf), cag)) -> new_esEs16(xuu580, xuu590, caf, cag) 22.90/8.46 new_esEs14(Right(xuu500000), Right(xuu40000), hd, ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.46 new_primCmpInt(Pos(Succ(xuu500000)), Pos(xuu4000)) -> new_primCmpNat0(Succ(xuu500000), xuu4000) 22.90/8.46 new_compare16([], :(xuu4000, xuu4001), bde) -> LT 22.90/8.46 new_lt20(xuu580, xuu590, ty_@0) -> new_lt17(xuu580, xuu590) 22.90/8.46 new_ltEs11(xuu58, xuu59) -> new_fsEs(new_compare11(xuu58, xuu59)) 22.90/8.46 new_esEs35(xuu500000, xuu40000, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.46 new_esEs5(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.46 new_compare5(xuu5000, xuu400, ty_Integer) -> new_compare11(xuu5000, xuu400) 22.90/8.46 new_esEs20(:(xuu500000, xuu500001), :(xuu40000, xuu40001), dad) -> new_asAs(new_esEs35(xuu500000, xuu40000, dad), new_esEs20(xuu500001, xuu40001, dad)) 22.90/8.46 new_lt17(xuu99, xuu101) -> new_esEs13(new_compare17(xuu99, xuu101), LT) 22.90/8.46 new_esEs29(xuu69, xuu72, ty_Ordering) -> new_esEs13(xuu69, xuu72) 22.90/8.46 new_compare11(Integer(xuu50000), Integer(xuu4000)) -> new_primCmpInt(xuu50000, xuu4000) 22.90/8.46 new_esEs8(xuu50001, xuu4001, ty_Float) -> new_esEs17(xuu50001, xuu4001) 22.90/8.46 new_compare13(GT, GT) -> EQ 22.90/8.46 new_esEs18(Just(xuu500000), Just(xuu40000), app(ty_Maybe, fhc)) -> new_esEs18(xuu500000, xuu40000, fhc) 22.90/8.46 new_ltEs16(xuu58, xuu59, ff) -> new_fsEs(new_compare16(xuu58, xuu59, ff)) 22.90/8.46 new_ltEs18(Left(xuu580), Left(xuu590), app(ty_Ratio, ech), fh) -> new_ltEs7(xuu580, xuu590, ech) 22.90/8.46 new_esEs5(xuu50000, xuu4000, app(ty_[], dad)) -> new_esEs20(xuu50000, xuu4000, dad) 22.90/8.46 new_esEs6(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.46 new_ltEs17(xuu58, xuu59) -> new_fsEs(new_compare18(xuu58, xuu59)) 22.90/8.46 new_esEs38(xuu500000, xuu40000, app(app(app(ty_@3, fef), feg), feh)) -> new_esEs23(xuu500000, xuu40000, fef, feg, feh) 22.90/8.46 new_esEs33(xuu500001, xuu40001, app(ty_Maybe, dda)) -> new_esEs18(xuu500001, xuu40001, dda) 22.90/8.46 new_esEs10(xuu50000, xuu4000, app(ty_Ratio, cf)) -> new_esEs22(xuu50000, xuu4000, cf) 22.90/8.46 new_esEs37(xuu500001, xuu40001, app(app(ty_Either, fce), fcf)) -> new_esEs14(xuu500001, xuu40001, fce, fcf) 22.90/8.46 new_ltEs18(Left(xuu580), Left(xuu590), ty_@0, fh) -> new_ltEs5(xuu580, xuu590) 22.90/8.46 new_lt21(xuu580, xuu590, ty_Int) -> new_lt8(xuu580, xuu590) 22.90/8.46 new_esEs31(xuu581, xuu591, ty_Bool) -> new_esEs21(xuu581, xuu591) 22.90/8.46 new_esEs35(xuu500000, xuu40000, ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.46 new_lt19(xuu99, xuu101, ffc, ffd) -> new_esEs13(new_compare19(xuu99, xuu101, ffc, ffd), LT) 22.90/8.46 new_esEs14(Left(xuu500000), Left(xuu40000), app(ty_Ratio, gh), ga) -> new_esEs22(xuu500000, xuu40000, gh) 22.90/8.46 new_lt11(xuu69, xuu72, ty_Char) -> new_lt10(xuu69, xuu72) 22.90/8.46 new_esEs36(xuu500002, xuu40002, app(app(ty_Either, fbc), fbd)) -> new_esEs14(xuu500002, xuu40002, fbc, fbd) 22.90/8.46 new_ltEs6(xuu58, xuu59, app(app(ty_Either, fg), fh)) -> new_ltEs18(xuu58, xuu59, fg, fh) 22.90/8.46 new_ltEs20(xuu581, xuu591, app(app(ty_Either, ccg), cch)) -> new_ltEs18(xuu581, xuu591, ccg, cch) 22.90/8.46 new_compare5(xuu5000, xuu400, ty_Char) -> new_compare12(xuu5000, xuu400) 22.90/8.46 new_esEs36(xuu500002, xuu40002, ty_Bool) -> new_esEs21(xuu500002, xuu40002) 22.90/8.46 new_ltEs18(Left(xuu580), Left(xuu590), ty_Ordering, fh) -> new_ltEs13(xuu580, xuu590) 22.90/8.46 new_compare9(Nothing, Just(xuu4000), bda) -> LT 22.90/8.46 new_esEs34(xuu500000, xuu40000, app(ty_Maybe, dec)) -> new_esEs18(xuu500000, xuu40000, dec) 22.90/8.46 new_esEs39(xuu99, xuu101, app(ty_Maybe, bea)) -> new_esEs18(xuu99, xuu101, bea) 22.90/8.46 new_esEs31(xuu581, xuu591, ty_Int) -> new_esEs25(xuu581, xuu591) 22.90/8.46 new_esEs31(xuu581, xuu591, app(app(ty_Either, cfc), cfd)) -> new_esEs14(xuu581, xuu591, cfc, cfd) 22.90/8.46 new_compare8(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), bcg, bch) -> new_compare28(xuu50000, xuu50001, xuu4000, xuu4001, new_asAs(new_esEs5(xuu50000, xuu4000, bcg), new_esEs4(xuu50001, xuu4001, bch)), bcg, bch) 22.90/8.46 new_ltEs9(Just(xuu580), Just(xuu590), app(ty_Maybe, eae)) -> new_ltEs9(xuu580, xuu590, eae) 22.90/8.46 new_esEs11(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.46 new_compare14(xuu5000, xuu400) -> new_primCmpInt(xuu5000, xuu400) 22.90/8.46 new_primCompAux00(xuu37, xuu38, EQ, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_compare10(xuu37, xuu38, bbd, bbe, bbf) 22.90/8.46 new_ltEs18(Left(xuu580), Left(xuu590), ty_Integer, fh) -> new_ltEs11(xuu580, xuu590) 22.90/8.46 new_esEs11(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.46 new_ltEs19(xuu71, xuu74, app(app(ty_Either, caa), cab)) -> new_ltEs18(xuu71, xuu74, caa, cab) 22.90/8.46 new_lt21(xuu580, xuu590, ty_Bool) -> new_lt4(xuu580, xuu590) 22.90/8.46 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.46 new_esEs7(xuu50002, xuu4002, ty_Float) -> new_esEs17(xuu50002, xuu4002) 22.90/8.46 new_compare5(xuu5000, xuu400, ty_@0) -> new_compare17(xuu5000, xuu400) 22.90/8.46 new_lt20(xuu580, xuu590, ty_Ordering) -> new_lt15(xuu580, xuu590) 22.90/8.46 new_compare111(xuu125, xuu126, False, fbb) -> GT 22.90/8.46 new_esEs28(xuu70, xuu73, app(app(ty_@2, bfh), bga)) -> new_esEs16(xuu70, xuu73, bfh, bga) 22.90/8.46 new_esEs36(xuu500002, xuu40002, ty_Integer) -> new_esEs19(xuu500002, xuu40002) 22.90/8.46 new_esEs8(xuu50001, xuu4001, app(ty_[], ehc)) -> new_esEs20(xuu50001, xuu4001, ehc) 22.90/8.46 new_ltEs24(xuu100, xuu102, app(ty_[], fgd)) -> new_ltEs16(xuu100, xuu102, fgd) 22.90/8.46 new_lt22(xuu581, xuu591, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_lt5(xuu581, xuu591, ceg, ceh, cfa) 22.90/8.46 new_ltEs6(xuu58, xuu59, ty_Float) -> new_ltEs17(xuu58, xuu59) 22.90/8.46 new_compare9(Just(xuu50000), Nothing, bda) -> GT 22.90/8.46 new_ltEs18(Left(xuu580), Left(xuu590), ty_Char, fh) -> new_ltEs12(xuu580, xuu590) 22.90/8.46 new_esEs4(xuu50001, xuu4001, ty_Float) -> new_esEs17(xuu50001, xuu4001) 22.90/8.46 new_ltEs18(Right(xuu580), Right(xuu590), fg, ty_Double) -> new_ltEs4(xuu580, xuu590) 22.90/8.46 new_esEs33(xuu500001, xuu40001, app(app(ty_Either, dce), dcf)) -> new_esEs14(xuu500001, xuu40001, dce, dcf) 22.90/8.46 new_esEs18(Just(xuu500000), Just(xuu40000), app(app(app(ty_@3, fhf), fhg), fhh)) -> new_esEs23(xuu500000, xuu40000, fhf, fhg, fhh) 22.90/8.46 new_esEs34(xuu500000, xuu40000, app(app(app(ty_@3, def), deg), deh)) -> new_esEs23(xuu500000, xuu40000, def, deg, deh) 22.90/8.46 new_esEs11(xuu50000, xuu4000, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs23(xuu50000, xuu4000, eb, ec, ed) 22.90/8.46 new_esEs9(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.46 new_esEs32(xuu580, xuu590, ty_Ordering) -> new_esEs13(xuu580, xuu590) 22.90/8.46 new_ltEs13(LT, LT) -> True 22.90/8.46 new_esEs37(xuu500001, xuu40001, app(ty_Maybe, fda)) -> new_esEs18(xuu500001, xuu40001, fda) 22.90/8.46 new_lt20(xuu580, xuu590, app(app(ty_Either, cbe), cbf)) -> new_lt19(xuu580, xuu590, cbe, cbf) 22.90/8.46 new_esEs10(xuu50000, xuu4000, app(app(ty_Either, bh), ca)) -> new_esEs14(xuu50000, xuu4000, bh, ca) 22.90/8.46 new_esEs31(xuu581, xuu591, app(ty_Ratio, cec)) -> new_esEs22(xuu581, xuu591, cec) 22.90/8.46 new_primCompAux00(xuu37, xuu38, EQ, ty_Ordering) -> new_compare13(xuu37, xuu38) 22.90/8.46 new_compare116(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, dah, dba, dbb) -> LT 22.90/8.46 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Bool, ga) -> new_esEs21(xuu500000, xuu40000) 22.90/8.46 new_esEs6(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.46 new_ltEs15(False, True) -> True 22.90/8.46 new_esEs4(xuu50001, xuu4001, ty_@0) -> new_esEs24(xuu50001, xuu4001) 22.90/8.46 new_primPlusNat0(Succ(xuu2070), xuu5000100) -> Succ(Succ(new_primPlusNat1(xuu2070, xuu5000100))) 22.90/8.46 new_lt20(xuu580, xuu590, ty_Int) -> new_lt8(xuu580, xuu590) 22.90/8.46 new_esEs28(xuu70, xuu73, app(ty_Ratio, bfg)) -> new_esEs22(xuu70, xuu73, bfg) 22.90/8.46 new_ltEs6(xuu58, xuu59, ty_Double) -> new_ltEs4(xuu58, xuu59) 22.90/8.46 new_lt23(xuu99, xuu101, ty_Float) -> new_lt18(xuu99, xuu101) 22.90/8.46 new_lt13(xuu99, xuu101, ebd, ebe) -> new_esEs13(new_compare8(xuu99, xuu101, ebd, ebe), LT) 22.90/8.46 new_lt22(xuu581, xuu591, app(ty_Maybe, cef)) -> new_lt9(xuu581, xuu591, cef) 22.90/8.46 new_primCompAux00(xuu37, xuu38, EQ, ty_Char) -> new_compare12(xuu37, xuu38) 22.90/8.46 new_esEs38(xuu500000, xuu40000, ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.46 new_compare5(xuu5000, xuu400, ty_Bool) -> new_compare15(xuu5000, xuu400) 22.90/8.46 new_esEs32(xuu580, xuu590, ty_Bool) -> new_esEs21(xuu580, xuu590) 22.90/8.46 new_esEs4(xuu50001, xuu4001, ty_Integer) -> new_esEs19(xuu50001, xuu4001) 22.90/8.46 new_primPlusNat1(Zero, Zero) -> Zero 22.90/8.46 new_ltEs18(Left(xuu580), Left(xuu590), app(app(ty_@2, eda), edb), fh) -> new_ltEs8(xuu580, xuu590, eda, edb) 22.90/8.46 new_esEs35(xuu500000, xuu40000, app(ty_Maybe, ecb)) -> new_esEs18(xuu500000, xuu40000, ecb) 22.90/8.46 new_esEs35(xuu500000, xuu40000, app(app(ty_Either, ebf), ebg)) -> new_esEs14(xuu500000, xuu40000, ebf, ebg) 22.90/8.46 new_compare111(xuu125, xuu126, True, fbb) -> LT 22.90/8.46 new_esEs30(xuu580, xuu590, ty_Ordering) -> new_esEs13(xuu580, xuu590) 22.90/8.46 new_esEs21(True, True) -> True 22.90/8.46 new_primCompAux00(xuu37, xuu38, EQ, ty_Integer) -> new_compare11(xuu37, xuu38) 22.90/8.46 new_esEs35(xuu500000, xuu40000, ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.46 new_ltEs21(xuu582, xuu592, ty_Float) -> new_ltEs17(xuu582, xuu592) 22.90/8.46 new_ltEs18(Left(xuu580), Right(xuu590), fg, fh) -> True 22.90/8.46 new_esEs11(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.46 new_compare19(Left(xuu50000), Left(xuu4000), bf, bg) -> new_compare24(xuu50000, xuu4000, new_esEs10(xuu50000, xuu4000, bf), bf, bg) 22.90/8.46 new_esEs14(Right(xuu500000), Right(xuu40000), hd, ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.46 new_ltEs18(Right(xuu580), Right(xuu590), fg, app(ty_[], efa)) -> new_ltEs16(xuu580, xuu590, efa) 22.90/8.46 new_esEs37(xuu500001, xuu40001, ty_@0) -> new_esEs24(xuu500001, xuu40001) 22.90/8.46 new_ltEs22(xuu80, xuu81, ty_Double) -> new_ltEs4(xuu80, xuu81) 22.90/8.46 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Ordering, ga) -> new_esEs13(xuu500000, xuu40000) 22.90/8.46 new_primCompAux00(xuu37, xuu38, EQ, ty_Bool) -> new_compare15(xuu37, xuu38) 22.90/8.46 new_lt23(xuu99, xuu101, app(ty_Maybe, bea)) -> new_lt9(xuu99, xuu101, bea) 22.90/8.46 new_compare17(@0, @0) -> EQ 22.90/8.46 new_ltEs18(Right(xuu580), Left(xuu590), fg, fh) -> False 22.90/8.46 new_esEs37(xuu500001, xuu40001, app(app(app(ty_@3, fdd), fde), fdf)) -> new_esEs23(xuu500001, xuu40001, fdd, fde, fdf) 22.90/8.46 new_esEs14(Right(xuu500000), Right(xuu40000), hd, app(ty_[], bab)) -> new_esEs20(xuu500000, xuu40000, bab) 22.90/8.46 new_esEs34(xuu500000, xuu40000, ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.46 new_esEs14(Left(xuu500000), Left(xuu40000), app(app(app(ty_@3, ha), hb), hc), ga) -> new_esEs23(xuu500000, xuu40000, ha, hb, hc) 22.90/8.46 new_lt23(xuu99, xuu101, app(app(ty_Either, ffc), ffd)) -> new_lt19(xuu99, xuu101, ffc, ffd) 22.90/8.46 new_primCmpNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primCmpNat0(xuu500000, xuu40000) 22.90/8.46 new_esEs31(xuu581, xuu591, ty_Char) -> new_esEs12(xuu581, xuu591) 22.90/8.46 new_esEs10(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.46 new_ltEs18(Left(xuu580), Left(xuu590), ty_Bool, fh) -> new_ltEs15(xuu580, xuu590) 22.90/8.46 new_lt22(xuu581, xuu591, ty_@0) -> new_lt17(xuu581, xuu591) 22.90/8.46 new_ltEs12(xuu58, xuu59) -> new_fsEs(new_compare12(xuu58, xuu59)) 22.90/8.46 new_esEs34(xuu500000, xuu40000, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.46 new_esEs39(xuu99, xuu101, ty_@0) -> new_esEs24(xuu99, xuu101) 22.90/8.46 new_ltEs21(xuu582, xuu592, ty_Double) -> new_ltEs4(xuu582, xuu592) 22.90/8.46 new_esEs33(xuu500001, xuu40001, ty_Bool) -> new_esEs21(xuu500001, xuu40001) 22.90/8.46 new_compare27(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, True, beb, bec, bed) -> EQ 22.90/8.46 new_esEs32(xuu580, xuu590, ty_Char) -> new_esEs12(xuu580, xuu590) 22.90/8.46 new_esEs10(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.46 new_compare13(LT, GT) -> LT 22.90/8.46 new_lt21(xuu580, xuu590, ty_@0) -> new_lt17(xuu580, xuu590) 22.90/8.46 new_ltEs5(xuu58, xuu59) -> new_fsEs(new_compare17(xuu58, xuu59)) 22.90/8.46 new_ltEs18(Right(xuu580), Right(xuu590), fg, app(app(ty_@2, eec), eed)) -> new_ltEs8(xuu580, xuu590, eec, eed) 22.90/8.46 new_ltEs15(True, False) -> False 22.90/8.46 new_lt5(xuu99, xuu101, bcb, bcc, bcd) -> new_esEs13(new_compare10(xuu99, xuu101, bcb, bcc, bcd), LT) 22.90/8.46 new_ltEs18(Right(xuu580), Right(xuu590), fg, ty_Float) -> new_ltEs17(xuu580, xuu590) 22.90/8.46 new_esEs38(xuu500000, xuu40000, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.46 new_esEs33(xuu500001, xuu40001, ty_Int) -> new_esEs25(xuu500001, xuu40001) 22.90/8.46 new_esEs18(Just(xuu500000), Just(xuu40000), app(app(ty_Either, fgg), fgh)) -> new_esEs14(xuu500000, xuu40000, fgg, fgh) 22.90/8.46 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.46 new_esEs13(EQ, EQ) -> True 22.90/8.46 new_compare10(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bdb, bdc, bdd) -> new_compare27(xuu50000, xuu50001, xuu50002, xuu4000, xuu4001, xuu4002, new_asAs(new_esEs9(xuu50000, xuu4000, bdb), new_asAs(new_esEs8(xuu50001, xuu4001, bdc), new_esEs7(xuu50002, xuu4002, bdd))), bdb, bdc, bdd) 22.90/8.46 new_ltEs20(xuu581, xuu591, ty_Float) -> new_ltEs17(xuu581, xuu591) 22.90/8.46 new_esEs11(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.46 new_lt11(xuu69, xuu72, ty_Double) -> new_lt6(xuu69, xuu72) 22.90/8.46 new_lt22(xuu581, xuu591, app(app(ty_Either, cfc), cfd)) -> new_lt19(xuu581, xuu591, cfc, cfd) 22.90/8.46 new_esEs38(xuu500000, xuu40000, ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.46 new_lt20(xuu580, xuu590, app(app(app(ty_@3, cba), cbb), cbc)) -> new_lt5(xuu580, xuu590, cba, cbb, cbc) 22.90/8.46 new_esEs29(xuu69, xuu72, app(ty_Ratio, bee)) -> new_esEs22(xuu69, xuu72, bee) 22.90/8.46 new_ltEs15(False, False) -> True 22.90/8.46 new_esEs36(xuu500002, xuu40002, app(app(app(ty_@3, fcb), fcc), fcd)) -> new_esEs23(xuu500002, xuu40002, fcb, fcc, fcd) 22.90/8.46 new_primCompAux1(xuu5000, xuu400, xuu5001, xuu401, bb) -> new_primCompAux00(xuu5001, xuu401, new_compare5(xuu5000, xuu400, bb), app(ty_[], bb)) 22.90/8.46 new_ltEs19(xuu71, xuu74, ty_Float) -> new_ltEs17(xuu71, xuu74) 22.90/8.46 new_esEs17(Float(xuu500000, xuu500001), Float(xuu40000, xuu40001)) -> new_esEs25(new_sr(xuu500000, xuu40001), new_sr(xuu500001, xuu40000)) 22.90/8.46 new_esEs28(xuu70, xuu73, app(ty_[], bgf)) -> new_esEs20(xuu70, xuu73, bgf) 22.90/8.46 new_primCmpInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> LT 22.90/8.46 new_esEs34(xuu500000, xuu40000, app(app(ty_Either, ddg), ddh)) -> new_esEs14(xuu500000, xuu40000, ddg, ddh) 22.90/8.46 new_ltEs22(xuu80, xuu81, app(app(ty_Either, dgc), dgd)) -> new_ltEs18(xuu80, xuu81, dgc, dgd) 22.90/8.46 new_ltEs19(xuu71, xuu74, ty_Double) -> new_ltEs4(xuu71, xuu74) 22.90/8.46 new_ltEs22(xuu80, xuu81, app(app(ty_@2, dfd), dfe)) -> new_ltEs8(xuu80, xuu81, dfd, dfe) 22.90/8.46 new_compare15(True, False) -> GT 22.90/8.46 new_lt11(xuu69, xuu72, app(app(ty_Either, bfe), bff)) -> new_lt19(xuu69, xuu72, bfe, bff) 22.90/8.46 new_lt21(xuu580, xuu590, app(app(app(ty_@3, cde), cdf), cdg)) -> new_lt5(xuu580, xuu590, cde, cdf, cdg) 22.90/8.46 new_compare13(EQ, GT) -> LT 22.90/8.46 new_esEs35(xuu500000, xuu40000, ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.46 new_esEs36(xuu500002, xuu40002, app(ty_Maybe, fbg)) -> new_esEs18(xuu500002, xuu40002, fbg) 22.90/8.46 new_ltEs18(Right(xuu580), Right(xuu590), fg, app(ty_Maybe, eee)) -> new_ltEs9(xuu580, xuu590, eee) 22.90/8.46 new_ltEs18(Left(xuu580), Left(xuu590), ty_Int, fh) -> new_ltEs14(xuu580, xuu590) 22.90/8.46 new_primCmpInt(Pos(Zero), Neg(Succ(xuu40000))) -> GT 22.90/8.46 new_primCmpInt(Neg(Succ(xuu500000)), Neg(xuu4000)) -> new_primCmpNat0(xuu4000, Succ(xuu500000)) 22.90/8.46 new_lt12(xuu70, xuu73, ty_@0) -> new_lt17(xuu70, xuu73) 22.90/8.46 new_ltEs9(Just(xuu580), Just(xuu590), app(app(ty_Either, ebb), ebc)) -> new_ltEs18(xuu580, xuu590, ebb, ebc) 22.90/8.46 new_esEs5(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.46 new_ltEs6(xuu58, xuu59, app(app(app(ty_@3, fb), fc), fd)) -> new_ltEs10(xuu58, xuu59, fb, fc, fd) 22.90/8.46 new_lt11(xuu69, xuu72, app(ty_Maybe, beh)) -> new_lt9(xuu69, xuu72, beh) 22.90/8.46 new_ltEs19(xuu71, xuu74, app(ty_Maybe, bhd)) -> new_ltEs9(xuu71, xuu74, bhd) 22.90/8.46 new_compare115(xuu156, xuu157, xuu158, xuu159, False, cac, cad) -> GT 22.90/8.46 new_ltEs13(GT, GT) -> True 22.90/8.46 new_lt23(xuu99, xuu101, ty_Int) -> new_lt8(xuu99, xuu101) 22.90/8.46 new_lt21(xuu580, xuu590, app(app(ty_Either, cea), ceb)) -> new_lt19(xuu580, xuu590, cea, ceb) 22.90/8.46 new_esEs37(xuu500001, xuu40001, ty_Int) -> new_esEs25(xuu500001, xuu40001) 22.90/8.46 new_esEs33(xuu500001, xuu40001, app(app(ty_@2, dcg), dch)) -> new_esEs16(xuu500001, xuu40001, dcg, dch) 22.90/8.46 new_esEs32(xuu580, xuu590, ty_Int) -> new_esEs25(xuu580, xuu590) 22.90/8.46 new_esEs8(xuu50001, xuu4001, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_esEs23(xuu50001, xuu4001, ehe, ehf, ehg) 22.90/8.46 new_compare28(xuu99, xuu100, xuu101, xuu102, True, ffa, ffb) -> EQ 22.90/8.46 new_esEs11(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.46 new_lt20(xuu580, xuu590, ty_Bool) -> new_lt4(xuu580, xuu590) 22.90/8.46 new_esEs10(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.46 new_primEqInt(Pos(Succ(xuu5000000)), Pos(Zero)) -> False 22.90/8.46 new_primEqInt(Pos(Zero), Pos(Succ(xuu400000))) -> False 22.90/8.46 new_lt22(xuu581, xuu591, app(ty_[], cfb)) -> new_lt16(xuu581, xuu591, cfb) 22.90/8.46 new_ltEs13(EQ, GT) -> True 22.90/8.46 new_esEs33(xuu500001, xuu40001, ty_Ordering) -> new_esEs13(xuu500001, xuu40001) 22.90/8.46 new_compare28(xuu99, xuu100, xuu101, xuu102, False, ffa, ffb) -> new_compare114(xuu99, xuu100, xuu101, xuu102, new_lt23(xuu99, xuu101, ffa), new_asAs(new_esEs39(xuu99, xuu101, ffa), new_ltEs24(xuu100, xuu102, ffb)), ffa, ffb) 22.90/8.46 new_ltEs9(Just(xuu580), Just(xuu590), app(app(ty_@2, eac), ead)) -> new_ltEs8(xuu580, xuu590, eac, ead) 22.90/8.46 new_esEs7(xuu50002, xuu4002, app(ty_[], ega)) -> new_esEs20(xuu50002, xuu4002, ega) 22.90/8.46 new_ltEs13(EQ, EQ) -> True 22.90/8.46 new_esEs30(xuu580, xuu590, ty_Char) -> new_esEs12(xuu580, xuu590) 22.90/8.46 new_lt12(xuu70, xuu73, ty_Char) -> new_lt10(xuu70, xuu73) 22.90/8.46 new_ltEs21(xuu582, xuu592, ty_Char) -> new_ltEs12(xuu582, xuu592) 22.90/8.46 new_esEs38(xuu500000, xuu40000, ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.46 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Int, ga) -> new_esEs25(xuu500000, xuu40000) 22.90/8.46 new_ltEs23(xuu87, xuu88, ty_Float) -> new_ltEs17(xuu87, xuu88) 22.90/8.46 new_esEs4(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 22.90/8.46 new_primCmpNat0(Zero, Zero) -> EQ 22.90/8.46 new_ltEs23(xuu87, xuu88, app(app(app(ty_@3, dhd), dhe), dhf)) -> new_ltEs10(xuu87, xuu88, dhd, dhe, dhf) 22.90/8.46 new_esEs5(xuu50000, xuu4000, app(ty_Maybe, dac)) -> new_esEs18(xuu50000, xuu4000, dac) 22.90/8.46 new_ltEs24(xuu100, xuu102, ty_Ordering) -> new_ltEs13(xuu100, xuu102) 22.90/8.46 new_compare13(LT, EQ) -> LT 22.90/8.46 new_esEs5(xuu50000, xuu4000, app(app(ty_@2, daa), dab)) -> new_esEs16(xuu50000, xuu4000, daa, dab) 22.90/8.46 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Float, ga) -> new_esEs17(xuu500000, xuu40000) 22.90/8.46 new_lt10(xuu99, xuu101) -> new_esEs13(new_compare12(xuu99, xuu101), LT) 22.90/8.46 new_esEs39(xuu99, xuu101, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs23(xuu99, xuu101, bcb, bcc, bcd) 22.90/8.46 new_ltEs21(xuu582, xuu592, ty_Bool) -> new_ltEs15(xuu582, xuu592) 22.90/8.46 new_esEs36(xuu500002, xuu40002, ty_@0) -> new_esEs24(xuu500002, xuu40002) 22.90/8.46 new_esEs30(xuu580, xuu590, ty_Integer) -> new_esEs19(xuu580, xuu590) 22.90/8.46 new_ltEs21(xuu582, xuu592, app(ty_Maybe, cfh)) -> new_ltEs9(xuu582, xuu592, cfh) 22.90/8.46 new_esEs6(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.46 new_esEs33(xuu500001, xuu40001, app(ty_Ratio, ddc)) -> new_esEs22(xuu500001, xuu40001, ddc) 22.90/8.46 new_ltEs20(xuu581, xuu591, ty_Integer) -> new_ltEs11(xuu581, xuu591) 22.90/8.46 new_ltEs24(xuu100, xuu102, ty_Double) -> new_ltEs4(xuu100, xuu102) 22.90/8.46 new_ltEs19(xuu71, xuu74, ty_Char) -> new_ltEs12(xuu71, xuu74) 22.90/8.46 new_esEs37(xuu500001, xuu40001, ty_Float) -> new_esEs17(xuu500001, xuu40001) 22.90/8.46 new_esEs32(xuu580, xuu590, ty_Float) -> new_esEs17(xuu580, xuu590) 22.90/8.46 new_ltEs9(Just(xuu580), Just(xuu590), app(ty_[], eba)) -> new_ltEs16(xuu580, xuu590, eba) 22.90/8.46 new_lt21(xuu580, xuu590, app(ty_Maybe, cdd)) -> new_lt9(xuu580, xuu590, cdd) 22.90/8.46 new_esEs6(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.46 new_lt21(xuu580, xuu590, ty_Integer) -> new_lt14(xuu580, xuu590) 22.90/8.46 new_compare116(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, False, dah, dba, dbb) -> GT 22.90/8.46 new_compare110(xuu135, xuu136, True, bd, be) -> LT 22.90/8.46 new_esEs11(xuu50000, xuu4000, app(ty_Maybe, dg)) -> new_esEs18(xuu50000, xuu4000, dg) 22.90/8.46 new_esEs28(xuu70, xuu73, ty_Ordering) -> new_esEs13(xuu70, xuu73) 22.90/8.46 new_esEs33(xuu500001, xuu40001, ty_Double) -> new_esEs15(xuu500001, xuu40001) 22.90/8.46 new_esEs35(xuu500000, xuu40000, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.46 new_lt11(xuu69, xuu72, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_lt5(xuu69, xuu72, bfa, bfb, bfc) 22.90/8.46 new_ltEs20(xuu581, xuu591, ty_@0) -> new_ltEs5(xuu581, xuu591) 22.90/8.46 new_esEs38(xuu500000, xuu40000, ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.46 new_lt22(xuu581, xuu591, ty_Char) -> new_lt10(xuu581, xuu591) 22.90/8.46 new_ltEs18(Right(xuu580), Right(xuu590), fg, ty_@0) -> new_ltEs5(xuu580, xuu590) 22.90/8.46 new_esEs30(xuu580, xuu590, app(ty_[], cbd)) -> new_esEs20(xuu580, xuu590, cbd) 22.90/8.46 new_ltEs22(xuu80, xuu81, app(ty_[], dgb)) -> new_ltEs16(xuu80, xuu81, dgb) 22.90/8.46 new_esEs20([], [], dad) -> True 22.90/8.46 new_ltEs13(LT, GT) -> True 22.90/8.46 new_lt6(xuu99, xuu101) -> new_esEs13(new_compare6(xuu99, xuu101), LT) 22.90/8.46 new_esEs28(xuu70, xuu73, ty_Char) -> new_esEs12(xuu70, xuu73) 22.90/8.46 new_lt22(xuu581, xuu591, ty_Float) -> new_lt18(xuu581, xuu591) 22.90/8.46 new_lt14(xuu99, xuu101) -> new_esEs13(new_compare11(xuu99, xuu101), LT) 22.90/8.46 new_primCmpNat0(Succ(xuu500000), Zero) -> GT 22.90/8.46 new_ltEs18(Left(xuu580), Left(xuu590), app(app(ty_Either, edh), eea), fh) -> new_ltEs18(xuu580, xuu590, edh, eea) 22.90/8.46 new_primCompAux00(xuu37, xuu38, EQ, ty_Float) -> new_compare18(xuu37, xuu38) 22.90/8.46 new_pePe(False, xuu195) -> xuu195 22.90/8.46 new_esEs33(xuu500001, xuu40001, ty_@0) -> new_esEs24(xuu500001, xuu40001) 22.90/8.46 new_esEs9(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.46 new_compare7(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), ty_Int) -> new_compare14(new_sr(xuu50000, xuu4001), new_sr(xuu4000, xuu50001)) 22.90/8.46 new_esEs11(xuu50000, xuu4000, app(app(ty_@2, de), df)) -> new_esEs16(xuu50000, xuu4000, de, df) 22.90/8.46 new_compare25(xuu87, xuu88, True, dgf, dgg) -> EQ 22.90/8.46 new_esEs14(Right(xuu500000), Right(xuu40000), hd, ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.46 new_compare5(xuu5000, xuu400, ty_Ordering) -> new_compare13(xuu5000, xuu400) 22.90/8.46 new_lt21(xuu580, xuu590, app(ty_Ratio, cda)) -> new_lt7(xuu580, xuu590, cda) 22.90/8.46 new_esEs4(xuu50001, xuu4001, ty_Int) -> new_esEs25(xuu50001, xuu4001) 22.90/8.46 new_compare112(xuu142, xuu143, True, bdf, bdg) -> LT 22.90/8.46 new_lt23(xuu99, xuu101, ty_Bool) -> new_lt4(xuu99, xuu101) 22.90/8.46 new_ltEs22(xuu80, xuu81, app(ty_Ratio, dfc)) -> new_ltEs7(xuu80, xuu81, dfc) 22.90/8.46 new_ltEs9(Just(xuu580), Just(xuu590), ty_Ordering) -> new_ltEs13(xuu580, xuu590) 22.90/8.46 new_compare15(False, False) -> EQ 22.90/8.46 new_esEs6(xuu50000, xuu4000, app(app(ty_Either, dbc), dbd)) -> new_esEs14(xuu50000, xuu4000, dbc, dbd) 22.90/8.46 new_ltEs19(xuu71, xuu74, ty_Bool) -> new_ltEs15(xuu71, xuu74) 22.90/8.46 new_primEqInt(Pos(Zero), Neg(Succ(xuu400000))) -> False 22.90/8.46 new_primEqInt(Neg(Zero), Pos(Succ(xuu400000))) -> False 22.90/8.46 new_compare5(xuu5000, xuu400, ty_Float) -> new_compare18(xuu5000, xuu400) 22.90/8.46 new_lt22(xuu581, xuu591, ty_Ordering) -> new_lt15(xuu581, xuu591) 22.90/8.46 new_compare6(Double(xuu50000, Pos(xuu500010)), Double(xuu4000, Pos(xuu40010))) -> new_compare14(new_sr(xuu50000, Pos(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) 22.90/8.46 new_esEs37(xuu500001, xuu40001, ty_Bool) -> new_esEs21(xuu500001, xuu40001) 22.90/8.46 new_ltEs18(Right(xuu580), Right(xuu590), fg, app(ty_Ratio, eeb)) -> new_ltEs7(xuu580, xuu590, eeb) 22.90/8.46 new_esEs5(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.46 new_lt12(xuu70, xuu73, ty_Ordering) -> new_lt15(xuu70, xuu73) 22.90/8.46 new_compare113(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, xuu178, dah, dba, dbb) -> new_compare116(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, dah, dba, dbb) 22.90/8.46 new_esEs7(xuu50002, xuu4002, ty_Integer) -> new_esEs19(xuu50002, xuu4002) 22.90/8.46 new_esEs31(xuu581, xuu591, ty_@0) -> new_esEs24(xuu581, xuu591) 22.90/8.46 new_lt11(xuu69, xuu72, app(ty_Ratio, bee)) -> new_lt7(xuu69, xuu72, bee) 22.90/8.46 new_lt11(xuu69, xuu72, app(app(ty_@2, bef), beg)) -> new_lt13(xuu69, xuu72, bef, beg) 22.90/8.46 new_esEs36(xuu500002, xuu40002, app(ty_Ratio, fca)) -> new_esEs22(xuu500002, xuu40002, fca) 22.90/8.46 new_compare5(xuu5000, xuu400, app(app(ty_@2, bcg), bch)) -> new_compare8(xuu5000, xuu400, bcg, bch) 22.90/8.46 new_esEs5(xuu50000, xuu4000, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs23(xuu50000, xuu4000, dae, daf, dag) 22.90/8.46 new_esEs28(xuu70, xuu73, ty_Double) -> new_esEs15(xuu70, xuu73) 22.90/8.46 new_esEs11(xuu50000, xuu4000, app(ty_Ratio, ea)) -> new_esEs22(xuu50000, xuu4000, ea) 22.90/8.46 new_esEs10(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.46 new_primPlusNat0(Zero, xuu5000100) -> Succ(xuu5000100) 22.90/8.46 new_esEs29(xuu69, xuu72, app(app(ty_Either, bfe), bff)) -> new_esEs14(xuu69, xuu72, bfe, bff) 22.90/8.46 new_esEs38(xuu500000, xuu40000, ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.46 new_ltEs24(xuu100, xuu102, app(ty_Ratio, ffe)) -> new_ltEs7(xuu100, xuu102, ffe) 22.90/8.46 new_esEs29(xuu69, xuu72, ty_Bool) -> new_esEs21(xuu69, xuu72) 22.90/8.46 new_esEs7(xuu50002, xuu4002, ty_Double) -> new_esEs15(xuu50002, xuu4002) 22.90/8.46 new_esEs8(xuu50001, xuu4001, app(ty_Maybe, ehb)) -> new_esEs18(xuu50001, xuu4001, ehb) 22.90/8.46 new_esEs29(xuu69, xuu72, app(ty_Maybe, beh)) -> new_esEs18(xuu69, xuu72, beh) 22.90/8.46 new_fsEs(xuu190) -> new_not(new_esEs13(xuu190, GT)) 22.90/8.46 new_esEs31(xuu581, xuu591, app(ty_Maybe, cef)) -> new_esEs18(xuu581, xuu591, cef) 22.90/8.46 new_compare16(:(xuu50000, xuu50001), :(xuu4000, xuu4001), bde) -> new_primCompAux1(xuu50000, xuu4000, xuu50001, xuu4001, bde) 22.90/8.46 new_esEs14(Right(xuu500000), Right(xuu40000), hd, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs23(xuu500000, xuu40000, bad, bae, baf) 22.90/8.46 new_lt11(xuu69, xuu72, ty_Integer) -> new_lt14(xuu69, xuu72) 22.90/8.46 new_esEs32(xuu580, xuu590, ty_Integer) -> new_esEs19(xuu580, xuu590) 22.90/8.46 new_lt11(xuu69, xuu72, ty_Int) -> new_lt8(xuu69, xuu72) 22.90/8.46 new_esEs4(xuu50001, xuu4001, app(ty_[], chd)) -> new_esEs20(xuu50001, xuu4001, chd) 22.90/8.46 new_ltEs9(Just(xuu580), Just(xuu590), ty_@0) -> new_ltEs5(xuu580, xuu590) 22.90/8.46 new_ltEs18(Left(xuu580), Left(xuu590), ty_Float, fh) -> new_ltEs17(xuu580, xuu590) 22.90/8.46 new_esEs35(xuu500000, xuu40000, ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.46 new_esEs27(xuu500000, xuu40000, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.46 new_esEs31(xuu581, xuu591, app(app(ty_@2, ced), cee)) -> new_esEs16(xuu581, xuu591, ced, cee) 22.90/8.46 new_ltEs9(Just(xuu580), Just(xuu590), ty_Integer) -> new_ltEs11(xuu580, xuu590) 22.90/8.46 new_esEs9(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.46 new_primCompAux00(xuu37, xuu38, EQ, ty_@0) -> new_compare17(xuu37, xuu38) 22.90/8.46 new_esEs33(xuu500001, xuu40001, ty_Integer) -> new_esEs19(xuu500001, xuu40001) 22.90/8.46 new_esEs29(xuu69, xuu72, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs23(xuu69, xuu72, bfa, bfb, bfc) 22.90/8.46 new_lt20(xuu580, xuu590, ty_Float) -> new_lt18(xuu580, xuu590) 22.90/8.46 new_esEs10(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.46 new_esEs36(xuu500002, xuu40002, ty_Ordering) -> new_esEs13(xuu500002, xuu40002) 22.90/8.46 new_ltEs19(xuu71, xuu74, app(ty_[], bhh)) -> new_ltEs16(xuu71, xuu74, bhh) 22.90/8.46 new_esEs8(xuu50001, xuu4001, ty_@0) -> new_esEs24(xuu50001, xuu4001) 22.90/8.46 new_esEs18(Nothing, Nothing, dac) -> True 22.90/8.46 new_compare12(Char(xuu50000), Char(xuu4000)) -> new_primCmpNat0(xuu50000, xuu4000) 22.90/8.46 new_ltEs20(xuu581, xuu591, app(app(ty_@2, cbh), cca)) -> new_ltEs8(xuu581, xuu591, cbh, cca) 22.90/8.46 new_esEs31(xuu581, xuu591, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs23(xuu581, xuu591, ceg, ceh, cfa) 22.90/8.46 new_primMulInt(Neg(xuu40000), Neg(xuu500010)) -> Pos(new_primMulNat0(xuu40000, xuu500010)) 22.90/8.46 new_primCmpInt(Pos(Zero), Pos(Succ(xuu40000))) -> new_primCmpNat0(Zero, Succ(xuu40000)) 22.90/8.46 new_esEs18(Nothing, Just(xuu40000), dac) -> False 22.90/8.46 new_esEs18(Just(xuu500000), Nothing, dac) -> False 22.90/8.46 new_esEs37(xuu500001, xuu40001, ty_Char) -> new_esEs12(xuu500001, xuu40001) 22.90/8.46 new_ltEs13(GT, EQ) -> False 22.90/8.46 new_esEs14(Left(xuu500000), Left(xuu40000), app(app(ty_@2, gd), ge), ga) -> new_esEs16(xuu500000, xuu40000, gd, ge) 22.90/8.46 new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_@2, bba), bbb)) -> new_compare8(xuu37, xuu38, bba, bbb) 22.90/8.46 new_lt12(xuu70, xuu73, app(ty_[], bgf)) -> new_lt16(xuu70, xuu73, bgf) 22.90/8.46 new_compare18(Float(xuu50000, Pos(xuu500010)), Float(xuu4000, Pos(xuu40010))) -> new_compare14(new_sr(xuu50000, Pos(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) 22.90/8.46 new_esEs30(xuu580, xuu590, ty_Double) -> new_esEs15(xuu580, xuu590) 22.90/8.46 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.46 new_esEs34(xuu500000, xuu40000, ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.46 new_esEs7(xuu50002, xuu4002, app(app(ty_@2, eff), efg)) -> new_esEs16(xuu50002, xuu4002, eff, efg) 22.90/8.46 new_esEs39(xuu99, xuu101, ty_Bool) -> new_esEs21(xuu99, xuu101) 22.90/8.46 new_compare115(xuu156, xuu157, xuu158, xuu159, True, cac, cad) -> LT 22.90/8.46 new_esEs39(xuu99, xuu101, app(app(ty_Either, ffc), ffd)) -> new_esEs14(xuu99, xuu101, ffc, ffd) 22.90/8.46 new_esEs38(xuu500000, xuu40000, app(ty_[], fed)) -> new_esEs20(xuu500000, xuu40000, fed) 22.90/8.46 new_esEs35(xuu500000, xuu40000, app(app(ty_@2, ebh), eca)) -> new_esEs16(xuu500000, xuu40000, ebh, eca) 22.90/8.46 new_esEs39(xuu99, xuu101, ty_Int) -> new_esEs25(xuu99, xuu101) 22.90/8.46 new_primMulInt(Pos(xuu40000), Neg(xuu500010)) -> Neg(new_primMulNat0(xuu40000, xuu500010)) 22.90/8.46 new_primMulInt(Neg(xuu40000), Pos(xuu500010)) -> Neg(new_primMulNat0(xuu40000, xuu500010)) 22.90/8.46 new_ltEs21(xuu582, xuu592, app(ty_Ratio, cfe)) -> new_ltEs7(xuu582, xuu592, cfe) 22.90/8.46 new_ltEs18(Right(xuu580), Right(xuu590), fg, ty_Int) -> new_ltEs14(xuu580, xuu590) 22.90/8.46 new_esEs28(xuu70, xuu73, app(ty_Maybe, bgb)) -> new_esEs18(xuu70, xuu73, bgb) 22.90/8.46 new_lt22(xuu581, xuu591, app(app(ty_@2, ced), cee)) -> new_lt13(xuu581, xuu591, ced, cee) 22.90/8.46 new_sr0(Integer(xuu40000), Integer(xuu500010)) -> Integer(new_primMulInt(xuu40000, xuu500010)) 22.90/8.46 new_esEs35(xuu500000, xuu40000, ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.46 new_ltEs23(xuu87, xuu88, ty_Char) -> new_ltEs12(xuu87, xuu88) 22.90/8.46 new_lt22(xuu581, xuu591, app(ty_Ratio, cec)) -> new_lt7(xuu581, xuu591, cec) 22.90/8.46 new_esEs36(xuu500002, xuu40002, app(ty_[], fbh)) -> new_esEs20(xuu500002, xuu40002, fbh) 22.90/8.46 new_compare18(Float(xuu50000, Neg(xuu500010)), Float(xuu4000, Neg(xuu40010))) -> new_compare14(new_sr(xuu50000, Neg(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) 22.90/8.46 new_esEs6(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.46 new_esEs28(xuu70, xuu73, ty_@0) -> new_esEs24(xuu70, xuu73) 22.90/8.46 new_ltEs9(Nothing, Just(xuu590), fa) -> True 22.90/8.46 new_ltEs24(xuu100, xuu102, app(app(ty_Either, fge), fgf)) -> new_ltEs18(xuu100, xuu102, fge, fgf) 22.90/8.46 new_asAs(True, xuu117) -> xuu117 22.90/8.46 new_esEs27(xuu500000, xuu40000, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.46 new_esEs5(xuu50000, xuu4000, app(app(ty_Either, hd), ga)) -> new_esEs14(xuu50000, xuu4000, hd, ga) 22.90/8.46 new_esEs31(xuu581, xuu591, ty_Double) -> new_esEs15(xuu581, xuu591) 22.90/8.46 new_esEs29(xuu69, xuu72, ty_Float) -> new_esEs17(xuu69, xuu72) 22.90/8.46 new_esEs8(xuu50001, xuu4001, ty_Ordering) -> new_esEs13(xuu50001, xuu4001) 22.90/8.46 new_ltEs23(xuu87, xuu88, ty_Integer) -> new_ltEs11(xuu87, xuu88) 22.90/8.46 new_esEs4(xuu50001, xuu4001, ty_Double) -> new_esEs15(xuu50001, xuu4001) 22.90/8.46 new_ltEs18(Right(xuu580), Right(xuu590), fg, ty_Bool) -> new_ltEs15(xuu580, xuu590) 22.90/8.46 new_ltEs6(xuu58, xuu59, ty_Bool) -> new_ltEs15(xuu58, xuu59) 22.90/8.46 new_esEs39(xuu99, xuu101, app(ty_Ratio, bce)) -> new_esEs22(xuu99, xuu101, bce) 22.90/8.46 new_ltEs21(xuu582, xuu592, ty_Ordering) -> new_ltEs13(xuu582, xuu592) 22.90/8.46 new_compare7(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), ty_Integer) -> new_compare11(new_sr0(xuu50000, xuu4001), new_sr0(xuu4000, xuu50001)) 22.90/8.46 new_ltEs24(xuu100, xuu102, ty_Int) -> new_ltEs14(xuu100, xuu102) 22.90/8.46 new_esEs10(xuu50000, xuu4000, app(app(ty_@2, cb), cc)) -> new_esEs16(xuu50000, xuu4000, cb, cc) 22.90/8.46 new_esEs11(xuu50000, xuu4000, app(ty_[], dh)) -> new_esEs20(xuu50000, xuu4000, dh) 22.90/8.46 new_esEs30(xuu580, xuu590, ty_Float) -> new_esEs17(xuu580, xuu590) 22.90/8.46 new_ltEs23(xuu87, xuu88, app(ty_Maybe, dhc)) -> new_ltEs9(xuu87, xuu88, dhc) 22.90/8.46 new_compare16([], [], bde) -> EQ 22.90/8.46 new_sr(xuu4000, xuu50001) -> new_primMulInt(xuu4000, xuu50001) 22.90/8.46 new_lt21(xuu580, xuu590, ty_Char) -> new_lt10(xuu580, xuu590) 22.90/8.46 new_compare19(Left(xuu50000), Right(xuu4000), bf, bg) -> LT 22.90/8.46 new_primMulNat0(Zero, Zero) -> Zero 22.90/8.46 new_esEs39(xuu99, xuu101, ty_Double) -> new_esEs15(xuu99, xuu101) 22.90/8.46 new_ltEs6(xuu58, xuu59, ty_Char) -> new_ltEs12(xuu58, xuu59) 22.90/8.46 new_lt20(xuu580, xuu590, app(ty_[], cbd)) -> new_lt16(xuu580, xuu590, cbd) 22.90/8.46 new_esEs31(xuu581, xuu591, app(ty_[], cfb)) -> new_esEs20(xuu581, xuu591, cfb) 22.90/8.46 new_esEs7(xuu50002, xuu4002, app(ty_Ratio, egb)) -> new_esEs22(xuu50002, xuu4002, egb) 22.90/8.46 new_ltEs19(xuu71, xuu74, app(ty_Ratio, bha)) -> new_ltEs7(xuu71, xuu74, bha) 22.90/8.46 new_esEs4(xuu50001, xuu4001, app(app(ty_@2, cha), chb)) -> new_esEs16(xuu50001, xuu4001, cha, chb) 22.90/8.46 new_ltEs22(xuu80, xuu81, app(ty_Maybe, dff)) -> new_ltEs9(xuu80, xuu81, dff) 22.90/8.46 new_esEs29(xuu69, xuu72, ty_@0) -> new_esEs24(xuu69, xuu72) 22.90/8.46 new_esEs5(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.46 new_esEs7(xuu50002, xuu4002, ty_Int) -> new_esEs25(xuu50002, xuu4002) 22.90/8.46 new_esEs39(xuu99, xuu101, app(app(ty_@2, ebd), ebe)) -> new_esEs16(xuu99, xuu101, ebd, ebe) 22.90/8.46 new_esEs9(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.46 new_ltEs13(EQ, LT) -> False 22.90/8.46 new_ltEs18(Right(xuu580), Right(xuu590), fg, app(app(app(ty_@3, eef), eeg), eeh)) -> new_ltEs10(xuu580, xuu590, eef, eeg, eeh) 22.90/8.46 new_esEs30(xuu580, xuu590, ty_@0) -> new_esEs24(xuu580, xuu590) 22.90/8.46 new_ltEs18(Left(xuu580), Left(xuu590), app(app(app(ty_@3, edd), ede), edf), fh) -> new_ltEs10(xuu580, xuu590, edd, ede, edf) 22.90/8.46 new_primEqInt(Neg(Succ(xuu5000000)), Neg(Zero)) -> False 22.90/8.46 new_primEqInt(Neg(Zero), Neg(Succ(xuu400000))) -> False 22.90/8.46 new_lt20(xuu580, xuu590, ty_Double) -> new_lt6(xuu580, xuu590) 22.90/8.46 new_primEqInt(Pos(Succ(xuu5000000)), Pos(Succ(xuu400000))) -> new_primEqNat0(xuu5000000, xuu400000) 22.90/8.46 new_esEs39(xuu99, xuu101, ty_Ordering) -> new_esEs13(xuu99, xuu101) 22.90/8.46 new_compare114(xuu156, xuu157, xuu158, xuu159, False, xuu161, cac, cad) -> new_compare115(xuu156, xuu157, xuu158, xuu159, xuu161, cac, cad) 22.90/8.46 new_ltEs6(xuu58, xuu59, ty_@0) -> new_ltEs5(xuu58, xuu59) 22.90/8.46 new_ltEs23(xuu87, xuu88, ty_Int) -> new_ltEs14(xuu87, xuu88) 22.90/8.46 new_esEs34(xuu500000, xuu40000, app(app(ty_@2, dea), deb)) -> new_esEs16(xuu500000, xuu40000, dea, deb) 22.90/8.46 new_ltEs18(Right(xuu580), Right(xuu590), fg, ty_Char) -> new_ltEs12(xuu580, xuu590) 22.90/8.46 new_esEs14(Right(xuu500000), Right(xuu40000), hd, ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.46 new_ltEs19(xuu71, xuu74, ty_Ordering) -> new_ltEs13(xuu71, xuu74) 22.90/8.46 new_esEs18(Just(xuu500000), Just(xuu40000), app(app(ty_@2, fha), fhb)) -> new_esEs16(xuu500000, xuu40000, fha, fhb) 22.90/8.46 new_esEs4(xuu50001, xuu4001, ty_Ordering) -> new_esEs13(xuu50001, xuu4001) 22.90/8.46 new_primEqInt(Pos(Succ(xuu5000000)), Neg(xuu40000)) -> False 22.90/8.46 new_primEqInt(Neg(Succ(xuu5000000)), Pos(xuu40000)) -> False 22.90/8.46 new_ltEs20(xuu581, xuu591, app(ty_Ratio, cbg)) -> new_ltEs7(xuu581, xuu591, cbg) 22.90/8.46 new_ltEs18(Left(xuu580), Left(xuu590), ty_Double, fh) -> new_ltEs4(xuu580, xuu590) 22.90/8.46 new_esEs10(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.46 new_primCmpInt(Neg(Zero), Neg(Succ(xuu40000))) -> new_primCmpNat0(Succ(xuu40000), Zero) 22.90/8.46 new_esEs8(xuu50001, xuu4001, app(ty_Ratio, ehd)) -> new_esEs22(xuu50001, xuu4001, ehd) 22.90/8.46 new_esEs13(LT, GT) -> False 22.90/8.46 new_esEs13(GT, LT) -> False 22.90/8.46 new_esEs20(:(xuu500000, xuu500001), [], dad) -> False 22.90/8.46 new_esEs20([], :(xuu40000, xuu40001), dad) -> False 22.90/8.46 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 22.90/8.46 new_esEs34(xuu500000, xuu40000, ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.46 new_esEs35(xuu500000, xuu40000, app(ty_[], ecc)) -> new_esEs20(xuu500000, xuu40000, ecc) 22.90/8.46 new_ltEs20(xuu581, xuu591, ty_Ordering) -> new_ltEs13(xuu581, xuu591) 22.90/8.46 new_esEs5(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.46 new_primCompAux00(xuu37, xuu38, LT, bag) -> LT 22.90/8.46 new_compare113(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, False, xuu178, dah, dba, dbb) -> new_compare116(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, xuu178, dah, dba, dbb) 22.90/8.46 new_ltEs9(Just(xuu580), Just(xuu590), app(ty_Ratio, eab)) -> new_ltEs7(xuu580, xuu590, eab) 22.90/8.46 new_lt21(xuu580, xuu590, app(app(ty_@2, cdb), cdc)) -> new_lt13(xuu580, xuu590, cdb, cdc) 22.90/8.46 new_lt12(xuu70, xuu73, app(ty_Maybe, bgb)) -> new_lt9(xuu70, xuu73, bgb) 22.90/8.46 new_esEs11(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.46 new_lt11(xuu69, xuu72, ty_@0) -> new_lt17(xuu69, xuu72) 22.90/8.46 new_compare112(xuu142, xuu143, False, bdf, bdg) -> GT 22.90/8.46 new_ltEs24(xuu100, xuu102, ty_Char) -> new_ltEs12(xuu100, xuu102) 22.90/8.46 new_esEs38(xuu500000, xuu40000, app(ty_Ratio, fee)) -> new_esEs22(xuu500000, xuu40000, fee) 22.90/8.46 new_esEs28(xuu70, xuu73, ty_Integer) -> new_esEs19(xuu70, xuu73) 22.90/8.46 new_ltEs18(Right(xuu580), Right(xuu590), fg, ty_Integer) -> new_ltEs11(xuu580, xuu590) 22.90/8.46 new_esEs31(xuu581, xuu591, ty_Float) -> new_esEs17(xuu581, xuu591) 22.90/8.46 new_not(False) -> True 22.90/8.46 new_lt7(xuu99, xuu101, bce) -> new_esEs13(new_compare7(xuu99, xuu101, bce), LT) 22.90/8.46 new_esEs36(xuu500002, xuu40002, app(app(ty_@2, fbe), fbf)) -> new_esEs16(xuu500002, xuu40002, fbe, fbf) 22.90/8.46 new_esEs9(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.46 new_ltEs6(xuu58, xuu59, ty_Integer) -> new_ltEs11(xuu58, xuu59) 22.90/8.46 new_ltEs20(xuu581, xuu591, app(app(app(ty_@3, ccc), ccd), cce)) -> new_ltEs10(xuu581, xuu591, ccc, ccd, cce) 22.90/8.46 new_lt9(xuu99, xuu101, bea) -> new_esEs13(new_compare9(xuu99, xuu101, bea), LT) 22.90/8.46 new_esEs4(xuu50001, xuu4001, app(ty_Ratio, che)) -> new_esEs22(xuu50001, xuu4001, che) 22.90/8.46 new_ltEs24(xuu100, xuu102, ty_Integer) -> new_ltEs11(xuu100, xuu102) 22.90/8.46 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.46 new_ltEs7(xuu58, xuu59, ef) -> new_fsEs(new_compare7(xuu58, xuu59, ef)) 22.90/8.46 new_esEs38(xuu500000, xuu40000, app(app(ty_@2, fea), feb)) -> new_esEs16(xuu500000, xuu40000, fea, feb) 22.90/8.46 new_esEs14(Right(xuu500000), Right(xuu40000), hd, app(ty_Ratio, bac)) -> new_esEs22(xuu500000, xuu40000, bac) 22.90/8.46 new_ltEs19(xuu71, xuu74, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_ltEs10(xuu71, xuu74, bhe, bhf, bhg) 22.90/8.46 new_ltEs10(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), fb, fc, fd) -> new_pePe(new_lt21(xuu580, xuu590, fb), new_asAs(new_esEs32(xuu580, xuu590, fb), new_pePe(new_lt22(xuu581, xuu591, fc), new_asAs(new_esEs31(xuu581, xuu591, fc), new_ltEs21(xuu582, xuu592, fd))))) 22.90/8.46 new_esEs14(Right(xuu500000), Right(xuu40000), hd, app(app(ty_Either, he), hf)) -> new_esEs14(xuu500000, xuu40000, he, hf) 22.90/8.46 new_primCompAux00(xuu37, xuu38, EQ, app(ty_[], bbg)) -> new_compare16(xuu37, xuu38, bbg) 22.90/8.46 new_ltEs22(xuu80, xuu81, app(app(app(ty_@3, dfg), dfh), dga)) -> new_ltEs10(xuu80, xuu81, dfg, dfh, dga) 22.90/8.46 new_esEs8(xuu50001, xuu4001, ty_Bool) -> new_esEs21(xuu50001, xuu4001) 22.90/8.46 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 22.90/8.46 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 22.90/8.46 new_ltEs23(xuu87, xuu88, ty_Bool) -> new_ltEs15(xuu87, xuu88) 22.90/8.46 new_lt12(xuu70, xuu73, ty_Float) -> new_lt18(xuu70, xuu73) 22.90/8.46 new_ltEs24(xuu100, xuu102, ty_@0) -> new_ltEs5(xuu100, xuu102) 22.90/8.46 new_esEs8(xuu50001, xuu4001, app(app(ty_Either, egf), egg)) -> new_esEs14(xuu50001, xuu4001, egf, egg) 22.90/8.46 new_lt12(xuu70, xuu73, app(app(ty_Either, bgg), bgh)) -> new_lt19(xuu70, xuu73, bgg, bgh) 22.90/8.46 new_lt21(xuu580, xuu590, ty_Double) -> new_lt6(xuu580, xuu590) 22.90/8.46 new_esEs8(xuu50001, xuu4001, ty_Int) -> new_esEs25(xuu50001, xuu4001) 22.90/8.46 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 22.90/8.46 new_compare6(Double(xuu50000, Pos(xuu500010)), Double(xuu4000, Neg(xuu40010))) -> new_compare14(new_sr(xuu50000, Pos(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) 22.90/8.46 new_compare6(Double(xuu50000, Neg(xuu500010)), Double(xuu4000, Pos(xuu40010))) -> new_compare14(new_sr(xuu50000, Neg(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) 22.90/8.46 new_primMulNat0(Succ(xuu400000), Succ(xuu5000100)) -> new_primPlusNat0(new_primMulNat0(xuu400000, Succ(xuu5000100)), xuu5000100) 22.90/8.46 new_esEs14(Left(xuu500000), Left(xuu40000), app(ty_Maybe, gf), ga) -> new_esEs18(xuu500000, xuu40000, gf) 22.90/8.46 new_ltEs21(xuu582, xuu592, ty_Integer) -> new_ltEs11(xuu582, xuu592) 22.90/8.46 new_lt22(xuu581, xuu591, ty_Double) -> new_lt6(xuu581, xuu591) 22.90/8.46 new_ltEs13(LT, EQ) -> True 22.90/8.46 new_ltEs21(xuu582, xuu592, ty_Int) -> new_ltEs14(xuu582, xuu592) 22.90/8.46 new_esEs16(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), daa, dab) -> new_asAs(new_esEs34(xuu500000, xuu40000, daa), new_esEs33(xuu500001, xuu40001, dab)) 22.90/8.46 new_ltEs22(xuu80, xuu81, ty_@0) -> new_ltEs5(xuu80, xuu81) 22.90/8.46 new_ltEs23(xuu87, xuu88, ty_Ordering) -> new_ltEs13(xuu87, xuu88) 22.90/8.46 new_esEs6(xuu50000, xuu4000, app(ty_Ratio, dca)) -> new_esEs22(xuu50000, xuu4000, dca) 22.90/8.46 new_compare25(xuu87, xuu88, False, dgf, dgg) -> new_compare112(xuu87, xuu88, new_ltEs23(xuu87, xuu88, dgg), dgf, dgg) 22.90/8.46 new_esEs32(xuu580, xuu590, app(ty_[], cdh)) -> new_esEs20(xuu580, xuu590, cdh) 22.90/8.46 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 22.90/8.46 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 22.90/8.46 new_lt23(xuu99, xuu101, ty_Double) -> new_lt6(xuu99, xuu101) 22.90/8.46 new_compare15(True, True) -> EQ 22.90/8.46 new_compare110(xuu135, xuu136, False, bd, be) -> GT 22.90/8.46 new_ltEs21(xuu582, xuu592, app(app(app(ty_@3, cga), cgb), cgc)) -> new_ltEs10(xuu582, xuu592, cga, cgb, cgc) 22.90/8.46 new_esEs33(xuu500001, xuu40001, app(ty_[], ddb)) -> new_esEs20(xuu500001, xuu40001, ddb) 22.90/8.46 new_primEqNat0(Zero, Zero) -> True 22.90/8.46 new_ltEs9(Just(xuu580), Nothing, fa) -> False 22.90/8.46 new_esEs7(xuu50002, xuu4002, ty_Ordering) -> new_esEs13(xuu50002, xuu4002) 22.90/8.46 new_esEs9(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.46 new_ltEs9(Nothing, Nothing, fa) -> True 22.90/8.46 new_compare5(xuu5000, xuu400, app(ty_[], bde)) -> new_compare16(xuu5000, xuu400, bde) 22.90/8.46 new_esEs36(xuu500002, xuu40002, ty_Double) -> new_esEs15(xuu500002, xuu40002) 22.90/8.46 new_ltEs23(xuu87, xuu88, ty_@0) -> new_ltEs5(xuu87, xuu88) 22.90/8.46 new_esEs37(xuu500001, xuu40001, app(app(ty_@2, fcg), fch)) -> new_esEs16(xuu500001, xuu40001, fcg, fch) 22.90/8.46 new_ltEs22(xuu80, xuu81, ty_Char) -> new_ltEs12(xuu80, xuu81) 22.90/8.46 new_ltEs24(xuu100, xuu102, ty_Bool) -> new_ltEs15(xuu100, xuu102) 22.90/8.46 new_ltEs22(xuu80, xuu81, ty_Ordering) -> new_ltEs13(xuu80, xuu81) 22.90/8.46 new_compare18(Float(xuu50000, Pos(xuu500010)), Float(xuu4000, Neg(xuu40010))) -> new_compare14(new_sr(xuu50000, Pos(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) 22.90/8.46 new_compare18(Float(xuu50000, Neg(xuu500010)), Float(xuu4000, Pos(xuu40010))) -> new_compare14(new_sr(xuu50000, Neg(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) 22.90/8.46 new_esEs10(xuu50000, xuu4000, app(ty_[], ce)) -> new_esEs20(xuu50000, xuu4000, ce) 22.90/8.46 new_compare9(Nothing, Nothing, bda) -> EQ 22.90/8.46 new_asAs(False, xuu117) -> False 22.90/8.46 new_esEs13(LT, EQ) -> False 22.90/8.46 new_esEs13(EQ, LT) -> False 22.90/8.46 new_ltEs19(xuu71, xuu74, ty_Int) -> new_ltEs14(xuu71, xuu74) 22.90/8.46 new_ltEs24(xuu100, xuu102, app(ty_Maybe, ffh)) -> new_ltEs9(xuu100, xuu102, ffh) 22.90/8.46 new_esEs9(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.46 new_esEs9(xuu50000, xuu4000, app(app(ty_Either, ehh), faa)) -> new_esEs14(xuu50000, xuu4000, ehh, faa) 22.90/8.46 new_esEs5(xuu50000, xuu4000, app(ty_Ratio, bdh)) -> new_esEs22(xuu50000, xuu4000, bdh) 22.90/8.46 new_ltEs6(xuu58, xuu59, ty_Int) -> new_ltEs14(xuu58, xuu59) 22.90/8.46 new_esEs26(xuu500001, xuu40001, ty_Integer) -> new_esEs19(xuu500001, xuu40001) 22.90/8.46 new_esEs28(xuu70, xuu73, ty_Float) -> new_esEs17(xuu70, xuu73) 22.90/8.46 new_ltEs22(xuu80, xuu81, ty_Integer) -> new_ltEs11(xuu80, xuu81) 22.90/8.46 new_esEs7(xuu50002, xuu4002, ty_Char) -> new_esEs12(xuu50002, xuu4002) 22.90/8.46 new_esEs15(Double(xuu500000, xuu500001), Double(xuu40000, xuu40001)) -> new_esEs25(new_sr(xuu500000, xuu40001), new_sr(xuu500001, xuu40000)) 22.90/8.46 new_ltEs20(xuu581, xuu591, ty_Int) -> new_ltEs14(xuu581, xuu591) 22.90/8.46 22.90/8.46 The set Q consists of the following terms: 22.90/8.46 22.90/8.46 new_esEs39(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs20([], :(x0, x1), x2) 22.90/8.46 new_esEs14(Left(x0), Right(x1), x2, x3) 22.90/8.46 new_esEs14(Right(x0), Left(x1), x2, x3) 22.90/8.46 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_ltEs22(x0, x1, ty_Integer) 22.90/8.46 new_lt20(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs10(x0, x1, ty_Char) 22.90/8.46 new_primPlusNat1(Zero, Succ(x0)) 22.90/8.46 new_esEs35(x0, x1, ty_Char) 22.90/8.46 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs6(x0, x1, ty_Char) 22.90/8.46 new_esEs9(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_compare24(x0, x1, True, x2, x3) 22.90/8.46 new_ltEs18(Right(x0), Right(x1), x2, ty_Integer) 22.90/8.46 new_lt12(x0, x1, ty_Float) 22.90/8.46 new_primPlusNat1(Zero, Zero) 22.90/8.46 new_compare114(x0, x1, x2, x3, True, x4, x5, x6) 22.90/8.46 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 22.90/8.46 new_esEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.90/8.46 new_ltEs18(Left(x0), Left(x1), ty_Double, x2) 22.90/8.46 new_ltEs24(x0, x1, ty_Integer) 22.90/8.46 new_esEs17(Float(x0, x1), Float(x2, x3)) 22.90/8.46 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_compare19(Right(x0), Left(x1), x2, x3) 22.90/8.46 new_compare19(Left(x0), Right(x1), x2, x3) 22.90/8.46 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_esEs35(x0, x1, ty_Ordering) 22.90/8.46 new_esEs8(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_primEqInt(Pos(Zero), Pos(Zero)) 22.90/8.46 new_primCompAux00(x0, x1, EQ, ty_Bool) 22.90/8.46 new_esEs38(x0, x1, ty_Float) 22.90/8.46 new_primEqNat0(Succ(x0), Succ(x1)) 22.90/8.46 new_lt21(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs28(x0, x1, ty_Char) 22.90/8.46 new_ltEs13(EQ, EQ) 22.90/8.46 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs13(LT, LT) 22.90/8.46 new_esEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.90/8.46 new_esEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.90/8.46 new_ltEs18(Left(x0), Left(x1), ty_Ordering, x2) 22.90/8.46 new_primEqInt(Neg(Zero), Neg(Zero)) 22.90/8.46 new_esEs8(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_lt11(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 22.90/8.46 new_esEs10(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.90/8.46 new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) 22.90/8.46 new_ltEs22(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_ltEs18(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.90/8.46 new_compare19(Right(x0), Right(x1), x2, x3) 22.90/8.46 new_ltEs15(False, True) 22.90/8.46 new_ltEs15(True, False) 22.90/8.46 new_lt22(x0, x1, ty_Integer) 22.90/8.46 new_esEs14(Left(x0), Left(x1), ty_Bool, x2) 22.90/8.46 new_esEs28(x0, x1, ty_Ordering) 22.90/8.46 new_lt11(x0, x1, ty_Char) 22.90/8.46 new_ltEs24(x0, x1, ty_@0) 22.90/8.46 new_esEs6(x0, x1, ty_Double) 22.90/8.46 new_esEs10(x0, x1, ty_Ordering) 22.90/8.46 new_ltEs24(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs10(x0, x1, ty_Double) 22.90/8.46 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 22.90/8.46 new_ltEs22(x0, x1, ty_@0) 22.90/8.46 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_ltEs18(Right(x0), Right(x1), x2, ty_Bool) 22.90/8.46 new_compare5(x0, x1, ty_Int) 22.90/8.46 new_lt12(x0, x1, ty_Integer) 22.90/8.46 new_esEs29(x0, x1, ty_Ordering) 22.90/8.46 new_primCompAux00(x0, x1, EQ, ty_Integer) 22.90/8.46 new_ltEs6(x0, x1, ty_Integer) 22.90/8.46 new_esEs32(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.90/8.46 new_compare15(False, True) 22.90/8.46 new_lt20(x0, x1, ty_Ordering) 22.90/8.46 new_compare15(True, False) 22.90/8.46 new_ltEs24(x0, x1, ty_Float) 22.90/8.46 new_compare5(x0, x1, ty_@0) 22.90/8.46 new_esEs38(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs10(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_primEqInt(Pos(Zero), Neg(Zero)) 22.90/8.46 new_primEqInt(Neg(Zero), Pos(Zero)) 22.90/8.46 new_lt20(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs9(x0, x1, ty_Float) 22.90/8.46 new_ltEs22(x0, x1, ty_Float) 22.90/8.46 new_esEs18(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.90/8.46 new_compare9(Nothing, Nothing, x0) 22.90/8.46 new_ltEs5(x0, x1) 22.90/8.46 new_esEs32(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 22.90/8.46 new_esEs18(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.90/8.46 new_ltEs9(Nothing, Just(x0), x1) 22.90/8.46 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 22.90/8.46 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 22.90/8.46 new_esEs14(Left(x0), Left(x1), ty_@0, x2) 22.90/8.46 new_esEs21(True, True) 22.90/8.46 new_ltEs23(x0, x1, ty_Double) 22.90/8.46 new_asAs(False, x0) 22.90/8.46 new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_ltEs23(x0, x1, ty_Char) 22.90/8.46 new_esEs14(Left(x0), Left(x1), ty_Int, x2) 22.90/8.46 new_esEs36(x0, x1, ty_Double) 22.90/8.46 new_lt19(x0, x1, x2, x3) 22.90/8.46 new_esEs30(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs7(x0, x1, ty_Ordering) 22.90/8.46 new_esEs9(x0, x1, ty_Integer) 22.90/8.46 new_lt11(x0, x1, ty_Ordering) 22.90/8.46 new_lt23(x0, x1, ty_Double) 22.90/8.46 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_esEs7(x0, x1, ty_Float) 22.90/8.46 new_lt12(x0, x1, ty_Bool) 22.90/8.46 new_ltEs18(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.90/8.46 new_ltEs4(x0, x1) 22.90/8.46 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_esEs9(x0, x1, ty_Bool) 22.90/8.46 new_esEs38(x0, x1, ty_@0) 22.90/8.46 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs31(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_ltEs16(x0, x1, x2) 22.90/8.46 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs28(x0, x1, ty_Double) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.90/8.46 new_compare9(Nothing, Just(x0), x1) 22.90/8.46 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_ltEs18(Right(x0), Right(x1), x2, ty_Int) 22.90/8.46 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs18(Just(x0), Just(x1), ty_Int) 22.90/8.46 new_esEs36(x0, x1, ty_Ordering) 22.90/8.46 new_compare25(x0, x1, True, x2, x3) 22.90/8.46 new_lt11(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_lt18(x0, x1) 22.90/8.46 new_esEs38(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_ltEs24(x0, x1, ty_Int) 22.90/8.46 new_ltEs20(x0, x1, ty_Double) 22.90/8.46 new_ltEs9(Just(x0), Just(x1), ty_Char) 22.90/8.46 new_esEs5(x0, x1, ty_Double) 22.90/8.46 new_ltEs24(x0, x1, ty_Bool) 22.90/8.46 new_ltEs18(Right(x0), Right(x1), x2, ty_Float) 22.90/8.46 new_esEs37(x0, x1, ty_Bool) 22.90/8.46 new_esEs30(x0, x1, ty_Bool) 22.90/8.46 new_compare5(x0, x1, ty_Bool) 22.90/8.46 new_esEs33(x0, x1, ty_Integer) 22.90/8.46 new_esEs8(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs5(x0, x1, ty_@0) 22.90/8.46 new_esEs37(x0, x1, ty_Float) 22.90/8.46 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_lt17(x0, x1) 22.90/8.46 new_esEs34(x0, x1, ty_Float) 22.90/8.46 new_esEs7(x0, x1, ty_Char) 22.90/8.46 new_ltEs12(x0, x1) 22.90/8.46 new_esEs30(x0, x1, ty_Float) 22.90/8.46 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_ltEs17(x0, x1) 22.90/8.46 new_esEs24(@0, @0) 22.90/8.46 new_esEs33(x0, x1, ty_Ordering) 22.90/8.46 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_ltEs9(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_ltEs18(Left(x0), Left(x1), ty_Char, x2) 22.90/8.46 new_esEs8(x0, x1, ty_Double) 22.90/8.46 new_esEs14(Left(x0), Left(x1), ty_Integer, x2) 22.90/8.46 new_compare5(x0, x1, ty_Integer) 22.90/8.46 new_primCompAux00(x0, x1, EQ, ty_Float) 22.90/8.46 new_ltEs6(x0, x1, ty_@0) 22.90/8.46 new_esEs39(x0, x1, ty_Ordering) 22.90/8.46 new_esEs7(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs38(x0, x1, ty_Double) 22.90/8.46 new_ltEs19(x0, x1, ty_Int) 22.90/8.46 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs9(x0, x1, ty_Ordering) 22.90/8.46 new_compare12(Char(x0), Char(x1)) 22.90/8.46 new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 22.90/8.46 new_esEs4(x0, x1, ty_Float) 22.90/8.46 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_lt22(x0, x1, ty_@0) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, ty_Int) 22.90/8.46 new_ltEs9(Just(x0), Just(x1), app(ty_[], x2)) 22.90/8.46 new_esEs37(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_compare27(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 22.90/8.46 new_esEs13(LT, EQ) 22.90/8.46 new_esEs13(EQ, LT) 22.90/8.46 new_lt23(x0, x1, app(ty_[], x2)) 22.90/8.46 new_ltEs20(x0, x1, ty_@0) 22.90/8.46 new_primCmpNat0(Succ(x0), Zero) 22.90/8.46 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_primCompAux00(x0, x1, EQ, ty_Int) 22.90/8.46 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_lt20(x0, x1, ty_Double) 22.90/8.46 new_esEs29(x0, x1, ty_Char) 22.90/8.46 new_esEs11(x0, x1, ty_Char) 22.90/8.46 new_ltEs18(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.90/8.46 new_ltEs20(x0, x1, ty_Char) 22.90/8.46 new_esEs13(EQ, EQ) 22.90/8.46 new_esEs5(x0, x1, ty_Char) 22.90/8.46 new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 22.90/8.46 new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 22.90/8.46 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 22.90/8.46 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs36(x0, x1, ty_@0) 22.90/8.46 new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 22.90/8.46 new_esEs38(x0, x1, ty_Int) 22.90/8.46 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 22.90/8.46 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs11(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs21(False, True) 22.90/8.46 new_esEs21(True, False) 22.90/8.46 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 22.90/8.46 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs33(x0, x1, ty_@0) 22.90/8.46 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_esEs5(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs32(x0, x1, ty_Char) 22.90/8.46 new_esEs29(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs11(x0, x1, ty_Int) 22.90/8.46 new_esEs8(x0, x1, ty_Char) 22.90/8.46 new_esEs31(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs8(x0, x1, ty_@0) 22.90/8.46 new_esEs32(x0, x1, ty_Int) 22.90/8.46 new_ltEs21(x0, x1, ty_Bool) 22.90/8.46 new_esEs34(x0, x1, ty_Ordering) 22.90/8.46 new_esEs9(x0, x1, app(ty_[], x2)) 22.90/8.46 new_compare13(GT, GT) 22.90/8.46 new_compare13(EQ, LT) 22.90/8.46 new_compare13(LT, EQ) 22.90/8.46 new_esEs7(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs29(x0, x1, ty_Float) 22.90/8.46 new_lt20(x0, x1, ty_Integer) 22.90/8.46 new_ltEs23(x0, x1, ty_Float) 22.90/8.46 new_ltEs23(x0, x1, ty_Integer) 22.90/8.46 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs39(x0, x1, ty_Double) 22.90/8.46 new_esEs8(x0, x1, ty_Int) 22.90/8.46 new_lt12(x0, x1, ty_Int) 22.90/8.46 new_esEs6(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.90/8.46 new_esEs18(Just(x0), Just(x1), app(ty_[], x2)) 22.90/8.46 new_esEs18(Nothing, Nothing, x0) 22.90/8.46 new_lt12(x0, x1, app(ty_[], x2)) 22.90/8.46 new_ltEs21(x0, x1, ty_Int) 22.90/8.46 new_esEs30(x0, x1, ty_Ordering) 22.90/8.46 new_not(True) 22.90/8.46 new_lt21(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs32(x0, x1, ty_Double) 22.90/8.46 new_lt21(x0, x1, ty_Double) 22.90/8.46 new_lt12(x0, x1, ty_Char) 22.90/8.46 new_primPlusNat1(Succ(x0), Succ(x1)) 22.90/8.46 new_esEs34(x0, x1, ty_Double) 22.90/8.46 new_ltEs13(EQ, GT) 22.90/8.46 new_ltEs13(GT, EQ) 22.90/8.46 new_ltEs18(Left(x0), Right(x1), x2, x3) 22.90/8.46 new_ltEs18(Right(x0), Left(x1), x2, x3) 22.90/8.46 new_esEs39(x0, x1, ty_Char) 22.90/8.46 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs27(x0, x1, ty_Integer) 22.90/8.46 new_ltEs23(x0, x1, ty_Bool) 22.90/8.46 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_ltEs9(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.90/8.46 new_esEs14(Left(x0), Left(x1), ty_Float, x2) 22.90/8.46 new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_ltEs21(x0, x1, ty_Char) 22.90/8.46 new_esEs18(Just(x0), Nothing, x1) 22.90/8.46 new_esEs39(x0, x1, ty_Int) 22.90/8.46 new_ltEs6(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs14(Left(x0), Left(x1), app(ty_[], x2), x3) 22.90/8.46 new_esEs26(x0, x1, ty_Integer) 22.90/8.46 new_ltEs23(x0, x1, ty_@0) 22.90/8.46 new_esEs19(Integer(x0), Integer(x1)) 22.90/8.46 new_ltEs13(LT, LT) 22.90/8.46 new_lt4(x0, x1) 22.90/8.46 new_esEs30(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_lt22(x0, x1, ty_Ordering) 22.90/8.46 new_esEs36(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_pePe(True, x0) 22.90/8.46 new_esEs9(x0, x1, ty_@0) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, ty_Ordering) 22.90/8.46 new_esEs32(x0, x1, ty_Bool) 22.90/8.46 new_esEs37(x0, x1, ty_Ordering) 22.90/8.46 new_compare5(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_compare19(Left(x0), Left(x1), x2, x3) 22.90/8.46 new_esEs5(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_lt12(x0, x1, ty_@0) 22.90/8.46 new_lt23(x0, x1, ty_Ordering) 22.90/8.46 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs21(False, False) 22.90/8.46 new_esEs5(x0, x1, ty_Integer) 22.90/8.46 new_ltEs20(x0, x1, ty_Integer) 22.90/8.46 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 22.90/8.46 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 22.90/8.46 new_esEs36(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs18(Just(x0), Just(x1), ty_Double) 22.90/8.46 new_esEs7(x0, x1, ty_Double) 22.90/8.46 new_fsEs(x0) 22.90/8.46 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_ltEs21(x0, x1, ty_Double) 22.90/8.46 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, ty_Double) 22.90/8.46 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_ltEs22(x0, x1, ty_Ordering) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.90/8.46 new_ltEs18(Left(x0), Left(x1), ty_@0, x2) 22.90/8.46 new_esEs4(x0, x1, ty_Ordering) 22.90/8.46 new_compare111(x0, x1, False, x2) 22.90/8.46 new_compare16(:(x0, x1), [], x2) 22.90/8.46 new_esEs11(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_sr0(Integer(x0), Integer(x1)) 22.90/8.46 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs8(x0, x1, ty_Float) 22.90/8.46 new_lt22(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs8(x0, x1, ty_Integer) 22.90/8.46 new_esEs38(x0, x1, ty_Integer) 22.90/8.46 new_esEs31(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs4(x0, x1, ty_Double) 22.90/8.46 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs11(x0, x1, ty_Integer) 22.90/8.46 new_esEs33(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_primMulInt(Neg(x0), Neg(x1)) 22.90/8.46 new_ltEs24(x0, x1, ty_Double) 22.90/8.46 new_lt14(x0, x1) 22.90/8.46 new_primEqNat0(Zero, Zero) 22.90/8.46 new_lt20(x0, x1, ty_Bool) 22.90/8.46 new_lt9(x0, x1, x2) 22.90/8.46 new_ltEs18(Right(x0), Right(x1), x2, ty_@0) 22.90/8.46 new_lt11(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs32(x0, x1, ty_Float) 22.90/8.46 new_primEqNat0(Succ(x0), Zero) 22.90/8.46 new_not(False) 22.90/8.46 new_ltEs20(x0, x1, ty_Bool) 22.90/8.46 new_esEs13(EQ, GT) 22.90/8.46 new_esEs13(GT, EQ) 22.90/8.46 new_esEs35(x0, x1, ty_@0) 22.90/8.46 new_ltEs20(x0, x1, ty_Float) 22.90/8.46 new_esEs11(x0, x1, ty_Bool) 22.90/8.46 new_lt20(x0, x1, ty_Float) 22.90/8.46 new_compare25(x0, x1, False, x2, x3) 22.90/8.46 new_esEs37(x0, x1, ty_Double) 22.90/8.46 new_ltEs6(x0, x1, ty_Float) 22.90/8.46 new_ltEs6(x0, x1, ty_Bool) 22.90/8.46 new_lt5(x0, x1, x2, x3, x4) 22.90/8.46 new_esEs30(x0, x1, ty_Double) 22.90/8.46 new_esEs6(x0, x1, ty_Ordering) 22.90/8.46 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 22.90/8.46 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 22.90/8.46 new_esEs5(x0, x1, ty_Bool) 22.90/8.46 new_ltEs19(x0, x1, ty_@0) 22.90/8.46 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs5(x0, x1, ty_Float) 22.90/8.46 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs22(:%(x0, x1), :%(x2, x3), x4) 22.90/8.46 new_ltEs21(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs38(x0, x1, ty_Char) 22.90/8.46 new_esEs6(x0, x1, app(ty_[], x2)) 22.90/8.46 new_lt20(x0, x1, ty_Int) 22.90/8.46 new_ltEs20(x0, x1, ty_Int) 22.90/8.46 new_compare11(Integer(x0), Integer(x1)) 22.90/8.46 new_ltEs6(x0, x1, ty_Char) 22.90/8.46 new_compare114(x0, x1, x2, x3, False, x4, x5, x6) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.90/8.46 new_ltEs6(x0, x1, ty_Int) 22.90/8.46 new_esEs8(x0, x1, ty_Bool) 22.90/8.46 new_lt20(x0, x1, ty_Char) 22.90/8.46 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_primCompAux00(x0, x1, EQ, ty_@0) 22.90/8.46 new_compare113(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 22.90/8.46 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_lt21(x0, x1, ty_Ordering) 22.90/8.46 new_esEs5(x0, x1, ty_Int) 22.90/8.46 new_esEs9(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs29(x0, x1, ty_Double) 22.90/8.46 new_esEs31(x0, x1, ty_Ordering) 22.90/8.46 new_esEs38(x0, x1, ty_Bool) 22.90/8.46 new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.90/8.46 new_ltEs20(x0, x1, app(ty_[], x2)) 22.90/8.46 new_compare14(x0, x1) 22.90/8.46 new_esEs7(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_ltEs9(Just(x0), Just(x1), ty_@0) 22.90/8.46 new_lt12(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_lt11(x0, x1, ty_@0) 22.90/8.46 new_ltEs9(Just(x0), Just(x1), ty_Bool) 22.90/8.46 new_primCmpNat0(Zero, Succ(x0)) 22.90/8.46 new_esEs23(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.90/8.46 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs4(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_compare115(x0, x1, x2, x3, False, x4, x5) 22.90/8.46 new_esEs35(x0, x1, ty_Int) 22.90/8.46 new_esEs6(x0, x1, ty_Int) 22.90/8.46 new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 22.90/8.46 new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 22.90/8.46 new_esEs28(x0, x1, ty_@0) 22.90/8.46 new_esEs28(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs26(x0, x1, ty_Int) 22.90/8.46 new_esEs29(x0, x1, app(ty_[], x2)) 22.90/8.46 new_lt22(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_compare13(GT, LT) 22.90/8.46 new_compare13(LT, GT) 22.90/8.46 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs25(x0, x1) 22.90/8.46 new_ltEs18(Left(x0), Left(x1), ty_Int, x2) 22.90/8.46 new_esEs28(x0, x1, ty_Int) 22.90/8.46 new_esEs18(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_compare17(@0, @0) 22.90/8.46 new_compare5(x0, x1, ty_Char) 22.90/8.46 new_esEs11(x0, x1, ty_Float) 22.90/8.46 new_ltEs18(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.90/8.46 new_compare113(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 22.90/8.46 new_compare116(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 22.90/8.46 new_lt11(x0, x1, ty_Bool) 22.90/8.46 new_lt22(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs10(x0, x1, ty_Int) 22.90/8.46 new_esEs34(x0, x1, app(ty_[], x2)) 22.90/8.46 new_pePe(False, x0) 22.90/8.46 new_lt21(x0, x1, ty_Float) 22.90/8.46 new_esEs6(x0, x1, ty_@0) 22.90/8.46 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_lt21(x0, x1, ty_Bool) 22.90/8.46 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 22.90/8.46 new_esEs15(Double(x0, x1), Double(x2, x3)) 22.90/8.46 new_ltEs15(True, True) 22.90/8.46 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs12(Char(x0), Char(x1)) 22.90/8.46 new_ltEs23(x0, x1, ty_Int) 22.90/8.46 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 22.90/8.46 new_ltEs18(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.90/8.46 new_esEs14(Left(x0), Left(x1), ty_Double, x2) 22.90/8.46 new_esEs33(x0, x1, app(ty_[], x2)) 22.90/8.46 new_ltEs6(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs28(x0, x1, ty_Bool) 22.90/8.46 new_esEs35(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs28(x0, x1, ty_Integer) 22.90/8.46 new_esEs10(x0, x1, ty_Bool) 22.90/8.46 new_esEs36(x0, x1, app(ty_[], x2)) 22.90/8.46 new_primMulInt(Pos(x0), Pos(x1)) 22.90/8.46 new_primMulNat0(Succ(x0), Succ(x1)) 22.90/8.46 new_primCompAux00(x0, x1, LT, x2) 22.90/8.46 new_lt11(x0, x1, ty_Int) 22.90/8.46 new_primCompAux00(x0, x1, EQ, ty_Ordering) 22.90/8.46 new_esEs14(Left(x0), Left(x1), ty_Char, x2) 22.90/8.46 new_ltEs21(x0, x1, ty_Float) 22.90/8.46 new_ltEs9(Just(x0), Just(x1), ty_Integer) 22.90/8.46 new_esEs39(x0, x1, ty_Float) 22.90/8.46 new_compare112(x0, x1, True, x2, x3) 22.90/8.46 new_lt21(x0, x1, ty_@0) 22.90/8.46 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_ltEs13(GT, LT) 22.90/8.46 new_ltEs13(LT, GT) 22.90/8.46 new_compare5(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_sr(x0, x1) 22.90/8.46 new_ltEs18(Right(x0), Right(x1), x2, ty_Char) 22.90/8.46 new_ltEs10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.90/8.46 new_esEs35(x0, x1, ty_Integer) 22.90/8.46 new_compare9(Just(x0), Just(x1), x2) 22.90/8.46 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_lt11(x0, x1, app(ty_[], x2)) 22.90/8.46 new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) 22.90/8.46 new_lt11(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, ty_Float) 22.90/8.46 new_primCmpNat0(Succ(x0), Succ(x1)) 22.90/8.46 new_ltEs24(x0, x1, ty_Char) 22.90/8.46 new_esEs31(x0, x1, ty_Float) 22.90/8.46 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs18(Just(x0), Just(x1), ty_Float) 22.90/8.46 new_compare16(:(x0, x1), :(x2, x3), x4) 22.90/8.46 new_esEs10(x0, x1, ty_Integer) 22.90/8.46 new_compare24(x0, x1, False, x2, x3) 22.90/8.46 new_esEs16(@2(x0, x1), @2(x2, x3), x4, x5) 22.90/8.46 new_esEs31(x0, x1, ty_Double) 22.90/8.46 new_esEs4(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_lt23(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_asAs(True, x0) 22.90/8.46 new_esEs5(x0, x1, app(ty_[], x2)) 22.90/8.46 new_ltEs18(Left(x0), Left(x1), ty_Integer, x2) 22.90/8.46 new_primCompAux00(x0, x1, GT, x2) 22.90/8.46 new_compare15(False, False) 22.90/8.46 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs28(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_ltEs19(x0, x1, ty_Integer) 22.90/8.46 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 22.90/8.46 new_ltEs22(x0, x1, ty_Double) 22.90/8.46 new_ltEs24(x0, x1, ty_Ordering) 22.90/8.46 new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.90/8.46 new_ltEs9(Just(x0), Nothing, x1) 22.90/8.46 new_esEs39(x0, x1, ty_Bool) 22.90/8.46 new_esEs32(x0, x1, ty_Integer) 22.90/8.46 new_esEs18(Just(x0), Just(x1), ty_Ordering) 22.90/8.46 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs20(:(x0, x1), :(x2, x3), x4) 22.90/8.46 new_ltEs11(x0, x1) 22.90/8.46 new_primMulNat0(Zero, Succ(x0)) 22.90/8.46 new_primCmpInt(Neg(Zero), Neg(Zero)) 22.90/8.46 new_ltEs8(@2(x0, x1), @2(x2, x3), x4, x5) 22.90/8.46 new_esEs14(Left(x0), Left(x1), ty_Ordering, x2) 22.90/8.46 new_ltEs19(x0, x1, ty_Float) 22.90/8.46 new_esEs11(x0, x1, ty_Double) 22.90/8.46 new_esEs11(x0, x1, ty_@0) 22.90/8.46 new_esEs18(Just(x0), Just(x1), ty_Char) 22.90/8.46 new_esEs18(Just(x0), Just(x1), ty_Integer) 22.90/8.46 new_esEs10(x0, x1, ty_@0) 22.90/8.46 new_ltEs21(x0, x1, ty_Integer) 22.90/8.46 new_ltEs19(x0, x1, ty_Bool) 22.90/8.46 new_esEs32(x0, x1, ty_Ordering) 22.90/8.46 new_esEs27(x0, x1, ty_Int) 22.90/8.46 new_primCmpInt(Pos(Zero), Neg(Zero)) 22.90/8.46 new_primCmpInt(Neg(Zero), Pos(Zero)) 22.90/8.46 new_ltEs9(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.90/8.46 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs4(x0, x1, ty_Int) 22.90/8.46 new_lt20(x0, x1, ty_@0) 22.90/8.46 new_primPlusNat0(Succ(x0), x1) 22.90/8.46 new_esEs29(x0, x1, ty_Int) 22.90/8.46 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_compare13(GT, EQ) 22.90/8.46 new_compare13(EQ, GT) 22.90/8.46 new_esEs11(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs29(x0, x1, ty_Bool) 22.90/8.46 new_ltEs19(x0, x1, app(ty_[], x2)) 22.90/8.46 new_ltEs9(Just(x0), Just(x1), ty_Int) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, ty_Char) 22.90/8.46 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs30(x0, x1, app(ty_[], x2)) 22.90/8.46 new_compare5(x0, x1, ty_Ordering) 22.90/8.46 new_ltEs15(False, False) 22.90/8.46 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_primEqNat0(Zero, Succ(x0)) 22.90/8.46 new_compare26(x0, x1, False, x2) 22.90/8.46 new_esEs35(x0, x1, ty_Bool) 22.90/8.46 new_primCompAux00(x0, x1, EQ, ty_Char) 22.90/8.46 new_compare111(x0, x1, True, x2) 22.90/8.46 new_ltEs6(x0, x1, ty_Double) 22.90/8.46 new_esEs37(x0, x1, ty_Int) 22.90/8.46 new_esEs34(x0, x1, app(ty_Ratio, x2)) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.90/8.46 new_esEs18(Just(x0), Just(x1), ty_Bool) 22.90/8.46 new_lt11(x0, x1, ty_Integer) 22.90/8.46 new_ltEs18(Left(x0), Left(x1), ty_Bool, x2) 22.90/8.46 new_esEs13(GT, GT) 22.90/8.46 new_esEs30(x0, x1, ty_Int) 22.90/8.46 new_ltEs21(x0, x1, ty_Ordering) 22.90/8.46 new_compare16([], :(x0, x1), x2) 22.90/8.46 new_ltEs9(Just(x0), Just(x1), ty_Float) 22.90/8.46 new_esEs39(x0, x1, ty_Integer) 22.90/8.46 new_esEs7(x0, x1, ty_Int) 22.90/8.46 new_primPlusNat1(Succ(x0), Zero) 22.90/8.46 new_esEs9(x0, x1, ty_Int) 22.90/8.46 new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 22.90/8.46 new_ltEs18(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.90/8.46 new_esEs4(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs7(x0, x1, ty_Bool) 22.90/8.46 new_esEs18(Just(x0), Just(x1), ty_@0) 22.90/8.46 new_ltEs19(x0, x1, ty_Char) 22.90/8.46 new_ltEs9(Nothing, Nothing, x0) 22.90/8.46 new_esEs34(x0, x1, ty_Char) 22.90/8.46 new_esEs36(x0, x1, ty_Bool) 22.90/8.46 new_lt12(x0, x1, ty_Double) 22.90/8.46 new_compare10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.90/8.46 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs18(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.90/8.46 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 22.90/8.46 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_compare5(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs35(x0, x1, app(ty_[], x2)) 22.90/8.46 new_compare28(x0, x1, x2, x3, True, x4, x5) 22.90/8.46 new_primMulNat0(Zero, Zero) 22.90/8.46 new_esEs30(x0, x1, ty_Char) 22.90/8.46 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs9(x0, x1, ty_Char) 22.90/8.46 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_esEs4(x0, x1, ty_Bool) 22.90/8.46 new_esEs4(x0, x1, ty_@0) 22.90/8.46 new_esEs37(x0, x1, ty_Char) 22.90/8.46 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 22.90/8.46 new_lt23(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs9(x0, x1, ty_Double) 22.90/8.46 new_esEs29(x0, x1, ty_Integer) 22.90/8.46 new_lt12(x0, x1, ty_Ordering) 22.90/8.46 new_compare112(x0, x1, False, x2, x3) 22.90/8.46 new_lt22(x0, x1, ty_Double) 22.90/8.46 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.46 new_esEs37(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs38(x0, x1, ty_Ordering) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, ty_Bool) 22.90/8.46 new_ltEs18(Left(x0), Left(x1), ty_Float, x2) 22.90/8.46 new_compare27(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 22.90/8.46 new_esEs31(x0, x1, ty_Bool) 22.90/8.46 new_esEs34(x0, x1, ty_Int) 22.90/8.46 new_lt23(x0, x1, ty_Bool) 22.90/8.46 new_lt6(x0, x1) 22.90/8.46 new_esEs4(x0, x1, ty_Char) 22.90/8.46 new_esEs35(x0, x1, ty_Float) 22.90/8.46 new_lt16(x0, x1, x2) 22.90/8.46 new_esEs4(x0, x1, ty_Integer) 22.90/8.46 new_ltEs9(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.90/8.46 new_ltEs6(x0, x1, ty_Ordering) 22.90/8.46 new_esEs14(Right(x0), Right(x1), x2, ty_Integer) 22.90/8.46 new_esEs32(x0, x1, ty_@0) 22.90/8.46 new_esEs36(x0, x1, ty_Char) 22.90/8.46 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_compare5(x0, x1, ty_Float) 22.90/8.46 new_ltEs23(x0, x1, app(ty_[], x2)) 22.90/8.46 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.46 new_esEs33(x0, x1, ty_Int) 22.90/8.46 new_esEs5(x0, x1, ty_Ordering) 22.90/8.46 new_esEs10(x0, x1, app(ty_[], x2)) 22.90/8.46 new_ltEs18(Right(x0), Right(x1), x2, ty_Ordering) 22.90/8.46 new_primMulNat0(Succ(x0), Zero) 22.90/8.46 new_esEs20(:(x0, x1), [], x2) 22.90/8.46 new_lt23(x0, x1, ty_Char) 22.90/8.46 new_esEs36(x0, x1, ty_Integer) 22.90/8.46 new_esEs33(x0, x1, app(ty_Maybe, x2)) 22.90/8.46 new_esEs11(x0, x1, ty_Ordering) 22.90/8.46 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.46 new_esEs31(x0, x1, ty_Char) 22.90/8.46 new_compare16([], [], x0) 22.90/8.46 new_ltEs19(x0, x1, ty_Ordering) 22.90/8.46 new_esEs34(x0, x1, ty_Bool) 22.90/8.46 new_compare13(LT, LT) 22.90/8.47 new_esEs33(x0, x1, ty_Bool) 22.90/8.47 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs30(x0, x1, ty_Integer) 22.90/8.47 new_esEs37(x0, x1, ty_Integer) 22.90/8.47 new_primCompAux1(x0, x1, x2, x3, x4) 22.90/8.47 new_esEs7(x0, x1, ty_Integer) 22.90/8.47 new_compare110(x0, x1, False, x2, x3) 22.90/8.47 new_lt21(x0, x1, ty_Int) 22.90/8.47 new_esEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.90/8.47 new_lt23(x0, x1, ty_@0) 22.90/8.47 new_esEs29(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_primPlusNat0(Zero, x0) 22.90/8.47 new_lt7(x0, x1, x2) 22.90/8.47 new_esEs31(x0, x1, ty_Int) 22.90/8.47 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_lt10(x0, x1) 22.90/8.47 new_esEs33(x0, x1, ty_Double) 22.90/8.47 new_ltEs7(x0, x1, x2) 22.90/8.47 new_esEs33(x0, x1, ty_Char) 22.90/8.47 new_lt23(x0, x1, ty_Float) 22.90/8.47 new_ltEs21(x0, x1, ty_@0) 22.90/8.47 new_esEs6(x0, x1, ty_Float) 22.90/8.47 new_esEs31(x0, x1, ty_@0) 22.90/8.47 new_primCmpInt(Pos(Zero), Pos(Zero)) 22.90/8.47 new_ltEs20(x0, x1, ty_Ordering) 22.90/8.47 new_compare13(EQ, EQ) 22.90/8.47 new_lt11(x0, x1, ty_Double) 22.90/8.47 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 22.90/8.47 new_esEs36(x0, x1, ty_Float) 22.90/8.47 new_lt11(x0, x1, ty_Float) 22.90/8.47 new_ltEs18(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.90/8.47 new_ltEs9(Just(x0), Just(x1), ty_Double) 22.90/8.47 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 22.90/8.47 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_esEs39(x0, x1, ty_@0) 22.90/8.47 new_compare116(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 22.90/8.47 new_ltEs22(x0, x1, ty_Int) 22.90/8.47 new_ltEs9(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.90/8.47 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_compare115(x0, x1, x2, x3, True, x4, x5) 22.90/8.47 new_ltEs18(Left(x0), Left(x1), app(ty_[], x2), x3) 22.90/8.47 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_lt23(x0, x1, ty_Int) 22.90/8.47 new_ltEs9(Just(x0), Just(x1), ty_Ordering) 22.90/8.47 new_lt21(x0, x1, ty_Char) 22.90/8.47 new_esEs34(x0, x1, ty_Integer) 22.90/8.47 new_esEs6(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_ltEs13(GT, GT) 22.90/8.47 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_ltEs13(EQ, LT) 22.90/8.47 new_esEs13(LT, GT) 22.90/8.47 new_esEs13(GT, LT) 22.90/8.47 new_ltEs13(LT, EQ) 22.90/8.47 new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) 22.90/8.47 new_esEs33(x0, x1, ty_Float) 22.90/8.47 new_esEs18(Nothing, Just(x0), x1) 22.90/8.47 new_lt12(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_ltEs22(x0, x1, ty_Char) 22.90/8.47 new_compare28(x0, x1, x2, x3, False, x4, x5) 22.90/8.47 new_esEs35(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_esEs6(x0, x1, ty_Bool) 22.90/8.47 new_compare5(x0, x1, ty_Double) 22.90/8.47 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_lt13(x0, x1, x2, x3) 22.90/8.47 new_compare26(x0, x1, True, x2) 22.90/8.47 new_ltEs18(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.90/8.47 new_ltEs18(Right(x0), Right(x1), x2, ty_Double) 22.90/8.47 new_esEs36(x0, x1, ty_Int) 22.90/8.47 new_esEs28(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_esEs8(x0, x1, ty_Ordering) 22.90/8.47 new_lt22(x0, x1, ty_Bool) 22.90/8.47 new_ltEs14(x0, x1) 22.90/8.47 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 22.90/8.47 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_ltEs19(x0, x1, ty_Double) 22.90/8.47 new_lt22(x0, x1, ty_Int) 22.90/8.47 new_esEs32(x0, x1, app(ty_[], x2)) 22.90/8.47 new_lt15(x0, x1) 22.90/8.47 new_compare9(Just(x0), Nothing, x1) 22.90/8.47 new_esEs34(x0, x1, ty_@0) 22.90/8.47 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs39(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_ltEs18(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.90/8.47 new_esEs31(x0, x1, ty_Integer) 22.90/8.47 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 22.90/8.47 new_esEs28(x0, x1, ty_Float) 22.90/8.47 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_lt22(x0, x1, ty_Char) 22.90/8.47 new_compare15(True, True) 22.90/8.47 new_lt21(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_ltEs22(x0, x1, ty_Bool) 22.90/8.47 new_ltEs23(x0, x1, ty_Ordering) 22.90/8.47 new_compare110(x0, x1, True, x2, x3) 22.90/8.47 new_esEs10(x0, x1, ty_Float) 22.90/8.47 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs29(x0, x1, ty_@0) 22.90/8.47 new_lt23(x0, x1, ty_Integer) 22.90/8.47 new_primCompAux00(x0, x1, EQ, ty_Double) 22.90/8.47 new_esEs37(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_esEs20([], [], x0) 22.90/8.47 new_esEs18(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs38(x0, x1, app(ty_[], x2)) 22.90/8.47 new_primMulInt(Pos(x0), Neg(x1)) 22.90/8.47 new_primMulInt(Neg(x0), Pos(x1)) 22.90/8.47 new_lt21(x0, x1, ty_Integer) 22.90/8.47 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_esEs34(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs35(x0, x1, ty_Double) 22.90/8.47 new_lt8(x0, x1) 22.90/8.47 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 22.90/8.47 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 22.90/8.47 new_esEs7(x0, x1, ty_@0) 22.90/8.47 new_lt20(x0, x1, app(ty_[], x2)) 22.90/8.47 new_esEs39(x0, x1, app(ty_[], x2)) 22.90/8.47 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_lt22(x0, x1, ty_Float) 22.90/8.47 new_esEs6(x0, x1, ty_Integer) 22.90/8.47 new_ltEs6(x0, x1, app(ty_[], x2)) 22.90/8.47 new_esEs30(x0, x1, ty_@0) 22.90/8.47 new_primCmpNat0(Zero, Zero) 22.90/8.47 new_esEs14(Right(x0), Right(x1), x2, ty_@0) 22.90/8.47 new_esEs37(x0, x1, ty_@0) 22.90/8.47 22.90/8.47 We have to consider all minimal (P,Q,R)-chains. 22.90/8.47 ---------------------------------------- 22.90/8.47 22.90/8.47 (35) QDPSizeChangeProof (EQUIVALENT) 22.90/8.47 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. 22.90/8.47 22.90/8.47 From the DPs we obtained the following set of size-change graphs: 22.90/8.47 *new_addToFM_C(xuu3, Branch(:(xuu400, xuu401), xuu41, xuu42, xuu43, xuu44), [], xuu501, bb, bc) -> new_addToFM_C(xuu3, xuu43, [], xuu501, bb, bc) 22.90/8.47 The graph contains the following edges 1 >= 1, 2 > 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6 22.90/8.47 22.90/8.47 22.90/8.47 ---------------------------------------- 22.90/8.47 22.90/8.47 (36) 22.90/8.47 YES 22.90/8.47 22.90/8.47 ---------------------------------------- 22.90/8.47 22.90/8.47 (37) 22.90/8.47 Obligation: 22.90/8.47 Q DP problem: 22.90/8.47 The TRS P consists of the following rules: 22.90/8.47 22.90/8.47 new_addToFM_C20(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, h, ba) -> new_addToFM_C1(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare16(:(xuu25, xuu26), :(xuu19, xuu20), h), h, ba) 22.90/8.47 new_addToFM_C1(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, h, ba) -> new_addToFM_C(xuu18, xuu24, :(xuu25, xuu26), xuu27, h, ba) 22.90/8.47 new_addToFM_C(xuu3, Branch(:(xuu400, xuu401), xuu41, xuu42, xuu43, xuu44), :(xuu5000, xuu5001), xuu501, bb, bc) -> new_addToFM_C2(xuu3, xuu400, xuu401, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu5001, xuu501, new_primCompAux1(xuu5000, xuu400, xuu5001, xuu401, bb), bb, bc) 22.90/8.47 new_addToFM_C2(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, h, ba) -> new_addToFM_C20(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, h, ba) 22.90/8.47 new_addToFM_C2(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, LT, h, ba) -> new_addToFM_C(xuu18, xuu23, :(xuu25, xuu26), xuu27, h, ba) 22.90/8.47 new_addToFM_C(xuu3, Branch([], xuu41, xuu42, xuu43, xuu44), :(xuu5000, xuu5001), xuu501, bb, bc) -> new_addToFM_C10(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu5001, xuu501, GT, bb, bc) 22.90/8.47 new_addToFM_C10(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu5001, xuu501, GT, bb, bc) -> new_addToFM_C(xuu3, xuu44, :(xuu5000, xuu5001), xuu501, bb, bc) 22.90/8.47 new_addToFM_C2(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, EQ, h, ba) -> new_addToFM_C1(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare16(:(xuu25, xuu26), :(xuu19, xuu20), h), h, ba) 22.90/8.47 22.90/8.47 The TRS R consists of the following rules: 22.90/8.47 22.90/8.47 new_esEs14(Left(xuu500000), Left(xuu40000), app(app(ty_Either, gb), gc), ga) -> new_esEs14(xuu500000, xuu40000, gb, gc) 22.90/8.47 new_ltEs19(xuu71, xuu74, ty_Integer) -> new_ltEs11(xuu71, xuu74) 22.90/8.47 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 22.90/8.47 new_ltEs18(Left(xuu580), Left(xuu590), app(ty_Maybe, edc), fh) -> new_ltEs9(xuu580, xuu590, edc) 22.90/8.47 new_esEs23(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), dae, daf, dag) -> new_asAs(new_esEs38(xuu500000, xuu40000, dae), new_asAs(new_esEs37(xuu500001, xuu40001, daf), new_esEs36(xuu500002, xuu40002, dag))) 22.90/8.47 new_esEs24(@0, @0) -> True 22.90/8.47 new_esEs29(xuu69, xuu72, ty_Integer) -> new_esEs19(xuu69, xuu72) 22.90/8.47 new_pePe(True, xuu195) -> True 22.90/8.47 new_esEs7(xuu50002, xuu4002, app(app(ty_Either, efd), efe)) -> new_esEs14(xuu50002, xuu4002, efd, efe) 22.90/8.47 new_ltEs19(xuu71, xuu74, ty_@0) -> new_ltEs5(xuu71, xuu74) 22.90/8.47 new_esEs10(xuu50000, xuu4000, app(app(app(ty_@3, cg), da), db)) -> new_esEs23(xuu50000, xuu4000, cg, da, db) 22.90/8.47 new_ltEs23(xuu87, xuu88, app(ty_[], dhg)) -> new_ltEs16(xuu87, xuu88, dhg) 22.90/8.47 new_esEs8(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 22.90/8.47 new_ltEs14(xuu58, xuu59) -> new_fsEs(new_compare14(xuu58, xuu59)) 22.90/8.47 new_esEs29(xuu69, xuu72, ty_Char) -> new_esEs12(xuu69, xuu72) 22.90/8.47 new_esEs9(xuu50000, xuu4000, app(ty_Maybe, fad)) -> new_esEs18(xuu50000, xuu4000, fad) 22.90/8.47 new_esEs38(xuu500000, xuu40000, ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.47 new_compare19(Right(xuu50000), Right(xuu4000), bf, bg) -> new_compare25(xuu50000, xuu4000, new_esEs11(xuu50000, xuu4000, bg), bf, bg) 22.90/8.47 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 22.90/8.47 new_ltEs6(xuu58, xuu59, ty_Ordering) -> new_ltEs13(xuu58, xuu59) 22.90/8.47 new_esEs6(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.47 new_esEs28(xuu70, xuu73, app(app(ty_Either, bgg), bgh)) -> new_esEs14(xuu70, xuu73, bgg, bgh) 22.90/8.47 new_esEs14(Right(xuu500000), Right(xuu40000), hd, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.47 new_esEs32(xuu580, xuu590, ty_@0) -> new_esEs24(xuu580, xuu590) 22.90/8.47 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Double, ga) -> new_esEs15(xuu500000, xuu40000) 22.90/8.47 new_esEs37(xuu500001, xuu40001, app(ty_Ratio, fdc)) -> new_esEs22(xuu500001, xuu40001, fdc) 22.90/8.47 new_primCompAux00(xuu37, xuu38, EQ, ty_Int) -> new_compare14(xuu37, xuu38) 22.90/8.47 new_esEs5(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.47 new_esEs14(Right(xuu500000), Right(xuu40000), hd, ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.47 new_esEs6(xuu50000, xuu4000, app(app(ty_@2, dbe), dbf)) -> new_esEs16(xuu50000, xuu4000, dbe, dbf) 22.90/8.47 new_esEs35(xuu500000, xuu40000, app(app(app(ty_@3, ece), ecf), ecg)) -> new_esEs23(xuu500000, xuu40000, ece, ecf, ecg) 22.90/8.47 new_lt11(xuu69, xuu72, app(ty_[], bfd)) -> new_lt16(xuu69, xuu72, bfd) 22.90/8.47 new_lt23(xuu99, xuu101, ty_Char) -> new_lt10(xuu99, xuu101) 22.90/8.47 new_lt12(xuu70, xuu73, ty_Double) -> new_lt6(xuu70, xuu73) 22.90/8.47 new_lt15(xuu99, xuu101) -> new_esEs13(new_compare13(xuu99, xuu101), LT) 22.90/8.47 new_esEs37(xuu500001, xuu40001, ty_Double) -> new_esEs15(xuu500001, xuu40001) 22.90/8.47 new_compare5(xuu5000, xuu400, ty_Double) -> new_compare6(xuu5000, xuu400) 22.90/8.47 new_ltEs20(xuu581, xuu591, app(ty_Maybe, ccb)) -> new_ltEs9(xuu581, xuu591, ccb) 22.90/8.47 new_ltEs20(xuu581, xuu591, ty_Double) -> new_ltEs4(xuu581, xuu591) 22.90/8.47 new_esEs14(Right(xuu500000), Right(xuu40000), hd, app(app(ty_@2, hg), hh)) -> new_esEs16(xuu500000, xuu40000, hg, hh) 22.90/8.47 new_lt20(xuu580, xuu590, app(app(ty_@2, caf), cag)) -> new_lt13(xuu580, xuu590, caf, cag) 22.90/8.47 new_ltEs9(Just(xuu580), Just(xuu590), ty_Int) -> new_ltEs14(xuu580, xuu590) 22.90/8.47 new_esEs34(xuu500000, xuu40000, app(ty_[], ded)) -> new_esEs20(xuu500000, xuu40000, ded) 22.90/8.47 new_lt4(xuu99, xuu101) -> new_esEs13(new_compare15(xuu99, xuu101), LT) 22.90/8.47 new_esEs18(Just(xuu500000), Just(xuu40000), app(ty_[], fhd)) -> new_esEs20(xuu500000, xuu40000, fhd) 22.90/8.47 new_esEs21(False, False) -> True 22.90/8.47 new_primEqNat0(Succ(xuu5000000), Succ(xuu400000)) -> new_primEqNat0(xuu5000000, xuu400000) 22.90/8.47 new_esEs5(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.47 new_esEs26(xuu500001, xuu40001, ty_Int) -> new_esEs25(xuu500001, xuu40001) 22.90/8.47 new_esEs39(xuu99, xuu101, ty_Integer) -> new_esEs19(xuu99, xuu101) 22.90/8.47 new_not(True) -> False 22.90/8.47 new_lt20(xuu580, xuu590, app(ty_Ratio, cae)) -> new_lt7(xuu580, xuu590, cae) 22.90/8.47 new_ltEs21(xuu582, xuu592, ty_@0) -> new_ltEs5(xuu582, xuu592) 22.90/8.47 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.47 new_esEs4(xuu50001, xuu4001, app(ty_Maybe, chc)) -> new_esEs18(xuu50001, xuu4001, chc) 22.90/8.47 new_lt8(xuu99, xuu101) -> new_esEs13(new_compare14(xuu99, xuu101), LT) 22.90/8.47 new_esEs30(xuu580, xuu590, app(app(ty_Either, cbe), cbf)) -> new_esEs14(xuu580, xuu590, cbe, cbf) 22.90/8.47 new_ltEs22(xuu80, xuu81, ty_Bool) -> new_ltEs15(xuu80, xuu81) 22.90/8.47 new_esEs7(xuu50002, xuu4002, ty_Bool) -> new_esEs21(xuu50002, xuu4002) 22.90/8.47 new_ltEs18(Right(xuu580), Right(xuu590), fg, ty_Ordering) -> new_ltEs13(xuu580, xuu590) 22.90/8.47 new_lt23(xuu99, xuu101, ty_@0) -> new_lt17(xuu99, xuu101) 22.90/8.47 new_ltEs22(xuu80, xuu81, ty_Float) -> new_ltEs17(xuu80, xuu81) 22.90/8.47 new_esEs39(xuu99, xuu101, ty_Char) -> new_esEs12(xuu99, xuu101) 22.90/8.47 new_ltEs20(xuu581, xuu591, ty_Char) -> new_ltEs12(xuu581, xuu591) 22.90/8.47 new_primEqNat0(Succ(xuu5000000), Zero) -> False 22.90/8.47 new_primEqNat0(Zero, Succ(xuu400000)) -> False 22.90/8.47 new_esEs36(xuu500002, xuu40002, ty_Float) -> new_esEs17(xuu500002, xuu40002) 22.90/8.47 new_ltEs24(xuu100, xuu102, app(app(app(ty_@3, fga), fgb), fgc)) -> new_ltEs10(xuu100, xuu102, fga, fgb, fgc) 22.90/8.47 new_ltEs9(Just(xuu580), Just(xuu590), ty_Float) -> new_ltEs17(xuu580, xuu590) 22.90/8.47 new_primCompAux00(xuu37, xuu38, EQ, ty_Double) -> new_compare6(xuu37, xuu38) 22.90/8.47 new_lt20(xuu580, xuu590, ty_Integer) -> new_lt14(xuu580, xuu590) 22.90/8.47 new_compare5(xuu5000, xuu400, app(app(ty_Either, bf), bg)) -> new_compare19(xuu5000, xuu400, bf, bg) 22.90/8.47 new_ltEs22(xuu80, xuu81, ty_Int) -> new_ltEs14(xuu80, xuu81) 22.90/8.47 new_esEs34(xuu500000, xuu40000, ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.47 new_esEs6(xuu50000, xuu4000, app(ty_[], dbh)) -> new_esEs20(xuu50000, xuu4000, dbh) 22.90/8.47 new_esEs13(LT, LT) -> True 22.90/8.47 new_esEs4(xuu50001, xuu4001, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs23(xuu50001, xuu4001, chf, chg, chh) 22.90/8.47 new_esEs25(xuu50000, xuu4000) -> new_primEqInt(xuu50000, xuu4000) 22.90/8.47 new_esEs9(xuu50000, xuu4000, app(app(app(ty_@3, fag), fah), fba)) -> new_esEs23(xuu50000, xuu4000, fag, fah, fba) 22.90/8.47 new_compare13(LT, LT) -> EQ 22.90/8.47 new_primCmpInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> GT 22.90/8.47 new_lt11(xuu69, xuu72, ty_Float) -> new_lt18(xuu69, xuu72) 22.90/8.47 new_ltEs6(xuu58, xuu59, app(ty_Ratio, ef)) -> new_ltEs7(xuu58, xuu59, ef) 22.90/8.47 new_compare13(GT, EQ) -> GT 22.90/8.47 new_esEs32(xuu580, xuu590, app(ty_Ratio, cda)) -> new_esEs22(xuu580, xuu590, cda) 22.90/8.47 new_ltEs9(Just(xuu580), Just(xuu590), ty_Bool) -> new_ltEs15(xuu580, xuu590) 22.90/8.47 new_compare5(xuu5000, xuu400, app(ty_Maybe, bda)) -> new_compare9(xuu5000, xuu400, bda) 22.90/8.47 new_esEs29(xuu69, xuu72, app(ty_[], bfd)) -> new_esEs20(xuu69, xuu72, bfd) 22.90/8.47 new_primPlusNat1(Succ(xuu19700), Succ(xuu19600)) -> Succ(Succ(new_primPlusNat1(xuu19700, xuu19600))) 22.90/8.47 new_primCompAux00(xuu37, xuu38, GT, bag) -> GT 22.90/8.47 new_lt16(xuu99, xuu101, dge) -> new_esEs13(new_compare16(xuu99, xuu101, dge), LT) 22.90/8.47 new_esEs36(xuu500002, xuu40002, ty_Int) -> new_esEs25(xuu500002, xuu40002) 22.90/8.47 new_ltEs18(Right(xuu580), Right(xuu590), fg, app(app(ty_Either, efb), efc)) -> new_ltEs18(xuu580, xuu590, efb, efc) 22.90/8.47 new_primCmpNat0(Zero, Succ(xuu40000)) -> LT 22.90/8.47 new_lt21(xuu580, xuu590, app(ty_[], cdh)) -> new_lt16(xuu580, xuu590, cdh) 22.90/8.47 new_ltEs23(xuu87, xuu88, app(app(ty_@2, dha), dhb)) -> new_ltEs8(xuu87, xuu88, dha, dhb) 22.90/8.47 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.47 new_esEs34(xuu500000, xuu40000, ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.47 new_compare16(:(xuu50000, xuu50001), [], bde) -> GT 22.90/8.47 new_esEs22(:%(xuu500000, xuu500001), :%(xuu40000, xuu40001), bdh) -> new_asAs(new_esEs27(xuu500000, xuu40000, bdh), new_esEs26(xuu500001, xuu40001, bdh)) 22.90/8.47 new_esEs6(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.47 new_ltEs21(xuu582, xuu592, app(app(ty_@2, cff), cfg)) -> new_ltEs8(xuu582, xuu592, cff, cfg) 22.90/8.47 new_esEs30(xuu580, xuu590, ty_Bool) -> new_esEs21(xuu580, xuu590) 22.90/8.47 new_ltEs23(xuu87, xuu88, app(app(ty_Either, dhh), eaa)) -> new_ltEs18(xuu87, xuu88, dhh, eaa) 22.90/8.47 new_esEs13(GT, GT) -> True 22.90/8.47 new_esEs38(xuu500000, xuu40000, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.47 new_lt20(xuu580, xuu590, app(ty_Maybe, cah)) -> new_lt9(xuu580, xuu590, cah) 22.90/8.47 new_esEs7(xuu50002, xuu4002, app(app(app(ty_@3, egc), egd), ege)) -> new_esEs23(xuu50002, xuu4002, egc, egd, ege) 22.90/8.47 new_esEs9(xuu50000, xuu4000, app(app(ty_@2, fab), fac)) -> new_esEs16(xuu50000, xuu4000, fab, fac) 22.90/8.47 new_esEs36(xuu500002, xuu40002, ty_Char) -> new_esEs12(xuu500002, xuu40002) 22.90/8.47 new_ltEs20(xuu581, xuu591, ty_Bool) -> new_ltEs15(xuu581, xuu591) 22.90/8.47 new_lt12(xuu70, xuu73, app(app(app(ty_@3, bgc), bgd), bge)) -> new_lt5(xuu70, xuu73, bgc, bgd, bge) 22.90/8.47 new_esEs34(xuu500000, xuu40000, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.47 new_esEs9(xuu50000, xuu4000, app(ty_Ratio, faf)) -> new_esEs22(xuu50000, xuu4000, faf) 22.90/8.47 new_esEs10(xuu50000, xuu4000, app(ty_Maybe, cd)) -> new_esEs18(xuu50000, xuu4000, cd) 22.90/8.47 new_esEs32(xuu580, xuu590, ty_Double) -> new_esEs15(xuu580, xuu590) 22.90/8.47 new_compare5(xuu5000, xuu400, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_compare10(xuu5000, xuu400, bdb, bdc, bdd) 22.90/8.47 new_ltEs9(Just(xuu580), Just(xuu590), app(app(app(ty_@3, eaf), eag), eah)) -> new_ltEs10(xuu580, xuu590, eaf, eag, eah) 22.90/8.47 new_primEqInt(Neg(Succ(xuu5000000)), Neg(Succ(xuu400000))) -> new_primEqNat0(xuu5000000, xuu400000) 22.90/8.47 new_esEs28(xuu70, xuu73, app(app(app(ty_@3, bgc), bgd), bge)) -> new_esEs23(xuu70, xuu73, bgc, bgd, bge) 22.90/8.47 new_ltEs8(@2(xuu580, xuu581), @2(xuu590, xuu591), eg, eh) -> new_pePe(new_lt20(xuu580, xuu590, eg), new_asAs(new_esEs30(xuu580, xuu590, eg), new_ltEs20(xuu581, xuu591, eh))) 22.90/8.47 new_lt23(xuu99, xuu101, app(app(ty_@2, ebd), ebe)) -> new_lt13(xuu99, xuu101, ebd, ebe) 22.90/8.47 new_primCmpInt(Neg(Zero), Pos(Succ(xuu40000))) -> LT 22.90/8.47 new_lt23(xuu99, xuu101, app(ty_Ratio, bce)) -> new_lt7(xuu99, xuu101, bce) 22.90/8.47 new_esEs33(xuu500001, xuu40001, ty_Float) -> new_esEs17(xuu500001, xuu40001) 22.90/8.47 new_primMulInt(Pos(xuu40000), Pos(xuu500010)) -> Pos(new_primMulNat0(xuu40000, xuu500010)) 22.90/8.47 new_primCompAux00(xuu37, xuu38, EQ, app(ty_Maybe, bbc)) -> new_compare9(xuu37, xuu38, bbc) 22.90/8.47 new_compare13(EQ, LT) -> GT 22.90/8.47 new_esEs37(xuu500001, xuu40001, app(ty_[], fdb)) -> new_esEs20(xuu500001, xuu40001, fdb) 22.90/8.47 new_lt21(xuu580, xuu590, ty_Float) -> new_lt18(xuu580, xuu590) 22.90/8.47 new_esEs13(EQ, GT) -> False 22.90/8.47 new_esEs13(GT, EQ) -> False 22.90/8.47 new_esEs11(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.47 new_compare19(Right(xuu50000), Left(xuu4000), bf, bg) -> GT 22.90/8.47 new_esEs14(Right(xuu500000), Right(xuu40000), hd, ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.47 new_lt22(xuu581, xuu591, ty_Int) -> new_lt8(xuu581, xuu591) 22.90/8.47 new_ltEs24(xuu100, xuu102, ty_Float) -> new_ltEs17(xuu100, xuu102) 22.90/8.47 new_esEs21(False, True) -> False 22.90/8.47 new_esEs21(True, False) -> False 22.90/8.47 new_esEs5(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.47 new_ltEs6(xuu58, xuu59, app(ty_Maybe, fa)) -> new_ltEs9(xuu58, xuu59, fa) 22.90/8.47 new_primMulNat0(Succ(xuu400000), Zero) -> Zero 22.90/8.47 new_primMulNat0(Zero, Succ(xuu5000100)) -> Zero 22.90/8.47 new_esEs32(xuu580, xuu590, app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs23(xuu580, xuu590, cde, cdf, cdg) 22.90/8.47 new_lt22(xuu581, xuu591, ty_Integer) -> new_lt14(xuu581, xuu591) 22.90/8.47 new_esEs31(xuu581, xuu591, ty_Integer) -> new_esEs19(xuu581, xuu591) 22.90/8.47 new_compare13(GT, LT) -> GT 22.90/8.47 new_ltEs21(xuu582, xuu592, app(app(ty_Either, cge), cgf)) -> new_ltEs18(xuu582, xuu592, cge, cgf) 22.90/8.47 new_compare26(xuu58, xuu59, True, ee) -> EQ 22.90/8.47 new_lt11(xuu69, xuu72, ty_Bool) -> new_lt4(xuu69, xuu72) 22.90/8.47 new_esEs11(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.47 new_ltEs6(xuu58, xuu59, app(ty_[], ff)) -> new_ltEs16(xuu58, xuu59, ff) 22.90/8.47 new_esEs14(Left(xuu500000), Left(xuu40000), app(ty_[], gg), ga) -> new_esEs20(xuu500000, xuu40000, gg) 22.90/8.47 new_esEs14(Right(xuu500000), Right(xuu40000), hd, app(ty_Maybe, baa)) -> new_esEs18(xuu500000, xuu40000, baa) 22.90/8.47 new_lt12(xuu70, xuu73, ty_Int) -> new_lt8(xuu70, xuu73) 22.90/8.47 new_esEs37(xuu500001, xuu40001, ty_Ordering) -> new_esEs13(xuu500001, xuu40001) 22.90/8.47 new_compare13(EQ, EQ) -> EQ 22.90/8.47 new_esEs38(xuu500000, xuu40000, app(app(ty_Either, fdg), fdh)) -> new_esEs14(xuu500000, xuu40000, fdg, fdh) 22.90/8.47 new_esEs30(xuu580, xuu590, app(ty_Maybe, cah)) -> new_esEs18(xuu580, xuu590, cah) 22.90/8.47 new_esEs34(xuu500000, xuu40000, app(ty_Ratio, dee)) -> new_esEs22(xuu500000, xuu40000, dee) 22.90/8.47 new_esEs32(xuu580, xuu590, app(ty_Maybe, cdd)) -> new_esEs18(xuu580, xuu590, cdd) 22.90/8.47 new_ltEs13(GT, LT) -> False 22.90/8.47 new_esEs39(xuu99, xuu101, app(ty_[], dge)) -> new_esEs20(xuu99, xuu101, dge) 22.90/8.47 new_ltEs18(Left(xuu580), Left(xuu590), app(ty_[], edg), fh) -> new_ltEs16(xuu580, xuu590, edg) 22.90/8.47 new_compare15(False, True) -> LT 22.90/8.47 new_primPlusNat1(Succ(xuu19700), Zero) -> Succ(xuu19700) 22.90/8.47 new_primPlusNat1(Zero, Succ(xuu19600)) -> Succ(xuu19600) 22.90/8.47 new_ltEs20(xuu581, xuu591, app(ty_[], ccf)) -> new_ltEs16(xuu581, xuu591, ccf) 22.90/8.47 new_esEs32(xuu580, xuu590, app(app(ty_@2, cdb), cdc)) -> new_esEs16(xuu580, xuu590, cdb, cdc) 22.90/8.47 new_esEs9(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.47 new_ltEs19(xuu71, xuu74, app(app(ty_@2, bhb), bhc)) -> new_ltEs8(xuu71, xuu74, bhb, bhc) 22.90/8.47 new_lt20(xuu580, xuu590, ty_Char) -> new_lt10(xuu580, xuu590) 22.90/8.47 new_compare9(Just(xuu50000), Just(xuu4000), bda) -> new_compare26(xuu50000, xuu4000, new_esEs6(xuu50000, xuu4000, bda), bda) 22.90/8.47 new_esEs6(xuu50000, xuu4000, app(ty_Maybe, dbg)) -> new_esEs18(xuu50000, xuu4000, dbg) 22.90/8.47 new_esEs28(xuu70, xuu73, ty_Int) -> new_esEs25(xuu70, xuu73) 22.90/8.47 new_ltEs4(xuu58, xuu59) -> new_fsEs(new_compare6(xuu58, xuu59)) 22.90/8.47 new_ltEs9(Just(xuu580), Just(xuu590), ty_Char) -> new_ltEs12(xuu580, xuu590) 22.90/8.47 new_esEs14(Left(xuu500000), Left(xuu40000), ty_@0, ga) -> new_esEs24(xuu500000, xuu40000) 22.90/8.47 new_lt23(xuu99, xuu101, app(ty_[], dge)) -> new_lt16(xuu99, xuu101, dge) 22.90/8.47 new_esEs29(xuu69, xuu72, ty_Double) -> new_esEs15(xuu69, xuu72) 22.90/8.47 new_esEs4(xuu50001, xuu4001, ty_Bool) -> new_esEs21(xuu50001, xuu4001) 22.90/8.47 new_ltEs23(xuu87, xuu88, app(ty_Ratio, dgh)) -> new_ltEs7(xuu87, xuu88, dgh) 22.90/8.47 new_esEs30(xuu580, xuu590, app(app(app(ty_@3, cba), cbb), cbc)) -> new_esEs23(xuu580, xuu590, cba, cbb, cbc) 22.90/8.47 new_esEs7(xuu50002, xuu4002, app(ty_Maybe, efh)) -> new_esEs18(xuu50002, xuu4002, efh) 22.90/8.47 new_lt23(xuu99, xuu101, ty_Ordering) -> new_lt15(xuu99, xuu101) 22.90/8.47 new_esEs28(xuu70, xuu73, ty_Bool) -> new_esEs21(xuu70, xuu73) 22.90/8.47 new_esEs19(Integer(xuu500000), Integer(xuu40000)) -> new_primEqInt(xuu500000, xuu40000) 22.90/8.47 new_compare24(xuu80, xuu81, False, dfa, dfb) -> new_compare110(xuu80, xuu81, new_ltEs22(xuu80, xuu81, dfa), dfa, dfb) 22.90/8.47 new_lt12(xuu70, xuu73, ty_Bool) -> new_lt4(xuu70, xuu73) 22.90/8.47 new_compare6(Double(xuu50000, Neg(xuu500010)), Double(xuu4000, Neg(xuu40010))) -> new_compare14(new_sr(xuu50000, Neg(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) 22.90/8.47 new_compare5(xuu5000, xuu400, ty_Int) -> new_compare14(xuu5000, xuu400) 22.90/8.47 new_compare27(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, beb, bec, bed) -> new_compare113(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, new_lt11(xuu69, xuu72, beb), new_asAs(new_esEs29(xuu69, xuu72, beb), new_pePe(new_lt12(xuu70, xuu73, bec), new_asAs(new_esEs28(xuu70, xuu73, bec), new_ltEs19(xuu71, xuu74, bed)))), beb, bec, bed) 22.90/8.47 new_esEs4(xuu50001, xuu4001, app(app(ty_Either, cgg), cgh)) -> new_esEs14(xuu50001, xuu4001, cgg, cgh) 22.90/8.47 new_lt12(xuu70, xuu73, ty_Integer) -> new_lt14(xuu70, xuu73) 22.90/8.47 new_esEs6(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.47 new_esEs10(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.47 new_ltEs6(xuu58, xuu59, app(app(ty_@2, eg), eh)) -> new_ltEs8(xuu58, xuu59, eg, eh) 22.90/8.47 new_lt11(xuu69, xuu72, ty_Ordering) -> new_lt15(xuu69, xuu72) 22.90/8.47 new_esEs14(Left(xuu500000), Right(xuu40000), hd, ga) -> False 22.90/8.47 new_esEs14(Right(xuu500000), Left(xuu40000), hd, ga) -> False 22.90/8.47 new_esEs8(xuu50001, xuu4001, ty_Integer) -> new_esEs19(xuu50001, xuu4001) 22.90/8.47 new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_Either, bbh), bca)) -> new_compare19(xuu37, xuu38, bbh, bca) 22.90/8.47 new_compare114(xuu156, xuu157, xuu158, xuu159, True, xuu161, cac, cad) -> new_compare115(xuu156, xuu157, xuu158, xuu159, True, cac, cad) 22.90/8.47 new_ltEs9(Just(xuu580), Just(xuu590), ty_Double) -> new_ltEs4(xuu580, xuu590) 22.90/8.47 new_esEs35(xuu500000, xuu40000, app(ty_Ratio, ecd)) -> new_esEs22(xuu500000, xuu40000, ecd) 22.90/8.47 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Integer, ga) -> new_esEs19(xuu500000, xuu40000) 22.90/8.47 new_primCompAux00(xuu37, xuu38, EQ, app(ty_Ratio, bah)) -> new_compare7(xuu37, xuu38, bah) 22.90/8.47 new_esEs6(xuu50000, xuu4000, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs23(xuu50000, xuu4000, dcb, dcc, dcd) 22.90/8.47 new_lt22(xuu581, xuu591, ty_Bool) -> new_lt4(xuu581, xuu591) 22.90/8.47 new_esEs30(xuu580, xuu590, ty_Int) -> new_esEs25(xuu580, xuu590) 22.90/8.47 new_esEs12(Char(xuu500000), Char(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) 22.90/8.47 new_esEs33(xuu500001, xuu40001, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs23(xuu500001, xuu40001, ddd, dde, ddf) 22.90/8.47 new_esEs39(xuu99, xuu101, ty_Float) -> new_esEs17(xuu99, xuu101) 22.90/8.47 new_ltEs15(True, True) -> True 22.90/8.47 new_esEs8(xuu50001, xuu4001, ty_Double) -> new_esEs15(xuu50001, xuu4001) 22.90/8.47 new_esEs8(xuu50001, xuu4001, app(app(ty_@2, egh), eha)) -> new_esEs16(xuu50001, xuu4001, egh, eha) 22.90/8.47 new_esEs31(xuu581, xuu591, ty_Ordering) -> new_esEs13(xuu581, xuu591) 22.90/8.47 new_esEs11(xuu50000, xuu4000, app(app(ty_Either, dc), dd)) -> new_esEs14(xuu50000, xuu4000, dc, dd) 22.90/8.47 new_lt23(xuu99, xuu101, ty_Integer) -> new_lt14(xuu99, xuu101) 22.90/8.47 new_lt21(xuu580, xuu590, ty_Ordering) -> new_lt15(xuu580, xuu590) 22.90/8.47 new_esEs29(xuu69, xuu72, app(app(ty_@2, bef), beg)) -> new_esEs16(xuu69, xuu72, bef, beg) 22.90/8.47 new_esEs30(xuu580, xuu590, app(ty_Ratio, cae)) -> new_esEs22(xuu580, xuu590, cae) 22.90/8.47 new_lt23(xuu99, xuu101, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_lt5(xuu99, xuu101, bcb, bcc, bcd) 22.90/8.47 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.47 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Char, ga) -> new_esEs12(xuu500000, xuu40000) 22.90/8.47 new_esEs14(Right(xuu500000), Right(xuu40000), hd, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.47 new_esEs37(xuu500001, xuu40001, ty_Integer) -> new_esEs19(xuu500001, xuu40001) 22.90/8.47 new_esEs9(xuu50000, xuu4000, app(ty_[], fae)) -> new_esEs20(xuu50000, xuu4000, fae) 22.90/8.47 new_lt12(xuu70, xuu73, app(app(ty_@2, bfh), bga)) -> new_lt13(xuu70, xuu73, bfh, bga) 22.90/8.47 new_lt12(xuu70, xuu73, app(ty_Ratio, bfg)) -> new_lt7(xuu70, xuu73, bfg) 22.90/8.47 new_compare5(xuu5000, xuu400, app(ty_Ratio, bcf)) -> new_compare7(xuu5000, xuu400, bcf) 22.90/8.47 new_esEs38(xuu500000, xuu40000, app(ty_Maybe, fec)) -> new_esEs18(xuu500000, xuu40000, fec) 22.90/8.47 new_esEs32(xuu580, xuu590, app(app(ty_Either, cea), ceb)) -> new_esEs14(xuu580, xuu590, cea, ceb) 22.90/8.47 new_lt18(xuu99, xuu101) -> new_esEs13(new_compare18(xuu99, xuu101), LT) 22.90/8.47 new_ltEs21(xuu582, xuu592, app(ty_[], cgd)) -> new_ltEs16(xuu582, xuu592, cgd) 22.90/8.47 new_ltEs24(xuu100, xuu102, app(app(ty_@2, fff), ffg)) -> new_ltEs8(xuu100, xuu102, fff, ffg) 22.90/8.47 new_esEs18(Just(xuu500000), Just(xuu40000), app(ty_Ratio, fhe)) -> new_esEs22(xuu500000, xuu40000, fhe) 22.90/8.47 new_esEs10(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.47 new_esEs33(xuu500001, xuu40001, ty_Char) -> new_esEs12(xuu500001, xuu40001) 22.90/8.47 new_esEs35(xuu500000, xuu40000, ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.47 new_esEs18(Just(xuu500000), Just(xuu40000), ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.47 new_esEs7(xuu50002, xuu4002, ty_@0) -> new_esEs24(xuu50002, xuu4002) 22.90/8.47 new_esEs34(xuu500000, xuu40000, ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.47 new_esEs29(xuu69, xuu72, ty_Int) -> new_esEs25(xuu69, xuu72) 22.90/8.47 new_compare26(xuu58, xuu59, False, ee) -> new_compare111(xuu58, xuu59, new_ltEs6(xuu58, xuu59, ee), ee) 22.90/8.47 new_ltEs23(xuu87, xuu88, ty_Double) -> new_ltEs4(xuu87, xuu88) 22.90/8.47 new_compare24(xuu80, xuu81, True, dfa, dfb) -> EQ 22.90/8.47 new_esEs30(xuu580, xuu590, app(app(ty_@2, caf), cag)) -> new_esEs16(xuu580, xuu590, caf, cag) 22.90/8.47 new_esEs14(Right(xuu500000), Right(xuu40000), hd, ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.47 new_primCmpInt(Pos(Succ(xuu500000)), Pos(xuu4000)) -> new_primCmpNat0(Succ(xuu500000), xuu4000) 22.90/8.47 new_compare16([], :(xuu4000, xuu4001), bde) -> LT 22.90/8.47 new_lt20(xuu580, xuu590, ty_@0) -> new_lt17(xuu580, xuu590) 22.90/8.47 new_ltEs11(xuu58, xuu59) -> new_fsEs(new_compare11(xuu58, xuu59)) 22.90/8.47 new_esEs35(xuu500000, xuu40000, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.47 new_esEs5(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.47 new_compare5(xuu5000, xuu400, ty_Integer) -> new_compare11(xuu5000, xuu400) 22.90/8.47 new_esEs20(:(xuu500000, xuu500001), :(xuu40000, xuu40001), dad) -> new_asAs(new_esEs35(xuu500000, xuu40000, dad), new_esEs20(xuu500001, xuu40001, dad)) 22.90/8.47 new_lt17(xuu99, xuu101) -> new_esEs13(new_compare17(xuu99, xuu101), LT) 22.90/8.47 new_esEs29(xuu69, xuu72, ty_Ordering) -> new_esEs13(xuu69, xuu72) 22.90/8.47 new_compare11(Integer(xuu50000), Integer(xuu4000)) -> new_primCmpInt(xuu50000, xuu4000) 22.90/8.47 new_esEs8(xuu50001, xuu4001, ty_Float) -> new_esEs17(xuu50001, xuu4001) 22.90/8.47 new_compare13(GT, GT) -> EQ 22.90/8.47 new_esEs18(Just(xuu500000), Just(xuu40000), app(ty_Maybe, fhc)) -> new_esEs18(xuu500000, xuu40000, fhc) 22.90/8.47 new_ltEs16(xuu58, xuu59, ff) -> new_fsEs(new_compare16(xuu58, xuu59, ff)) 22.90/8.47 new_ltEs18(Left(xuu580), Left(xuu590), app(ty_Ratio, ech), fh) -> new_ltEs7(xuu580, xuu590, ech) 22.90/8.47 new_esEs5(xuu50000, xuu4000, app(ty_[], dad)) -> new_esEs20(xuu50000, xuu4000, dad) 22.90/8.47 new_esEs6(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.47 new_ltEs17(xuu58, xuu59) -> new_fsEs(new_compare18(xuu58, xuu59)) 22.90/8.47 new_esEs38(xuu500000, xuu40000, app(app(app(ty_@3, fef), feg), feh)) -> new_esEs23(xuu500000, xuu40000, fef, feg, feh) 22.90/8.47 new_esEs33(xuu500001, xuu40001, app(ty_Maybe, dda)) -> new_esEs18(xuu500001, xuu40001, dda) 22.90/8.47 new_esEs10(xuu50000, xuu4000, app(ty_Ratio, cf)) -> new_esEs22(xuu50000, xuu4000, cf) 22.90/8.47 new_esEs37(xuu500001, xuu40001, app(app(ty_Either, fce), fcf)) -> new_esEs14(xuu500001, xuu40001, fce, fcf) 22.90/8.47 new_ltEs18(Left(xuu580), Left(xuu590), ty_@0, fh) -> new_ltEs5(xuu580, xuu590) 22.90/8.47 new_lt21(xuu580, xuu590, ty_Int) -> new_lt8(xuu580, xuu590) 22.90/8.47 new_esEs31(xuu581, xuu591, ty_Bool) -> new_esEs21(xuu581, xuu591) 22.90/8.47 new_esEs35(xuu500000, xuu40000, ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.47 new_lt19(xuu99, xuu101, ffc, ffd) -> new_esEs13(new_compare19(xuu99, xuu101, ffc, ffd), LT) 22.90/8.47 new_esEs14(Left(xuu500000), Left(xuu40000), app(ty_Ratio, gh), ga) -> new_esEs22(xuu500000, xuu40000, gh) 22.90/8.47 new_lt11(xuu69, xuu72, ty_Char) -> new_lt10(xuu69, xuu72) 22.90/8.47 new_esEs36(xuu500002, xuu40002, app(app(ty_Either, fbc), fbd)) -> new_esEs14(xuu500002, xuu40002, fbc, fbd) 22.90/8.47 new_ltEs6(xuu58, xuu59, app(app(ty_Either, fg), fh)) -> new_ltEs18(xuu58, xuu59, fg, fh) 22.90/8.47 new_ltEs20(xuu581, xuu591, app(app(ty_Either, ccg), cch)) -> new_ltEs18(xuu581, xuu591, ccg, cch) 22.90/8.47 new_compare5(xuu5000, xuu400, ty_Char) -> new_compare12(xuu5000, xuu400) 22.90/8.47 new_esEs36(xuu500002, xuu40002, ty_Bool) -> new_esEs21(xuu500002, xuu40002) 22.90/8.47 new_ltEs18(Left(xuu580), Left(xuu590), ty_Ordering, fh) -> new_ltEs13(xuu580, xuu590) 22.90/8.47 new_compare9(Nothing, Just(xuu4000), bda) -> LT 22.90/8.47 new_esEs34(xuu500000, xuu40000, app(ty_Maybe, dec)) -> new_esEs18(xuu500000, xuu40000, dec) 22.90/8.47 new_esEs39(xuu99, xuu101, app(ty_Maybe, bea)) -> new_esEs18(xuu99, xuu101, bea) 22.90/8.47 new_esEs31(xuu581, xuu591, ty_Int) -> new_esEs25(xuu581, xuu591) 22.90/8.47 new_esEs31(xuu581, xuu591, app(app(ty_Either, cfc), cfd)) -> new_esEs14(xuu581, xuu591, cfc, cfd) 22.90/8.47 new_compare8(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), bcg, bch) -> new_compare28(xuu50000, xuu50001, xuu4000, xuu4001, new_asAs(new_esEs5(xuu50000, xuu4000, bcg), new_esEs4(xuu50001, xuu4001, bch)), bcg, bch) 22.90/8.47 new_ltEs9(Just(xuu580), Just(xuu590), app(ty_Maybe, eae)) -> new_ltEs9(xuu580, xuu590, eae) 22.90/8.47 new_esEs11(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.47 new_compare14(xuu5000, xuu400) -> new_primCmpInt(xuu5000, xuu400) 22.90/8.47 new_primCompAux00(xuu37, xuu38, EQ, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_compare10(xuu37, xuu38, bbd, bbe, bbf) 22.90/8.47 new_ltEs18(Left(xuu580), Left(xuu590), ty_Integer, fh) -> new_ltEs11(xuu580, xuu590) 22.90/8.47 new_esEs11(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.47 new_ltEs19(xuu71, xuu74, app(app(ty_Either, caa), cab)) -> new_ltEs18(xuu71, xuu74, caa, cab) 22.90/8.47 new_lt21(xuu580, xuu590, ty_Bool) -> new_lt4(xuu580, xuu590) 22.90/8.47 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.47 new_esEs7(xuu50002, xuu4002, ty_Float) -> new_esEs17(xuu50002, xuu4002) 22.90/8.47 new_compare5(xuu5000, xuu400, ty_@0) -> new_compare17(xuu5000, xuu400) 22.90/8.47 new_lt20(xuu580, xuu590, ty_Ordering) -> new_lt15(xuu580, xuu590) 22.90/8.47 new_compare111(xuu125, xuu126, False, fbb) -> GT 22.90/8.47 new_esEs28(xuu70, xuu73, app(app(ty_@2, bfh), bga)) -> new_esEs16(xuu70, xuu73, bfh, bga) 22.90/8.47 new_esEs36(xuu500002, xuu40002, ty_Integer) -> new_esEs19(xuu500002, xuu40002) 22.90/8.47 new_esEs8(xuu50001, xuu4001, app(ty_[], ehc)) -> new_esEs20(xuu50001, xuu4001, ehc) 22.90/8.47 new_ltEs24(xuu100, xuu102, app(ty_[], fgd)) -> new_ltEs16(xuu100, xuu102, fgd) 22.90/8.47 new_lt22(xuu581, xuu591, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_lt5(xuu581, xuu591, ceg, ceh, cfa) 22.90/8.47 new_ltEs6(xuu58, xuu59, ty_Float) -> new_ltEs17(xuu58, xuu59) 22.90/8.47 new_compare9(Just(xuu50000), Nothing, bda) -> GT 22.90/8.47 new_ltEs18(Left(xuu580), Left(xuu590), ty_Char, fh) -> new_ltEs12(xuu580, xuu590) 22.90/8.47 new_esEs4(xuu50001, xuu4001, ty_Float) -> new_esEs17(xuu50001, xuu4001) 22.90/8.47 new_ltEs18(Right(xuu580), Right(xuu590), fg, ty_Double) -> new_ltEs4(xuu580, xuu590) 22.90/8.47 new_esEs33(xuu500001, xuu40001, app(app(ty_Either, dce), dcf)) -> new_esEs14(xuu500001, xuu40001, dce, dcf) 22.90/8.47 new_esEs18(Just(xuu500000), Just(xuu40000), app(app(app(ty_@3, fhf), fhg), fhh)) -> new_esEs23(xuu500000, xuu40000, fhf, fhg, fhh) 22.90/8.47 new_esEs34(xuu500000, xuu40000, app(app(app(ty_@3, def), deg), deh)) -> new_esEs23(xuu500000, xuu40000, def, deg, deh) 22.90/8.47 new_esEs11(xuu50000, xuu4000, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs23(xuu50000, xuu4000, eb, ec, ed) 22.90/8.47 new_esEs9(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.47 new_esEs32(xuu580, xuu590, ty_Ordering) -> new_esEs13(xuu580, xuu590) 22.90/8.47 new_ltEs13(LT, LT) -> True 22.90/8.47 new_esEs37(xuu500001, xuu40001, app(ty_Maybe, fda)) -> new_esEs18(xuu500001, xuu40001, fda) 22.90/8.47 new_lt20(xuu580, xuu590, app(app(ty_Either, cbe), cbf)) -> new_lt19(xuu580, xuu590, cbe, cbf) 22.90/8.47 new_esEs10(xuu50000, xuu4000, app(app(ty_Either, bh), ca)) -> new_esEs14(xuu50000, xuu4000, bh, ca) 22.90/8.47 new_esEs31(xuu581, xuu591, app(ty_Ratio, cec)) -> new_esEs22(xuu581, xuu591, cec) 22.90/8.47 new_primCompAux00(xuu37, xuu38, EQ, ty_Ordering) -> new_compare13(xuu37, xuu38) 22.90/8.47 new_compare116(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, dah, dba, dbb) -> LT 22.90/8.47 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Bool, ga) -> new_esEs21(xuu500000, xuu40000) 22.90/8.47 new_esEs6(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.47 new_ltEs15(False, True) -> True 22.90/8.47 new_esEs4(xuu50001, xuu4001, ty_@0) -> new_esEs24(xuu50001, xuu4001) 22.90/8.47 new_primPlusNat0(Succ(xuu2070), xuu5000100) -> Succ(Succ(new_primPlusNat1(xuu2070, xuu5000100))) 22.90/8.47 new_lt20(xuu580, xuu590, ty_Int) -> new_lt8(xuu580, xuu590) 22.90/8.47 new_esEs28(xuu70, xuu73, app(ty_Ratio, bfg)) -> new_esEs22(xuu70, xuu73, bfg) 22.90/8.47 new_ltEs6(xuu58, xuu59, ty_Double) -> new_ltEs4(xuu58, xuu59) 22.90/8.47 new_lt23(xuu99, xuu101, ty_Float) -> new_lt18(xuu99, xuu101) 22.90/8.47 new_lt13(xuu99, xuu101, ebd, ebe) -> new_esEs13(new_compare8(xuu99, xuu101, ebd, ebe), LT) 22.90/8.47 new_lt22(xuu581, xuu591, app(ty_Maybe, cef)) -> new_lt9(xuu581, xuu591, cef) 22.90/8.47 new_primCompAux00(xuu37, xuu38, EQ, ty_Char) -> new_compare12(xuu37, xuu38) 22.90/8.47 new_esEs38(xuu500000, xuu40000, ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.47 new_compare5(xuu5000, xuu400, ty_Bool) -> new_compare15(xuu5000, xuu400) 22.90/8.47 new_esEs32(xuu580, xuu590, ty_Bool) -> new_esEs21(xuu580, xuu590) 22.90/8.47 new_esEs4(xuu50001, xuu4001, ty_Integer) -> new_esEs19(xuu50001, xuu4001) 22.90/8.47 new_primPlusNat1(Zero, Zero) -> Zero 22.90/8.47 new_ltEs18(Left(xuu580), Left(xuu590), app(app(ty_@2, eda), edb), fh) -> new_ltEs8(xuu580, xuu590, eda, edb) 22.90/8.47 new_esEs35(xuu500000, xuu40000, app(ty_Maybe, ecb)) -> new_esEs18(xuu500000, xuu40000, ecb) 22.90/8.47 new_esEs35(xuu500000, xuu40000, app(app(ty_Either, ebf), ebg)) -> new_esEs14(xuu500000, xuu40000, ebf, ebg) 22.90/8.47 new_compare111(xuu125, xuu126, True, fbb) -> LT 22.90/8.47 new_esEs30(xuu580, xuu590, ty_Ordering) -> new_esEs13(xuu580, xuu590) 22.90/8.47 new_esEs21(True, True) -> True 22.90/8.47 new_primCompAux00(xuu37, xuu38, EQ, ty_Integer) -> new_compare11(xuu37, xuu38) 22.90/8.47 new_esEs35(xuu500000, xuu40000, ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.47 new_ltEs21(xuu582, xuu592, ty_Float) -> new_ltEs17(xuu582, xuu592) 22.90/8.47 new_ltEs18(Left(xuu580), Right(xuu590), fg, fh) -> True 22.90/8.47 new_esEs11(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.47 new_compare19(Left(xuu50000), Left(xuu4000), bf, bg) -> new_compare24(xuu50000, xuu4000, new_esEs10(xuu50000, xuu4000, bf), bf, bg) 22.90/8.47 new_esEs14(Right(xuu500000), Right(xuu40000), hd, ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.47 new_ltEs18(Right(xuu580), Right(xuu590), fg, app(ty_[], efa)) -> new_ltEs16(xuu580, xuu590, efa) 22.90/8.47 new_esEs37(xuu500001, xuu40001, ty_@0) -> new_esEs24(xuu500001, xuu40001) 22.90/8.47 new_ltEs22(xuu80, xuu81, ty_Double) -> new_ltEs4(xuu80, xuu81) 22.90/8.47 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Ordering, ga) -> new_esEs13(xuu500000, xuu40000) 22.90/8.47 new_primCompAux00(xuu37, xuu38, EQ, ty_Bool) -> new_compare15(xuu37, xuu38) 22.90/8.47 new_lt23(xuu99, xuu101, app(ty_Maybe, bea)) -> new_lt9(xuu99, xuu101, bea) 22.90/8.47 new_compare17(@0, @0) -> EQ 22.90/8.47 new_ltEs18(Right(xuu580), Left(xuu590), fg, fh) -> False 22.90/8.47 new_esEs37(xuu500001, xuu40001, app(app(app(ty_@3, fdd), fde), fdf)) -> new_esEs23(xuu500001, xuu40001, fdd, fde, fdf) 22.90/8.47 new_esEs14(Right(xuu500000), Right(xuu40000), hd, app(ty_[], bab)) -> new_esEs20(xuu500000, xuu40000, bab) 22.90/8.47 new_esEs34(xuu500000, xuu40000, ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.47 new_esEs14(Left(xuu500000), Left(xuu40000), app(app(app(ty_@3, ha), hb), hc), ga) -> new_esEs23(xuu500000, xuu40000, ha, hb, hc) 22.90/8.47 new_lt23(xuu99, xuu101, app(app(ty_Either, ffc), ffd)) -> new_lt19(xuu99, xuu101, ffc, ffd) 22.90/8.47 new_primCmpNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primCmpNat0(xuu500000, xuu40000) 22.90/8.47 new_esEs31(xuu581, xuu591, ty_Char) -> new_esEs12(xuu581, xuu591) 22.90/8.47 new_esEs10(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.47 new_ltEs18(Left(xuu580), Left(xuu590), ty_Bool, fh) -> new_ltEs15(xuu580, xuu590) 22.90/8.47 new_lt22(xuu581, xuu591, ty_@0) -> new_lt17(xuu581, xuu591) 22.90/8.47 new_ltEs12(xuu58, xuu59) -> new_fsEs(new_compare12(xuu58, xuu59)) 22.90/8.47 new_esEs34(xuu500000, xuu40000, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.47 new_esEs39(xuu99, xuu101, ty_@0) -> new_esEs24(xuu99, xuu101) 22.90/8.47 new_ltEs21(xuu582, xuu592, ty_Double) -> new_ltEs4(xuu582, xuu592) 22.90/8.47 new_esEs33(xuu500001, xuu40001, ty_Bool) -> new_esEs21(xuu500001, xuu40001) 22.90/8.47 new_compare27(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, True, beb, bec, bed) -> EQ 22.90/8.47 new_esEs32(xuu580, xuu590, ty_Char) -> new_esEs12(xuu580, xuu590) 22.90/8.47 new_esEs10(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.47 new_compare13(LT, GT) -> LT 22.90/8.47 new_lt21(xuu580, xuu590, ty_@0) -> new_lt17(xuu580, xuu590) 22.90/8.47 new_ltEs5(xuu58, xuu59) -> new_fsEs(new_compare17(xuu58, xuu59)) 22.90/8.47 new_ltEs18(Right(xuu580), Right(xuu590), fg, app(app(ty_@2, eec), eed)) -> new_ltEs8(xuu580, xuu590, eec, eed) 22.90/8.47 new_ltEs15(True, False) -> False 22.90/8.47 new_lt5(xuu99, xuu101, bcb, bcc, bcd) -> new_esEs13(new_compare10(xuu99, xuu101, bcb, bcc, bcd), LT) 22.90/8.47 new_ltEs18(Right(xuu580), Right(xuu590), fg, ty_Float) -> new_ltEs17(xuu580, xuu590) 22.90/8.47 new_esEs38(xuu500000, xuu40000, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.47 new_esEs33(xuu500001, xuu40001, ty_Int) -> new_esEs25(xuu500001, xuu40001) 22.90/8.47 new_esEs18(Just(xuu500000), Just(xuu40000), app(app(ty_Either, fgg), fgh)) -> new_esEs14(xuu500000, xuu40000, fgg, fgh) 22.90/8.47 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.47 new_esEs13(EQ, EQ) -> True 22.90/8.47 new_compare10(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bdb, bdc, bdd) -> new_compare27(xuu50000, xuu50001, xuu50002, xuu4000, xuu4001, xuu4002, new_asAs(new_esEs9(xuu50000, xuu4000, bdb), new_asAs(new_esEs8(xuu50001, xuu4001, bdc), new_esEs7(xuu50002, xuu4002, bdd))), bdb, bdc, bdd) 22.90/8.47 new_ltEs20(xuu581, xuu591, ty_Float) -> new_ltEs17(xuu581, xuu591) 22.90/8.47 new_esEs11(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.47 new_lt11(xuu69, xuu72, ty_Double) -> new_lt6(xuu69, xuu72) 22.90/8.47 new_lt22(xuu581, xuu591, app(app(ty_Either, cfc), cfd)) -> new_lt19(xuu581, xuu591, cfc, cfd) 22.90/8.47 new_esEs38(xuu500000, xuu40000, ty_@0) -> new_esEs24(xuu500000, xuu40000) 22.90/8.47 new_lt20(xuu580, xuu590, app(app(app(ty_@3, cba), cbb), cbc)) -> new_lt5(xuu580, xuu590, cba, cbb, cbc) 22.90/8.47 new_esEs29(xuu69, xuu72, app(ty_Ratio, bee)) -> new_esEs22(xuu69, xuu72, bee) 22.90/8.47 new_ltEs15(False, False) -> True 22.90/8.47 new_esEs36(xuu500002, xuu40002, app(app(app(ty_@3, fcb), fcc), fcd)) -> new_esEs23(xuu500002, xuu40002, fcb, fcc, fcd) 22.90/8.47 new_primCompAux1(xuu5000, xuu400, xuu5001, xuu401, bb) -> new_primCompAux00(xuu5001, xuu401, new_compare5(xuu5000, xuu400, bb), app(ty_[], bb)) 22.90/8.47 new_ltEs19(xuu71, xuu74, ty_Float) -> new_ltEs17(xuu71, xuu74) 22.90/8.47 new_esEs17(Float(xuu500000, xuu500001), Float(xuu40000, xuu40001)) -> new_esEs25(new_sr(xuu500000, xuu40001), new_sr(xuu500001, xuu40000)) 22.90/8.47 new_esEs28(xuu70, xuu73, app(ty_[], bgf)) -> new_esEs20(xuu70, xuu73, bgf) 22.90/8.47 new_primCmpInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> LT 22.90/8.47 new_esEs34(xuu500000, xuu40000, app(app(ty_Either, ddg), ddh)) -> new_esEs14(xuu500000, xuu40000, ddg, ddh) 22.90/8.47 new_ltEs22(xuu80, xuu81, app(app(ty_Either, dgc), dgd)) -> new_ltEs18(xuu80, xuu81, dgc, dgd) 22.90/8.47 new_ltEs19(xuu71, xuu74, ty_Double) -> new_ltEs4(xuu71, xuu74) 22.90/8.47 new_ltEs22(xuu80, xuu81, app(app(ty_@2, dfd), dfe)) -> new_ltEs8(xuu80, xuu81, dfd, dfe) 22.90/8.47 new_compare15(True, False) -> GT 22.90/8.47 new_lt11(xuu69, xuu72, app(app(ty_Either, bfe), bff)) -> new_lt19(xuu69, xuu72, bfe, bff) 22.90/8.47 new_lt21(xuu580, xuu590, app(app(app(ty_@3, cde), cdf), cdg)) -> new_lt5(xuu580, xuu590, cde, cdf, cdg) 22.90/8.47 new_compare13(EQ, GT) -> LT 22.90/8.47 new_esEs35(xuu500000, xuu40000, ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.47 new_esEs36(xuu500002, xuu40002, app(ty_Maybe, fbg)) -> new_esEs18(xuu500002, xuu40002, fbg) 22.90/8.47 new_ltEs18(Right(xuu580), Right(xuu590), fg, app(ty_Maybe, eee)) -> new_ltEs9(xuu580, xuu590, eee) 22.90/8.47 new_ltEs18(Left(xuu580), Left(xuu590), ty_Int, fh) -> new_ltEs14(xuu580, xuu590) 22.90/8.47 new_primCmpInt(Pos(Zero), Neg(Succ(xuu40000))) -> GT 22.90/8.47 new_primCmpInt(Neg(Succ(xuu500000)), Neg(xuu4000)) -> new_primCmpNat0(xuu4000, Succ(xuu500000)) 22.90/8.47 new_lt12(xuu70, xuu73, ty_@0) -> new_lt17(xuu70, xuu73) 22.90/8.47 new_ltEs9(Just(xuu580), Just(xuu590), app(app(ty_Either, ebb), ebc)) -> new_ltEs18(xuu580, xuu590, ebb, ebc) 22.90/8.47 new_esEs5(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.47 new_ltEs6(xuu58, xuu59, app(app(app(ty_@3, fb), fc), fd)) -> new_ltEs10(xuu58, xuu59, fb, fc, fd) 22.90/8.47 new_lt11(xuu69, xuu72, app(ty_Maybe, beh)) -> new_lt9(xuu69, xuu72, beh) 22.90/8.47 new_ltEs19(xuu71, xuu74, app(ty_Maybe, bhd)) -> new_ltEs9(xuu71, xuu74, bhd) 22.90/8.47 new_compare115(xuu156, xuu157, xuu158, xuu159, False, cac, cad) -> GT 22.90/8.47 new_ltEs13(GT, GT) -> True 22.90/8.47 new_lt23(xuu99, xuu101, ty_Int) -> new_lt8(xuu99, xuu101) 22.90/8.47 new_lt21(xuu580, xuu590, app(app(ty_Either, cea), ceb)) -> new_lt19(xuu580, xuu590, cea, ceb) 22.90/8.47 new_esEs37(xuu500001, xuu40001, ty_Int) -> new_esEs25(xuu500001, xuu40001) 22.90/8.47 new_esEs33(xuu500001, xuu40001, app(app(ty_@2, dcg), dch)) -> new_esEs16(xuu500001, xuu40001, dcg, dch) 22.90/8.47 new_esEs32(xuu580, xuu590, ty_Int) -> new_esEs25(xuu580, xuu590) 22.90/8.47 new_esEs8(xuu50001, xuu4001, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_esEs23(xuu50001, xuu4001, ehe, ehf, ehg) 22.90/8.47 new_compare28(xuu99, xuu100, xuu101, xuu102, True, ffa, ffb) -> EQ 22.90/8.47 new_esEs11(xuu50000, xuu4000, ty_@0) -> new_esEs24(xuu50000, xuu4000) 22.90/8.47 new_lt20(xuu580, xuu590, ty_Bool) -> new_lt4(xuu580, xuu590) 22.90/8.47 new_esEs10(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.47 new_primEqInt(Pos(Succ(xuu5000000)), Pos(Zero)) -> False 22.90/8.47 new_primEqInt(Pos(Zero), Pos(Succ(xuu400000))) -> False 22.90/8.47 new_lt22(xuu581, xuu591, app(ty_[], cfb)) -> new_lt16(xuu581, xuu591, cfb) 22.90/8.47 new_ltEs13(EQ, GT) -> True 22.90/8.47 new_esEs33(xuu500001, xuu40001, ty_Ordering) -> new_esEs13(xuu500001, xuu40001) 22.90/8.47 new_compare28(xuu99, xuu100, xuu101, xuu102, False, ffa, ffb) -> new_compare114(xuu99, xuu100, xuu101, xuu102, new_lt23(xuu99, xuu101, ffa), new_asAs(new_esEs39(xuu99, xuu101, ffa), new_ltEs24(xuu100, xuu102, ffb)), ffa, ffb) 22.90/8.47 new_ltEs9(Just(xuu580), Just(xuu590), app(app(ty_@2, eac), ead)) -> new_ltEs8(xuu580, xuu590, eac, ead) 22.90/8.47 new_esEs7(xuu50002, xuu4002, app(ty_[], ega)) -> new_esEs20(xuu50002, xuu4002, ega) 22.90/8.47 new_ltEs13(EQ, EQ) -> True 22.90/8.47 new_esEs30(xuu580, xuu590, ty_Char) -> new_esEs12(xuu580, xuu590) 22.90/8.47 new_lt12(xuu70, xuu73, ty_Char) -> new_lt10(xuu70, xuu73) 22.90/8.47 new_ltEs21(xuu582, xuu592, ty_Char) -> new_ltEs12(xuu582, xuu592) 22.90/8.47 new_esEs38(xuu500000, xuu40000, ty_Ordering) -> new_esEs13(xuu500000, xuu40000) 22.90/8.47 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Int, ga) -> new_esEs25(xuu500000, xuu40000) 22.90/8.47 new_ltEs23(xuu87, xuu88, ty_Float) -> new_ltEs17(xuu87, xuu88) 22.90/8.47 new_esEs4(xuu50001, xuu4001, ty_Char) -> new_esEs12(xuu50001, xuu4001) 22.90/8.47 new_primCmpNat0(Zero, Zero) -> EQ 22.90/8.47 new_ltEs23(xuu87, xuu88, app(app(app(ty_@3, dhd), dhe), dhf)) -> new_ltEs10(xuu87, xuu88, dhd, dhe, dhf) 22.90/8.47 new_esEs5(xuu50000, xuu4000, app(ty_Maybe, dac)) -> new_esEs18(xuu50000, xuu4000, dac) 22.90/8.47 new_ltEs24(xuu100, xuu102, ty_Ordering) -> new_ltEs13(xuu100, xuu102) 22.90/8.47 new_compare13(LT, EQ) -> LT 22.90/8.47 new_esEs5(xuu50000, xuu4000, app(app(ty_@2, daa), dab)) -> new_esEs16(xuu50000, xuu4000, daa, dab) 22.90/8.47 new_esEs14(Left(xuu500000), Left(xuu40000), ty_Float, ga) -> new_esEs17(xuu500000, xuu40000) 22.90/8.47 new_lt10(xuu99, xuu101) -> new_esEs13(new_compare12(xuu99, xuu101), LT) 22.90/8.47 new_esEs39(xuu99, xuu101, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs23(xuu99, xuu101, bcb, bcc, bcd) 22.90/8.47 new_ltEs21(xuu582, xuu592, ty_Bool) -> new_ltEs15(xuu582, xuu592) 22.90/8.47 new_esEs36(xuu500002, xuu40002, ty_@0) -> new_esEs24(xuu500002, xuu40002) 22.90/8.47 new_esEs30(xuu580, xuu590, ty_Integer) -> new_esEs19(xuu580, xuu590) 22.90/8.47 new_ltEs21(xuu582, xuu592, app(ty_Maybe, cfh)) -> new_ltEs9(xuu582, xuu592, cfh) 22.90/8.47 new_esEs6(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.47 new_esEs33(xuu500001, xuu40001, app(ty_Ratio, ddc)) -> new_esEs22(xuu500001, xuu40001, ddc) 22.90/8.47 new_ltEs20(xuu581, xuu591, ty_Integer) -> new_ltEs11(xuu581, xuu591) 22.90/8.47 new_ltEs24(xuu100, xuu102, ty_Double) -> new_ltEs4(xuu100, xuu102) 22.90/8.47 new_ltEs19(xuu71, xuu74, ty_Char) -> new_ltEs12(xuu71, xuu74) 22.90/8.47 new_esEs37(xuu500001, xuu40001, ty_Float) -> new_esEs17(xuu500001, xuu40001) 22.90/8.47 new_esEs32(xuu580, xuu590, ty_Float) -> new_esEs17(xuu580, xuu590) 22.90/8.47 new_ltEs9(Just(xuu580), Just(xuu590), app(ty_[], eba)) -> new_ltEs16(xuu580, xuu590, eba) 22.90/8.47 new_lt21(xuu580, xuu590, app(ty_Maybe, cdd)) -> new_lt9(xuu580, xuu590, cdd) 22.90/8.47 new_esEs6(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.47 new_lt21(xuu580, xuu590, ty_Integer) -> new_lt14(xuu580, xuu590) 22.90/8.47 new_compare116(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, False, dah, dba, dbb) -> GT 22.90/8.47 new_compare110(xuu135, xuu136, True, bd, be) -> LT 22.90/8.47 new_esEs11(xuu50000, xuu4000, app(ty_Maybe, dg)) -> new_esEs18(xuu50000, xuu4000, dg) 22.90/8.47 new_esEs28(xuu70, xuu73, ty_Ordering) -> new_esEs13(xuu70, xuu73) 22.90/8.47 new_esEs33(xuu500001, xuu40001, ty_Double) -> new_esEs15(xuu500001, xuu40001) 22.90/8.47 new_esEs35(xuu500000, xuu40000, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.47 new_lt11(xuu69, xuu72, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_lt5(xuu69, xuu72, bfa, bfb, bfc) 22.90/8.47 new_ltEs20(xuu581, xuu591, ty_@0) -> new_ltEs5(xuu581, xuu591) 22.90/8.47 new_esEs38(xuu500000, xuu40000, ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.47 new_lt22(xuu581, xuu591, ty_Char) -> new_lt10(xuu581, xuu591) 22.90/8.47 new_ltEs18(Right(xuu580), Right(xuu590), fg, ty_@0) -> new_ltEs5(xuu580, xuu590) 22.90/8.47 new_esEs30(xuu580, xuu590, app(ty_[], cbd)) -> new_esEs20(xuu580, xuu590, cbd) 22.90/8.47 new_ltEs22(xuu80, xuu81, app(ty_[], dgb)) -> new_ltEs16(xuu80, xuu81, dgb) 22.90/8.47 new_esEs20([], [], dad) -> True 22.90/8.47 new_ltEs13(LT, GT) -> True 22.90/8.47 new_lt6(xuu99, xuu101) -> new_esEs13(new_compare6(xuu99, xuu101), LT) 22.90/8.47 new_esEs28(xuu70, xuu73, ty_Char) -> new_esEs12(xuu70, xuu73) 22.90/8.47 new_lt22(xuu581, xuu591, ty_Float) -> new_lt18(xuu581, xuu591) 22.90/8.47 new_lt14(xuu99, xuu101) -> new_esEs13(new_compare11(xuu99, xuu101), LT) 22.90/8.47 new_primCmpNat0(Succ(xuu500000), Zero) -> GT 22.90/8.47 new_ltEs18(Left(xuu580), Left(xuu590), app(app(ty_Either, edh), eea), fh) -> new_ltEs18(xuu580, xuu590, edh, eea) 22.90/8.47 new_primCompAux00(xuu37, xuu38, EQ, ty_Float) -> new_compare18(xuu37, xuu38) 22.90/8.47 new_pePe(False, xuu195) -> xuu195 22.90/8.47 new_esEs33(xuu500001, xuu40001, ty_@0) -> new_esEs24(xuu500001, xuu40001) 22.90/8.47 new_esEs9(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.47 new_compare7(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), ty_Int) -> new_compare14(new_sr(xuu50000, xuu4001), new_sr(xuu4000, xuu50001)) 22.90/8.47 new_esEs11(xuu50000, xuu4000, app(app(ty_@2, de), df)) -> new_esEs16(xuu50000, xuu4000, de, df) 22.90/8.47 new_compare25(xuu87, xuu88, True, dgf, dgg) -> EQ 22.90/8.47 new_esEs14(Right(xuu500000), Right(xuu40000), hd, ty_Bool) -> new_esEs21(xuu500000, xuu40000) 22.90/8.47 new_compare5(xuu5000, xuu400, ty_Ordering) -> new_compare13(xuu5000, xuu400) 22.90/8.47 new_lt21(xuu580, xuu590, app(ty_Ratio, cda)) -> new_lt7(xuu580, xuu590, cda) 22.90/8.47 new_esEs4(xuu50001, xuu4001, ty_Int) -> new_esEs25(xuu50001, xuu4001) 22.90/8.47 new_compare112(xuu142, xuu143, True, bdf, bdg) -> LT 22.90/8.47 new_lt23(xuu99, xuu101, ty_Bool) -> new_lt4(xuu99, xuu101) 22.90/8.47 new_ltEs22(xuu80, xuu81, app(ty_Ratio, dfc)) -> new_ltEs7(xuu80, xuu81, dfc) 22.90/8.47 new_ltEs9(Just(xuu580), Just(xuu590), ty_Ordering) -> new_ltEs13(xuu580, xuu590) 22.90/8.47 new_compare15(False, False) -> EQ 22.90/8.47 new_esEs6(xuu50000, xuu4000, app(app(ty_Either, dbc), dbd)) -> new_esEs14(xuu50000, xuu4000, dbc, dbd) 22.90/8.47 new_ltEs19(xuu71, xuu74, ty_Bool) -> new_ltEs15(xuu71, xuu74) 22.90/8.47 new_primEqInt(Pos(Zero), Neg(Succ(xuu400000))) -> False 22.90/8.47 new_primEqInt(Neg(Zero), Pos(Succ(xuu400000))) -> False 22.90/8.47 new_compare5(xuu5000, xuu400, ty_Float) -> new_compare18(xuu5000, xuu400) 22.90/8.47 new_lt22(xuu581, xuu591, ty_Ordering) -> new_lt15(xuu581, xuu591) 22.90/8.47 new_compare6(Double(xuu50000, Pos(xuu500010)), Double(xuu4000, Pos(xuu40010))) -> new_compare14(new_sr(xuu50000, Pos(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) 22.90/8.47 new_esEs37(xuu500001, xuu40001, ty_Bool) -> new_esEs21(xuu500001, xuu40001) 22.90/8.47 new_ltEs18(Right(xuu580), Right(xuu590), fg, app(ty_Ratio, eeb)) -> new_ltEs7(xuu580, xuu590, eeb) 22.90/8.47 new_esEs5(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.47 new_lt12(xuu70, xuu73, ty_Ordering) -> new_lt15(xuu70, xuu73) 22.90/8.47 new_compare113(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, xuu178, dah, dba, dbb) -> new_compare116(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, dah, dba, dbb) 22.90/8.47 new_esEs7(xuu50002, xuu4002, ty_Integer) -> new_esEs19(xuu50002, xuu4002) 22.90/8.47 new_esEs31(xuu581, xuu591, ty_@0) -> new_esEs24(xuu581, xuu591) 22.90/8.47 new_lt11(xuu69, xuu72, app(ty_Ratio, bee)) -> new_lt7(xuu69, xuu72, bee) 22.90/8.47 new_lt11(xuu69, xuu72, app(app(ty_@2, bef), beg)) -> new_lt13(xuu69, xuu72, bef, beg) 22.90/8.47 new_esEs36(xuu500002, xuu40002, app(ty_Ratio, fca)) -> new_esEs22(xuu500002, xuu40002, fca) 22.90/8.47 new_compare5(xuu5000, xuu400, app(app(ty_@2, bcg), bch)) -> new_compare8(xuu5000, xuu400, bcg, bch) 22.90/8.47 new_esEs5(xuu50000, xuu4000, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs23(xuu50000, xuu4000, dae, daf, dag) 22.90/8.47 new_esEs28(xuu70, xuu73, ty_Double) -> new_esEs15(xuu70, xuu73) 22.90/8.47 new_esEs11(xuu50000, xuu4000, app(ty_Ratio, ea)) -> new_esEs22(xuu50000, xuu4000, ea) 22.90/8.47 new_esEs10(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.47 new_primPlusNat0(Zero, xuu5000100) -> Succ(xuu5000100) 22.90/8.47 new_esEs29(xuu69, xuu72, app(app(ty_Either, bfe), bff)) -> new_esEs14(xuu69, xuu72, bfe, bff) 22.90/8.47 new_esEs38(xuu500000, xuu40000, ty_Char) -> new_esEs12(xuu500000, xuu40000) 22.90/8.47 new_ltEs24(xuu100, xuu102, app(ty_Ratio, ffe)) -> new_ltEs7(xuu100, xuu102, ffe) 22.90/8.47 new_esEs29(xuu69, xuu72, ty_Bool) -> new_esEs21(xuu69, xuu72) 22.90/8.47 new_esEs7(xuu50002, xuu4002, ty_Double) -> new_esEs15(xuu50002, xuu4002) 22.90/8.47 new_esEs8(xuu50001, xuu4001, app(ty_Maybe, ehb)) -> new_esEs18(xuu50001, xuu4001, ehb) 22.90/8.47 new_esEs29(xuu69, xuu72, app(ty_Maybe, beh)) -> new_esEs18(xuu69, xuu72, beh) 22.90/8.47 new_fsEs(xuu190) -> new_not(new_esEs13(xuu190, GT)) 22.90/8.47 new_esEs31(xuu581, xuu591, app(ty_Maybe, cef)) -> new_esEs18(xuu581, xuu591, cef) 22.90/8.47 new_compare16(:(xuu50000, xuu50001), :(xuu4000, xuu4001), bde) -> new_primCompAux1(xuu50000, xuu4000, xuu50001, xuu4001, bde) 22.90/8.47 new_esEs14(Right(xuu500000), Right(xuu40000), hd, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs23(xuu500000, xuu40000, bad, bae, baf) 22.90/8.47 new_lt11(xuu69, xuu72, ty_Integer) -> new_lt14(xuu69, xuu72) 22.90/8.47 new_esEs32(xuu580, xuu590, ty_Integer) -> new_esEs19(xuu580, xuu590) 22.90/8.47 new_lt11(xuu69, xuu72, ty_Int) -> new_lt8(xuu69, xuu72) 22.90/8.47 new_esEs4(xuu50001, xuu4001, app(ty_[], chd)) -> new_esEs20(xuu50001, xuu4001, chd) 22.90/8.47 new_ltEs9(Just(xuu580), Just(xuu590), ty_@0) -> new_ltEs5(xuu580, xuu590) 22.90/8.47 new_ltEs18(Left(xuu580), Left(xuu590), ty_Float, fh) -> new_ltEs17(xuu580, xuu590) 22.90/8.47 new_esEs35(xuu500000, xuu40000, ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.47 new_esEs27(xuu500000, xuu40000, ty_Int) -> new_esEs25(xuu500000, xuu40000) 22.90/8.47 new_esEs31(xuu581, xuu591, app(app(ty_@2, ced), cee)) -> new_esEs16(xuu581, xuu591, ced, cee) 22.90/8.47 new_ltEs9(Just(xuu580), Just(xuu590), ty_Integer) -> new_ltEs11(xuu580, xuu590) 22.90/8.47 new_esEs9(xuu50000, xuu4000, ty_Float) -> new_esEs17(xuu50000, xuu4000) 22.90/8.47 new_primCompAux00(xuu37, xuu38, EQ, ty_@0) -> new_compare17(xuu37, xuu38) 22.90/8.47 new_esEs33(xuu500001, xuu40001, ty_Integer) -> new_esEs19(xuu500001, xuu40001) 22.90/8.47 new_esEs29(xuu69, xuu72, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs23(xuu69, xuu72, bfa, bfb, bfc) 22.90/8.47 new_lt20(xuu580, xuu590, ty_Float) -> new_lt18(xuu580, xuu590) 22.90/8.47 new_esEs10(xuu50000, xuu4000, ty_Integer) -> new_esEs19(xuu50000, xuu4000) 22.90/8.47 new_esEs36(xuu500002, xuu40002, ty_Ordering) -> new_esEs13(xuu500002, xuu40002) 22.90/8.47 new_ltEs19(xuu71, xuu74, app(ty_[], bhh)) -> new_ltEs16(xuu71, xuu74, bhh) 22.90/8.47 new_esEs8(xuu50001, xuu4001, ty_@0) -> new_esEs24(xuu50001, xuu4001) 22.90/8.47 new_esEs18(Nothing, Nothing, dac) -> True 22.90/8.47 new_compare12(Char(xuu50000), Char(xuu4000)) -> new_primCmpNat0(xuu50000, xuu4000) 22.90/8.47 new_ltEs20(xuu581, xuu591, app(app(ty_@2, cbh), cca)) -> new_ltEs8(xuu581, xuu591, cbh, cca) 22.90/8.47 new_esEs31(xuu581, xuu591, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs23(xuu581, xuu591, ceg, ceh, cfa) 22.90/8.47 new_primMulInt(Neg(xuu40000), Neg(xuu500010)) -> Pos(new_primMulNat0(xuu40000, xuu500010)) 22.90/8.47 new_primCmpInt(Pos(Zero), Pos(Succ(xuu40000))) -> new_primCmpNat0(Zero, Succ(xuu40000)) 22.90/8.47 new_esEs18(Nothing, Just(xuu40000), dac) -> False 22.90/8.47 new_esEs18(Just(xuu500000), Nothing, dac) -> False 22.90/8.47 new_esEs37(xuu500001, xuu40001, ty_Char) -> new_esEs12(xuu500001, xuu40001) 22.90/8.47 new_ltEs13(GT, EQ) -> False 22.90/8.47 new_esEs14(Left(xuu500000), Left(xuu40000), app(app(ty_@2, gd), ge), ga) -> new_esEs16(xuu500000, xuu40000, gd, ge) 22.90/8.47 new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_@2, bba), bbb)) -> new_compare8(xuu37, xuu38, bba, bbb) 22.90/8.47 new_lt12(xuu70, xuu73, app(ty_[], bgf)) -> new_lt16(xuu70, xuu73, bgf) 22.90/8.47 new_compare18(Float(xuu50000, Pos(xuu500010)), Float(xuu4000, Pos(xuu40010))) -> new_compare14(new_sr(xuu50000, Pos(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) 22.90/8.47 new_esEs30(xuu580, xuu590, ty_Double) -> new_esEs15(xuu580, xuu590) 22.90/8.47 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.47 new_esEs34(xuu500000, xuu40000, ty_Float) -> new_esEs17(xuu500000, xuu40000) 22.90/8.47 new_esEs7(xuu50002, xuu4002, app(app(ty_@2, eff), efg)) -> new_esEs16(xuu50002, xuu4002, eff, efg) 22.90/8.47 new_esEs39(xuu99, xuu101, ty_Bool) -> new_esEs21(xuu99, xuu101) 22.90/8.47 new_compare115(xuu156, xuu157, xuu158, xuu159, True, cac, cad) -> LT 22.90/8.47 new_esEs39(xuu99, xuu101, app(app(ty_Either, ffc), ffd)) -> new_esEs14(xuu99, xuu101, ffc, ffd) 22.90/8.47 new_esEs38(xuu500000, xuu40000, app(ty_[], fed)) -> new_esEs20(xuu500000, xuu40000, fed) 22.90/8.47 new_esEs35(xuu500000, xuu40000, app(app(ty_@2, ebh), eca)) -> new_esEs16(xuu500000, xuu40000, ebh, eca) 22.90/8.47 new_esEs39(xuu99, xuu101, ty_Int) -> new_esEs25(xuu99, xuu101) 22.90/8.47 new_primMulInt(Pos(xuu40000), Neg(xuu500010)) -> Neg(new_primMulNat0(xuu40000, xuu500010)) 22.90/8.47 new_primMulInt(Neg(xuu40000), Pos(xuu500010)) -> Neg(new_primMulNat0(xuu40000, xuu500010)) 22.90/8.47 new_ltEs21(xuu582, xuu592, app(ty_Ratio, cfe)) -> new_ltEs7(xuu582, xuu592, cfe) 22.90/8.47 new_ltEs18(Right(xuu580), Right(xuu590), fg, ty_Int) -> new_ltEs14(xuu580, xuu590) 22.90/8.47 new_esEs28(xuu70, xuu73, app(ty_Maybe, bgb)) -> new_esEs18(xuu70, xuu73, bgb) 22.90/8.47 new_lt22(xuu581, xuu591, app(app(ty_@2, ced), cee)) -> new_lt13(xuu581, xuu591, ced, cee) 22.90/8.47 new_sr0(Integer(xuu40000), Integer(xuu500010)) -> Integer(new_primMulInt(xuu40000, xuu500010)) 22.90/8.47 new_esEs35(xuu500000, xuu40000, ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.47 new_ltEs23(xuu87, xuu88, ty_Char) -> new_ltEs12(xuu87, xuu88) 22.90/8.47 new_lt22(xuu581, xuu591, app(ty_Ratio, cec)) -> new_lt7(xuu581, xuu591, cec) 22.90/8.47 new_esEs36(xuu500002, xuu40002, app(ty_[], fbh)) -> new_esEs20(xuu500002, xuu40002, fbh) 22.90/8.47 new_compare18(Float(xuu50000, Neg(xuu500010)), Float(xuu4000, Neg(xuu40010))) -> new_compare14(new_sr(xuu50000, Neg(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) 22.90/8.47 new_esEs6(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.47 new_esEs28(xuu70, xuu73, ty_@0) -> new_esEs24(xuu70, xuu73) 22.90/8.47 new_ltEs9(Nothing, Just(xuu590), fa) -> True 22.90/8.47 new_ltEs24(xuu100, xuu102, app(app(ty_Either, fge), fgf)) -> new_ltEs18(xuu100, xuu102, fge, fgf) 22.90/8.47 new_asAs(True, xuu117) -> xuu117 22.90/8.47 new_esEs27(xuu500000, xuu40000, ty_Integer) -> new_esEs19(xuu500000, xuu40000) 22.90/8.47 new_esEs5(xuu50000, xuu4000, app(app(ty_Either, hd), ga)) -> new_esEs14(xuu50000, xuu4000, hd, ga) 22.90/8.47 new_esEs31(xuu581, xuu591, ty_Double) -> new_esEs15(xuu581, xuu591) 22.90/8.47 new_esEs29(xuu69, xuu72, ty_Float) -> new_esEs17(xuu69, xuu72) 22.90/8.47 new_esEs8(xuu50001, xuu4001, ty_Ordering) -> new_esEs13(xuu50001, xuu4001) 22.90/8.47 new_ltEs23(xuu87, xuu88, ty_Integer) -> new_ltEs11(xuu87, xuu88) 22.90/8.47 new_esEs4(xuu50001, xuu4001, ty_Double) -> new_esEs15(xuu50001, xuu4001) 22.90/8.47 new_ltEs18(Right(xuu580), Right(xuu590), fg, ty_Bool) -> new_ltEs15(xuu580, xuu590) 22.90/8.47 new_ltEs6(xuu58, xuu59, ty_Bool) -> new_ltEs15(xuu58, xuu59) 22.90/8.47 new_esEs39(xuu99, xuu101, app(ty_Ratio, bce)) -> new_esEs22(xuu99, xuu101, bce) 22.90/8.47 new_ltEs21(xuu582, xuu592, ty_Ordering) -> new_ltEs13(xuu582, xuu592) 22.90/8.47 new_compare7(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), ty_Integer) -> new_compare11(new_sr0(xuu50000, xuu4001), new_sr0(xuu4000, xuu50001)) 22.90/8.47 new_ltEs24(xuu100, xuu102, ty_Int) -> new_ltEs14(xuu100, xuu102) 22.90/8.47 new_esEs10(xuu50000, xuu4000, app(app(ty_@2, cb), cc)) -> new_esEs16(xuu50000, xuu4000, cb, cc) 22.90/8.47 new_esEs11(xuu50000, xuu4000, app(ty_[], dh)) -> new_esEs20(xuu50000, xuu4000, dh) 22.90/8.47 new_esEs30(xuu580, xuu590, ty_Float) -> new_esEs17(xuu580, xuu590) 22.90/8.47 new_ltEs23(xuu87, xuu88, app(ty_Maybe, dhc)) -> new_ltEs9(xuu87, xuu88, dhc) 22.90/8.47 new_compare16([], [], bde) -> EQ 22.90/8.47 new_sr(xuu4000, xuu50001) -> new_primMulInt(xuu4000, xuu50001) 22.90/8.47 new_lt21(xuu580, xuu590, ty_Char) -> new_lt10(xuu580, xuu590) 22.90/8.47 new_compare19(Left(xuu50000), Right(xuu4000), bf, bg) -> LT 22.90/8.47 new_primMulNat0(Zero, Zero) -> Zero 22.90/8.47 new_esEs39(xuu99, xuu101, ty_Double) -> new_esEs15(xuu99, xuu101) 22.90/8.47 new_ltEs6(xuu58, xuu59, ty_Char) -> new_ltEs12(xuu58, xuu59) 22.90/8.47 new_lt20(xuu580, xuu590, app(ty_[], cbd)) -> new_lt16(xuu580, xuu590, cbd) 22.90/8.47 new_esEs31(xuu581, xuu591, app(ty_[], cfb)) -> new_esEs20(xuu581, xuu591, cfb) 22.90/8.47 new_esEs7(xuu50002, xuu4002, app(ty_Ratio, egb)) -> new_esEs22(xuu50002, xuu4002, egb) 22.90/8.47 new_ltEs19(xuu71, xuu74, app(ty_Ratio, bha)) -> new_ltEs7(xuu71, xuu74, bha) 22.90/8.47 new_esEs4(xuu50001, xuu4001, app(app(ty_@2, cha), chb)) -> new_esEs16(xuu50001, xuu4001, cha, chb) 22.90/8.47 new_ltEs22(xuu80, xuu81, app(ty_Maybe, dff)) -> new_ltEs9(xuu80, xuu81, dff) 22.90/8.47 new_esEs29(xuu69, xuu72, ty_@0) -> new_esEs24(xuu69, xuu72) 22.90/8.47 new_esEs5(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.47 new_esEs7(xuu50002, xuu4002, ty_Int) -> new_esEs25(xuu50002, xuu4002) 22.90/8.47 new_esEs39(xuu99, xuu101, app(app(ty_@2, ebd), ebe)) -> new_esEs16(xuu99, xuu101, ebd, ebe) 22.90/8.47 new_esEs9(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.47 new_ltEs13(EQ, LT) -> False 22.90/8.47 new_ltEs18(Right(xuu580), Right(xuu590), fg, app(app(app(ty_@3, eef), eeg), eeh)) -> new_ltEs10(xuu580, xuu590, eef, eeg, eeh) 22.90/8.47 new_esEs30(xuu580, xuu590, ty_@0) -> new_esEs24(xuu580, xuu590) 22.90/8.47 new_ltEs18(Left(xuu580), Left(xuu590), app(app(app(ty_@3, edd), ede), edf), fh) -> new_ltEs10(xuu580, xuu590, edd, ede, edf) 22.90/8.47 new_primEqInt(Neg(Succ(xuu5000000)), Neg(Zero)) -> False 22.90/8.47 new_primEqInt(Neg(Zero), Neg(Succ(xuu400000))) -> False 22.90/8.47 new_lt20(xuu580, xuu590, ty_Double) -> new_lt6(xuu580, xuu590) 22.90/8.47 new_primEqInt(Pos(Succ(xuu5000000)), Pos(Succ(xuu400000))) -> new_primEqNat0(xuu5000000, xuu400000) 22.90/8.47 new_esEs39(xuu99, xuu101, ty_Ordering) -> new_esEs13(xuu99, xuu101) 22.90/8.47 new_compare114(xuu156, xuu157, xuu158, xuu159, False, xuu161, cac, cad) -> new_compare115(xuu156, xuu157, xuu158, xuu159, xuu161, cac, cad) 22.90/8.47 new_ltEs6(xuu58, xuu59, ty_@0) -> new_ltEs5(xuu58, xuu59) 22.90/8.47 new_ltEs23(xuu87, xuu88, ty_Int) -> new_ltEs14(xuu87, xuu88) 22.90/8.47 new_esEs34(xuu500000, xuu40000, app(app(ty_@2, dea), deb)) -> new_esEs16(xuu500000, xuu40000, dea, deb) 22.90/8.47 new_ltEs18(Right(xuu580), Right(xuu590), fg, ty_Char) -> new_ltEs12(xuu580, xuu590) 22.90/8.47 new_esEs14(Right(xuu500000), Right(xuu40000), hd, ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.47 new_ltEs19(xuu71, xuu74, ty_Ordering) -> new_ltEs13(xuu71, xuu74) 22.90/8.47 new_esEs18(Just(xuu500000), Just(xuu40000), app(app(ty_@2, fha), fhb)) -> new_esEs16(xuu500000, xuu40000, fha, fhb) 22.90/8.47 new_esEs4(xuu50001, xuu4001, ty_Ordering) -> new_esEs13(xuu50001, xuu4001) 22.90/8.47 new_primEqInt(Pos(Succ(xuu5000000)), Neg(xuu40000)) -> False 22.90/8.47 new_primEqInt(Neg(Succ(xuu5000000)), Pos(xuu40000)) -> False 22.90/8.47 new_ltEs20(xuu581, xuu591, app(ty_Ratio, cbg)) -> new_ltEs7(xuu581, xuu591, cbg) 22.90/8.47 new_ltEs18(Left(xuu580), Left(xuu590), ty_Double, fh) -> new_ltEs4(xuu580, xuu590) 22.90/8.47 new_esEs10(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.47 new_primCmpInt(Neg(Zero), Neg(Succ(xuu40000))) -> new_primCmpNat0(Succ(xuu40000), Zero) 22.90/8.47 new_esEs8(xuu50001, xuu4001, app(ty_Ratio, ehd)) -> new_esEs22(xuu50001, xuu4001, ehd) 22.90/8.47 new_esEs13(LT, GT) -> False 22.90/8.47 new_esEs13(GT, LT) -> False 22.90/8.47 new_esEs20(:(xuu500000, xuu500001), [], dad) -> False 22.90/8.47 new_esEs20([], :(xuu40000, xuu40001), dad) -> False 22.90/8.47 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 22.90/8.47 new_esEs34(xuu500000, xuu40000, ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.47 new_esEs35(xuu500000, xuu40000, app(ty_[], ecc)) -> new_esEs20(xuu500000, xuu40000, ecc) 22.90/8.47 new_ltEs20(xuu581, xuu591, ty_Ordering) -> new_ltEs13(xuu581, xuu591) 22.90/8.47 new_esEs5(xuu50000, xuu4000, ty_Ordering) -> new_esEs13(xuu50000, xuu4000) 22.90/8.47 new_primCompAux00(xuu37, xuu38, LT, bag) -> LT 22.90/8.47 new_compare113(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, False, xuu178, dah, dba, dbb) -> new_compare116(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, xuu178, dah, dba, dbb) 22.90/8.47 new_ltEs9(Just(xuu580), Just(xuu590), app(ty_Ratio, eab)) -> new_ltEs7(xuu580, xuu590, eab) 22.90/8.47 new_lt21(xuu580, xuu590, app(app(ty_@2, cdb), cdc)) -> new_lt13(xuu580, xuu590, cdb, cdc) 22.90/8.47 new_lt12(xuu70, xuu73, app(ty_Maybe, bgb)) -> new_lt9(xuu70, xuu73, bgb) 22.90/8.47 new_esEs11(xuu50000, xuu4000, ty_Double) -> new_esEs15(xuu50000, xuu4000) 22.90/8.47 new_lt11(xuu69, xuu72, ty_@0) -> new_lt17(xuu69, xuu72) 22.90/8.47 new_compare112(xuu142, xuu143, False, bdf, bdg) -> GT 22.90/8.47 new_ltEs24(xuu100, xuu102, ty_Char) -> new_ltEs12(xuu100, xuu102) 22.90/8.47 new_esEs38(xuu500000, xuu40000, app(ty_Ratio, fee)) -> new_esEs22(xuu500000, xuu40000, fee) 22.90/8.47 new_esEs28(xuu70, xuu73, ty_Integer) -> new_esEs19(xuu70, xuu73) 22.90/8.47 new_ltEs18(Right(xuu580), Right(xuu590), fg, ty_Integer) -> new_ltEs11(xuu580, xuu590) 22.90/8.47 new_esEs31(xuu581, xuu591, ty_Float) -> new_esEs17(xuu581, xuu591) 22.90/8.47 new_not(False) -> True 22.90/8.47 new_lt7(xuu99, xuu101, bce) -> new_esEs13(new_compare7(xuu99, xuu101, bce), LT) 22.90/8.47 new_esEs36(xuu500002, xuu40002, app(app(ty_@2, fbe), fbf)) -> new_esEs16(xuu500002, xuu40002, fbe, fbf) 22.90/8.47 new_esEs9(xuu50000, xuu4000, ty_Char) -> new_esEs12(xuu50000, xuu4000) 22.90/8.47 new_ltEs6(xuu58, xuu59, ty_Integer) -> new_ltEs11(xuu58, xuu59) 22.90/8.47 new_ltEs20(xuu581, xuu591, app(app(app(ty_@3, ccc), ccd), cce)) -> new_ltEs10(xuu581, xuu591, ccc, ccd, cce) 22.90/8.47 new_lt9(xuu99, xuu101, bea) -> new_esEs13(new_compare9(xuu99, xuu101, bea), LT) 22.90/8.47 new_esEs4(xuu50001, xuu4001, app(ty_Ratio, che)) -> new_esEs22(xuu50001, xuu4001, che) 22.90/8.47 new_ltEs24(xuu100, xuu102, ty_Integer) -> new_ltEs11(xuu100, xuu102) 22.90/8.47 new_esEs18(Just(xuu500000), Just(xuu40000), ty_Double) -> new_esEs15(xuu500000, xuu40000) 22.90/8.47 new_ltEs7(xuu58, xuu59, ef) -> new_fsEs(new_compare7(xuu58, xuu59, ef)) 22.90/8.47 new_esEs38(xuu500000, xuu40000, app(app(ty_@2, fea), feb)) -> new_esEs16(xuu500000, xuu40000, fea, feb) 22.90/8.47 new_esEs14(Right(xuu500000), Right(xuu40000), hd, app(ty_Ratio, bac)) -> new_esEs22(xuu500000, xuu40000, bac) 22.90/8.47 new_ltEs19(xuu71, xuu74, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_ltEs10(xuu71, xuu74, bhe, bhf, bhg) 22.90/8.47 new_ltEs10(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), fb, fc, fd) -> new_pePe(new_lt21(xuu580, xuu590, fb), new_asAs(new_esEs32(xuu580, xuu590, fb), new_pePe(new_lt22(xuu581, xuu591, fc), new_asAs(new_esEs31(xuu581, xuu591, fc), new_ltEs21(xuu582, xuu592, fd))))) 22.90/8.47 new_esEs14(Right(xuu500000), Right(xuu40000), hd, app(app(ty_Either, he), hf)) -> new_esEs14(xuu500000, xuu40000, he, hf) 22.90/8.47 new_primCompAux00(xuu37, xuu38, EQ, app(ty_[], bbg)) -> new_compare16(xuu37, xuu38, bbg) 22.90/8.47 new_ltEs22(xuu80, xuu81, app(app(app(ty_@3, dfg), dfh), dga)) -> new_ltEs10(xuu80, xuu81, dfg, dfh, dga) 22.90/8.47 new_esEs8(xuu50001, xuu4001, ty_Bool) -> new_esEs21(xuu50001, xuu4001) 22.90/8.47 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 22.90/8.47 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 22.90/8.47 new_ltEs23(xuu87, xuu88, ty_Bool) -> new_ltEs15(xuu87, xuu88) 22.90/8.47 new_lt12(xuu70, xuu73, ty_Float) -> new_lt18(xuu70, xuu73) 22.90/8.47 new_ltEs24(xuu100, xuu102, ty_@0) -> new_ltEs5(xuu100, xuu102) 22.90/8.47 new_esEs8(xuu50001, xuu4001, app(app(ty_Either, egf), egg)) -> new_esEs14(xuu50001, xuu4001, egf, egg) 22.90/8.47 new_lt12(xuu70, xuu73, app(app(ty_Either, bgg), bgh)) -> new_lt19(xuu70, xuu73, bgg, bgh) 22.90/8.47 new_lt21(xuu580, xuu590, ty_Double) -> new_lt6(xuu580, xuu590) 22.90/8.47 new_esEs8(xuu50001, xuu4001, ty_Int) -> new_esEs25(xuu50001, xuu4001) 22.90/8.47 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 22.90/8.47 new_compare6(Double(xuu50000, Pos(xuu500010)), Double(xuu4000, Neg(xuu40010))) -> new_compare14(new_sr(xuu50000, Pos(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) 22.90/8.47 new_compare6(Double(xuu50000, Neg(xuu500010)), Double(xuu4000, Pos(xuu40010))) -> new_compare14(new_sr(xuu50000, Neg(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) 22.90/8.47 new_primMulNat0(Succ(xuu400000), Succ(xuu5000100)) -> new_primPlusNat0(new_primMulNat0(xuu400000, Succ(xuu5000100)), xuu5000100) 22.90/8.47 new_esEs14(Left(xuu500000), Left(xuu40000), app(ty_Maybe, gf), ga) -> new_esEs18(xuu500000, xuu40000, gf) 22.90/8.47 new_ltEs21(xuu582, xuu592, ty_Integer) -> new_ltEs11(xuu582, xuu592) 22.90/8.47 new_lt22(xuu581, xuu591, ty_Double) -> new_lt6(xuu581, xuu591) 22.90/8.47 new_ltEs13(LT, EQ) -> True 22.90/8.47 new_ltEs21(xuu582, xuu592, ty_Int) -> new_ltEs14(xuu582, xuu592) 22.90/8.47 new_esEs16(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), daa, dab) -> new_asAs(new_esEs34(xuu500000, xuu40000, daa), new_esEs33(xuu500001, xuu40001, dab)) 22.90/8.47 new_ltEs22(xuu80, xuu81, ty_@0) -> new_ltEs5(xuu80, xuu81) 22.90/8.47 new_ltEs23(xuu87, xuu88, ty_Ordering) -> new_ltEs13(xuu87, xuu88) 22.90/8.47 new_esEs6(xuu50000, xuu4000, app(ty_Ratio, dca)) -> new_esEs22(xuu50000, xuu4000, dca) 22.90/8.47 new_compare25(xuu87, xuu88, False, dgf, dgg) -> new_compare112(xuu87, xuu88, new_ltEs23(xuu87, xuu88, dgg), dgf, dgg) 22.90/8.47 new_esEs32(xuu580, xuu590, app(ty_[], cdh)) -> new_esEs20(xuu580, xuu590, cdh) 22.90/8.47 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 22.90/8.47 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 22.90/8.47 new_lt23(xuu99, xuu101, ty_Double) -> new_lt6(xuu99, xuu101) 22.90/8.47 new_compare15(True, True) -> EQ 22.90/8.47 new_compare110(xuu135, xuu136, False, bd, be) -> GT 22.90/8.47 new_ltEs21(xuu582, xuu592, app(app(app(ty_@3, cga), cgb), cgc)) -> new_ltEs10(xuu582, xuu592, cga, cgb, cgc) 22.90/8.47 new_esEs33(xuu500001, xuu40001, app(ty_[], ddb)) -> new_esEs20(xuu500001, xuu40001, ddb) 22.90/8.47 new_primEqNat0(Zero, Zero) -> True 22.90/8.47 new_ltEs9(Just(xuu580), Nothing, fa) -> False 22.90/8.47 new_esEs7(xuu50002, xuu4002, ty_Ordering) -> new_esEs13(xuu50002, xuu4002) 22.90/8.47 new_esEs9(xuu50000, xuu4000, ty_Bool) -> new_esEs21(xuu50000, xuu4000) 22.90/8.47 new_ltEs9(Nothing, Nothing, fa) -> True 22.90/8.47 new_compare5(xuu5000, xuu400, app(ty_[], bde)) -> new_compare16(xuu5000, xuu400, bde) 22.90/8.47 new_esEs36(xuu500002, xuu40002, ty_Double) -> new_esEs15(xuu500002, xuu40002) 22.90/8.47 new_ltEs23(xuu87, xuu88, ty_@0) -> new_ltEs5(xuu87, xuu88) 22.90/8.47 new_esEs37(xuu500001, xuu40001, app(app(ty_@2, fcg), fch)) -> new_esEs16(xuu500001, xuu40001, fcg, fch) 22.90/8.47 new_ltEs22(xuu80, xuu81, ty_Char) -> new_ltEs12(xuu80, xuu81) 22.90/8.47 new_ltEs24(xuu100, xuu102, ty_Bool) -> new_ltEs15(xuu100, xuu102) 22.90/8.47 new_ltEs22(xuu80, xuu81, ty_Ordering) -> new_ltEs13(xuu80, xuu81) 22.90/8.47 new_compare18(Float(xuu50000, Pos(xuu500010)), Float(xuu4000, Neg(xuu40010))) -> new_compare14(new_sr(xuu50000, Pos(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) 22.90/8.47 new_compare18(Float(xuu50000, Neg(xuu500010)), Float(xuu4000, Pos(xuu40010))) -> new_compare14(new_sr(xuu50000, Neg(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) 22.90/8.47 new_esEs10(xuu50000, xuu4000, app(ty_[], ce)) -> new_esEs20(xuu50000, xuu4000, ce) 22.90/8.47 new_compare9(Nothing, Nothing, bda) -> EQ 22.90/8.47 new_asAs(False, xuu117) -> False 22.90/8.47 new_esEs13(LT, EQ) -> False 22.90/8.47 new_esEs13(EQ, LT) -> False 22.90/8.47 new_ltEs19(xuu71, xuu74, ty_Int) -> new_ltEs14(xuu71, xuu74) 22.90/8.47 new_ltEs24(xuu100, xuu102, app(ty_Maybe, ffh)) -> new_ltEs9(xuu100, xuu102, ffh) 22.90/8.47 new_esEs9(xuu50000, xuu4000, ty_Int) -> new_esEs25(xuu50000, xuu4000) 22.90/8.47 new_esEs9(xuu50000, xuu4000, app(app(ty_Either, ehh), faa)) -> new_esEs14(xuu50000, xuu4000, ehh, faa) 22.90/8.47 new_esEs5(xuu50000, xuu4000, app(ty_Ratio, bdh)) -> new_esEs22(xuu50000, xuu4000, bdh) 22.90/8.47 new_ltEs6(xuu58, xuu59, ty_Int) -> new_ltEs14(xuu58, xuu59) 22.90/8.47 new_esEs26(xuu500001, xuu40001, ty_Integer) -> new_esEs19(xuu500001, xuu40001) 22.90/8.47 new_esEs28(xuu70, xuu73, ty_Float) -> new_esEs17(xuu70, xuu73) 22.90/8.47 new_ltEs22(xuu80, xuu81, ty_Integer) -> new_ltEs11(xuu80, xuu81) 22.90/8.47 new_esEs7(xuu50002, xuu4002, ty_Char) -> new_esEs12(xuu50002, xuu4002) 22.90/8.47 new_esEs15(Double(xuu500000, xuu500001), Double(xuu40000, xuu40001)) -> new_esEs25(new_sr(xuu500000, xuu40001), new_sr(xuu500001, xuu40000)) 22.90/8.47 new_ltEs20(xuu581, xuu591, ty_Int) -> new_ltEs14(xuu581, xuu591) 22.90/8.47 22.90/8.47 The set Q consists of the following terms: 22.90/8.47 22.90/8.47 new_esEs39(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_esEs20([], :(x0, x1), x2) 22.90/8.47 new_esEs14(Left(x0), Right(x1), x2, x3) 22.90/8.47 new_esEs14(Right(x0), Left(x1), x2, x3) 22.90/8.47 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_ltEs22(x0, x1, ty_Integer) 22.90/8.47 new_lt20(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_esEs10(x0, x1, ty_Char) 22.90/8.47 new_primPlusNat1(Zero, Succ(x0)) 22.90/8.47 new_esEs35(x0, x1, ty_Char) 22.90/8.47 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_esEs6(x0, x1, ty_Char) 22.90/8.47 new_esEs9(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_compare24(x0, x1, True, x2, x3) 22.90/8.47 new_ltEs18(Right(x0), Right(x1), x2, ty_Integer) 22.90/8.47 new_lt12(x0, x1, ty_Float) 22.90/8.47 new_primPlusNat1(Zero, Zero) 22.90/8.47 new_compare114(x0, x1, x2, x3, True, x4, x5, x6) 22.90/8.47 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 22.90/8.47 new_esEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.90/8.47 new_ltEs18(Left(x0), Left(x1), ty_Double, x2) 22.90/8.47 new_ltEs24(x0, x1, ty_Integer) 22.90/8.47 new_esEs17(Float(x0, x1), Float(x2, x3)) 22.90/8.47 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_compare19(Right(x0), Left(x1), x2, x3) 22.90/8.47 new_compare19(Left(x0), Right(x1), x2, x3) 22.90/8.47 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_esEs35(x0, x1, ty_Ordering) 22.90/8.47 new_esEs8(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_primEqInt(Pos(Zero), Pos(Zero)) 22.90/8.47 new_primCompAux00(x0, x1, EQ, ty_Bool) 22.90/8.47 new_esEs38(x0, x1, ty_Float) 22.90/8.47 new_primEqNat0(Succ(x0), Succ(x1)) 22.90/8.47 new_lt21(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_esEs28(x0, x1, ty_Char) 22.90/8.47 new_ltEs13(EQ, EQ) 22.90/8.47 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs13(LT, LT) 22.90/8.47 new_esEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.90/8.47 new_esEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.90/8.47 new_ltEs18(Left(x0), Left(x1), ty_Ordering, x2) 22.90/8.47 new_primEqInt(Neg(Zero), Neg(Zero)) 22.90/8.47 new_esEs8(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_lt11(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 22.90/8.47 new_esEs10(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_esEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.90/8.47 new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) 22.90/8.47 new_ltEs22(x0, x1, app(ty_[], x2)) 22.90/8.47 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_ltEs18(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.90/8.47 new_compare19(Right(x0), Right(x1), x2, x3) 22.90/8.47 new_ltEs15(False, True) 22.90/8.47 new_ltEs15(True, False) 22.90/8.47 new_lt22(x0, x1, ty_Integer) 22.90/8.47 new_esEs14(Left(x0), Left(x1), ty_Bool, x2) 22.90/8.47 new_esEs28(x0, x1, ty_Ordering) 22.90/8.47 new_lt11(x0, x1, ty_Char) 22.90/8.47 new_ltEs24(x0, x1, ty_@0) 22.90/8.47 new_esEs6(x0, x1, ty_Double) 22.90/8.47 new_esEs10(x0, x1, ty_Ordering) 22.90/8.47 new_ltEs24(x0, x1, app(ty_[], x2)) 22.90/8.47 new_esEs10(x0, x1, ty_Double) 22.90/8.47 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 22.90/8.47 new_ltEs22(x0, x1, ty_@0) 22.90/8.47 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_ltEs18(Right(x0), Right(x1), x2, ty_Bool) 22.90/8.47 new_compare5(x0, x1, ty_Int) 22.90/8.47 new_lt12(x0, x1, ty_Integer) 22.90/8.47 new_esEs29(x0, x1, ty_Ordering) 22.90/8.47 new_primCompAux00(x0, x1, EQ, ty_Integer) 22.90/8.47 new_ltEs6(x0, x1, ty_Integer) 22.90/8.47 new_esEs32(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_esEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.90/8.47 new_compare15(False, True) 22.90/8.47 new_lt20(x0, x1, ty_Ordering) 22.90/8.47 new_compare15(True, False) 22.90/8.47 new_ltEs24(x0, x1, ty_Float) 22.90/8.47 new_compare5(x0, x1, ty_@0) 22.90/8.47 new_esEs38(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_esEs10(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_primEqInt(Pos(Zero), Neg(Zero)) 22.90/8.47 new_primEqInt(Neg(Zero), Pos(Zero)) 22.90/8.47 new_lt20(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_esEs9(x0, x1, ty_Float) 22.90/8.47 new_ltEs22(x0, x1, ty_Float) 22.90/8.47 new_esEs18(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.90/8.47 new_compare9(Nothing, Nothing, x0) 22.90/8.47 new_ltEs5(x0, x1) 22.90/8.47 new_esEs32(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 22.90/8.47 new_esEs18(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.90/8.47 new_ltEs9(Nothing, Just(x0), x1) 22.90/8.47 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 22.90/8.47 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 22.90/8.47 new_esEs14(Left(x0), Left(x1), ty_@0, x2) 22.90/8.47 new_esEs21(True, True) 22.90/8.47 new_ltEs23(x0, x1, ty_Double) 22.90/8.47 new_asAs(False, x0) 22.90/8.47 new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_ltEs23(x0, x1, ty_Char) 22.90/8.47 new_esEs14(Left(x0), Left(x1), ty_Int, x2) 22.90/8.47 new_esEs36(x0, x1, ty_Double) 22.90/8.47 new_lt19(x0, x1, x2, x3) 22.90/8.47 new_esEs30(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_esEs7(x0, x1, ty_Ordering) 22.90/8.47 new_esEs9(x0, x1, ty_Integer) 22.90/8.47 new_lt11(x0, x1, ty_Ordering) 22.90/8.47 new_lt23(x0, x1, ty_Double) 22.90/8.47 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_esEs7(x0, x1, ty_Float) 22.90/8.47 new_lt12(x0, x1, ty_Bool) 22.90/8.47 new_ltEs18(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.90/8.47 new_ltEs4(x0, x1) 22.90/8.47 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_esEs9(x0, x1, ty_Bool) 22.90/8.47 new_esEs38(x0, x1, ty_@0) 22.90/8.47 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs31(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_ltEs16(x0, x1, x2) 22.90/8.47 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_esEs28(x0, x1, ty_Double) 22.90/8.47 new_esEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.90/8.47 new_compare9(Nothing, Just(x0), x1) 22.90/8.47 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_ltEs18(Right(x0), Right(x1), x2, ty_Int) 22.90/8.47 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs18(Just(x0), Just(x1), ty_Int) 22.90/8.47 new_esEs36(x0, x1, ty_Ordering) 22.90/8.47 new_compare25(x0, x1, True, x2, x3) 22.90/8.47 new_lt11(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_lt18(x0, x1) 22.90/8.47 new_esEs38(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_ltEs24(x0, x1, ty_Int) 22.90/8.47 new_ltEs20(x0, x1, ty_Double) 22.90/8.47 new_ltEs9(Just(x0), Just(x1), ty_Char) 22.90/8.47 new_esEs5(x0, x1, ty_Double) 22.90/8.47 new_ltEs24(x0, x1, ty_Bool) 22.90/8.47 new_ltEs18(Right(x0), Right(x1), x2, ty_Float) 22.90/8.47 new_esEs37(x0, x1, ty_Bool) 22.90/8.47 new_esEs30(x0, x1, ty_Bool) 22.90/8.47 new_compare5(x0, x1, ty_Bool) 22.90/8.47 new_esEs33(x0, x1, ty_Integer) 22.90/8.47 new_esEs8(x0, x1, app(ty_[], x2)) 22.90/8.47 new_esEs5(x0, x1, ty_@0) 22.90/8.47 new_esEs37(x0, x1, ty_Float) 22.90/8.47 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_lt17(x0, x1) 22.90/8.47 new_esEs34(x0, x1, ty_Float) 22.90/8.47 new_esEs7(x0, x1, ty_Char) 22.90/8.47 new_ltEs12(x0, x1) 22.90/8.47 new_esEs30(x0, x1, ty_Float) 22.90/8.47 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_ltEs17(x0, x1) 22.90/8.47 new_esEs24(@0, @0) 22.90/8.47 new_esEs33(x0, x1, ty_Ordering) 22.90/8.47 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_ltEs9(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_ltEs18(Left(x0), Left(x1), ty_Char, x2) 22.90/8.47 new_esEs8(x0, x1, ty_Double) 22.90/8.47 new_esEs14(Left(x0), Left(x1), ty_Integer, x2) 22.90/8.47 new_compare5(x0, x1, ty_Integer) 22.90/8.47 new_primCompAux00(x0, x1, EQ, ty_Float) 22.90/8.47 new_ltEs6(x0, x1, ty_@0) 22.90/8.47 new_esEs39(x0, x1, ty_Ordering) 22.90/8.47 new_esEs7(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_esEs38(x0, x1, ty_Double) 22.90/8.47 new_ltEs19(x0, x1, ty_Int) 22.90/8.47 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs9(x0, x1, ty_Ordering) 22.90/8.47 new_compare12(Char(x0), Char(x1)) 22.90/8.47 new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 22.90/8.47 new_esEs4(x0, x1, ty_Float) 22.90/8.47 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_lt22(x0, x1, ty_@0) 22.90/8.47 new_esEs14(Right(x0), Right(x1), x2, ty_Int) 22.90/8.47 new_ltEs9(Just(x0), Just(x1), app(ty_[], x2)) 22.90/8.47 new_esEs37(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_compare27(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 22.90/8.47 new_esEs13(LT, EQ) 22.90/8.47 new_esEs13(EQ, LT) 22.90/8.47 new_lt23(x0, x1, app(ty_[], x2)) 22.90/8.47 new_ltEs20(x0, x1, ty_@0) 22.90/8.47 new_primCmpNat0(Succ(x0), Zero) 22.90/8.47 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_primCompAux00(x0, x1, EQ, ty_Int) 22.90/8.47 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_lt20(x0, x1, ty_Double) 22.90/8.47 new_esEs29(x0, x1, ty_Char) 22.90/8.47 new_esEs11(x0, x1, ty_Char) 22.90/8.47 new_ltEs18(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.90/8.47 new_ltEs20(x0, x1, ty_Char) 22.90/8.47 new_esEs13(EQ, EQ) 22.90/8.47 new_esEs5(x0, x1, ty_Char) 22.90/8.47 new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 22.90/8.47 new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 22.90/8.47 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 22.90/8.47 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs36(x0, x1, ty_@0) 22.90/8.47 new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 22.90/8.47 new_esEs38(x0, x1, ty_Int) 22.90/8.47 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 22.90/8.47 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs11(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_esEs21(False, True) 22.90/8.47 new_esEs21(True, False) 22.90/8.47 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 22.90/8.47 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_esEs33(x0, x1, ty_@0) 22.90/8.47 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_esEs5(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_esEs32(x0, x1, ty_Char) 22.90/8.47 new_esEs29(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_esEs11(x0, x1, ty_Int) 22.90/8.47 new_esEs8(x0, x1, ty_Char) 22.90/8.47 new_esEs31(x0, x1, app(ty_[], x2)) 22.90/8.47 new_esEs8(x0, x1, ty_@0) 22.90/8.47 new_esEs32(x0, x1, ty_Int) 22.90/8.47 new_ltEs21(x0, x1, ty_Bool) 22.90/8.47 new_esEs34(x0, x1, ty_Ordering) 22.90/8.47 new_esEs9(x0, x1, app(ty_[], x2)) 22.90/8.47 new_compare13(GT, GT) 22.90/8.47 new_compare13(EQ, LT) 22.90/8.47 new_compare13(LT, EQ) 22.90/8.47 new_esEs7(x0, x1, app(ty_[], x2)) 22.90/8.47 new_esEs29(x0, x1, ty_Float) 22.90/8.47 new_lt20(x0, x1, ty_Integer) 22.90/8.47 new_ltEs23(x0, x1, ty_Float) 22.90/8.47 new_ltEs23(x0, x1, ty_Integer) 22.90/8.47 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs39(x0, x1, ty_Double) 22.90/8.47 new_esEs8(x0, x1, ty_Int) 22.90/8.47 new_lt12(x0, x1, ty_Int) 22.90/8.47 new_esEs6(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.90/8.47 new_esEs18(Just(x0), Just(x1), app(ty_[], x2)) 22.90/8.47 new_esEs18(Nothing, Nothing, x0) 22.90/8.47 new_lt12(x0, x1, app(ty_[], x2)) 22.90/8.47 new_ltEs21(x0, x1, ty_Int) 22.90/8.47 new_esEs30(x0, x1, ty_Ordering) 22.90/8.47 new_not(True) 22.90/8.47 new_lt21(x0, x1, app(ty_[], x2)) 22.90/8.47 new_esEs32(x0, x1, ty_Double) 22.90/8.47 new_lt21(x0, x1, ty_Double) 22.90/8.47 new_lt12(x0, x1, ty_Char) 22.90/8.47 new_primPlusNat1(Succ(x0), Succ(x1)) 22.90/8.47 new_esEs34(x0, x1, ty_Double) 22.90/8.47 new_ltEs13(EQ, GT) 22.90/8.47 new_ltEs13(GT, EQ) 22.90/8.47 new_ltEs18(Left(x0), Right(x1), x2, x3) 22.90/8.47 new_ltEs18(Right(x0), Left(x1), x2, x3) 22.90/8.47 new_esEs39(x0, x1, ty_Char) 22.90/8.47 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs27(x0, x1, ty_Integer) 22.90/8.47 new_ltEs23(x0, x1, ty_Bool) 22.90/8.47 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_ltEs9(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.90/8.47 new_esEs14(Left(x0), Left(x1), ty_Float, x2) 22.90/8.47 new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_ltEs21(x0, x1, ty_Char) 22.90/8.47 new_esEs18(Just(x0), Nothing, x1) 22.90/8.47 new_esEs39(x0, x1, ty_Int) 22.90/8.47 new_ltEs6(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_esEs14(Left(x0), Left(x1), app(ty_[], x2), x3) 22.90/8.47 new_esEs26(x0, x1, ty_Integer) 22.90/8.47 new_ltEs23(x0, x1, ty_@0) 22.90/8.47 new_esEs19(Integer(x0), Integer(x1)) 22.90/8.47 new_ltEs13(LT, LT) 22.90/8.47 new_lt4(x0, x1) 22.90/8.47 new_esEs30(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_lt22(x0, x1, ty_Ordering) 22.90/8.47 new_esEs36(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_pePe(True, x0) 22.90/8.47 new_esEs9(x0, x1, ty_@0) 22.90/8.47 new_esEs14(Right(x0), Right(x1), x2, ty_Ordering) 22.90/8.47 new_esEs32(x0, x1, ty_Bool) 22.90/8.47 new_esEs37(x0, x1, ty_Ordering) 22.90/8.47 new_compare5(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_compare19(Left(x0), Left(x1), x2, x3) 22.90/8.47 new_esEs5(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_lt12(x0, x1, ty_@0) 22.90/8.47 new_lt23(x0, x1, ty_Ordering) 22.90/8.47 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs21(False, False) 22.90/8.47 new_esEs5(x0, x1, ty_Integer) 22.90/8.47 new_ltEs20(x0, x1, ty_Integer) 22.90/8.47 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 22.90/8.47 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 22.90/8.47 new_esEs36(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_esEs18(Just(x0), Just(x1), ty_Double) 22.90/8.47 new_esEs7(x0, x1, ty_Double) 22.90/8.47 new_fsEs(x0) 22.90/8.47 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_ltEs21(x0, x1, ty_Double) 22.90/8.47 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_esEs14(Right(x0), Right(x1), x2, ty_Double) 22.90/8.47 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_ltEs22(x0, x1, ty_Ordering) 22.90/8.47 new_esEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.90/8.47 new_ltEs18(Left(x0), Left(x1), ty_@0, x2) 22.90/8.47 new_esEs4(x0, x1, ty_Ordering) 22.90/8.47 new_compare111(x0, x1, False, x2) 22.90/8.47 new_compare16(:(x0, x1), [], x2) 22.90/8.47 new_esEs11(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_sr0(Integer(x0), Integer(x1)) 22.90/8.47 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs8(x0, x1, ty_Float) 22.90/8.47 new_lt22(x0, x1, app(ty_[], x2)) 22.90/8.47 new_esEs8(x0, x1, ty_Integer) 22.90/8.47 new_esEs38(x0, x1, ty_Integer) 22.90/8.47 new_esEs31(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_esEs4(x0, x1, ty_Double) 22.90/8.47 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs11(x0, x1, ty_Integer) 22.90/8.47 new_esEs33(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_primMulInt(Neg(x0), Neg(x1)) 22.90/8.47 new_ltEs24(x0, x1, ty_Double) 22.90/8.47 new_lt14(x0, x1) 22.90/8.47 new_primEqNat0(Zero, Zero) 22.90/8.47 new_lt20(x0, x1, ty_Bool) 22.90/8.47 new_lt9(x0, x1, x2) 22.90/8.47 new_ltEs18(Right(x0), Right(x1), x2, ty_@0) 22.90/8.47 new_lt11(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs32(x0, x1, ty_Float) 22.90/8.47 new_primEqNat0(Succ(x0), Zero) 22.90/8.47 new_not(False) 22.90/8.47 new_ltEs20(x0, x1, ty_Bool) 22.90/8.47 new_esEs13(EQ, GT) 22.90/8.47 new_esEs13(GT, EQ) 22.90/8.47 new_esEs35(x0, x1, ty_@0) 22.90/8.47 new_ltEs20(x0, x1, ty_Float) 22.90/8.47 new_esEs11(x0, x1, ty_Bool) 22.90/8.47 new_lt20(x0, x1, ty_Float) 22.90/8.47 new_compare25(x0, x1, False, x2, x3) 22.90/8.47 new_esEs37(x0, x1, ty_Double) 22.90/8.47 new_ltEs6(x0, x1, ty_Float) 22.90/8.47 new_ltEs6(x0, x1, ty_Bool) 22.90/8.47 new_lt5(x0, x1, x2, x3, x4) 22.90/8.47 new_esEs30(x0, x1, ty_Double) 22.90/8.47 new_esEs6(x0, x1, ty_Ordering) 22.90/8.47 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 22.90/8.47 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 22.90/8.47 new_esEs5(x0, x1, ty_Bool) 22.90/8.47 new_ltEs19(x0, x1, ty_@0) 22.90/8.47 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs5(x0, x1, ty_Float) 22.90/8.47 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs22(:%(x0, x1), :%(x2, x3), x4) 22.90/8.47 new_ltEs21(x0, x1, app(ty_[], x2)) 22.90/8.47 new_esEs38(x0, x1, ty_Char) 22.90/8.47 new_esEs6(x0, x1, app(ty_[], x2)) 22.90/8.47 new_lt20(x0, x1, ty_Int) 22.90/8.47 new_ltEs20(x0, x1, ty_Int) 22.90/8.47 new_compare11(Integer(x0), Integer(x1)) 22.90/8.47 new_ltEs6(x0, x1, ty_Char) 22.90/8.47 new_compare114(x0, x1, x2, x3, False, x4, x5, x6) 22.90/8.47 new_esEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.90/8.47 new_ltEs6(x0, x1, ty_Int) 22.90/8.47 new_esEs8(x0, x1, ty_Bool) 22.90/8.47 new_lt20(x0, x1, ty_Char) 22.90/8.47 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_primCompAux00(x0, x1, EQ, ty_@0) 22.90/8.47 new_compare113(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 22.90/8.47 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_lt21(x0, x1, ty_Ordering) 22.90/8.47 new_esEs5(x0, x1, ty_Int) 22.90/8.47 new_esEs9(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_esEs29(x0, x1, ty_Double) 22.90/8.47 new_esEs31(x0, x1, ty_Ordering) 22.90/8.47 new_esEs38(x0, x1, ty_Bool) 22.90/8.47 new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.90/8.47 new_ltEs20(x0, x1, app(ty_[], x2)) 22.90/8.47 new_compare14(x0, x1) 22.90/8.47 new_esEs7(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_ltEs9(Just(x0), Just(x1), ty_@0) 22.90/8.47 new_lt12(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_lt11(x0, x1, ty_@0) 22.90/8.47 new_ltEs9(Just(x0), Just(x1), ty_Bool) 22.90/8.47 new_primCmpNat0(Zero, Succ(x0)) 22.90/8.47 new_esEs23(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.90/8.47 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs4(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_compare115(x0, x1, x2, x3, False, x4, x5) 22.90/8.47 new_esEs35(x0, x1, ty_Int) 22.90/8.47 new_esEs6(x0, x1, ty_Int) 22.90/8.47 new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 22.90/8.47 new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 22.90/8.47 new_esEs28(x0, x1, ty_@0) 22.90/8.47 new_esEs28(x0, x1, app(ty_[], x2)) 22.90/8.47 new_esEs26(x0, x1, ty_Int) 22.90/8.47 new_esEs29(x0, x1, app(ty_[], x2)) 22.90/8.47 new_lt22(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_compare13(GT, LT) 22.90/8.47 new_compare13(LT, GT) 22.90/8.47 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs25(x0, x1) 22.90/8.47 new_ltEs18(Left(x0), Left(x1), ty_Int, x2) 22.90/8.47 new_esEs28(x0, x1, ty_Int) 22.90/8.47 new_esEs18(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_compare17(@0, @0) 22.90/8.47 new_compare5(x0, x1, ty_Char) 22.90/8.47 new_esEs11(x0, x1, ty_Float) 22.90/8.47 new_ltEs18(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.90/8.47 new_compare113(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 22.90/8.47 new_compare116(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 22.90/8.47 new_lt11(x0, x1, ty_Bool) 22.90/8.47 new_lt22(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_esEs10(x0, x1, ty_Int) 22.90/8.47 new_esEs34(x0, x1, app(ty_[], x2)) 22.90/8.47 new_pePe(False, x0) 22.90/8.47 new_lt21(x0, x1, ty_Float) 22.90/8.47 new_esEs6(x0, x1, ty_@0) 22.90/8.47 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_lt21(x0, x1, ty_Bool) 22.90/8.47 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 22.90/8.47 new_esEs15(Double(x0, x1), Double(x2, x3)) 22.90/8.47 new_ltEs15(True, True) 22.90/8.47 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs12(Char(x0), Char(x1)) 22.90/8.47 new_ltEs23(x0, x1, ty_Int) 22.90/8.47 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 22.90/8.47 new_ltEs18(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.90/8.47 new_esEs14(Left(x0), Left(x1), ty_Double, x2) 22.90/8.47 new_esEs33(x0, x1, app(ty_[], x2)) 22.90/8.47 new_ltEs6(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_esEs28(x0, x1, ty_Bool) 22.90/8.47 new_esEs35(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs28(x0, x1, ty_Integer) 22.90/8.47 new_esEs10(x0, x1, ty_Bool) 22.90/8.47 new_esEs36(x0, x1, app(ty_[], x2)) 22.90/8.47 new_primMulInt(Pos(x0), Pos(x1)) 22.90/8.47 new_primMulNat0(Succ(x0), Succ(x1)) 22.90/8.47 new_primCompAux00(x0, x1, LT, x2) 22.90/8.47 new_lt11(x0, x1, ty_Int) 22.90/8.47 new_primCompAux00(x0, x1, EQ, ty_Ordering) 22.90/8.47 new_esEs14(Left(x0), Left(x1), ty_Char, x2) 22.90/8.47 new_ltEs21(x0, x1, ty_Float) 22.90/8.47 new_ltEs9(Just(x0), Just(x1), ty_Integer) 22.90/8.47 new_esEs39(x0, x1, ty_Float) 22.90/8.47 new_compare112(x0, x1, True, x2, x3) 22.90/8.47 new_lt21(x0, x1, ty_@0) 22.90/8.47 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_ltEs13(GT, LT) 22.90/8.47 new_ltEs13(LT, GT) 22.90/8.47 new_compare5(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_sr(x0, x1) 22.90/8.47 new_ltEs18(Right(x0), Right(x1), x2, ty_Char) 22.90/8.47 new_ltEs10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.90/8.47 new_esEs35(x0, x1, ty_Integer) 22.90/8.47 new_compare9(Just(x0), Just(x1), x2) 22.90/8.47 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_lt11(x0, x1, app(ty_[], x2)) 22.90/8.47 new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) 22.90/8.47 new_lt11(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs14(Right(x0), Right(x1), x2, ty_Float) 22.90/8.47 new_primCmpNat0(Succ(x0), Succ(x1)) 22.90/8.47 new_ltEs24(x0, x1, ty_Char) 22.90/8.47 new_esEs31(x0, x1, ty_Float) 22.90/8.47 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs18(Just(x0), Just(x1), ty_Float) 22.90/8.47 new_compare16(:(x0, x1), :(x2, x3), x4) 22.90/8.47 new_esEs10(x0, x1, ty_Integer) 22.90/8.47 new_compare24(x0, x1, False, x2, x3) 22.90/8.47 new_esEs16(@2(x0, x1), @2(x2, x3), x4, x5) 22.90/8.47 new_esEs31(x0, x1, ty_Double) 22.90/8.47 new_esEs4(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_lt23(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_asAs(True, x0) 22.90/8.47 new_esEs5(x0, x1, app(ty_[], x2)) 22.90/8.47 new_ltEs18(Left(x0), Left(x1), ty_Integer, x2) 22.90/8.47 new_primCompAux00(x0, x1, GT, x2) 22.90/8.47 new_compare15(False, False) 22.90/8.47 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs28(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_ltEs19(x0, x1, ty_Integer) 22.90/8.47 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 22.90/8.47 new_ltEs22(x0, x1, ty_Double) 22.90/8.47 new_ltEs24(x0, x1, ty_Ordering) 22.90/8.47 new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.90/8.47 new_ltEs9(Just(x0), Nothing, x1) 22.90/8.47 new_esEs39(x0, x1, ty_Bool) 22.90/8.47 new_esEs32(x0, x1, ty_Integer) 22.90/8.47 new_esEs18(Just(x0), Just(x1), ty_Ordering) 22.90/8.47 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs20(:(x0, x1), :(x2, x3), x4) 22.90/8.47 new_ltEs11(x0, x1) 22.90/8.47 new_primMulNat0(Zero, Succ(x0)) 22.90/8.47 new_primCmpInt(Neg(Zero), Neg(Zero)) 22.90/8.47 new_ltEs8(@2(x0, x1), @2(x2, x3), x4, x5) 22.90/8.47 new_esEs14(Left(x0), Left(x1), ty_Ordering, x2) 22.90/8.47 new_ltEs19(x0, x1, ty_Float) 22.90/8.47 new_esEs11(x0, x1, ty_Double) 22.90/8.47 new_esEs11(x0, x1, ty_@0) 22.90/8.47 new_esEs18(Just(x0), Just(x1), ty_Char) 22.90/8.47 new_esEs18(Just(x0), Just(x1), ty_Integer) 22.90/8.47 new_esEs10(x0, x1, ty_@0) 22.90/8.47 new_ltEs21(x0, x1, ty_Integer) 22.90/8.47 new_ltEs19(x0, x1, ty_Bool) 22.90/8.47 new_esEs32(x0, x1, ty_Ordering) 22.90/8.47 new_esEs27(x0, x1, ty_Int) 22.90/8.47 new_primCmpInt(Pos(Zero), Neg(Zero)) 22.90/8.47 new_primCmpInt(Neg(Zero), Pos(Zero)) 22.90/8.47 new_ltEs9(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.90/8.47 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs4(x0, x1, ty_Int) 22.90/8.47 new_lt20(x0, x1, ty_@0) 22.90/8.47 new_primPlusNat0(Succ(x0), x1) 22.90/8.47 new_esEs29(x0, x1, ty_Int) 22.90/8.47 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_compare13(GT, EQ) 22.90/8.47 new_compare13(EQ, GT) 22.90/8.47 new_esEs11(x0, x1, app(ty_[], x2)) 22.90/8.47 new_esEs29(x0, x1, ty_Bool) 22.90/8.47 new_ltEs19(x0, x1, app(ty_[], x2)) 22.90/8.47 new_ltEs9(Just(x0), Just(x1), ty_Int) 22.90/8.47 new_esEs14(Right(x0), Right(x1), x2, ty_Char) 22.90/8.47 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs30(x0, x1, app(ty_[], x2)) 22.90/8.47 new_compare5(x0, x1, ty_Ordering) 22.90/8.47 new_ltEs15(False, False) 22.90/8.47 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_primEqNat0(Zero, Succ(x0)) 22.90/8.47 new_compare26(x0, x1, False, x2) 22.90/8.47 new_esEs35(x0, x1, ty_Bool) 22.90/8.47 new_primCompAux00(x0, x1, EQ, ty_Char) 22.90/8.47 new_compare111(x0, x1, True, x2) 22.90/8.47 new_ltEs6(x0, x1, ty_Double) 22.90/8.47 new_esEs37(x0, x1, ty_Int) 22.90/8.47 new_esEs34(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_esEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.90/8.47 new_esEs18(Just(x0), Just(x1), ty_Bool) 22.90/8.47 new_lt11(x0, x1, ty_Integer) 22.90/8.47 new_ltEs18(Left(x0), Left(x1), ty_Bool, x2) 22.90/8.47 new_esEs13(GT, GT) 22.90/8.47 new_esEs30(x0, x1, ty_Int) 22.90/8.47 new_ltEs21(x0, x1, ty_Ordering) 22.90/8.47 new_compare16([], :(x0, x1), x2) 22.90/8.47 new_ltEs9(Just(x0), Just(x1), ty_Float) 22.90/8.47 new_esEs39(x0, x1, ty_Integer) 22.90/8.47 new_esEs7(x0, x1, ty_Int) 22.90/8.47 new_primPlusNat1(Succ(x0), Zero) 22.90/8.47 new_esEs9(x0, x1, ty_Int) 22.90/8.47 new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 22.90/8.47 new_ltEs18(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.90/8.47 new_esEs4(x0, x1, app(ty_[], x2)) 22.90/8.47 new_esEs7(x0, x1, ty_Bool) 22.90/8.47 new_esEs18(Just(x0), Just(x1), ty_@0) 22.90/8.47 new_ltEs19(x0, x1, ty_Char) 22.90/8.47 new_ltEs9(Nothing, Nothing, x0) 22.90/8.47 new_esEs34(x0, x1, ty_Char) 22.90/8.47 new_esEs36(x0, x1, ty_Bool) 22.90/8.47 new_lt12(x0, x1, ty_Double) 22.90/8.47 new_compare10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.90/8.47 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_esEs18(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.90/8.47 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 22.90/8.47 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_compare5(x0, x1, app(ty_[], x2)) 22.90/8.47 new_esEs35(x0, x1, app(ty_[], x2)) 22.90/8.47 new_compare28(x0, x1, x2, x3, True, x4, x5) 22.90/8.47 new_primMulNat0(Zero, Zero) 22.90/8.47 new_esEs30(x0, x1, ty_Char) 22.90/8.47 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs9(x0, x1, ty_Char) 22.90/8.47 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_esEs4(x0, x1, ty_Bool) 22.90/8.47 new_esEs4(x0, x1, ty_@0) 22.90/8.47 new_esEs37(x0, x1, ty_Char) 22.90/8.47 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 22.90/8.47 new_lt23(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_esEs9(x0, x1, ty_Double) 22.90/8.47 new_esEs29(x0, x1, ty_Integer) 22.90/8.47 new_lt12(x0, x1, ty_Ordering) 22.90/8.47 new_compare112(x0, x1, False, x2, x3) 22.90/8.47 new_lt22(x0, x1, ty_Double) 22.90/8.47 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs37(x0, x1, app(ty_[], x2)) 22.90/8.47 new_esEs38(x0, x1, ty_Ordering) 22.90/8.47 new_esEs14(Right(x0), Right(x1), x2, ty_Bool) 22.90/8.47 new_ltEs18(Left(x0), Left(x1), ty_Float, x2) 22.90/8.47 new_compare27(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 22.90/8.47 new_esEs31(x0, x1, ty_Bool) 22.90/8.47 new_esEs34(x0, x1, ty_Int) 22.90/8.47 new_lt23(x0, x1, ty_Bool) 22.90/8.47 new_lt6(x0, x1) 22.90/8.47 new_esEs4(x0, x1, ty_Char) 22.90/8.47 new_esEs35(x0, x1, ty_Float) 22.90/8.47 new_lt16(x0, x1, x2) 22.90/8.47 new_esEs4(x0, x1, ty_Integer) 22.90/8.47 new_ltEs9(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.90/8.47 new_ltEs6(x0, x1, ty_Ordering) 22.90/8.47 new_esEs14(Right(x0), Right(x1), x2, ty_Integer) 22.90/8.47 new_esEs32(x0, x1, ty_@0) 22.90/8.47 new_esEs36(x0, x1, ty_Char) 22.90/8.47 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_compare5(x0, x1, ty_Float) 22.90/8.47 new_ltEs23(x0, x1, app(ty_[], x2)) 22.90/8.47 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs33(x0, x1, ty_Int) 22.90/8.47 new_esEs5(x0, x1, ty_Ordering) 22.90/8.47 new_esEs10(x0, x1, app(ty_[], x2)) 22.90/8.47 new_ltEs18(Right(x0), Right(x1), x2, ty_Ordering) 22.90/8.47 new_primMulNat0(Succ(x0), Zero) 22.90/8.47 new_esEs20(:(x0, x1), [], x2) 22.90/8.47 new_lt23(x0, x1, ty_Char) 22.90/8.47 new_esEs36(x0, x1, ty_Integer) 22.90/8.47 new_esEs33(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_esEs11(x0, x1, ty_Ordering) 22.90/8.47 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_esEs31(x0, x1, ty_Char) 22.90/8.47 new_compare16([], [], x0) 22.90/8.47 new_ltEs19(x0, x1, ty_Ordering) 22.90/8.47 new_esEs34(x0, x1, ty_Bool) 22.90/8.47 new_compare13(LT, LT) 22.90/8.47 new_esEs33(x0, x1, ty_Bool) 22.90/8.47 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs30(x0, x1, ty_Integer) 22.90/8.47 new_esEs37(x0, x1, ty_Integer) 22.90/8.47 new_primCompAux1(x0, x1, x2, x3, x4) 22.90/8.47 new_esEs7(x0, x1, ty_Integer) 22.90/8.47 new_compare110(x0, x1, False, x2, x3) 22.90/8.47 new_lt21(x0, x1, ty_Int) 22.90/8.47 new_esEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.90/8.47 new_lt23(x0, x1, ty_@0) 22.90/8.47 new_esEs29(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_primPlusNat0(Zero, x0) 22.90/8.47 new_lt7(x0, x1, x2) 22.90/8.47 new_esEs31(x0, x1, ty_Int) 22.90/8.47 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_lt10(x0, x1) 22.90/8.47 new_esEs33(x0, x1, ty_Double) 22.90/8.47 new_ltEs7(x0, x1, x2) 22.90/8.47 new_esEs33(x0, x1, ty_Char) 22.90/8.47 new_lt23(x0, x1, ty_Float) 22.90/8.47 new_ltEs21(x0, x1, ty_@0) 22.90/8.47 new_esEs6(x0, x1, ty_Float) 22.90/8.47 new_esEs31(x0, x1, ty_@0) 22.90/8.47 new_primCmpInt(Pos(Zero), Pos(Zero)) 22.90/8.47 new_ltEs20(x0, x1, ty_Ordering) 22.90/8.47 new_compare13(EQ, EQ) 22.90/8.47 new_lt11(x0, x1, ty_Double) 22.90/8.47 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 22.90/8.47 new_esEs36(x0, x1, ty_Float) 22.90/8.47 new_lt11(x0, x1, ty_Float) 22.90/8.47 new_ltEs18(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.90/8.47 new_ltEs9(Just(x0), Just(x1), ty_Double) 22.90/8.47 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 22.90/8.47 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_esEs39(x0, x1, ty_@0) 22.90/8.47 new_compare116(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 22.90/8.47 new_ltEs22(x0, x1, ty_Int) 22.90/8.47 new_ltEs9(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.90/8.47 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_compare115(x0, x1, x2, x3, True, x4, x5) 22.90/8.47 new_ltEs18(Left(x0), Left(x1), app(ty_[], x2), x3) 22.90/8.47 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_lt23(x0, x1, ty_Int) 22.90/8.47 new_ltEs9(Just(x0), Just(x1), ty_Ordering) 22.90/8.47 new_lt21(x0, x1, ty_Char) 22.90/8.47 new_esEs34(x0, x1, ty_Integer) 22.90/8.47 new_esEs6(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_ltEs13(GT, GT) 22.90/8.47 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_ltEs13(EQ, LT) 22.90/8.47 new_esEs13(LT, GT) 22.90/8.47 new_esEs13(GT, LT) 22.90/8.47 new_ltEs13(LT, EQ) 22.90/8.47 new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) 22.90/8.47 new_esEs33(x0, x1, ty_Float) 22.90/8.47 new_esEs18(Nothing, Just(x0), x1) 22.90/8.47 new_lt12(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_ltEs22(x0, x1, ty_Char) 22.90/8.47 new_compare28(x0, x1, x2, x3, False, x4, x5) 22.90/8.47 new_esEs35(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_esEs6(x0, x1, ty_Bool) 22.90/8.47 new_compare5(x0, x1, ty_Double) 22.90/8.47 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_lt13(x0, x1, x2, x3) 22.90/8.47 new_compare26(x0, x1, True, x2) 22.90/8.47 new_ltEs18(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.90/8.47 new_ltEs18(Right(x0), Right(x1), x2, ty_Double) 22.90/8.47 new_esEs36(x0, x1, ty_Int) 22.90/8.47 new_esEs28(x0, x1, app(ty_Ratio, x2)) 22.90/8.47 new_esEs8(x0, x1, ty_Ordering) 22.90/8.47 new_lt22(x0, x1, ty_Bool) 22.90/8.47 new_ltEs14(x0, x1) 22.90/8.47 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 22.90/8.47 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_ltEs19(x0, x1, ty_Double) 22.90/8.47 new_lt22(x0, x1, ty_Int) 22.90/8.47 new_esEs32(x0, x1, app(ty_[], x2)) 22.90/8.47 new_lt15(x0, x1) 22.90/8.47 new_compare9(Just(x0), Nothing, x1) 22.90/8.47 new_esEs34(x0, x1, ty_@0) 22.90/8.47 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs39(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_ltEs18(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.90/8.47 new_esEs31(x0, x1, ty_Integer) 22.90/8.47 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 22.90/8.47 new_esEs28(x0, x1, ty_Float) 22.90/8.47 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_lt22(x0, x1, ty_Char) 22.90/8.47 new_compare15(True, True) 22.90/8.47 new_lt21(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_ltEs22(x0, x1, ty_Bool) 22.90/8.47 new_ltEs23(x0, x1, ty_Ordering) 22.90/8.47 new_compare110(x0, x1, True, x2, x3) 22.90/8.47 new_esEs10(x0, x1, ty_Float) 22.90/8.47 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs29(x0, x1, ty_@0) 22.90/8.47 new_lt23(x0, x1, ty_Integer) 22.90/8.47 new_primCompAux00(x0, x1, EQ, ty_Double) 22.90/8.47 new_esEs37(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_esEs20([], [], x0) 22.90/8.47 new_esEs18(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs38(x0, x1, app(ty_[], x2)) 22.90/8.47 new_primMulInt(Pos(x0), Neg(x1)) 22.90/8.47 new_primMulInt(Neg(x0), Pos(x1)) 22.90/8.47 new_lt21(x0, x1, ty_Integer) 22.90/8.47 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.90/8.47 new_esEs34(x0, x1, app(ty_Maybe, x2)) 22.90/8.47 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_esEs35(x0, x1, ty_Double) 22.90/8.47 new_lt8(x0, x1) 22.90/8.47 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 22.90/8.47 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 22.90/8.47 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 22.90/8.47 new_esEs7(x0, x1, ty_@0) 22.90/8.47 new_lt20(x0, x1, app(ty_[], x2)) 22.90/8.47 new_esEs39(x0, x1, app(ty_[], x2)) 22.90/8.47 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 22.90/8.47 new_lt22(x0, x1, ty_Float) 22.90/8.47 new_esEs6(x0, x1, ty_Integer) 22.90/8.47 new_ltEs6(x0, x1, app(ty_[], x2)) 22.90/8.47 new_esEs30(x0, x1, ty_@0) 22.90/8.47 new_primCmpNat0(Zero, Zero) 22.90/8.47 new_esEs14(Right(x0), Right(x1), x2, ty_@0) 22.90/8.47 new_esEs37(x0, x1, ty_@0) 22.90/8.47 22.90/8.47 We have to consider all minimal (P,Q,R)-chains. 22.90/8.47 ---------------------------------------- 22.90/8.47 22.90/8.47 (38) QDPSizeChangeProof (EQUIVALENT) 22.90/8.47 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. 22.90/8.47 22.90/8.47 From the DPs we obtained the following set of size-change graphs: 22.90/8.47 *new_addToFM_C1(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, h, ba) -> new_addToFM_C(xuu18, xuu24, :(xuu25, xuu26), xuu27, h, ba) 22.90/8.47 The graph contains the following edges 1 >= 1, 7 >= 2, 10 >= 4, 12 >= 5, 13 >= 6 22.90/8.47 22.90/8.47 22.90/8.47 *new_addToFM_C2(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, h, ba) -> new_addToFM_C20(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, h, ba) 22.90/8.47 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 10, 12 >= 11, 13 >= 12 22.90/8.47 22.90/8.47 22.90/8.47 *new_addToFM_C2(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, EQ, h, ba) -> new_addToFM_C1(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare16(:(xuu25, xuu26), :(xuu19, xuu20), h), h, ba) 22.90/8.47 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 10, 12 >= 12, 13 >= 13 22.90/8.47 22.90/8.47 22.90/8.47 *new_addToFM_C20(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, h, ba) -> new_addToFM_C1(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare16(:(xuu25, xuu26), :(xuu19, xuu20), h), h, ba) 22.90/8.47 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 10, 11 >= 12, 12 >= 13 22.90/8.47 22.90/8.47 22.90/8.47 *new_addToFM_C2(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, LT, h, ba) -> new_addToFM_C(xuu18, xuu23, :(xuu25, xuu26), xuu27, h, ba) 22.90/8.47 The graph contains the following edges 1 >= 1, 6 >= 2, 10 >= 4, 12 >= 5, 13 >= 6 22.90/8.47 22.90/8.47 22.90/8.47 *new_addToFM_C10(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu5001, xuu501, GT, bb, bc) -> new_addToFM_C(xuu3, xuu44, :(xuu5000, xuu5001), xuu501, bb, bc) 22.90/8.47 The graph contains the following edges 1 >= 1, 5 >= 2, 8 >= 4, 10 >= 5, 11 >= 6 22.90/8.47 22.90/8.47 22.90/8.47 *new_addToFM_C(xuu3, Branch(:(xuu400, xuu401), xuu41, xuu42, xuu43, xuu44), :(xuu5000, xuu5001), xuu501, bb, bc) -> new_addToFM_C2(xuu3, xuu400, xuu401, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu5001, xuu501, new_primCompAux1(xuu5000, xuu400, xuu5001, xuu401, bb), bb, bc) 22.90/8.47 The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3, 2 > 4, 2 > 5, 2 > 6, 2 > 7, 3 > 8, 3 > 9, 4 >= 10, 5 >= 12, 6 >= 13 22.90/8.47 22.90/8.47 22.90/8.47 *new_addToFM_C(xuu3, Branch([], xuu41, xuu42, xuu43, xuu44), :(xuu5000, xuu5001), xuu501, bb, bc) -> new_addToFM_C10(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu5001, xuu501, GT, bb, bc) 22.90/8.47 The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3, 2 > 4, 2 > 5, 3 > 6, 3 > 7, 4 >= 8, 5 >= 10, 6 >= 11 22.90/8.47 22.90/8.47 22.90/8.47 ---------------------------------------- 22.90/8.47 22.90/8.47 (39) 22.90/8.47 YES 22.90/8.47 22.90/8.47 ---------------------------------------- 22.90/8.47 22.90/8.47 (40) 22.90/8.47 Obligation: 22.90/8.47 Q DP problem: 22.90/8.47 The TRS P consists of the following rules: 22.90/8.47 22.90/8.47 new_foldl(xuu3, :(xuu50, xuu51), h, ba) -> new_foldl(xuu3, xuu51, h, ba) 22.90/8.47 22.90/8.47 R is empty. 22.90/8.47 Q is empty. 22.90/8.47 We have to consider all minimal (P,Q,R)-chains. 22.90/8.47 ---------------------------------------- 22.90/8.47 22.90/8.47 (41) QDPSizeChangeProof (EQUIVALENT) 22.90/8.47 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. 22.90/8.47 22.90/8.47 From the DPs we obtained the following set of size-change graphs: 22.90/8.47 *new_foldl(xuu3, :(xuu50, xuu51), h, ba) -> new_foldl(xuu3, xuu51, h, ba) 22.90/8.47 The graph contains the following edges 1 >= 1, 2 > 2, 3 >= 3, 4 >= 4 22.90/8.47 22.90/8.47 22.90/8.47 ---------------------------------------- 22.90/8.47 22.90/8.47 (42) 22.90/8.47 YES 22.90/8.47 22.90/8.47 ---------------------------------------- 22.90/8.47 22.90/8.47 (43) 22.90/8.47 Obligation: 22.90/8.47 Q DP problem: 22.90/8.47 The TRS P consists of the following rules: 22.90/8.47 22.90/8.47 new_primEqNat(Succ(xuu5000000), Succ(xuu400000)) -> new_primEqNat(xuu5000000, xuu400000) 22.90/8.47 22.90/8.47 R is empty. 22.90/8.47 Q is empty. 22.90/8.47 We have to consider all minimal (P,Q,R)-chains. 22.90/8.47 ---------------------------------------- 22.90/8.47 22.90/8.47 (44) QDPSizeChangeProof (EQUIVALENT) 22.90/8.47 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. 22.90/8.47 22.90/8.47 From the DPs we obtained the following set of size-change graphs: 22.90/8.48 *new_primEqNat(Succ(xuu5000000), Succ(xuu400000)) -> new_primEqNat(xuu5000000, xuu400000) 22.90/8.48 The graph contains the following edges 1 > 1, 2 > 2 22.90/8.48 22.90/8.48 22.90/8.48 ---------------------------------------- 22.90/8.48 22.90/8.48 (45) 22.90/8.48 YES 22.90/8.48 22.90/8.48 ---------------------------------------- 22.90/8.48 22.90/8.48 (46) 22.90/8.48 Obligation: 22.90/8.48 Q DP problem: 22.90/8.48 The TRS P consists of the following rules: 22.90/8.48 22.90/8.48 new_primMinusNat(Succ(xuu19700), Succ(xuu19600)) -> new_primMinusNat(xuu19700, xuu19600) 22.90/8.48 22.90/8.48 R is empty. 22.90/8.48 Q is empty. 22.90/8.48 We have to consider all minimal (P,Q,R)-chains. 22.90/8.48 ---------------------------------------- 22.90/8.48 22.90/8.48 (47) QDPSizeChangeProof (EQUIVALENT) 22.90/8.48 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. 22.90/8.48 22.90/8.48 From the DPs we obtained the following set of size-change graphs: 22.90/8.48 *new_primMinusNat(Succ(xuu19700), Succ(xuu19600)) -> new_primMinusNat(xuu19700, xuu19600) 22.90/8.48 The graph contains the following edges 1 > 1, 2 > 2 22.90/8.48 22.90/8.48 22.90/8.48 ---------------------------------------- 22.90/8.48 22.90/8.48 (48) 22.90/8.48 YES 22.90/8.48 22.90/8.48 ---------------------------------------- 22.90/8.48 22.90/8.48 (49) 22.90/8.48 Obligation: 22.90/8.48 Q DP problem: 22.90/8.48 The TRS P consists of the following rules: 22.90/8.48 22.90/8.48 new_primPlusNat(Succ(xuu19700), Succ(xuu19600)) -> new_primPlusNat(xuu19700, xuu19600) 22.90/8.48 22.90/8.48 R is empty. 22.90/8.48 Q is empty. 22.90/8.48 We have to consider all minimal (P,Q,R)-chains. 22.90/8.48 ---------------------------------------- 22.90/8.48 22.90/8.48 (50) QDPSizeChangeProof (EQUIVALENT) 22.90/8.48 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. 22.90/8.48 22.90/8.48 From the DPs we obtained the following set of size-change graphs: 22.90/8.48 *new_primPlusNat(Succ(xuu19700), Succ(xuu19600)) -> new_primPlusNat(xuu19700, xuu19600) 22.90/8.48 The graph contains the following edges 1 > 1, 2 > 2 22.90/8.48 22.90/8.48 22.90/8.48 ---------------------------------------- 22.90/8.48 22.90/8.48 (51) 22.90/8.48 YES 23.08/8.52 EOF