21.41/8.21 YES 24.29/9.38 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 24.29/9.38 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 24.29/9.38 24.29/9.38 24.29/9.38 H-Termination with start terms of the given HASKELL could be proven: 24.29/9.38 24.29/9.38 (0) HASKELL 24.29/9.38 (1) LR [EQUIVALENT, 0 ms] 24.29/9.38 (2) HASKELL 24.29/9.38 (3) CR [EQUIVALENT, 0 ms] 24.29/9.38 (4) HASKELL 24.29/9.38 (5) IFR [EQUIVALENT, 0 ms] 24.29/9.38 (6) HASKELL 24.29/9.38 (7) BR [EQUIVALENT, 1 ms] 24.29/9.38 (8) HASKELL 24.29/9.38 (9) COR [EQUIVALENT, 0 ms] 24.29/9.38 (10) HASKELL 24.29/9.38 (11) LetRed [EQUIVALENT, 0 ms] 24.29/9.38 (12) HASKELL 24.29/9.38 (13) NumRed [SOUND, 0 ms] 24.29/9.38 (14) HASKELL 24.29/9.38 (15) Narrow [SOUND, 0 ms] 24.29/9.38 (16) AND 24.29/9.38 (17) QDP 24.29/9.38 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.29/9.38 (19) YES 24.29/9.38 (20) QDP 24.29/9.38 (21) DependencyGraphProof [EQUIVALENT, 0 ms] 24.29/9.38 (22) AND 24.29/9.38 (23) QDP 24.29/9.38 (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.29/9.38 (25) YES 24.29/9.38 (26) QDP 24.29/9.38 (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.29/9.38 (28) YES 24.29/9.38 (29) QDP 24.29/9.38 (30) DependencyGraphProof [EQUIVALENT, 0 ms] 24.29/9.38 (31) QDP 24.29/9.38 (32) QDPSizeChangeProof [EQUIVALENT, 264 ms] 24.29/9.38 (33) YES 24.29/9.38 (34) QDP 24.29/9.38 (35) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.29/9.38 (36) YES 24.29/9.38 (37) QDP 24.29/9.38 (38) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.29/9.38 (39) YES 24.29/9.38 (40) QDP 24.29/9.38 (41) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.29/9.38 (42) YES 24.29/9.38 (43) QDP 24.29/9.38 (44) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.29/9.38 (45) YES 24.29/9.38 (46) QDP 24.29/9.38 (47) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.29/9.38 (48) YES 24.29/9.38 (49) QDP 24.29/9.38 (50) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.29/9.38 (51) YES 24.29/9.38 24.29/9.38 24.29/9.38 ---------------------------------------- 24.29/9.38 24.29/9.38 (0) 24.29/9.38 Obligation: 24.29/9.38 mainModule Main 24.29/9.38 module FiniteMap where { 24.29/9.38 import qualified Main; 24.29/9.38 import qualified Maybe; 24.29/9.38 import qualified Prelude; 24.29/9.38 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 24.29/9.38 24.29/9.38 instance (Eq a, Eq b) => Eq FiniteMap a b where { 24.29/9.38 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.29/9.38 } 24.29/9.38 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 24.29/9.38 addListToFM fm key_elt_pairs = addListToFM_C (\old new ->new) fm key_elt_pairs; 24.29/9.38 24.29/9.38 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 24.29/9.38 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 24.29/9.38 add fmap (key,elt) = addToFM_C combiner fmap key elt; 24.29/9.38 }; 24.29/9.38 24.29/9.38 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 24.29/9.38 addToFM_C combiner EmptyFM key elt = unitFM key elt; 24.29/9.38 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 24.29/9.38 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 24.29/9.38 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 24.29/9.38 24.29/9.38 emptyFM :: FiniteMap b a; 24.29/9.38 emptyFM = EmptyFM; 24.29/9.38 24.29/9.38 findMax :: FiniteMap b a -> (b,a); 24.29/9.38 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 24.29/9.38 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 24.29/9.38 24.29/9.38 findMin :: FiniteMap b a -> (b,a); 24.29/9.38 findMin (Branch key elt _ EmptyFM _) = (key,elt); 24.29/9.38 findMin (Branch key elt _ fm_l _) = findMin fm_l; 24.29/9.38 24.29/9.38 fmToList :: FiniteMap a b -> [(a,b)]; 24.29/9.38 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 24.29/9.38 24.29/9.38 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 24.29/9.38 foldFM k z EmptyFM = z; 24.29/9.38 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.29/9.38 24.29/9.38 listToFM :: Ord b => [(b,a)] -> FiniteMap b a; 24.29/9.38 listToFM = addListToFM emptyFM; 24.29/9.38 24.29/9.38 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 24.29/9.38 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 24.29/9.38 | size_r > sIZE_RATIO * size_l = case fm_R of { 24.29/9.38 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 24.29/9.38 | otherwise -> double_L fm_L fm_R; 24.29/9.38 } 24.29/9.38 | size_l > sIZE_RATIO * size_r = case fm_L of { 24.29/9.38 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 24.29/9.38 | otherwise -> double_R fm_L fm_R; 24.29/9.38 } 24.29/9.38 | otherwise = mkBranch 2 key elt fm_L fm_R where { 24.29/9.38 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); 24.29/9.38 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); 24.29/9.38 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; 24.29/9.38 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); 24.29/9.38 size_l = sizeFM fm_L; 24.29/9.38 size_r = sizeFM fm_R; 24.29/9.38 }; 24.29/9.38 24.29/9.38 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 24.29/9.38 mkBranch which key elt fm_l fm_r = let { 24.29/9.38 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 24.29/9.38 } in result where { 24.29/9.38 balance_ok = True; 24.29/9.38 left_ok = case fm_l of { 24.29/9.38 EmptyFM-> True; 24.29/9.38 Branch left_key _ _ _ _-> let { 24.29/9.38 biggest_left_key = fst (findMax fm_l); 24.29/9.38 } in biggest_left_key < key; 24.29/9.38 } ; 24.29/9.38 left_size = sizeFM fm_l; 24.29/9.38 right_ok = case fm_r of { 24.29/9.38 EmptyFM-> True; 24.29/9.38 Branch right_key _ _ _ _-> let { 24.29/9.38 smallest_right_key = fst (findMin fm_r); 24.29/9.38 } in key < smallest_right_key; 24.29/9.38 } ; 24.29/9.38 right_size = sizeFM fm_r; 24.29/9.38 unbox :: Int -> Int; 24.29/9.38 unbox x = x; 24.29/9.38 }; 24.29/9.38 24.29/9.38 sIZE_RATIO :: Int; 24.29/9.38 sIZE_RATIO = 5; 24.29/9.38 24.29/9.38 sizeFM :: FiniteMap b a -> Int; 24.29/9.38 sizeFM EmptyFM = 0; 24.29/9.38 sizeFM (Branch _ _ size _ _) = size; 24.29/9.38 24.29/9.38 unitFM :: a -> b -> FiniteMap a b; 24.29/9.38 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 24.29/9.38 24.29/9.38 } 24.29/9.38 module Maybe where { 24.29/9.38 import qualified FiniteMap; 24.29/9.38 import qualified Main; 24.29/9.38 import qualified Prelude; 24.29/9.38 } 24.29/9.38 module Main where { 24.29/9.38 import qualified FiniteMap; 24.29/9.38 import qualified Maybe; 24.29/9.38 import qualified Prelude; 24.29/9.38 } 24.29/9.38 24.29/9.38 ---------------------------------------- 24.29/9.38 24.29/9.38 (1) LR (EQUIVALENT) 24.29/9.38 Lambda Reductions: 24.29/9.38 The following Lambda expression 24.29/9.38 "\oldnew->new" 24.29/9.38 is transformed to 24.29/9.38 "addListToFM0 old new = new; 24.29/9.38 " 24.29/9.38 The following Lambda expression 24.29/9.38 "\keyeltrest->(key,elt) : rest" 24.29/9.38 is transformed to 24.29/9.38 "fmToList0 key elt rest = (key,elt) : rest; 24.29/9.38 " 24.29/9.38 24.29/9.38 ---------------------------------------- 24.29/9.38 24.29/9.38 (2) 24.29/9.38 Obligation: 24.29/9.38 mainModule Main 24.29/9.38 module FiniteMap where { 24.29/9.38 import qualified Main; 24.29/9.38 import qualified Maybe; 24.29/9.38 import qualified Prelude; 24.29/9.38 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 24.29/9.38 24.29/9.38 instance (Eq a, Eq b) => Eq FiniteMap b a where { 24.29/9.38 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.29/9.38 } 24.29/9.38 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 24.29/9.38 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 24.29/9.38 24.29/9.38 addListToFM0 old new = new; 24.29/9.38 24.29/9.38 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 24.29/9.38 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 24.29/9.38 add fmap (key,elt) = addToFM_C combiner fmap key elt; 24.29/9.38 }; 24.29/9.38 24.29/9.38 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 24.29/9.38 addToFM_C combiner EmptyFM key elt = unitFM key elt; 24.29/9.38 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 24.29/9.38 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 24.29/9.38 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 24.29/9.38 24.29/9.38 emptyFM :: FiniteMap b a; 24.29/9.38 emptyFM = EmptyFM; 24.29/9.38 24.29/9.38 findMax :: FiniteMap b a -> (b,a); 24.29/9.38 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 24.29/9.38 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 24.29/9.38 24.29/9.38 findMin :: FiniteMap a b -> (a,b); 24.29/9.38 findMin (Branch key elt _ EmptyFM _) = (key,elt); 24.29/9.38 findMin (Branch key elt _ fm_l _) = findMin fm_l; 24.29/9.38 24.29/9.38 fmToList :: FiniteMap a b -> [(a,b)]; 24.29/9.38 fmToList fm = foldFM fmToList0 [] fm; 24.29/9.38 24.29/9.38 fmToList0 key elt rest = (key,elt) : rest; 24.29/9.38 24.29/9.38 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 24.29/9.38 foldFM k z EmptyFM = z; 24.29/9.38 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.29/9.38 24.29/9.38 listToFM :: Ord b => [(b,a)] -> FiniteMap b a; 24.29/9.38 listToFM = addListToFM emptyFM; 24.29/9.38 24.29/9.38 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 24.29/9.38 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 25.15/9.65 | size_r > sIZE_RATIO * size_l = case fm_R of { 25.15/9.65 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 25.15/9.65 | otherwise -> double_L fm_L fm_R; 25.15/9.65 } 25.15/9.65 | size_l > sIZE_RATIO * size_r = case fm_L of { 25.15/9.65 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 25.15/9.65 | otherwise -> double_R fm_L fm_R; 25.15/9.65 } 25.15/9.65 | otherwise = mkBranch 2 key elt fm_L fm_R where { 25.15/9.65 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); 25.15/9.65 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); 25.15/9.65 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; 25.15/9.65 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); 25.15/9.65 size_l = sizeFM fm_L; 25.15/9.65 size_r = sizeFM fm_R; 25.15/9.65 }; 25.15/9.65 25.15/9.65 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 25.15/9.65 mkBranch which key elt fm_l fm_r = let { 25.15/9.65 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 25.15/9.65 } in result where { 25.15/9.65 balance_ok = True; 25.15/9.65 left_ok = case fm_l of { 25.15/9.65 EmptyFM-> True; 25.15/9.65 Branch left_key _ _ _ _-> let { 25.15/9.65 biggest_left_key = fst (findMax fm_l); 25.15/9.65 } in biggest_left_key < key; 25.15/9.65 } ; 25.15/9.65 left_size = sizeFM fm_l; 25.15/9.65 right_ok = case fm_r of { 25.15/9.65 EmptyFM-> True; 25.15/9.65 Branch right_key _ _ _ _-> let { 25.15/9.65 smallest_right_key = fst (findMin fm_r); 25.15/9.65 } in key < smallest_right_key; 25.15/9.65 } ; 25.15/9.65 right_size = sizeFM fm_r; 25.15/9.65 unbox :: Int -> Int; 25.15/9.65 unbox x = x; 25.15/9.65 }; 25.15/9.65 25.15/9.65 sIZE_RATIO :: Int; 25.15/9.65 sIZE_RATIO = 5; 25.15/9.65 25.15/9.65 sizeFM :: FiniteMap b a -> Int; 25.15/9.65 sizeFM EmptyFM = 0; 25.15/9.65 sizeFM (Branch _ _ size _ _) = size; 25.15/9.65 25.15/9.65 unitFM :: a -> b -> FiniteMap a b; 25.15/9.65 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 25.15/9.65 25.15/9.65 } 25.15/9.65 module Maybe where { 25.15/9.65 import qualified FiniteMap; 25.15/9.65 import qualified Main; 25.15/9.65 import qualified Prelude; 25.15/9.65 } 25.15/9.65 module Main where { 25.15/9.65 import qualified FiniteMap; 25.15/9.65 import qualified Maybe; 25.15/9.65 import qualified Prelude; 25.15/9.65 } 25.15/9.65 25.15/9.65 ---------------------------------------- 25.15/9.65 25.15/9.65 (3) CR (EQUIVALENT) 25.15/9.65 Case Reductions: 25.15/9.65 The following Case expression 25.15/9.65 "case compare x y of { 25.15/9.65 EQ -> o; 25.15/9.65 LT -> LT; 25.15/9.65 GT -> GT} 25.15/9.65 " 25.15/9.65 is transformed to 25.15/9.65 "primCompAux0 o EQ = o; 25.15/9.65 primCompAux0 o LT = LT; 25.15/9.65 primCompAux0 o GT = GT; 25.15/9.65 " 25.15/9.65 The following Case expression 25.15/9.65 "case fm_r of { 25.15/9.65 EmptyFM -> True; 25.15/9.65 Branch right_key _ _ _ _ -> let { 25.15/9.65 smallest_right_key = fst (findMin fm_r); 25.15/9.65 } in key < smallest_right_key} 25.15/9.65 " 25.15/9.65 is transformed to 25.15/9.65 "right_ok0 fm_r key EmptyFM = True; 25.15/9.65 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 25.15/9.65 smallest_right_key = fst (findMin fm_r); 25.15/9.65 } in key < smallest_right_key; 25.15/9.65 " 25.15/9.65 The following Case expression 25.15/9.65 "case fm_l of { 25.15/9.65 EmptyFM -> True; 25.15/9.65 Branch left_key _ _ _ _ -> let { 25.15/9.65 biggest_left_key = fst (findMax fm_l); 25.15/9.65 } in biggest_left_key < key} 25.15/9.65 " 25.15/9.65 is transformed to 25.15/9.65 "left_ok0 fm_l key EmptyFM = True; 25.15/9.65 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 25.15/9.65 biggest_left_key = fst (findMax fm_l); 25.15/9.65 } in biggest_left_key < key; 25.15/9.65 " 25.15/9.65 The following Case expression 25.15/9.65 "case fm_R of { 25.15/9.65 Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} 25.15/9.65 " 25.15/9.65 is transformed to 25.15/9.65 "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; 25.15/9.65 " 25.15/9.65 The following Case expression 25.15/9.65 "case fm_L of { 25.15/9.65 Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} 25.15/9.65 " 25.15/9.65 is transformed to 25.15/9.65 "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; 25.15/9.65 " 25.15/9.65 25.15/9.65 ---------------------------------------- 25.15/9.65 25.15/9.65 (4) 25.15/9.65 Obligation: 25.15/9.65 mainModule Main 25.15/9.65 module FiniteMap where { 25.15/9.65 import qualified Main; 25.15/9.65 import qualified Maybe; 25.15/9.65 import qualified Prelude; 25.15/9.65 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 25.15/9.65 25.15/9.65 instance (Eq a, Eq b) => Eq FiniteMap a b where { 25.15/9.65 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.15/9.65 } 25.15/9.65 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 25.15/9.65 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 25.15/9.65 25.15/9.65 addListToFM0 old new = new; 25.15/9.65 25.15/9.65 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 25.15/9.65 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 25.15/9.65 add fmap (key,elt) = addToFM_C combiner fmap key elt; 25.15/9.65 }; 25.15/9.65 25.15/9.65 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 25.15/9.65 addToFM_C combiner EmptyFM key elt = unitFM key elt; 25.15/9.65 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 25.15/9.65 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 25.15/9.65 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 25.15/9.65 25.15/9.65 emptyFM :: FiniteMap a b; 25.15/9.65 emptyFM = EmptyFM; 25.15/9.65 25.15/9.65 findMax :: FiniteMap b a -> (b,a); 25.15/9.65 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 25.15/9.65 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 25.15/9.65 25.15/9.65 findMin :: FiniteMap b a -> (b,a); 25.15/9.65 findMin (Branch key elt _ EmptyFM _) = (key,elt); 25.15/9.65 findMin (Branch key elt _ fm_l _) = findMin fm_l; 25.15/9.65 25.15/9.65 fmToList :: FiniteMap a b -> [(a,b)]; 25.15/9.65 fmToList fm = foldFM fmToList0 [] fm; 25.15/9.65 25.15/9.65 fmToList0 key elt rest = (key,elt) : rest; 25.15/9.65 25.15/9.65 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 25.15/9.65 foldFM k z EmptyFM = z; 25.15/9.65 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.15/9.65 25.15/9.65 listToFM :: Ord b => [(b,a)] -> FiniteMap b a; 25.15/9.65 listToFM = addListToFM emptyFM; 25.15/9.65 25.15/9.65 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 25.15/9.65 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 25.15/9.65 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 25.15/9.65 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 25.15/9.65 | otherwise = mkBranch 2 key elt fm_L fm_R where { 25.15/9.65 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); 25.15/9.65 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); 25.15/9.65 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 25.15/9.65 | otherwise = double_L fm_L fm_R; 25.15/9.65 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 25.15/9.65 | otherwise = double_R fm_L fm_R; 25.15/9.65 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; 25.15/9.65 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); 25.15/9.65 size_l = sizeFM fm_L; 25.15/9.65 size_r = sizeFM fm_R; 25.15/9.65 }; 25.15/9.65 25.15/9.65 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 25.15/9.65 mkBranch which key elt fm_l fm_r = let { 25.15/9.65 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 25.15/9.65 } in result where { 25.15/9.65 balance_ok = True; 25.15/9.65 left_ok = left_ok0 fm_l key fm_l; 25.15/9.65 left_ok0 fm_l key EmptyFM = True; 25.15/9.65 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 25.15/9.65 biggest_left_key = fst (findMax fm_l); 25.15/9.65 } in biggest_left_key < key; 25.15/9.65 left_size = sizeFM fm_l; 25.15/9.65 right_ok = right_ok0 fm_r key fm_r; 25.15/9.65 right_ok0 fm_r key EmptyFM = True; 25.15/9.65 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 25.15/9.65 smallest_right_key = fst (findMin fm_r); 25.15/9.65 } in key < smallest_right_key; 25.15/9.65 right_size = sizeFM fm_r; 25.15/9.65 unbox :: Int -> Int; 25.15/9.65 unbox x = x; 25.15/9.65 }; 25.15/9.65 25.15/9.65 sIZE_RATIO :: Int; 25.15/9.65 sIZE_RATIO = 5; 25.15/9.65 25.15/9.65 sizeFM :: FiniteMap b a -> Int; 25.15/9.65 sizeFM EmptyFM = 0; 25.15/9.65 sizeFM (Branch _ _ size _ _) = size; 25.15/9.65 25.15/9.65 unitFM :: a -> b -> FiniteMap a b; 25.15/9.65 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 25.15/9.65 25.15/9.65 } 25.15/9.65 module Maybe where { 25.15/9.65 import qualified FiniteMap; 25.15/9.65 import qualified Main; 25.15/9.65 import qualified Prelude; 25.15/9.65 } 25.15/9.65 module Main where { 25.15/9.65 import qualified FiniteMap; 25.15/9.65 import qualified Maybe; 25.15/9.65 import qualified Prelude; 25.15/9.65 } 25.15/9.65 25.15/9.65 ---------------------------------------- 25.15/9.65 25.15/9.65 (5) IFR (EQUIVALENT) 25.15/9.65 If Reductions: 25.15/9.65 The following If expression 25.15/9.65 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 25.15/9.65 is transformed to 25.15/9.65 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 25.15/9.65 primDivNatS0 x y False = Zero; 25.15/9.65 " 25.15/9.65 The following If expression 25.15/9.65 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 25.15/9.65 is transformed to 25.15/9.65 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 25.15/9.65 primModNatS0 x y False = Succ x; 25.15/9.65 " 25.15/9.65 25.15/9.65 ---------------------------------------- 25.15/9.65 25.15/9.65 (6) 25.15/9.65 Obligation: 25.15/9.65 mainModule Main 25.15/9.65 module FiniteMap where { 25.15/9.65 import qualified Main; 25.15/9.65 import qualified Maybe; 25.15/9.65 import qualified Prelude; 25.15/9.65 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 25.15/9.65 25.15/9.65 instance (Eq a, Eq b) => Eq FiniteMap a b where { 25.15/9.65 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.15/9.65 } 25.15/9.65 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 25.15/9.65 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 25.15/9.65 25.15/9.65 addListToFM0 old new = new; 25.15/9.65 25.15/9.65 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 25.15/9.66 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 25.15/9.66 add fmap (key,elt) = addToFM_C combiner fmap key elt; 25.15/9.66 }; 25.15/9.66 25.15/9.66 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 25.15/9.66 addToFM_C combiner EmptyFM key elt = unitFM key elt; 25.15/9.66 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 25.15/9.66 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 25.15/9.66 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 25.15/9.66 25.15/9.66 emptyFM :: FiniteMap a b; 25.15/9.66 emptyFM = EmptyFM; 25.15/9.66 25.15/9.66 findMax :: FiniteMap a b -> (a,b); 25.15/9.66 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 25.15/9.66 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 25.15/9.66 25.15/9.66 findMin :: FiniteMap a b -> (a,b); 25.15/9.66 findMin (Branch key elt _ EmptyFM _) = (key,elt); 25.15/9.66 findMin (Branch key elt _ fm_l _) = findMin fm_l; 25.15/9.66 25.15/9.66 fmToList :: FiniteMap a b -> [(a,b)]; 25.15/9.66 fmToList fm = foldFM fmToList0 [] fm; 25.41/9.66 25.41/9.66 fmToList0 key elt rest = (key,elt) : rest; 25.41/9.66 25.41/9.66 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 25.41/9.66 foldFM k z EmptyFM = z; 25.41/9.66 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.41/9.66 25.41/9.66 listToFM :: Ord b => [(b,a)] -> FiniteMap b a; 25.41/9.66 listToFM = addListToFM emptyFM; 25.41/9.66 25.41/9.66 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 25.41/9.66 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 25.41/9.66 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 25.41/9.66 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 25.41/9.66 | otherwise = mkBranch 2 key elt fm_L fm_R where { 25.41/9.66 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); 25.41/9.66 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); 25.41/9.66 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 25.41/9.66 | otherwise = double_L fm_L fm_R; 25.41/9.66 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 25.41/9.66 | otherwise = double_R fm_L fm_R; 25.41/9.66 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; 25.41/9.66 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); 25.41/9.66 size_l = sizeFM fm_L; 25.41/9.66 size_r = sizeFM fm_R; 25.41/9.66 }; 25.41/9.66 25.41/9.66 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 25.41/9.66 mkBranch which key elt fm_l fm_r = let { 25.41/9.66 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 25.41/9.66 } in result where { 25.41/9.66 balance_ok = True; 25.41/9.66 left_ok = left_ok0 fm_l key fm_l; 25.41/9.66 left_ok0 fm_l key EmptyFM = True; 25.41/9.66 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 25.41/9.66 biggest_left_key = fst (findMax fm_l); 25.41/9.66 } in biggest_left_key < key; 25.41/9.66 left_size = sizeFM fm_l; 25.41/9.66 right_ok = right_ok0 fm_r key fm_r; 25.41/9.66 right_ok0 fm_r key EmptyFM = True; 25.41/9.66 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 25.41/9.66 smallest_right_key = fst (findMin fm_r); 25.41/9.66 } in key < smallest_right_key; 25.41/9.66 right_size = sizeFM fm_r; 25.41/9.66 unbox :: Int -> Int; 25.41/9.66 unbox x = x; 25.41/9.66 }; 25.41/9.66 25.41/9.66 sIZE_RATIO :: Int; 25.41/9.66 sIZE_RATIO = 5; 25.41/9.66 25.41/9.66 sizeFM :: FiniteMap b a -> Int; 25.41/9.66 sizeFM EmptyFM = 0; 25.41/9.66 sizeFM (Branch _ _ size _ _) = size; 25.41/9.66 25.41/9.66 unitFM :: a -> b -> FiniteMap a b; 25.41/9.66 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 25.41/9.66 25.41/9.66 } 25.41/9.66 module Maybe where { 25.41/9.66 import qualified FiniteMap; 25.41/9.66 import qualified Main; 25.41/9.66 import qualified Prelude; 25.41/9.66 } 25.41/9.66 module Main where { 25.41/9.66 import qualified FiniteMap; 25.41/9.66 import qualified Maybe; 25.41/9.66 import qualified Prelude; 25.41/9.66 } 25.41/9.66 25.41/9.66 ---------------------------------------- 25.41/9.66 25.41/9.66 (7) BR (EQUIVALENT) 25.41/9.66 Replaced joker patterns by fresh variables and removed binding patterns. 25.41/9.66 ---------------------------------------- 25.41/9.66 25.41/9.66 (8) 25.41/9.66 Obligation: 25.41/9.66 mainModule Main 25.41/9.66 module FiniteMap where { 25.41/9.66 import qualified Main; 25.41/9.66 import qualified Maybe; 25.41/9.66 import qualified Prelude; 25.41/9.66 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 25.41/9.66 25.41/9.66 instance (Eq a, Eq b) => Eq FiniteMap b a where { 25.41/9.66 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.41/9.66 } 25.41/9.66 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 25.41/9.66 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 25.41/9.66 25.41/9.66 addListToFM0 old new = new; 25.41/9.66 25.41/9.66 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 25.41/9.66 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 25.41/9.66 add fmap (key,elt) = addToFM_C combiner fmap key elt; 25.41/9.66 }; 25.41/9.66 25.41/9.66 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 25.41/9.66 addToFM_C combiner EmptyFM key elt = unitFM key elt; 25.41/9.66 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 25.41/9.66 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 25.41/9.66 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 25.41/9.66 25.41/9.66 emptyFM :: FiniteMap a b; 25.41/9.66 emptyFM = EmptyFM; 25.41/9.66 25.41/9.66 findMax :: FiniteMap a b -> (a,b); 25.41/9.66 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 25.41/9.66 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 25.41/9.66 25.41/9.66 findMin :: FiniteMap a b -> (a,b); 25.41/9.66 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 25.41/9.66 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 25.41/9.66 25.41/9.66 fmToList :: FiniteMap b a -> [(b,a)]; 25.41/9.66 fmToList fm = foldFM fmToList0 [] fm; 25.41/9.66 25.41/9.66 fmToList0 key elt rest = (key,elt) : rest; 25.41/9.66 25.41/9.66 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 25.41/9.66 foldFM k z EmptyFM = z; 25.41/9.66 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.41/9.66 25.41/9.66 listToFM :: Ord a => [(a,b)] -> FiniteMap a b; 25.41/9.66 listToFM = addListToFM emptyFM; 25.41/9.66 25.41/9.66 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 25.41/9.66 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 25.41/9.66 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 25.41/9.66 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 25.41/9.66 | otherwise = mkBranch 2 key elt fm_L fm_R where { 25.41/9.66 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); 25.41/9.66 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); 25.41/9.66 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 25.41/9.66 | otherwise = double_L fm_L fm_R; 25.41/9.66 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 25.41/9.66 | otherwise = double_R fm_L fm_R; 25.41/9.66 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; 25.41/9.66 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); 25.41/9.66 size_l = sizeFM fm_L; 25.41/9.66 size_r = sizeFM fm_R; 25.41/9.66 }; 25.41/9.66 25.41/9.66 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 25.41/9.66 mkBranch which key elt fm_l fm_r = let { 25.41/9.66 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 25.41/9.66 } in result where { 25.41/9.66 balance_ok = True; 25.41/9.66 left_ok = left_ok0 fm_l key fm_l; 25.41/9.66 left_ok0 fm_l key EmptyFM = True; 25.41/9.66 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 25.41/9.66 biggest_left_key = fst (findMax fm_l); 25.41/9.66 } in biggest_left_key < key; 25.41/9.66 left_size = sizeFM fm_l; 25.41/9.66 right_ok = right_ok0 fm_r key fm_r; 25.41/9.66 right_ok0 fm_r key EmptyFM = True; 25.41/9.66 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 25.41/9.66 smallest_right_key = fst (findMin fm_r); 25.41/9.66 } in key < smallest_right_key; 25.41/9.66 right_size = sizeFM fm_r; 25.41/9.66 unbox :: Int -> Int; 25.41/9.66 unbox x = x; 25.41/9.66 }; 25.41/9.66 25.41/9.66 sIZE_RATIO :: Int; 25.41/9.66 sIZE_RATIO = 5; 25.41/9.66 25.41/9.66 sizeFM :: FiniteMap a b -> Int; 25.41/9.66 sizeFM EmptyFM = 0; 25.41/9.66 sizeFM (Branch vyu vyv size vyw vyx) = size; 25.41/9.66 25.41/9.66 unitFM :: a -> b -> FiniteMap a b; 25.41/9.66 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 25.41/9.66 25.41/9.66 } 25.41/9.66 module Maybe where { 25.41/9.66 import qualified FiniteMap; 25.41/9.66 import qualified Main; 25.41/9.66 import qualified Prelude; 25.41/9.66 } 25.41/9.66 module Main where { 25.41/9.66 import qualified FiniteMap; 25.41/9.66 import qualified Maybe; 25.41/9.66 import qualified Prelude; 25.41/9.66 } 25.41/9.66 25.41/9.66 ---------------------------------------- 25.41/9.66 25.41/9.66 (9) COR (EQUIVALENT) 25.41/9.66 Cond Reductions: 25.41/9.66 The following Function with conditions 25.41/9.66 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 25.41/9.66 " 25.41/9.66 is transformed to 25.41/9.66 "compare x y = compare3 x y; 25.41/9.66 " 25.41/9.66 "compare0 x y True = GT; 25.41/9.66 " 25.41/9.66 "compare1 x y True = LT; 25.41/9.66 compare1 x y False = compare0 x y otherwise; 25.41/9.66 " 25.41/9.66 "compare2 x y True = EQ; 25.41/9.66 compare2 x y False = compare1 x y (x <= y); 25.41/9.66 " 25.41/9.66 "compare3 x y = compare2 x y (x == y); 25.41/9.66 " 25.41/9.66 The following Function with conditions 25.41/9.66 "absReal x|x >= 0x|otherwise`negate` x; 25.41/9.66 " 25.41/9.66 is transformed to 25.41/9.66 "absReal x = absReal2 x; 25.41/9.66 " 25.41/9.66 "absReal0 x True = `negate` x; 25.41/9.66 " 25.41/9.66 "absReal1 x True = x; 25.41/9.66 absReal1 x False = absReal0 x otherwise; 25.41/9.66 " 25.41/9.66 "absReal2 x = absReal1 x (x >= 0); 25.41/9.66 " 25.41/9.66 The following Function with conditions 25.41/9.66 "gcd' x 0 = x; 25.41/9.66 gcd' x y = gcd' y (x `rem` y); 25.41/9.66 " 25.41/9.66 is transformed to 25.41/9.66 "gcd' x vzw = gcd'2 x vzw; 25.41/9.66 gcd' x y = gcd'0 x y; 25.41/9.66 " 25.41/9.66 "gcd'0 x y = gcd' y (x `rem` y); 25.41/9.66 " 25.41/9.66 "gcd'1 True x vzw = x; 25.41/9.66 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 25.41/9.66 " 25.41/9.66 "gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 25.41/9.66 gcd'2 wuu wuv = gcd'0 wuu wuv; 25.41/9.66 " 25.41/9.66 The following Function with conditions 25.41/9.66 "gcd 0 0 = error []; 25.41/9.66 gcd x y = gcd' (abs x) (abs y) where { 25.41/9.66 gcd' x 0 = x; 25.41/9.66 gcd' x y = gcd' y (x `rem` y); 25.41/9.66 } 25.41/9.66 ; 25.41/9.66 " 25.41/9.66 is transformed to 25.41/9.66 "gcd wuw wux = gcd3 wuw wux; 25.41/9.66 gcd x y = gcd0 x y; 25.41/9.66 " 25.41/9.66 "gcd0 x y = gcd' (abs x) (abs y) where { 25.41/9.66 gcd' x vzw = gcd'2 x vzw; 25.41/9.66 gcd' x y = gcd'0 x y; 25.41/9.66 ; 25.41/9.66 gcd'0 x y = gcd' y (x `rem` y); 25.41/9.66 ; 25.41/9.66 gcd'1 True x vzw = x; 25.41/9.66 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 25.41/9.66 ; 25.41/9.66 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 25.41/9.66 gcd'2 wuu wuv = gcd'0 wuu wuv; 25.41/9.66 } 25.41/9.66 ; 25.41/9.66 " 25.41/9.66 "gcd1 True wuw wux = error []; 25.41/9.66 gcd1 wuy wuz wvu = gcd0 wuz wvu; 25.41/9.66 " 25.41/9.66 "gcd2 True wuw wux = gcd1 (wux == 0) wuw wux; 25.41/9.66 gcd2 wvv wvw wvx = gcd0 wvw wvx; 25.41/9.66 " 25.41/9.66 "gcd3 wuw wux = gcd2 (wuw == 0) wuw wux; 25.41/9.66 gcd3 wvy wvz = gcd0 wvy wvz; 25.41/9.66 " 25.41/9.66 The following Function with conditions 25.41/9.66 "undefined |Falseundefined; 25.41/9.66 " 25.41/9.66 is transformed to 25.41/9.66 "undefined = undefined1; 25.41/9.66 " 25.41/9.66 "undefined0 True = undefined; 25.41/9.66 " 25.41/9.66 "undefined1 = undefined0 False; 25.41/9.66 " 25.41/9.66 The following Function with conditions 25.41/9.66 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 25.41/9.66 d = gcd x y; 25.41/9.66 } 25.41/9.66 ; 25.41/9.66 " 25.41/9.66 is transformed to 25.41/9.66 "reduce x y = reduce2 x y; 25.41/9.66 " 25.41/9.66 "reduce2 x y = reduce1 x y (y == 0) where { 25.41/9.66 d = gcd x y; 25.41/9.66 ; 25.41/9.66 reduce0 x y True = x `quot` d :% (y `quot` d); 25.41/9.66 ; 25.41/9.66 reduce1 x y True = error []; 25.41/9.66 reduce1 x y False = reduce0 x y otherwise; 25.41/9.66 } 25.41/9.66 ; 25.41/9.66 " 25.41/9.66 The following Function with conditions 25.41/9.66 "addToFM_C combiner EmptyFM key elt = unitFM key elt; 25.41/9.66 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; 25.41/9.66 " 25.41/9.66 is transformed to 25.41/9.66 "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 25.41/9.66 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; 25.41/9.66 " 25.41/9.66 "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); 25.41/9.66 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; 25.41/9.66 " 25.41/9.66 "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; 25.41/9.66 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); 25.41/9.66 " 25.41/9.66 "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; 25.41/9.66 " 25.41/9.66 "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); 25.41/9.66 " 25.41/9.66 "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 25.41/9.66 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 25.41/9.66 " 25.41/9.66 The following Function with conditions 25.41/9.66 "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; 25.41/9.66 " 25.41/9.66 is transformed to 25.41/9.66 "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); 25.41/9.66 " 25.41/9.66 "mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 25.41/9.66 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; 25.41/9.66 " 25.41/9.66 "mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 25.41/9.66 " 25.41/9.66 "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); 25.41/9.66 " 25.41/9.66 The following Function with conditions 25.41/9.66 "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; 25.41/9.66 " 25.41/9.66 is transformed to 25.41/9.66 "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); 25.41/9.66 " 25.41/9.66 "mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 25.41/9.66 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; 25.41/9.66 " 25.41/9.66 "mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 25.41/9.66 " 25.41/9.66 "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); 25.41/9.66 " 25.41/9.66 The following Function with conditions 25.41/9.66 "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 { 25.41/9.66 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); 25.41/9.66 ; 25.41/9.66 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); 25.41/9.66 ; 25.41/9.66 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; 25.41/9.66 ; 25.41/9.66 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; 25.41/9.66 ; 25.41/9.66 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; 25.41/9.66 ; 25.41/9.66 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); 25.41/9.66 ; 25.41/9.66 size_l = sizeFM fm_L; 25.41/9.66 ; 25.41/9.66 size_r = sizeFM fm_R; 25.41/9.66 } 25.41/9.66 ; 25.41/9.66 " 25.41/9.66 is transformed to 25.41/9.66 "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 25.41/9.66 " 25.41/9.66 "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 25.41/9.66 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); 25.41/9.66 ; 25.41/9.66 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); 25.41/9.66 ; 25.41/9.66 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); 25.41/9.66 ; 25.41/9.66 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 25.41/9.66 ; 25.41/9.66 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 25.41/9.66 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; 25.41/9.66 ; 25.41/9.66 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); 25.41/9.66 ; 25.41/9.66 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); 25.41/9.66 ; 25.41/9.66 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 25.41/9.66 ; 25.41/9.66 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 25.41/9.66 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; 25.41/9.66 ; 25.41/9.66 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); 25.41/9.66 ; 25.41/9.66 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 25.41/9.66 ; 25.41/9.66 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 25.41/9.66 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 25.41/9.66 ; 25.41/9.66 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 25.41/9.66 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 25.41/9.66 ; 25.41/9.66 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 25.41/9.66 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 25.41/9.66 ; 25.41/9.66 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; 25.41/9.66 ; 25.41/9.66 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); 25.41/9.66 ; 25.41/9.66 size_l = sizeFM fm_L; 25.41/9.66 ; 25.41/9.66 size_r = sizeFM fm_R; 25.41/9.66 } 25.41/9.66 ; 25.41/9.66 " 25.41/9.66 25.41/9.66 ---------------------------------------- 25.41/9.66 25.41/9.66 (10) 25.41/9.66 Obligation: 25.41/9.66 mainModule Main 25.41/9.66 module FiniteMap where { 25.41/9.66 import qualified Main; 25.41/9.66 import qualified Maybe; 25.41/9.66 import qualified Prelude; 25.41/9.66 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 25.41/9.66 25.41/9.66 instance (Eq a, Eq b) => Eq FiniteMap a b where { 25.41/9.66 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.41/9.66 } 25.41/9.66 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 25.41/9.66 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 25.41/9.66 25.41/9.66 addListToFM0 old new = new; 25.41/9.66 25.41/9.66 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 25.41/9.66 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 25.41/9.66 add fmap (key,elt) = addToFM_C combiner fmap key elt; 25.41/9.66 }; 25.41/9.66 25.41/9.66 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 25.41/9.66 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 25.41/9.66 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; 25.41/9.66 25.41/9.66 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; 25.41/9.66 25.41/9.66 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); 25.41/9.66 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; 25.41/9.66 25.41/9.66 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; 25.41/9.66 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); 25.41/9.66 25.41/9.66 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); 25.41/9.66 25.41/9.66 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 25.41/9.66 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 25.41/9.66 25.41/9.66 emptyFM :: FiniteMap b a; 25.41/9.66 emptyFM = EmptyFM; 25.41/9.66 25.41/9.66 findMax :: FiniteMap a b -> (a,b); 25.41/9.66 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 25.41/9.66 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 25.41/9.66 25.41/9.66 findMin :: FiniteMap b a -> (b,a); 25.41/9.66 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 25.41/9.66 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 25.41/9.66 25.41/9.66 fmToList :: FiniteMap a b -> [(a,b)]; 25.41/9.66 fmToList fm = foldFM fmToList0 [] fm; 25.41/9.66 25.41/9.66 fmToList0 key elt rest = (key,elt) : rest; 25.41/9.66 25.41/9.66 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 25.41/9.66 foldFM k z EmptyFM = z; 25.41/9.66 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.41/9.66 25.41/9.66 listToFM :: Ord a => [(a,b)] -> FiniteMap a b; 25.41/9.66 listToFM = addListToFM emptyFM; 25.41/9.66 25.41/9.66 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 25.41/9.66 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 25.41/9.66 25.41/9.66 mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 25.41/9.66 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); 25.41/9.66 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); 25.41/9.66 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); 25.41/9.66 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 25.41/9.66 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 25.41/9.66 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; 25.41/9.66 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); 25.41/9.66 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); 25.41/9.66 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 25.41/9.66 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 25.41/9.66 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; 25.41/9.66 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); 25.41/9.66 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 25.41/9.66 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 25.41/9.66 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 25.41/9.66 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 25.41/9.66 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 25.41/9.66 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 25.41/9.66 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 25.41/9.66 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; 25.41/9.66 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); 25.41/9.66 size_l = sizeFM fm_L; 25.41/9.66 size_r = sizeFM fm_R; 25.41/9.66 }; 25.41/9.66 25.41/9.66 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 25.41/9.66 mkBranch which key elt fm_l fm_r = let { 25.41/9.66 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 25.41/9.66 } in result where { 25.41/9.66 balance_ok = True; 25.41/9.66 left_ok = left_ok0 fm_l key fm_l; 25.41/9.66 left_ok0 fm_l key EmptyFM = True; 25.41/9.66 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 25.41/9.66 biggest_left_key = fst (findMax fm_l); 25.41/9.66 } in biggest_left_key < key; 25.41/9.66 left_size = sizeFM fm_l; 25.41/9.66 right_ok = right_ok0 fm_r key fm_r; 25.41/9.66 right_ok0 fm_r key EmptyFM = True; 25.41/9.66 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 25.41/9.66 smallest_right_key = fst (findMin fm_r); 25.41/9.66 } in key < smallest_right_key; 25.41/9.66 right_size = sizeFM fm_r; 25.41/9.66 unbox :: Int -> Int; 25.41/9.66 unbox x = x; 25.41/9.66 }; 25.41/9.66 25.41/9.66 sIZE_RATIO :: Int; 25.41/9.66 sIZE_RATIO = 5; 25.41/9.66 25.41/9.66 sizeFM :: FiniteMap a b -> Int; 25.41/9.66 sizeFM EmptyFM = 0; 25.41/9.66 sizeFM (Branch vyu vyv size vyw vyx) = size; 25.41/9.66 25.41/9.66 unitFM :: b -> a -> FiniteMap b a; 25.41/9.66 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 25.61/9.71 25.61/9.71 } 25.61/9.71 module Maybe where { 25.61/9.71 import qualified FiniteMap; 25.61/9.71 import qualified Main; 25.61/9.71 import qualified Prelude; 25.61/9.71 } 25.61/9.71 module Main where { 25.61/9.71 import qualified FiniteMap; 25.61/9.71 import qualified Maybe; 25.61/9.71 import qualified Prelude; 25.61/9.71 } 25.61/9.71 25.61/9.71 ---------------------------------------- 25.61/9.71 25.61/9.71 (11) LetRed (EQUIVALENT) 25.61/9.71 Let/Where Reductions: 25.61/9.71 The bindings of the following Let/Where expression 25.61/9.71 "gcd' (abs x) (abs y) where { 25.61/9.71 gcd' x vzw = gcd'2 x vzw; 25.61/9.71 gcd' x y = gcd'0 x y; 25.61/9.71 ; 25.61/9.71 gcd'0 x y = gcd' y (x `rem` y); 25.61/9.71 ; 25.61/9.71 gcd'1 True x vzw = x; 25.61/9.71 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 25.61/9.71 ; 25.61/9.71 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 25.61/9.71 gcd'2 wuu wuv = gcd'0 wuu wuv; 25.61/9.71 } 25.61/9.71 " 25.61/9.71 are unpacked to the following functions on top level 25.61/9.71 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 25.61/9.71 " 25.61/9.71 "gcd0Gcd' x vzw = gcd0Gcd'2 x vzw; 25.61/9.71 gcd0Gcd' x y = gcd0Gcd'0 x y; 25.61/9.71 " 25.61/9.71 "gcd0Gcd'1 True x vzw = x; 25.61/9.71 gcd0Gcd'1 vzx vzy vzz = gcd0Gcd'0 vzy vzz; 25.61/9.71 " 25.61/9.71 "gcd0Gcd'2 x vzw = gcd0Gcd'1 (vzw == 0) x vzw; 25.61/9.71 gcd0Gcd'2 wuu wuv = gcd0Gcd'0 wuu wuv; 25.61/9.71 " 25.61/9.71 The bindings of the following Let/Where expression 25.61/9.71 "reduce1 x y (y == 0) where { 25.61/9.71 d = gcd x y; 25.61/9.71 ; 25.61/9.71 reduce0 x y True = x `quot` d :% (y `quot` d); 25.61/9.71 ; 25.61/9.71 reduce1 x y True = error []; 25.61/9.71 reduce1 x y False = reduce0 x y otherwise; 25.61/9.71 } 25.61/9.71 " 25.61/9.71 are unpacked to the following functions on top level 25.61/9.71 "reduce2D wxw wxx = gcd wxw wxx; 25.61/9.71 " 25.61/9.71 "reduce2Reduce0 wxw wxx x y True = x `quot` reduce2D wxw wxx :% (y `quot` reduce2D wxw wxx); 25.61/9.71 " 25.61/9.71 "reduce2Reduce1 wxw wxx x y True = error []; 25.61/9.71 reduce2Reduce1 wxw wxx x y False = reduce2Reduce0 wxw wxx x y otherwise; 25.61/9.71 " 25.61/9.71 The bindings of the following Let/Where expression 25.61/9.71 "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 25.61/9.71 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); 25.61/9.71 ; 25.61/9.71 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); 25.61/9.71 ; 25.61/9.71 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); 25.61/9.71 ; 25.61/9.71 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 25.61/9.71 ; 25.61/9.71 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 25.61/9.71 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; 25.61/9.71 ; 25.61/9.71 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); 25.61/9.71 ; 25.61/9.71 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); 25.61/9.71 ; 25.61/9.71 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 25.61/9.71 ; 25.61/9.71 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 25.61/9.71 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; 25.61/9.71 ; 25.61/9.71 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); 25.61/9.71 ; 25.61/9.71 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 25.61/9.71 ; 25.61/9.71 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 25.61/9.71 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 25.61/9.71 ; 25.61/9.71 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 25.61/9.71 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 25.61/9.71 ; 25.61/9.71 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 25.61/9.71 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 25.61/9.71 ; 25.61/9.71 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; 25.61/9.71 ; 25.61/9.71 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); 25.61/9.71 ; 25.61/9.71 size_l = sizeFM fm_L; 25.61/9.71 ; 25.61/9.71 size_r = sizeFM fm_R; 25.61/9.71 } 25.61/9.71 " 25.61/9.71 are unpacked to the following functions on top level 25.61/9.71 "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; 25.61/9.71 " 25.61/9.71 "mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 25.61/9.71 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 25.61/9.71 " 25.61/9.71 "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); 25.61/9.71 " 25.61/9.71 "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); 25.61/9.71 " 25.61/9.71 "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; 25.61/9.71 " 25.61/9.71 "mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 25.61/9.71 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); 25.61/9.71 " 25.61/9.71 "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; 25.61/9.71 " 25.61/9.71 "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); 25.61/9.71 " 25.61/9.71 "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; 25.61/9.71 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; 25.61/9.71 " 25.61/9.71 "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); 25.61/9.71 " 25.61/9.71 "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); 25.61/9.71 " 25.61/9.71 "mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 25.61/9.71 " 25.61/9.71 "mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; 25.61/9.71 " 25.61/9.71 "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); 25.61/9.71 " 25.61/9.71 "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); 25.61/9.71 " 25.61/9.71 "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; 25.61/9.71 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; 25.61/9.71 " 25.61/9.71 "mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 25.61/9.71 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); 25.61/9.71 " 25.61/9.71 "mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 25.61/9.71 " 25.61/9.71 The bindings of the following Let/Where expression 25.61/9.71 "foldl add fm key_elt_pairs where { 25.61/9.71 add fmap (key,elt) = addToFM_C combiner fmap key elt; 25.61/9.71 } 25.61/9.71 " 25.61/9.71 are unpacked to the following functions on top level 25.61/9.71 "addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 25.61/9.71 " 25.61/9.71 The bindings of the following Let/Where expression 25.61/9.71 "let { 25.61/9.71 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 25.61/9.71 } in result where { 25.61/9.71 balance_ok = True; 25.61/9.71 ; 25.61/9.71 left_ok = left_ok0 fm_l key fm_l; 25.61/9.71 ; 25.61/9.71 left_ok0 fm_l key EmptyFM = True; 25.61/9.71 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 25.61/9.71 biggest_left_key = fst (findMax fm_l); 25.61/9.71 } in biggest_left_key < key; 25.61/9.71 ; 25.61/9.71 left_size = sizeFM fm_l; 25.61/9.71 ; 25.61/9.71 right_ok = right_ok0 fm_r key fm_r; 25.61/9.71 ; 25.61/9.71 right_ok0 fm_r key EmptyFM = True; 25.61/9.71 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 25.61/9.71 smallest_right_key = fst (findMin fm_r); 25.61/9.71 } in key < smallest_right_key; 25.61/9.71 ; 25.61/9.71 right_size = sizeFM fm_r; 25.61/9.71 ; 25.61/9.71 unbox x = x; 25.61/9.71 } 25.61/9.71 " 25.61/9.71 are unpacked to the following functions on top level 25.61/9.71 "mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; 25.61/9.71 " 25.61/9.71 "mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 25.61/9.71 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 25.61/9.71 " 25.61/9.71 "mkBranchLeft_size wyx wyy wyz = sizeFM wyz; 25.61/9.71 " 25.61/9.71 "mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; 25.61/9.71 " 25.61/9.71 "mkBranchRight_size wyx wyy wyz = sizeFM wyx; 25.61/9.71 " 25.61/9.71 "mkBranchBalance_ok wyx wyy wyz = True; 25.61/9.71 " 25.61/9.71 "mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 25.61/9.71 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 25.61/9.71 " 25.61/9.71 "mkBranchUnbox wyx wyy wyz x = x; 25.61/9.71 " 25.61/9.71 The bindings of the following Let/Where expression 25.61/9.71 "let { 25.61/9.71 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 25.61/9.71 } in result" 25.61/9.71 are unpacked to the following functions on top level 25.61/9.71 "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; 25.61/9.71 " 25.61/9.71 The bindings of the following Let/Where expression 25.61/9.71 "let { 25.61/9.71 biggest_left_key = fst (findMax fm_l); 25.61/9.71 } in biggest_left_key < key" 25.61/9.71 are unpacked to the following functions on top level 25.61/9.71 "mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 25.61/9.71 " 25.61/9.71 The bindings of the following Let/Where expression 25.61/9.71 "let { 25.61/9.71 smallest_right_key = fst (findMin fm_r); 25.61/9.71 } in key < smallest_right_key" 25.61/9.71 are unpacked to the following functions on top level 25.61/9.71 "mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 25.61/9.71 " 25.61/9.71 25.61/9.71 ---------------------------------------- 25.61/9.71 25.61/9.71 (12) 25.61/9.71 Obligation: 25.61/9.71 mainModule Main 25.61/9.71 module FiniteMap where { 25.61/9.71 import qualified Main; 25.61/9.71 import qualified Maybe; 25.61/9.71 import qualified Prelude; 25.61/9.71 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 25.61/9.71 25.61/9.71 instance (Eq a, Eq b) => Eq FiniteMap b a where { 25.61/9.71 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.61/9.71 } 25.61/9.71 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 25.61/9.71 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 25.61/9.71 25.61/9.71 addListToFM0 old new = new; 25.61/9.71 25.61/9.71 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 25.61/9.71 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 25.61/9.71 25.61/9.71 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 25.61/9.71 25.61/9.71 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 25.61/9.71 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 25.61/9.71 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; 25.61/9.71 25.61/9.71 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; 25.61/9.71 25.61/9.71 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); 25.61/9.71 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; 25.61/9.71 25.61/9.71 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; 25.61/9.71 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); 25.61/9.71 25.61/9.71 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); 25.61/9.71 25.61/9.71 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 25.61/9.71 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 25.61/9.71 25.61/9.71 emptyFM :: FiniteMap b a; 25.61/9.71 emptyFM = EmptyFM; 25.61/9.71 25.61/9.71 findMax :: FiniteMap b a -> (b,a); 25.61/9.71 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 25.61/9.71 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 25.61/9.71 25.61/9.71 findMin :: FiniteMap b a -> (b,a); 25.61/9.71 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 25.61/9.71 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 25.61/9.71 25.61/9.71 fmToList :: FiniteMap a b -> [(a,b)]; 25.61/9.71 fmToList fm = foldFM fmToList0 [] fm; 25.61/9.71 25.61/9.71 fmToList0 key elt rest = (key,elt) : rest; 25.61/9.71 25.61/9.71 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 25.61/9.71 foldFM k z EmptyFM = z; 25.61/9.71 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.61/9.71 25.61/9.71 listToFM :: Ord a => [(a,b)] -> FiniteMap a b; 25.61/9.71 listToFM = addListToFM emptyFM; 25.61/9.71 25.61/9.71 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 25.61/9.71 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 25.61/9.71 25.61/9.71 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < 2); 25.61/9.71 25.61/9.71 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); 25.61/9.71 25.61/9.71 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); 25.61/9.71 25.61/9.71 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); 25.61/9.71 25.61/9.71 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; 25.61/9.71 25.61/9.71 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; 25.61/9.71 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; 25.61/9.71 25.61/9.71 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); 25.61/9.71 25.61/9.71 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); 25.61/9.71 25.61/9.71 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; 25.61/9.71 25.61/9.71 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; 25.61/9.71 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; 25.61/9.71 25.61/9.71 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); 25.61/9.71 25.61/9.71 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 25.61/9.71 25.61/9.71 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 25.61/9.71 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 25.61/9.71 25.61/9.71 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 25.61/9.71 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); 25.61/9.71 25.61/9.71 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 25.61/9.71 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); 25.61/9.71 25.61/9.71 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; 25.61/9.71 25.61/9.71 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); 25.61/9.71 25.61/9.71 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; 25.61/9.71 25.61/9.71 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 25.61/9.71 25.61/9.71 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 25.61/9.71 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 25.61/9.71 25.61/9.71 mkBranchBalance_ok wyx wyy wyz = True; 25.61/9.71 25.61/9.71 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; 25.61/9.71 25.61/9.71 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 25.61/9.71 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 25.61/9.71 25.61/9.71 mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 25.61/9.71 25.61/9.71 mkBranchLeft_size wyx wyy wyz = sizeFM wyz; 25.61/9.71 25.61/9.71 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; 25.61/9.71 25.61/9.71 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; 25.61/9.71 25.61/9.71 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 25.61/9.71 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 25.61/9.71 25.61/9.71 mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 25.61/9.71 25.61/9.71 mkBranchRight_size wyx wyy wyz = sizeFM wyx; 25.61/9.71 25.61/9.71 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 25.61/9.71 mkBranchUnbox wyx wyy wyz x = x; 25.61/9.71 25.61/9.71 sIZE_RATIO :: Int; 25.61/9.71 sIZE_RATIO = 5; 25.61/9.71 25.61/9.71 sizeFM :: FiniteMap a b -> Int; 25.61/9.71 sizeFM EmptyFM = 0; 25.61/9.71 sizeFM (Branch vyu vyv size vyw vyx) = size; 25.61/9.71 25.61/9.71 unitFM :: a -> b -> FiniteMap a b; 25.61/9.71 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 25.61/9.71 25.61/9.71 } 25.61/9.71 module Maybe where { 25.61/9.71 import qualified FiniteMap; 25.61/9.71 import qualified Main; 25.61/9.71 import qualified Prelude; 25.61/9.71 } 25.61/9.71 module Main where { 25.61/9.71 import qualified FiniteMap; 25.61/9.71 import qualified Maybe; 25.61/9.71 import qualified Prelude; 25.61/9.71 } 25.61/9.71 25.61/9.71 ---------------------------------------- 25.61/9.71 25.61/9.71 (13) NumRed (SOUND) 25.61/9.71 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 25.61/9.71 ---------------------------------------- 25.61/9.71 25.61/9.71 (14) 25.61/9.71 Obligation: 25.61/9.71 mainModule Main 25.61/9.71 module FiniteMap where { 25.61/9.71 import qualified Main; 25.61/9.71 import qualified Maybe; 25.61/9.71 import qualified Prelude; 25.61/9.71 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 25.61/9.71 25.61/9.71 instance (Eq a, Eq b) => Eq FiniteMap b a where { 25.61/9.71 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.61/9.71 } 25.61/9.71 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 25.61/9.71 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 25.61/9.71 25.61/9.71 addListToFM0 old new = new; 25.61/9.71 25.61/9.71 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 25.61/9.71 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 25.61/9.71 25.61/9.71 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 25.61/9.71 25.61/9.71 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 25.61/9.71 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 25.61/9.71 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; 25.61/9.71 25.61/9.71 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; 25.61/9.71 25.61/9.71 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); 25.61/9.71 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; 25.61/9.71 25.61/9.71 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; 25.61/9.71 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); 25.61/9.71 25.61/9.71 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); 25.61/9.71 25.61/9.71 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 25.61/9.71 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 25.61/9.71 25.61/9.71 emptyFM :: FiniteMap a b; 25.61/9.71 emptyFM = EmptyFM; 25.61/9.71 25.61/9.71 findMax :: FiniteMap b a -> (b,a); 25.61/9.71 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 25.61/9.71 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 25.61/9.71 25.61/9.71 findMin :: FiniteMap a b -> (a,b); 25.61/9.71 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 25.61/9.71 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 25.61/9.71 25.61/9.71 fmToList :: FiniteMap a b -> [(a,b)]; 25.61/9.71 fmToList fm = foldFM fmToList0 [] fm; 25.61/9.71 25.61/9.71 fmToList0 key elt rest = (key,elt) : rest; 25.61/9.71 25.61/9.71 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 25.61/9.71 foldFM k z EmptyFM = z; 25.61/9.71 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.61/9.71 25.61/9.71 listToFM :: Ord a => [(a,b)] -> FiniteMap a b; 25.61/9.71 listToFM = addListToFM emptyFM; 25.61/9.71 25.61/9.71 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 25.61/9.71 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 25.61/9.71 25.61/9.71 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < Pos (Succ (Succ Zero))); 25.61/9.71 25.61/9.71 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); 25.61/9.71 25.61/9.71 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); 25.61/9.71 25.61/9.71 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); 25.61/9.71 25.61/9.71 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; 25.61/9.71 25.61/9.71 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; 25.61/9.71 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; 25.61/9.71 25.61/9.71 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); 25.61/9.71 25.61/9.71 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); 25.61/9.71 25.61/9.71 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; 25.61/9.71 25.61/9.71 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; 25.61/9.71 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; 25.61/9.71 25.61/9.71 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); 25.61/9.71 25.61/9.71 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; 25.61/9.71 25.61/9.71 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 25.61/9.71 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 25.61/9.71 25.61/9.71 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 25.61/9.71 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); 25.61/9.71 25.61/9.71 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 25.61/9.71 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); 25.61/9.71 25.61/9.71 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; 25.61/9.71 25.61/9.71 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); 25.61/9.71 25.61/9.71 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; 25.61/9.71 25.61/9.71 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 25.61/9.71 25.61/9.71 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 25.61/9.71 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 25.61/9.71 25.61/9.71 mkBranchBalance_ok wyx wyy wyz = True; 25.61/9.71 25.61/9.71 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; 25.61/9.71 25.61/9.71 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 25.61/9.71 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 25.61/9.71 25.61/9.71 mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 25.61/9.71 25.61/9.71 mkBranchLeft_size wyx wyy wyz = sizeFM wyz; 25.61/9.71 25.61/9.71 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; 25.61/9.71 25.61/9.71 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; 25.61/9.71 25.61/9.71 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 25.61/9.71 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 25.61/9.71 25.61/9.71 mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 25.61/9.71 25.61/9.71 mkBranchRight_size wyx wyy wyz = sizeFM wyx; 25.61/9.71 25.61/9.71 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 25.61/9.71 mkBranchUnbox wyx wyy wyz x = x; 25.61/9.71 25.61/9.71 sIZE_RATIO :: Int; 25.61/9.71 sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); 25.61/9.71 25.61/9.71 sizeFM :: FiniteMap b a -> Int; 25.61/9.71 sizeFM EmptyFM = Pos Zero; 25.61/9.71 sizeFM (Branch vyu vyv size vyw vyx) = size; 25.61/9.71 25.61/9.71 unitFM :: b -> a -> FiniteMap b a; 25.61/9.71 unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; 25.61/9.71 25.61/9.71 } 25.61/9.71 module Maybe where { 25.61/9.71 import qualified FiniteMap; 25.61/9.71 import qualified Main; 25.61/9.71 import qualified Prelude; 25.61/9.71 } 25.61/9.71 module Main where { 25.61/9.71 import qualified FiniteMap; 25.61/9.71 import qualified Maybe; 25.61/9.71 import qualified Prelude; 25.61/9.71 } 25.61/9.71 25.61/9.71 ---------------------------------------- 25.61/9.71 25.61/9.71 (15) Narrow (SOUND) 25.61/9.71 Haskell To QDPs 25.61/9.71 25.61/9.71 digraph dp_graph { 25.61/9.71 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.listToFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 25.61/9.71 3[label="FiniteMap.listToFM xuu3",fontsize=16,color="black",shape="triangle"];3 -> 4[label="",style="solid", color="black", weight=3]; 25.61/9.71 4[label="FiniteMap.addListToFM FiniteMap.emptyFM xuu3",fontsize=16,color="black",shape="box"];4 -> 5[label="",style="solid", color="black", weight=3]; 25.61/9.71 5[label="FiniteMap.addListToFM_C FiniteMap.addListToFM0 FiniteMap.emptyFM xuu3",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 25.61/9.71 6 -> 20[label="",style="dashed", color="red", weight=0]; 25.61/9.71 6[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) FiniteMap.emptyFM xuu3",fontsize=16,color="magenta"];6 -> 21[label="",style="dashed", color="magenta", weight=3]; 25.61/9.71 6 -> 22[label="",style="dashed", color="magenta", weight=3]; 25.61/9.71 21[label="xuu3",fontsize=16,color="green",shape="box"];22[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];22 -> 27[label="",style="solid", color="black", weight=3]; 25.61/9.71 20[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 xuu311",fontsize=16,color="burlywood",shape="triangle"];3798[label="xuu311/xuu3110 : xuu3111",fontsize=10,color="white",style="solid",shape="box"];20 -> 3798[label="",style="solid", color="burlywood", weight=9]; 25.61/9.71 3798 -> 28[label="",style="solid", color="burlywood", weight=3]; 25.61/9.71 3799[label="xuu311/[]",fontsize=10,color="white",style="solid",shape="box"];20 -> 3799[label="",style="solid", color="burlywood", weight=9]; 25.61/9.71 3799 -> 29[label="",style="solid", color="burlywood", weight=3]; 25.61/9.71 27[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];28[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 (xuu3110 : xuu3111)",fontsize=16,color="black",shape="box"];28 -> 30[label="",style="solid", color="black", weight=3]; 25.61/9.71 29[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 []",fontsize=16,color="black",shape="box"];29 -> 31[label="",style="solid", color="black", weight=3]; 25.61/9.71 30 -> 20[label="",style="dashed", color="red", weight=0]; 25.61/9.71 30[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 xuu3110) xuu3111",fontsize=16,color="magenta"];30 -> 32[label="",style="dashed", color="magenta", weight=3]; 25.61/9.71 30 -> 33[label="",style="dashed", color="magenta", weight=3]; 25.61/9.71 31[label="xuu6",fontsize=16,color="green",shape="box"];32[label="xuu3111",fontsize=16,color="green",shape="box"];33[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 xuu3110",fontsize=16,color="burlywood",shape="box"];3800[label="xuu3110/(xuu31100,xuu31101)",fontsize=10,color="white",style="solid",shape="box"];33 -> 3800[label="",style="solid", color="burlywood", weight=9]; 25.61/9.71 3800 -> 34[label="",style="solid", color="burlywood", weight=3]; 25.61/9.71 34[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 (xuu31100,xuu31101)",fontsize=16,color="black",shape="box"];34 -> 35[label="",style="solid", color="black", weight=3]; 25.61/9.71 35[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu6 xuu31100 xuu31101",fontsize=16,color="burlywood",shape="triangle"];3801[label="xuu6/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];35 -> 3801[label="",style="solid", color="burlywood", weight=9]; 25.61/9.71 3801 -> 36[label="",style="solid", color="burlywood", weight=3]; 25.61/9.71 3802[label="xuu6/FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64",fontsize=10,color="white",style="solid",shape="box"];35 -> 3802[label="",style="solid", color="burlywood", weight=9]; 25.61/9.71 3802 -> 37[label="",style="solid", color="burlywood", weight=3]; 25.61/9.71 36[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];36 -> 38[label="",style="solid", color="black", weight=3]; 25.61/9.71 37[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 (FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64) xuu31100 xuu31101",fontsize=16,color="black",shape="box"];37 -> 39[label="",style="solid", color="black", weight=3]; 25.61/9.71 38[label="FiniteMap.addToFM_C4 FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];38 -> 40[label="",style="solid", color="black", weight=3]; 25.61/9.71 39[label="FiniteMap.addToFM_C3 FiniteMap.addListToFM0 (FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64) xuu31100 xuu31101",fontsize=16,color="black",shape="box"];39 -> 41[label="",style="solid", color="black", weight=3]; 25.61/9.72 40[label="FiniteMap.unitFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];40 -> 42[label="",style="solid", color="black", weight=3]; 25.61/9.72 41[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (xuu31100 < xuu60)",fontsize=16,color="black",shape="box"];41 -> 43[label="",style="solid", color="black", weight=3]; 25.61/9.72 42[label="FiniteMap.Branch xuu31100 xuu31101 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];42 -> 44[label="",style="dashed", color="green", weight=3]; 25.61/9.72 42 -> 45[label="",style="dashed", color="green", weight=3]; 25.61/9.72 43[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (compare xuu31100 xuu60 == LT)",fontsize=16,color="burlywood",shape="box"];3803[label="xuu31100/xuu311000 : xuu311001",fontsize=10,color="white",style="solid",shape="box"];43 -> 3803[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3803 -> 46[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3804[label="xuu31100/[]",fontsize=10,color="white",style="solid",shape="box"];43 -> 3804[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3804 -> 47[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 44 -> 22[label="",style="dashed", color="red", weight=0]; 25.61/9.72 44[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];45 -> 22[label="",style="dashed", color="red", weight=0]; 25.61/9.72 45[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];46[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 (compare (xuu311000 : xuu311001) xuu60 == LT)",fontsize=16,color="burlywood",shape="box"];3805[label="xuu60/xuu600 : xuu601",fontsize=10,color="white",style="solid",shape="box"];46 -> 3805[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3805 -> 48[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3806[label="xuu60/[]",fontsize=10,color="white",style="solid",shape="box"];46 -> 3806[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3806 -> 49[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 47[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 [] xuu31101 (compare [] xuu60 == LT)",fontsize=16,color="burlywood",shape="box"];3807[label="xuu60/xuu600 : xuu601",fontsize=10,color="white",style="solid",shape="box"];47 -> 3807[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3807 -> 50[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3808[label="xuu60/[]",fontsize=10,color="white",style="solid",shape="box"];47 -> 3808[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3808 -> 51[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 48[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu600 : xuu601) xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 (compare (xuu311000 : xuu311001) (xuu600 : xuu601) == LT)",fontsize=16,color="black",shape="box"];48 -> 52[label="",style="solid", color="black", weight=3]; 25.61/9.72 49[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 (compare (xuu311000 : xuu311001) [] == LT)",fontsize=16,color="black",shape="box"];49 -> 53[label="",style="solid", color="black", weight=3]; 25.61/9.72 50[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu600 : xuu601) xuu61 xuu62 xuu63 xuu64 [] xuu31101 (compare [] (xuu600 : xuu601) == LT)",fontsize=16,color="black",shape="box"];50 -> 54[label="",style="solid", color="black", weight=3]; 25.61/9.72 51[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 (compare [] [] == LT)",fontsize=16,color="black",shape="box"];51 -> 55[label="",style="solid", color="black", weight=3]; 25.61/9.72 52 -> 139[label="",style="dashed", color="red", weight=0]; 25.61/9.72 52[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu600 : xuu601) xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 (primCompAux xuu311000 xuu600 (compare xuu311001 xuu601) == LT)",fontsize=16,color="magenta"];52 -> 140[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 52 -> 141[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 52 -> 142[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 52 -> 143[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 52 -> 144[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 52 -> 145[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 52 -> 146[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 52 -> 147[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 52 -> 148[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 52 -> 149[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 53[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 (GT == LT)",fontsize=16,color="black",shape="box"];53 -> 57[label="",style="solid", color="black", weight=3]; 25.61/9.72 54[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu600 : xuu601) xuu61 xuu62 xuu63 xuu64 [] xuu31101 (LT == LT)",fontsize=16,color="black",shape="box"];54 -> 58[label="",style="solid", color="black", weight=3]; 25.61/9.72 55[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 (EQ == LT)",fontsize=16,color="black",shape="box"];55 -> 59[label="",style="solid", color="black", weight=3]; 25.61/9.72 140[label="primCompAux xuu311000 xuu600 (compare xuu311001 xuu601)",fontsize=16,color="black",shape="triangle"];140 -> 164[label="",style="solid", color="black", weight=3]; 25.61/9.72 141[label="xuu601",fontsize=16,color="green",shape="box"];142[label="xuu64",fontsize=16,color="green",shape="box"];143[label="xuu311001",fontsize=16,color="green",shape="box"];144[label="xuu63",fontsize=16,color="green",shape="box"];145[label="xuu31101",fontsize=16,color="green",shape="box"];146[label="xuu600",fontsize=16,color="green",shape="box"];147[label="xuu61",fontsize=16,color="green",shape="box"];148[label="xuu62",fontsize=16,color="green",shape="box"];149[label="xuu311000",fontsize=16,color="green",shape="box"];139[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (xuu32 == LT)",fontsize=16,color="burlywood",shape="triangle"];3809[label="xuu32/LT",fontsize=10,color="white",style="solid",shape="box"];139 -> 3809[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3809 -> 165[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3810[label="xuu32/EQ",fontsize=10,color="white",style="solid",shape="box"];139 -> 3810[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3810 -> 166[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3811[label="xuu32/GT",fontsize=10,color="white",style="solid",shape="box"];139 -> 3811[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3811 -> 167[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 57[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 False",fontsize=16,color="black",shape="box"];57 -> 71[label="",style="solid", color="black", weight=3]; 25.61/9.72 58[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu600 : xuu601) xuu61 xuu62 xuu63 xuu64 [] xuu31101 True",fontsize=16,color="black",shape="box"];58 -> 72[label="",style="solid", color="black", weight=3]; 25.61/9.72 59[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 False",fontsize=16,color="black",shape="box"];59 -> 73[label="",style="solid", color="black", weight=3]; 25.61/9.72 164 -> 177[label="",style="dashed", color="red", weight=0]; 25.61/9.72 164[label="primCompAux0 (compare xuu311001 xuu601) (compare xuu311000 xuu600)",fontsize=16,color="magenta"];164 -> 178[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 164 -> 179[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 164 -> 180[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 165[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (LT == LT)",fontsize=16,color="black",shape="box"];165 -> 181[label="",style="solid", color="black", weight=3]; 25.61/9.72 166[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (EQ == LT)",fontsize=16,color="black",shape="box"];166 -> 182[label="",style="solid", color="black", weight=3]; 25.61/9.72 167[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (GT == LT)",fontsize=16,color="black",shape="box"];167 -> 183[label="",style="solid", color="black", weight=3]; 25.61/9.72 71[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 (xuu311000 : xuu311001 > [])",fontsize=16,color="black",shape="box"];71 -> 91[label="",style="solid", color="black", weight=3]; 25.61/9.72 72 -> 92[label="",style="dashed", color="red", weight=0]; 25.61/9.72 72[label="FiniteMap.mkBalBranch (xuu600 : xuu601) xuu61 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu63 [] xuu31101) xuu64",fontsize=16,color="magenta"];72 -> 93[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 73[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 ([] > [])",fontsize=16,color="black",shape="box"];73 -> 94[label="",style="solid", color="black", weight=3]; 25.61/9.72 178[label="compare xuu311000 xuu600",fontsize=16,color="blue",shape="box"];3812[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3812[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3812 -> 184[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3813[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3813[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3813 -> 185[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3814[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3814[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3814 -> 186[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3815[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3815[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3815 -> 187[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3816[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3816[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3816 -> 188[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3817[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3817[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3817 -> 189[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3818[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3818[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3818 -> 190[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3819[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3819[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3819 -> 191[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3820[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3820[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3820 -> 192[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3821[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3821[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3821 -> 193[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3822[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3822[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3822 -> 194[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3823[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3823[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3823 -> 195[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3824[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3824[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3824 -> 196[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3825[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3825[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3825 -> 197[label="",style="solid", color="blue", weight=3]; 25.61/9.72 179[label="xuu311001",fontsize=16,color="green",shape="box"];180[label="xuu601",fontsize=16,color="green",shape="box"];177[label="primCompAux0 (compare xuu37 xuu38) xuu39",fontsize=16,color="burlywood",shape="triangle"];3826[label="xuu39/LT",fontsize=10,color="white",style="solid",shape="box"];177 -> 3826[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3826 -> 198[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3827[label="xuu39/EQ",fontsize=10,color="white",style="solid",shape="box"];177 -> 3827[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3827 -> 199[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3828[label="xuu39/GT",fontsize=10,color="white",style="solid",shape="box"];177 -> 3828[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3828 -> 200[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 181[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 True",fontsize=16,color="black",shape="box"];181 -> 208[label="",style="solid", color="black", weight=3]; 25.61/9.72 182[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 False",fontsize=16,color="black",shape="triangle"];182 -> 209[label="",style="solid", color="black", weight=3]; 25.61/9.72 183 -> 182[label="",style="dashed", color="red", weight=0]; 25.61/9.72 183[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 False",fontsize=16,color="magenta"];91 -> 113[label="",style="dashed", color="red", weight=0]; 25.61/9.72 91[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 (compare (xuu311000 : xuu311001) [] == GT)",fontsize=16,color="magenta"];91 -> 114[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 93 -> 35[label="",style="dashed", color="red", weight=0]; 25.61/9.72 93[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu63 [] xuu31101",fontsize=16,color="magenta"];93 -> 115[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 93 -> 116[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 92[label="FiniteMap.mkBalBranch (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="black",shape="triangle"];92 -> 117[label="",style="solid", color="black", weight=3]; 25.61/9.72 94 -> 118[label="",style="dashed", color="red", weight=0]; 25.61/9.72 94[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 (compare [] [] == GT)",fontsize=16,color="magenta"];94 -> 119[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 184[label="compare xuu311000 xuu600",fontsize=16,color="black",shape="triangle"];184 -> 210[label="",style="solid", color="black", weight=3]; 25.61/9.72 185[label="compare xuu311000 xuu600",fontsize=16,color="black",shape="triangle"];185 -> 211[label="",style="solid", color="black", weight=3]; 25.61/9.72 186[label="compare xuu311000 xuu600",fontsize=16,color="black",shape="triangle"];186 -> 212[label="",style="solid", color="black", weight=3]; 25.61/9.72 187[label="compare xuu311000 xuu600",fontsize=16,color="black",shape="triangle"];187 -> 213[label="",style="solid", color="black", weight=3]; 25.61/9.72 188[label="compare xuu311000 xuu600",fontsize=16,color="burlywood",shape="triangle"];3829[label="xuu311000/Integer xuu3110000",fontsize=10,color="white",style="solid",shape="box"];188 -> 3829[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3829 -> 214[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 189[label="compare xuu311000 xuu600",fontsize=16,color="black",shape="triangle"];189 -> 215[label="",style="solid", color="black", weight=3]; 25.61/9.72 190[label="compare xuu311000 xuu600",fontsize=16,color="black",shape="triangle"];190 -> 216[label="",style="solid", color="black", weight=3]; 25.61/9.72 191[label="compare xuu311000 xuu600",fontsize=16,color="burlywood",shape="triangle"];3830[label="xuu311000/xuu3110000 : xuu3110001",fontsize=10,color="white",style="solid",shape="box"];191 -> 3830[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3830 -> 217[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3831[label="xuu311000/[]",fontsize=10,color="white",style="solid",shape="box"];191 -> 3831[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3831 -> 218[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 192[label="compare xuu311000 xuu600",fontsize=16,color="black",shape="triangle"];192 -> 219[label="",style="solid", color="black", weight=3]; 25.61/9.72 193[label="compare xuu311000 xuu600",fontsize=16,color="black",shape="triangle"];193 -> 220[label="",style="solid", color="black", weight=3]; 25.61/9.72 194[label="compare xuu311000 xuu600",fontsize=16,color="burlywood",shape="triangle"];3832[label="xuu311000/xuu3110000 :% xuu3110001",fontsize=10,color="white",style="solid",shape="box"];194 -> 3832[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3832 -> 221[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 195[label="compare xuu311000 xuu600",fontsize=16,color="black",shape="triangle"];195 -> 222[label="",style="solid", color="black", weight=3]; 25.61/9.72 196[label="compare xuu311000 xuu600",fontsize=16,color="black",shape="triangle"];196 -> 223[label="",style="solid", color="black", weight=3]; 25.61/9.72 197[label="compare xuu311000 xuu600",fontsize=16,color="burlywood",shape="triangle"];3833[label="xuu311000/()",fontsize=10,color="white",style="solid",shape="box"];197 -> 3833[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3833 -> 224[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 198[label="primCompAux0 (compare xuu37 xuu38) LT",fontsize=16,color="black",shape="box"];198 -> 225[label="",style="solid", color="black", weight=3]; 25.61/9.72 199[label="primCompAux0 (compare xuu37 xuu38) EQ",fontsize=16,color="black",shape="box"];199 -> 226[label="",style="solid", color="black", weight=3]; 25.61/9.72 200[label="primCompAux0 (compare xuu37 xuu38) GT",fontsize=16,color="black",shape="box"];200 -> 227[label="",style="solid", color="black", weight=3]; 25.61/9.72 208 -> 92[label="",style="dashed", color="red", weight=0]; 25.61/9.72 208[label="FiniteMap.mkBalBranch (xuu19 : xuu20) xuu21 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu23 (xuu25 : xuu26) xuu27) xuu24",fontsize=16,color="magenta"];208 -> 232[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 208 -> 233[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 208 -> 234[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 208 -> 235[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 208 -> 236[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 209[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (xuu25 : xuu26 > xuu19 : xuu20)",fontsize=16,color="black",shape="box"];209 -> 237[label="",style="solid", color="black", weight=3]; 25.61/9.72 114[label="compare (xuu311000 : xuu311001) []",fontsize=16,color="black",shape="box"];114 -> 168[label="",style="solid", color="black", weight=3]; 25.61/9.72 113[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 (xuu30 == GT)",fontsize=16,color="burlywood",shape="triangle"];3834[label="xuu30/LT",fontsize=10,color="white",style="solid",shape="box"];113 -> 3834[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3834 -> 169[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3835[label="xuu30/EQ",fontsize=10,color="white",style="solid",shape="box"];113 -> 3835[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3835 -> 170[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3836[label="xuu30/GT",fontsize=10,color="white",style="solid",shape="box"];113 -> 3836[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3836 -> 171[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 115[label="[]",fontsize=16,color="green",shape="box"];116[label="xuu63",fontsize=16,color="green",shape="box"];117[label="FiniteMap.mkBalBranch6 (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="black",shape="box"];117 -> 172[label="",style="solid", color="black", weight=3]; 25.61/9.72 119[label="compare [] []",fontsize=16,color="black",shape="box"];119 -> 173[label="",style="solid", color="black", weight=3]; 25.61/9.72 118[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 (xuu31 == GT)",fontsize=16,color="burlywood",shape="triangle"];3837[label="xuu31/LT",fontsize=10,color="white",style="solid",shape="box"];118 -> 3837[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3837 -> 174[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3838[label="xuu31/EQ",fontsize=10,color="white",style="solid",shape="box"];118 -> 3838[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3838 -> 175[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3839[label="xuu31/GT",fontsize=10,color="white",style="solid",shape="box"];118 -> 3839[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3839 -> 176[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 210[label="compare3 xuu311000 xuu600",fontsize=16,color="black",shape="box"];210 -> 238[label="",style="solid", color="black", weight=3]; 25.61/9.72 211[label="primCmpInt xuu311000 xuu600",fontsize=16,color="burlywood",shape="triangle"];3840[label="xuu311000/Pos xuu3110000",fontsize=10,color="white",style="solid",shape="box"];211 -> 3840[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3840 -> 239[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3841[label="xuu311000/Neg xuu3110000",fontsize=10,color="white",style="solid",shape="box"];211 -> 3841[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3841 -> 240[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 212[label="compare3 xuu311000 xuu600",fontsize=16,color="black",shape="box"];212 -> 241[label="",style="solid", color="black", weight=3]; 25.61/9.72 213[label="primCmpDouble xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];3842[label="xuu311000/Double xuu3110000 xuu3110001",fontsize=10,color="white",style="solid",shape="box"];213 -> 3842[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3842 -> 242[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 214[label="compare (Integer xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];3843[label="xuu600/Integer xuu6000",fontsize=10,color="white",style="solid",shape="box"];214 -> 3843[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3843 -> 243[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 215[label="primCmpFloat xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];3844[label="xuu311000/Float xuu3110000 xuu3110001",fontsize=10,color="white",style="solid",shape="box"];215 -> 3844[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3844 -> 244[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 216[label="compare3 xuu311000 xuu600",fontsize=16,color="black",shape="box"];216 -> 245[label="",style="solid", color="black", weight=3]; 25.61/9.72 217[label="compare (xuu3110000 : xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];3845[label="xuu600/xuu6000 : xuu6001",fontsize=10,color="white",style="solid",shape="box"];217 -> 3845[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3845 -> 246[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3846[label="xuu600/[]",fontsize=10,color="white",style="solid",shape="box"];217 -> 3846[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3846 -> 247[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 218[label="compare [] xuu600",fontsize=16,color="burlywood",shape="box"];3847[label="xuu600/xuu6000 : xuu6001",fontsize=10,color="white",style="solid",shape="box"];218 -> 3847[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3847 -> 248[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3848[label="xuu600/[]",fontsize=10,color="white",style="solid",shape="box"];218 -> 3848[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3848 -> 249[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 219[label="compare3 xuu311000 xuu600",fontsize=16,color="black",shape="box"];219 -> 250[label="",style="solid", color="black", weight=3]; 25.61/9.72 220[label="compare3 xuu311000 xuu600",fontsize=16,color="black",shape="box"];220 -> 251[label="",style="solid", color="black", weight=3]; 25.61/9.72 221[label="compare (xuu3110000 :% xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];3849[label="xuu600/xuu6000 :% xuu6001",fontsize=10,color="white",style="solid",shape="box"];221 -> 3849[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3849 -> 252[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 222[label="compare3 xuu311000 xuu600",fontsize=16,color="black",shape="box"];222 -> 253[label="",style="solid", color="black", weight=3]; 25.61/9.72 223[label="primCmpChar xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];3850[label="xuu311000/Char xuu3110000",fontsize=10,color="white",style="solid",shape="box"];223 -> 3850[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3850 -> 254[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 224[label="compare () xuu600",fontsize=16,color="burlywood",shape="box"];3851[label="xuu600/()",fontsize=10,color="white",style="solid",shape="box"];224 -> 3851[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3851 -> 255[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 225[label="LT",fontsize=16,color="green",shape="box"];226[label="compare xuu37 xuu38",fontsize=16,color="blue",shape="box"];3852[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3852[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3852 -> 256[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3853[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3853[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3853 -> 257[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3854[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3854[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3854 -> 258[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3855[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3855[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3855 -> 259[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3856[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3856[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3856 -> 260[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3857[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3857[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3857 -> 261[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3858[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3858[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3858 -> 262[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3859[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3859[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3859 -> 263[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3860[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3860[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3860 -> 264[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3861[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3861[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3861 -> 265[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3862[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3862[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3862 -> 266[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3863[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3863[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3863 -> 267[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3864[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3864[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3864 -> 268[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3865[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3865[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3865 -> 269[label="",style="solid", color="blue", weight=3]; 25.61/9.72 227[label="GT",fontsize=16,color="green",shape="box"];232[label="xuu21",fontsize=16,color="green",shape="box"];233[label="xuu24",fontsize=16,color="green",shape="box"];234[label="xuu19",fontsize=16,color="green",shape="box"];235[label="xuu20",fontsize=16,color="green",shape="box"];236 -> 35[label="",style="dashed", color="red", weight=0]; 25.61/9.72 236[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu23 (xuu25 : xuu26) xuu27",fontsize=16,color="magenta"];236 -> 276[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 236 -> 277[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 236 -> 278[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 237 -> 279[label="",style="dashed", color="red", weight=0]; 25.61/9.72 237[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (compare (xuu25 : xuu26) (xuu19 : xuu20) == GT)",fontsize=16,color="magenta"];237 -> 280[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 168[label="GT",fontsize=16,color="green",shape="box"];169[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 (LT == GT)",fontsize=16,color="black",shape="box"];169 -> 201[label="",style="solid", color="black", weight=3]; 25.61/9.72 170[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 (EQ == GT)",fontsize=16,color="black",shape="box"];170 -> 202[label="",style="solid", color="black", weight=3]; 25.61/9.72 171[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 (GT == GT)",fontsize=16,color="black",shape="box"];171 -> 203[label="",style="solid", color="black", weight=3]; 25.61/9.72 172[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 (FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64 + FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64 < Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];172 -> 204[label="",style="solid", color="black", weight=3]; 25.61/9.72 173[label="EQ",fontsize=16,color="green",shape="box"];174[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 (LT == GT)",fontsize=16,color="black",shape="box"];174 -> 205[label="",style="solid", color="black", weight=3]; 25.61/9.72 175[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 (EQ == GT)",fontsize=16,color="black",shape="box"];175 -> 206[label="",style="solid", color="black", weight=3]; 25.61/9.72 176[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 (GT == GT)",fontsize=16,color="black",shape="box"];176 -> 207[label="",style="solid", color="black", weight=3]; 25.61/9.72 238[label="compare2 xuu311000 xuu600 (xuu311000 == xuu600)",fontsize=16,color="burlywood",shape="box"];3866[label="xuu311000/Left xuu3110000",fontsize=10,color="white",style="solid",shape="box"];238 -> 3866[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3866 -> 281[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3867[label="xuu311000/Right xuu3110000",fontsize=10,color="white",style="solid",shape="box"];238 -> 3867[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3867 -> 282[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 239[label="primCmpInt (Pos xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];3868[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];239 -> 3868[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3868 -> 283[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3869[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];239 -> 3869[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3869 -> 284[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 240[label="primCmpInt (Neg xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];3870[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];240 -> 3870[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3870 -> 285[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3871[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];240 -> 3871[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3871 -> 286[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 241[label="compare2 xuu311000 xuu600 (xuu311000 == xuu600)",fontsize=16,color="burlywood",shape="box"];3872[label="xuu311000/(xuu3110000,xuu3110001,xuu3110002)",fontsize=10,color="white",style="solid",shape="box"];241 -> 3872[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3872 -> 287[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 242[label="primCmpDouble (Double xuu3110000 xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];3873[label="xuu3110001/Pos xuu31100010",fontsize=10,color="white",style="solid",shape="box"];242 -> 3873[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3873 -> 288[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3874[label="xuu3110001/Neg xuu31100010",fontsize=10,color="white",style="solid",shape="box"];242 -> 3874[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3874 -> 289[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 243[label="compare (Integer xuu3110000) (Integer xuu6000)",fontsize=16,color="black",shape="box"];243 -> 290[label="",style="solid", color="black", weight=3]; 25.61/9.72 244[label="primCmpFloat (Float xuu3110000 xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];3875[label="xuu3110001/Pos xuu31100010",fontsize=10,color="white",style="solid",shape="box"];244 -> 3875[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3875 -> 291[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3876[label="xuu3110001/Neg xuu31100010",fontsize=10,color="white",style="solid",shape="box"];244 -> 3876[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3876 -> 292[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 245[label="compare2 xuu311000 xuu600 (xuu311000 == xuu600)",fontsize=16,color="burlywood",shape="box"];3877[label="xuu311000/LT",fontsize=10,color="white",style="solid",shape="box"];245 -> 3877[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3877 -> 293[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3878[label="xuu311000/EQ",fontsize=10,color="white",style="solid",shape="box"];245 -> 3878[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3878 -> 294[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3879[label="xuu311000/GT",fontsize=10,color="white",style="solid",shape="box"];245 -> 3879[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3879 -> 295[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 246[label="compare (xuu3110000 : xuu3110001) (xuu6000 : xuu6001)",fontsize=16,color="black",shape="box"];246 -> 296[label="",style="solid", color="black", weight=3]; 25.61/9.72 247[label="compare (xuu3110000 : xuu3110001) []",fontsize=16,color="black",shape="box"];247 -> 297[label="",style="solid", color="black", weight=3]; 25.61/9.72 248[label="compare [] (xuu6000 : xuu6001)",fontsize=16,color="black",shape="box"];248 -> 298[label="",style="solid", color="black", weight=3]; 25.61/9.72 249[label="compare [] []",fontsize=16,color="black",shape="box"];249 -> 299[label="",style="solid", color="black", weight=3]; 25.61/9.72 250[label="compare2 xuu311000 xuu600 (xuu311000 == xuu600)",fontsize=16,color="burlywood",shape="box"];3880[label="xuu311000/Nothing",fontsize=10,color="white",style="solid",shape="box"];250 -> 3880[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3880 -> 300[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3881[label="xuu311000/Just xuu3110000",fontsize=10,color="white",style="solid",shape="box"];250 -> 3881[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3881 -> 301[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 251[label="compare2 xuu311000 xuu600 (xuu311000 == xuu600)",fontsize=16,color="burlywood",shape="box"];3882[label="xuu311000/(xuu3110000,xuu3110001)",fontsize=10,color="white",style="solid",shape="box"];251 -> 3882[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3882 -> 302[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 252[label="compare (xuu3110000 :% xuu3110001) (xuu6000 :% xuu6001)",fontsize=16,color="black",shape="box"];252 -> 303[label="",style="solid", color="black", weight=3]; 25.61/9.72 253[label="compare2 xuu311000 xuu600 (xuu311000 == xuu600)",fontsize=16,color="burlywood",shape="box"];3883[label="xuu311000/False",fontsize=10,color="white",style="solid",shape="box"];253 -> 3883[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3883 -> 304[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3884[label="xuu311000/True",fontsize=10,color="white",style="solid",shape="box"];253 -> 3884[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3884 -> 305[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 254[label="primCmpChar (Char xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];3885[label="xuu600/Char xuu6000",fontsize=10,color="white",style="solid",shape="box"];254 -> 3885[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3885 -> 306[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 255[label="compare () ()",fontsize=16,color="black",shape="box"];255 -> 307[label="",style="solid", color="black", weight=3]; 25.61/9.72 256 -> 184[label="",style="dashed", color="red", weight=0]; 25.61/9.72 256[label="compare xuu37 xuu38",fontsize=16,color="magenta"];256 -> 308[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 256 -> 309[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 257 -> 185[label="",style="dashed", color="red", weight=0]; 25.61/9.72 257[label="compare xuu37 xuu38",fontsize=16,color="magenta"];257 -> 310[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 257 -> 311[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 258 -> 186[label="",style="dashed", color="red", weight=0]; 25.61/9.72 258[label="compare xuu37 xuu38",fontsize=16,color="magenta"];258 -> 312[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 258 -> 313[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 259 -> 187[label="",style="dashed", color="red", weight=0]; 25.61/9.72 259[label="compare xuu37 xuu38",fontsize=16,color="magenta"];259 -> 314[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 259 -> 315[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 260 -> 188[label="",style="dashed", color="red", weight=0]; 25.61/9.72 260[label="compare xuu37 xuu38",fontsize=16,color="magenta"];260 -> 316[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 260 -> 317[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 261 -> 189[label="",style="dashed", color="red", weight=0]; 25.61/9.72 261[label="compare xuu37 xuu38",fontsize=16,color="magenta"];261 -> 318[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 261 -> 319[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 262 -> 190[label="",style="dashed", color="red", weight=0]; 25.61/9.72 262[label="compare xuu37 xuu38",fontsize=16,color="magenta"];262 -> 320[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 262 -> 321[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 263 -> 191[label="",style="dashed", color="red", weight=0]; 25.61/9.72 263[label="compare xuu37 xuu38",fontsize=16,color="magenta"];263 -> 322[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 263 -> 323[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 264 -> 192[label="",style="dashed", color="red", weight=0]; 25.61/9.72 264[label="compare xuu37 xuu38",fontsize=16,color="magenta"];264 -> 324[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 264 -> 325[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 265 -> 193[label="",style="dashed", color="red", weight=0]; 25.61/9.72 265[label="compare xuu37 xuu38",fontsize=16,color="magenta"];265 -> 326[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 265 -> 327[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 266 -> 194[label="",style="dashed", color="red", weight=0]; 25.61/9.72 266[label="compare xuu37 xuu38",fontsize=16,color="magenta"];266 -> 328[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 266 -> 329[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 267 -> 195[label="",style="dashed", color="red", weight=0]; 25.61/9.72 267[label="compare xuu37 xuu38",fontsize=16,color="magenta"];267 -> 330[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 267 -> 331[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 268 -> 196[label="",style="dashed", color="red", weight=0]; 25.61/9.72 268[label="compare xuu37 xuu38",fontsize=16,color="magenta"];268 -> 332[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 268 -> 333[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 269 -> 197[label="",style="dashed", color="red", weight=0]; 25.61/9.72 269[label="compare xuu37 xuu38",fontsize=16,color="magenta"];269 -> 334[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 269 -> 335[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 276[label="xuu25 : xuu26",fontsize=16,color="green",shape="box"];277[label="xuu27",fontsize=16,color="green",shape="box"];278[label="xuu23",fontsize=16,color="green",shape="box"];280 -> 191[label="",style="dashed", color="red", weight=0]; 25.61/9.72 280[label="compare (xuu25 : xuu26) (xuu19 : xuu20)",fontsize=16,color="magenta"];280 -> 336[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 280 -> 337[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 279[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (xuu42 == GT)",fontsize=16,color="burlywood",shape="triangle"];3886[label="xuu42/LT",fontsize=10,color="white",style="solid",shape="box"];279 -> 3886[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3886 -> 338[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3887[label="xuu42/EQ",fontsize=10,color="white",style="solid",shape="box"];279 -> 3887[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3887 -> 339[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3888[label="xuu42/GT",fontsize=10,color="white",style="solid",shape="box"];279 -> 3888[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3888 -> 340[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 201[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 False",fontsize=16,color="black",shape="triangle"];201 -> 228[label="",style="solid", color="black", weight=3]; 25.61/9.72 202 -> 201[label="",style="dashed", color="red", weight=0]; 25.61/9.72 202[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 False",fontsize=16,color="magenta"];203[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 True",fontsize=16,color="black",shape="box"];203 -> 229[label="",style="solid", color="black", weight=3]; 25.61/9.72 204 -> 230[label="",style="dashed", color="red", weight=0]; 25.61/9.72 204[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 (compare (FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64 + FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64) (Pos (Succ (Succ Zero))) == LT)",fontsize=16,color="magenta"];204 -> 231[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 205[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 False",fontsize=16,color="black",shape="triangle"];205 -> 270[label="",style="solid", color="black", weight=3]; 25.61/9.72 206 -> 205[label="",style="dashed", color="red", weight=0]; 25.61/9.72 206[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 False",fontsize=16,color="magenta"];207[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 True",fontsize=16,color="black",shape="box"];207 -> 271[label="",style="solid", color="black", weight=3]; 25.61/9.72 281[label="compare2 (Left xuu3110000) xuu600 (Left xuu3110000 == xuu600)",fontsize=16,color="burlywood",shape="box"];3889[label="xuu600/Left xuu6000",fontsize=10,color="white",style="solid",shape="box"];281 -> 3889[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3889 -> 353[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3890[label="xuu600/Right xuu6000",fontsize=10,color="white",style="solid",shape="box"];281 -> 3890[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3890 -> 354[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 282[label="compare2 (Right xuu3110000) xuu600 (Right xuu3110000 == xuu600)",fontsize=16,color="burlywood",shape="box"];3891[label="xuu600/Left xuu6000",fontsize=10,color="white",style="solid",shape="box"];282 -> 3891[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3891 -> 355[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3892[label="xuu600/Right xuu6000",fontsize=10,color="white",style="solid",shape="box"];282 -> 3892[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3892 -> 356[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 283[label="primCmpInt (Pos (Succ xuu31100000)) xuu600",fontsize=16,color="burlywood",shape="box"];3893[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];283 -> 3893[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3893 -> 357[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3894[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];283 -> 3894[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3894 -> 358[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 284[label="primCmpInt (Pos Zero) xuu600",fontsize=16,color="burlywood",shape="box"];3895[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];284 -> 3895[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3895 -> 359[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3896[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];284 -> 3896[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3896 -> 360[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 285[label="primCmpInt (Neg (Succ xuu31100000)) xuu600",fontsize=16,color="burlywood",shape="box"];3897[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];285 -> 3897[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3897 -> 361[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3898[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];285 -> 3898[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3898 -> 362[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 286[label="primCmpInt (Neg Zero) xuu600",fontsize=16,color="burlywood",shape="box"];3899[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];286 -> 3899[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3899 -> 363[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3900[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];286 -> 3900[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3900 -> 364[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 287[label="compare2 (xuu3110000,xuu3110001,xuu3110002) xuu600 ((xuu3110000,xuu3110001,xuu3110002) == xuu600)",fontsize=16,color="burlywood",shape="box"];3901[label="xuu600/(xuu6000,xuu6001,xuu6002)",fontsize=10,color="white",style="solid",shape="box"];287 -> 3901[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3901 -> 365[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 288[label="primCmpDouble (Double xuu3110000 (Pos xuu31100010)) xuu600",fontsize=16,color="burlywood",shape="box"];3902[label="xuu600/Double xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];288 -> 3902[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3902 -> 366[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 289[label="primCmpDouble (Double xuu3110000 (Neg xuu31100010)) xuu600",fontsize=16,color="burlywood",shape="box"];3903[label="xuu600/Double xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];289 -> 3903[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3903 -> 367[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 290 -> 211[label="",style="dashed", color="red", weight=0]; 25.61/9.72 290[label="primCmpInt xuu3110000 xuu6000",fontsize=16,color="magenta"];290 -> 368[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 290 -> 369[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 291[label="primCmpFloat (Float xuu3110000 (Pos xuu31100010)) xuu600",fontsize=16,color="burlywood",shape="box"];3904[label="xuu600/Float xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];291 -> 3904[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3904 -> 370[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 292[label="primCmpFloat (Float xuu3110000 (Neg xuu31100010)) xuu600",fontsize=16,color="burlywood",shape="box"];3905[label="xuu600/Float xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];292 -> 3905[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3905 -> 371[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 293[label="compare2 LT xuu600 (LT == xuu600)",fontsize=16,color="burlywood",shape="box"];3906[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];293 -> 3906[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3906 -> 372[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3907[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];293 -> 3907[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3907 -> 373[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3908[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];293 -> 3908[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3908 -> 374[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 294[label="compare2 EQ xuu600 (EQ == xuu600)",fontsize=16,color="burlywood",shape="box"];3909[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];294 -> 3909[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3909 -> 375[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3910[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];294 -> 3910[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3910 -> 376[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3911[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];294 -> 3911[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3911 -> 377[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 295[label="compare2 GT xuu600 (GT == xuu600)",fontsize=16,color="burlywood",shape="box"];3912[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];295 -> 3912[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3912 -> 378[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3913[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];295 -> 3913[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3913 -> 379[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3914[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];295 -> 3914[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3914 -> 380[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 296 -> 140[label="",style="dashed", color="red", weight=0]; 25.61/9.72 296[label="primCompAux xuu3110000 xuu6000 (compare xuu3110001 xuu6001)",fontsize=16,color="magenta"];296 -> 381[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 296 -> 382[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 296 -> 383[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 296 -> 384[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 297[label="GT",fontsize=16,color="green",shape="box"];298[label="LT",fontsize=16,color="green",shape="box"];299[label="EQ",fontsize=16,color="green",shape="box"];300[label="compare2 Nothing xuu600 (Nothing == xuu600)",fontsize=16,color="burlywood",shape="box"];3915[label="xuu600/Nothing",fontsize=10,color="white",style="solid",shape="box"];300 -> 3915[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3915 -> 385[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3916[label="xuu600/Just xuu6000",fontsize=10,color="white",style="solid",shape="box"];300 -> 3916[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3916 -> 386[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 301[label="compare2 (Just xuu3110000) xuu600 (Just xuu3110000 == xuu600)",fontsize=16,color="burlywood",shape="box"];3917[label="xuu600/Nothing",fontsize=10,color="white",style="solid",shape="box"];301 -> 3917[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3917 -> 387[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3918[label="xuu600/Just xuu6000",fontsize=10,color="white",style="solid",shape="box"];301 -> 3918[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3918 -> 388[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 302[label="compare2 (xuu3110000,xuu3110001) xuu600 ((xuu3110000,xuu3110001) == xuu600)",fontsize=16,color="burlywood",shape="box"];3919[label="xuu600/(xuu6000,xuu6001)",fontsize=10,color="white",style="solid",shape="box"];302 -> 3919[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3919 -> 389[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 303[label="compare (xuu3110000 * xuu6001) (xuu6000 * xuu3110001)",fontsize=16,color="blue",shape="box"];3920[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];303 -> 3920[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3920 -> 390[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3921[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];303 -> 3921[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3921 -> 391[label="",style="solid", color="blue", weight=3]; 25.61/9.72 304[label="compare2 False xuu600 (False == xuu600)",fontsize=16,color="burlywood",shape="box"];3922[label="xuu600/False",fontsize=10,color="white",style="solid",shape="box"];304 -> 3922[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3922 -> 392[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3923[label="xuu600/True",fontsize=10,color="white",style="solid",shape="box"];304 -> 3923[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3923 -> 393[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 305[label="compare2 True xuu600 (True == xuu600)",fontsize=16,color="burlywood",shape="box"];3924[label="xuu600/False",fontsize=10,color="white",style="solid",shape="box"];305 -> 3924[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3924 -> 394[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3925[label="xuu600/True",fontsize=10,color="white",style="solid",shape="box"];305 -> 3925[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3925 -> 395[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 306[label="primCmpChar (Char xuu3110000) (Char xuu6000)",fontsize=16,color="black",shape="box"];306 -> 396[label="",style="solid", color="black", weight=3]; 25.61/9.72 307[label="EQ",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="xuu38",fontsize=16,color="green",shape="box"];321[label="xuu37",fontsize=16,color="green",shape="box"];322[label="xuu38",fontsize=16,color="green",shape="box"];323[label="xuu37",fontsize=16,color="green",shape="box"];324[label="xuu38",fontsize=16,color="green",shape="box"];325[label="xuu37",fontsize=16,color="green",shape="box"];326[label="xuu38",fontsize=16,color="green",shape="box"];327[label="xuu37",fontsize=16,color="green",shape="box"];328[label="xuu38",fontsize=16,color="green",shape="box"];329[label="xuu37",fontsize=16,color="green",shape="box"];330[label="xuu38",fontsize=16,color="green",shape="box"];331[label="xuu37",fontsize=16,color="green",shape="box"];332[label="xuu38",fontsize=16,color="green",shape="box"];333[label="xuu37",fontsize=16,color="green",shape="box"];334[label="xuu38",fontsize=16,color="green",shape="box"];335[label="xuu37",fontsize=16,color="green",shape="box"];336[label="xuu19 : xuu20",fontsize=16,color="green",shape="box"];337[label="xuu25 : xuu26",fontsize=16,color="green",shape="box"];338[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (LT == GT)",fontsize=16,color="black",shape="box"];338 -> 397[label="",style="solid", color="black", weight=3]; 25.61/9.72 339[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (EQ == GT)",fontsize=16,color="black",shape="box"];339 -> 398[label="",style="solid", color="black", weight=3]; 25.61/9.72 340[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (GT == GT)",fontsize=16,color="black",shape="box"];340 -> 399[label="",style="solid", color="black", weight=3]; 25.61/9.72 228[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 otherwise",fontsize=16,color="black",shape="box"];228 -> 272[label="",style="solid", color="black", weight=3]; 25.61/9.72 229 -> 273[label="",style="dashed", color="red", weight=0]; 25.61/9.72 229[label="FiniteMap.mkBalBranch [] xuu61 xuu63 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 (xuu311000 : xuu311001) xuu31101)",fontsize=16,color="magenta"];229 -> 274[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 231 -> 185[label="",style="dashed", color="red", weight=0]; 25.61/9.72 231[label="compare (FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64 + FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];231 -> 341[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 231 -> 342[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 230[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu40 == LT)",fontsize=16,color="burlywood",shape="triangle"];3926[label="xuu40/LT",fontsize=10,color="white",style="solid",shape="box"];230 -> 3926[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3926 -> 343[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3927[label="xuu40/EQ",fontsize=10,color="white",style="solid",shape="box"];230 -> 3927[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3927 -> 344[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3928[label="xuu40/GT",fontsize=10,color="white",style="solid",shape="box"];230 -> 3928[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3928 -> 345[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 270[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 otherwise",fontsize=16,color="black",shape="box"];270 -> 346[label="",style="solid", color="black", weight=3]; 25.61/9.72 271 -> 273[label="",style="dashed", color="red", weight=0]; 25.61/9.72 271[label="FiniteMap.mkBalBranch [] xuu61 xuu63 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 [] xuu31101)",fontsize=16,color="magenta"];271 -> 275[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 353[label="compare2 (Left xuu3110000) (Left xuu6000) (Left xuu3110000 == Left xuu6000)",fontsize=16,color="black",shape="box"];353 -> 407[label="",style="solid", color="black", weight=3]; 25.61/9.72 354[label="compare2 (Left xuu3110000) (Right xuu6000) (Left xuu3110000 == Right xuu6000)",fontsize=16,color="black",shape="box"];354 -> 408[label="",style="solid", color="black", weight=3]; 25.61/9.72 355[label="compare2 (Right xuu3110000) (Left xuu6000) (Right xuu3110000 == Left xuu6000)",fontsize=16,color="black",shape="box"];355 -> 409[label="",style="solid", color="black", weight=3]; 25.61/9.72 356[label="compare2 (Right xuu3110000) (Right xuu6000) (Right xuu3110000 == Right xuu6000)",fontsize=16,color="black",shape="box"];356 -> 410[label="",style="solid", color="black", weight=3]; 25.61/9.72 357[label="primCmpInt (Pos (Succ xuu31100000)) (Pos xuu6000)",fontsize=16,color="black",shape="box"];357 -> 411[label="",style="solid", color="black", weight=3]; 25.61/9.72 358[label="primCmpInt (Pos (Succ xuu31100000)) (Neg xuu6000)",fontsize=16,color="black",shape="box"];358 -> 412[label="",style="solid", color="black", weight=3]; 25.61/9.72 359[label="primCmpInt (Pos Zero) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];3929[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];359 -> 3929[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3929 -> 413[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3930[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];359 -> 3930[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3930 -> 414[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 360[label="primCmpInt (Pos Zero) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];3931[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];360 -> 3931[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3931 -> 415[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3932[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];360 -> 3932[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3932 -> 416[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 361[label="primCmpInt (Neg (Succ xuu31100000)) (Pos xuu6000)",fontsize=16,color="black",shape="box"];361 -> 417[label="",style="solid", color="black", weight=3]; 25.61/9.72 362[label="primCmpInt (Neg (Succ xuu31100000)) (Neg xuu6000)",fontsize=16,color="black",shape="box"];362 -> 418[label="",style="solid", color="black", weight=3]; 25.61/9.72 363[label="primCmpInt (Neg Zero) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];3933[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];363 -> 3933[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3933 -> 419[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3934[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];363 -> 3934[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3934 -> 420[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 364[label="primCmpInt (Neg Zero) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];3935[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];364 -> 3935[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3935 -> 421[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3936[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];364 -> 3936[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3936 -> 422[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 365[label="compare2 (xuu3110000,xuu3110001,xuu3110002) (xuu6000,xuu6001,xuu6002) ((xuu3110000,xuu3110001,xuu3110002) == (xuu6000,xuu6001,xuu6002))",fontsize=16,color="black",shape="box"];365 -> 423[label="",style="solid", color="black", weight=3]; 25.61/9.72 366[label="primCmpDouble (Double xuu3110000 (Pos xuu31100010)) (Double xuu6000 xuu6001)",fontsize=16,color="burlywood",shape="box"];3937[label="xuu6001/Pos xuu60010",fontsize=10,color="white",style="solid",shape="box"];366 -> 3937[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3937 -> 424[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3938[label="xuu6001/Neg xuu60010",fontsize=10,color="white",style="solid",shape="box"];366 -> 3938[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3938 -> 425[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 367[label="primCmpDouble (Double xuu3110000 (Neg xuu31100010)) (Double xuu6000 xuu6001)",fontsize=16,color="burlywood",shape="box"];3939[label="xuu6001/Pos xuu60010",fontsize=10,color="white",style="solid",shape="box"];367 -> 3939[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3939 -> 426[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3940[label="xuu6001/Neg xuu60010",fontsize=10,color="white",style="solid",shape="box"];367 -> 3940[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3940 -> 427[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 368[label="xuu6000",fontsize=16,color="green",shape="box"];369[label="xuu3110000",fontsize=16,color="green",shape="box"];370[label="primCmpFloat (Float xuu3110000 (Pos xuu31100010)) (Float xuu6000 xuu6001)",fontsize=16,color="burlywood",shape="box"];3941[label="xuu6001/Pos xuu60010",fontsize=10,color="white",style="solid",shape="box"];370 -> 3941[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3941 -> 428[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3942[label="xuu6001/Neg xuu60010",fontsize=10,color="white",style="solid",shape="box"];370 -> 3942[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3942 -> 429[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 371[label="primCmpFloat (Float xuu3110000 (Neg xuu31100010)) (Float xuu6000 xuu6001)",fontsize=16,color="burlywood",shape="box"];3943[label="xuu6001/Pos xuu60010",fontsize=10,color="white",style="solid",shape="box"];371 -> 3943[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3943 -> 430[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3944[label="xuu6001/Neg xuu60010",fontsize=10,color="white",style="solid",shape="box"];371 -> 3944[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3944 -> 431[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 372[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];372 -> 432[label="",style="solid", color="black", weight=3]; 25.61/9.72 373[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];373 -> 433[label="",style="solid", color="black", weight=3]; 25.61/9.72 374[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];374 -> 434[label="",style="solid", color="black", weight=3]; 25.61/9.72 375[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];375 -> 435[label="",style="solid", color="black", weight=3]; 25.61/9.72 376[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];376 -> 436[label="",style="solid", color="black", weight=3]; 25.61/9.72 377[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];377 -> 437[label="",style="solid", color="black", weight=3]; 25.61/9.72 378[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];378 -> 438[label="",style="solid", color="black", weight=3]; 25.61/9.72 379[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];379 -> 439[label="",style="solid", color="black", weight=3]; 25.61/9.72 380[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];380 -> 440[label="",style="solid", color="black", weight=3]; 25.61/9.72 381[label="xuu6000",fontsize=16,color="green",shape="box"];382[label="xuu6001",fontsize=16,color="green",shape="box"];383[label="xuu3110000",fontsize=16,color="green",shape="box"];384[label="xuu3110001",fontsize=16,color="green",shape="box"];385[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];385 -> 441[label="",style="solid", color="black", weight=3]; 25.61/9.72 386[label="compare2 Nothing (Just xuu6000) (Nothing == Just xuu6000)",fontsize=16,color="black",shape="box"];386 -> 442[label="",style="solid", color="black", weight=3]; 25.61/9.72 387[label="compare2 (Just xuu3110000) Nothing (Just xuu3110000 == Nothing)",fontsize=16,color="black",shape="box"];387 -> 443[label="",style="solid", color="black", weight=3]; 25.61/9.72 388[label="compare2 (Just xuu3110000) (Just xuu6000) (Just xuu3110000 == Just xuu6000)",fontsize=16,color="black",shape="box"];388 -> 444[label="",style="solid", color="black", weight=3]; 25.61/9.72 389[label="compare2 (xuu3110000,xuu3110001) (xuu6000,xuu6001) ((xuu3110000,xuu3110001) == (xuu6000,xuu6001))",fontsize=16,color="black",shape="box"];389 -> 445[label="",style="solid", color="black", weight=3]; 25.61/9.72 390 -> 185[label="",style="dashed", color="red", weight=0]; 25.61/9.72 390[label="compare (xuu3110000 * xuu6001) (xuu6000 * xuu3110001)",fontsize=16,color="magenta"];390 -> 446[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 390 -> 447[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 391 -> 188[label="",style="dashed", color="red", weight=0]; 25.61/9.72 391[label="compare (xuu3110000 * xuu6001) (xuu6000 * xuu3110001)",fontsize=16,color="magenta"];391 -> 448[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 391 -> 449[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 392[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];392 -> 450[label="",style="solid", color="black", weight=3]; 25.61/9.72 393[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];393 -> 451[label="",style="solid", color="black", weight=3]; 25.61/9.72 394[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];394 -> 452[label="",style="solid", color="black", weight=3]; 25.61/9.72 395[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];395 -> 453[label="",style="solid", color="black", weight=3]; 25.61/9.72 396[label="primCmpNat xuu3110000 xuu6000",fontsize=16,color="burlywood",shape="triangle"];3945[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];396 -> 3945[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3945 -> 454[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3946[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];396 -> 3946[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3946 -> 455[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 397[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 False",fontsize=16,color="black",shape="triangle"];397 -> 456[label="",style="solid", color="black", weight=3]; 25.61/9.72 398 -> 397[label="",style="dashed", color="red", weight=0]; 25.61/9.72 398[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 False",fontsize=16,color="magenta"];399[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 True",fontsize=16,color="black",shape="box"];399 -> 457[label="",style="solid", color="black", weight=3]; 25.61/9.72 272[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 True",fontsize=16,color="black",shape="box"];272 -> 347[label="",style="solid", color="black", weight=3]; 25.61/9.72 274 -> 35[label="",style="dashed", color="red", weight=0]; 25.61/9.72 274[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 (xuu311000 : xuu311001) xuu31101",fontsize=16,color="magenta"];274 -> 348[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 274 -> 349[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 273[label="FiniteMap.mkBalBranch [] xuu61 xuu63 xuu41",fontsize=16,color="black",shape="triangle"];273 -> 350[label="",style="solid", color="black", weight=3]; 25.61/9.72 341[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];342[label="FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64 + FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="black",shape="box"];342 -> 400[label="",style="solid", color="black", weight=3]; 25.61/9.72 343[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 (LT == LT)",fontsize=16,color="black",shape="box"];343 -> 401[label="",style="solid", color="black", weight=3]; 25.61/9.72 344[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 (EQ == LT)",fontsize=16,color="black",shape="box"];344 -> 402[label="",style="solid", color="black", weight=3]; 25.61/9.72 345[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 (GT == LT)",fontsize=16,color="black",shape="box"];345 -> 403[label="",style="solid", color="black", weight=3]; 25.61/9.72 346[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 True",fontsize=16,color="black",shape="box"];346 -> 404[label="",style="solid", color="black", weight=3]; 25.61/9.72 275 -> 35[label="",style="dashed", color="red", weight=0]; 25.61/9.72 275[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 [] xuu31101",fontsize=16,color="magenta"];275 -> 351[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 275 -> 352[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 407 -> 464[label="",style="dashed", color="red", weight=0]; 25.61/9.72 407[label="compare2 (Left xuu3110000) (Left xuu6000) (xuu3110000 == xuu6000)",fontsize=16,color="magenta"];407 -> 465[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 407 -> 466[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 407 -> 467[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 408[label="compare2 (Left xuu3110000) (Right xuu6000) False",fontsize=16,color="black",shape="box"];408 -> 468[label="",style="solid", color="black", weight=3]; 25.61/9.72 409[label="compare2 (Right xuu3110000) (Left xuu6000) False",fontsize=16,color="black",shape="box"];409 -> 469[label="",style="solid", color="black", weight=3]; 25.61/9.72 410 -> 470[label="",style="dashed", color="red", weight=0]; 25.61/9.72 410[label="compare2 (Right xuu3110000) (Right xuu6000) (xuu3110000 == xuu6000)",fontsize=16,color="magenta"];410 -> 471[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 410 -> 472[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 410 -> 473[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 411 -> 396[label="",style="dashed", color="red", weight=0]; 25.61/9.72 411[label="primCmpNat (Succ xuu31100000) xuu6000",fontsize=16,color="magenta"];411 -> 474[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 411 -> 475[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 412[label="GT",fontsize=16,color="green",shape="box"];413[label="primCmpInt (Pos Zero) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];413 -> 476[label="",style="solid", color="black", weight=3]; 25.61/9.72 414[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];414 -> 477[label="",style="solid", color="black", weight=3]; 25.61/9.72 415[label="primCmpInt (Pos Zero) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];415 -> 478[label="",style="solid", color="black", weight=3]; 25.61/9.72 416[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];416 -> 479[label="",style="solid", color="black", weight=3]; 25.61/9.72 417[label="LT",fontsize=16,color="green",shape="box"];418 -> 396[label="",style="dashed", color="red", weight=0]; 25.61/9.72 418[label="primCmpNat xuu6000 (Succ xuu31100000)",fontsize=16,color="magenta"];418 -> 480[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 418 -> 481[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 419[label="primCmpInt (Neg Zero) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];419 -> 482[label="",style="solid", color="black", weight=3]; 25.61/9.72 420[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];420 -> 483[label="",style="solid", color="black", weight=3]; 25.61/9.72 421[label="primCmpInt (Neg Zero) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];421 -> 484[label="",style="solid", color="black", weight=3]; 25.61/9.72 422[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];422 -> 485[label="",style="solid", color="black", weight=3]; 25.61/9.72 423 -> 1111[label="",style="dashed", color="red", weight=0]; 25.61/9.72 423[label="compare2 (xuu3110000,xuu3110001,xuu3110002) (xuu6000,xuu6001,xuu6002) (xuu3110000 == xuu6000 && xuu3110001 == xuu6001 && xuu3110002 == xuu6002)",fontsize=16,color="magenta"];423 -> 1112[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 423 -> 1113[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 423 -> 1114[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 423 -> 1115[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 423 -> 1116[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 423 -> 1117[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 423 -> 1118[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 424[label="primCmpDouble (Double xuu3110000 (Pos xuu31100010)) (Double xuu6000 (Pos xuu60010))",fontsize=16,color="black",shape="box"];424 -> 494[label="",style="solid", color="black", weight=3]; 25.61/9.72 425[label="primCmpDouble (Double xuu3110000 (Pos xuu31100010)) (Double xuu6000 (Neg xuu60010))",fontsize=16,color="black",shape="box"];425 -> 495[label="",style="solid", color="black", weight=3]; 25.61/9.72 426[label="primCmpDouble (Double xuu3110000 (Neg xuu31100010)) (Double xuu6000 (Pos xuu60010))",fontsize=16,color="black",shape="box"];426 -> 496[label="",style="solid", color="black", weight=3]; 25.61/9.72 427[label="primCmpDouble (Double xuu3110000 (Neg xuu31100010)) (Double xuu6000 (Neg xuu60010))",fontsize=16,color="black",shape="box"];427 -> 497[label="",style="solid", color="black", weight=3]; 25.61/9.72 428[label="primCmpFloat (Float xuu3110000 (Pos xuu31100010)) (Float xuu6000 (Pos xuu60010))",fontsize=16,color="black",shape="box"];428 -> 498[label="",style="solid", color="black", weight=3]; 25.61/9.72 429[label="primCmpFloat (Float xuu3110000 (Pos xuu31100010)) (Float xuu6000 (Neg xuu60010))",fontsize=16,color="black",shape="box"];429 -> 499[label="",style="solid", color="black", weight=3]; 25.61/9.72 430[label="primCmpFloat (Float xuu3110000 (Neg xuu31100010)) (Float xuu6000 (Pos xuu60010))",fontsize=16,color="black",shape="box"];430 -> 500[label="",style="solid", color="black", weight=3]; 25.61/9.72 431[label="primCmpFloat (Float xuu3110000 (Neg xuu31100010)) (Float xuu6000 (Neg xuu60010))",fontsize=16,color="black",shape="box"];431 -> 501[label="",style="solid", color="black", weight=3]; 25.61/9.72 432[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];432 -> 502[label="",style="solid", color="black", weight=3]; 25.61/9.72 433[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];433 -> 503[label="",style="solid", color="black", weight=3]; 25.61/9.72 434[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];434 -> 504[label="",style="solid", color="black", weight=3]; 25.61/9.72 435[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];435 -> 505[label="",style="solid", color="black", weight=3]; 25.61/9.72 436[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];436 -> 506[label="",style="solid", color="black", weight=3]; 25.61/9.72 437[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];437 -> 507[label="",style="solid", color="black", weight=3]; 25.61/9.72 438[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];438 -> 508[label="",style="solid", color="black", weight=3]; 25.61/9.72 439[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];439 -> 509[label="",style="solid", color="black", weight=3]; 25.61/9.72 440[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];440 -> 510[label="",style="solid", color="black", weight=3]; 25.61/9.72 441[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];441 -> 511[label="",style="solid", color="black", weight=3]; 25.61/9.72 442[label="compare2 Nothing (Just xuu6000) False",fontsize=16,color="black",shape="box"];442 -> 512[label="",style="solid", color="black", weight=3]; 25.61/9.72 443[label="compare2 (Just xuu3110000) Nothing False",fontsize=16,color="black",shape="box"];443 -> 513[label="",style="solid", color="black", weight=3]; 25.61/9.72 444 -> 514[label="",style="dashed", color="red", weight=0]; 25.61/9.72 444[label="compare2 (Just xuu3110000) (Just xuu6000) (xuu3110000 == xuu6000)",fontsize=16,color="magenta"];444 -> 515[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 444 -> 516[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 444 -> 517[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 445 -> 931[label="",style="dashed", color="red", weight=0]; 25.61/9.72 445[label="compare2 (xuu3110000,xuu3110001) (xuu6000,xuu6001) (xuu3110000 == xuu6000 && xuu3110001 == xuu6001)",fontsize=16,color="magenta"];445 -> 932[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 445 -> 933[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 445 -> 934[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 445 -> 935[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 445 -> 936[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 446[label="xuu6000 * xuu3110001",fontsize=16,color="black",shape="triangle"];446 -> 524[label="",style="solid", color="black", weight=3]; 25.61/9.72 447 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.72 447[label="xuu3110000 * xuu6001",fontsize=16,color="magenta"];447 -> 525[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 447 -> 526[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 448[label="xuu6000 * xuu3110001",fontsize=16,color="burlywood",shape="triangle"];3947[label="xuu6000/Integer xuu60000",fontsize=10,color="white",style="solid",shape="box"];448 -> 3947[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3947 -> 527[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 449 -> 448[label="",style="dashed", color="red", weight=0]; 25.61/9.72 449[label="xuu3110000 * xuu6001",fontsize=16,color="magenta"];449 -> 528[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 449 -> 529[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 450[label="compare2 False False True",fontsize=16,color="black",shape="box"];450 -> 530[label="",style="solid", color="black", weight=3]; 25.61/9.72 451[label="compare2 False True False",fontsize=16,color="black",shape="box"];451 -> 531[label="",style="solid", color="black", weight=3]; 25.61/9.72 452[label="compare2 True False False",fontsize=16,color="black",shape="box"];452 -> 532[label="",style="solid", color="black", weight=3]; 25.61/9.72 453[label="compare2 True True True",fontsize=16,color="black",shape="box"];453 -> 533[label="",style="solid", color="black", weight=3]; 25.61/9.72 454[label="primCmpNat (Succ xuu31100000) xuu6000",fontsize=16,color="burlywood",shape="box"];3948[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];454 -> 3948[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3948 -> 534[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3949[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];454 -> 3949[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3949 -> 535[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 455[label="primCmpNat Zero xuu6000",fontsize=16,color="burlywood",shape="box"];3950[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];455 -> 3950[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3950 -> 536[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3951[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];455 -> 3951[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3951 -> 537[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 456[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 otherwise",fontsize=16,color="black",shape="box"];456 -> 538[label="",style="solid", color="black", weight=3]; 25.61/9.72 457 -> 92[label="",style="dashed", color="red", weight=0]; 25.61/9.72 457[label="FiniteMap.mkBalBranch (xuu19 : xuu20) xuu21 xuu23 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu24 (xuu25 : xuu26) xuu27)",fontsize=16,color="magenta"];457 -> 539[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 457 -> 540[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 457 -> 541[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 457 -> 542[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 457 -> 543[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 347[label="FiniteMap.Branch (xuu311000 : xuu311001) (FiniteMap.addListToFM0 xuu61 xuu31101) xuu62 xuu63 xuu64",fontsize=16,color="green",shape="box"];347 -> 405[label="",style="dashed", color="green", weight=3]; 25.61/9.72 348[label="xuu311000 : xuu311001",fontsize=16,color="green",shape="box"];349[label="xuu64",fontsize=16,color="green",shape="box"];350[label="FiniteMap.mkBalBranch6 [] xuu61 xuu63 xuu41",fontsize=16,color="black",shape="box"];350 -> 406[label="",style="solid", color="black", weight=3]; 25.61/9.72 400 -> 2406[label="",style="dashed", color="red", weight=0]; 25.61/9.72 400[label="primPlusInt (FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64) (FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64)",fontsize=16,color="magenta"];400 -> 2407[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 400 -> 2408[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 401[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 True",fontsize=16,color="black",shape="box"];401 -> 459[label="",style="solid", color="black", weight=3]; 25.61/9.72 402[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 False",fontsize=16,color="black",shape="triangle"];402 -> 460[label="",style="solid", color="black", weight=3]; 25.61/9.72 403 -> 402[label="",style="dashed", color="red", weight=0]; 25.61/9.72 403[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 False",fontsize=16,color="magenta"];404[label="FiniteMap.Branch [] (FiniteMap.addListToFM0 xuu61 xuu31101) xuu62 xuu63 xuu64",fontsize=16,color="green",shape="box"];404 -> 461[label="",style="dashed", color="green", weight=3]; 25.61/9.72 351[label="[]",fontsize=16,color="green",shape="box"];352[label="xuu64",fontsize=16,color="green",shape="box"];465[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3952[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3952[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3952 -> 544[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3953[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3953[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3953 -> 545[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3954[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3954[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3954 -> 546[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3955[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3955[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3955 -> 547[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3956[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3956[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3956 -> 548[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3957[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3957[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3957 -> 549[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3958[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3958[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3958 -> 550[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3959[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3959[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3959 -> 551[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3960[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3960[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3960 -> 552[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3961[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3961[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3961 -> 553[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3962[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3962[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3962 -> 554[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3963[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3963[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3963 -> 555[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3964[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3964[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3964 -> 556[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3965[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 3965[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3965 -> 557[label="",style="solid", color="blue", weight=3]; 25.61/9.72 466[label="xuu3110000",fontsize=16,color="green",shape="box"];467[label="xuu6000",fontsize=16,color="green",shape="box"];464[label="compare2 (Left xuu47) (Left xuu48) xuu49",fontsize=16,color="burlywood",shape="triangle"];3966[label="xuu49/False",fontsize=10,color="white",style="solid",shape="box"];464 -> 3966[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3966 -> 558[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3967[label="xuu49/True",fontsize=10,color="white",style="solid",shape="box"];464 -> 3967[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3967 -> 559[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 468[label="compare1 (Left xuu3110000) (Right xuu6000) (Left xuu3110000 <= Right xuu6000)",fontsize=16,color="black",shape="box"];468 -> 560[label="",style="solid", color="black", weight=3]; 25.61/9.72 469[label="compare1 (Right xuu3110000) (Left xuu6000) (Right xuu3110000 <= Left xuu6000)",fontsize=16,color="black",shape="box"];469 -> 561[label="",style="solid", color="black", weight=3]; 25.61/9.72 471[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3968[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3968[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3968 -> 562[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3969[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3969[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3969 -> 563[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3970[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3970[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3970 -> 564[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3971[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3971[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3971 -> 565[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3972[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3972[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3972 -> 566[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3973[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3973[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3973 -> 567[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3974[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3974[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3974 -> 568[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3975[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3975[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3975 -> 569[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3976[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3976[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3976 -> 570[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3977[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3977[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3977 -> 571[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3978[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3978[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3978 -> 572[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3979[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3979[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3979 -> 573[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3980[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3980[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3980 -> 574[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3981[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3981[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3981 -> 575[label="",style="solid", color="blue", weight=3]; 25.61/9.72 472[label="xuu3110000",fontsize=16,color="green",shape="box"];473[label="xuu6000",fontsize=16,color="green",shape="box"];470[label="compare2 (Right xuu54) (Right xuu55) xuu56",fontsize=16,color="burlywood",shape="triangle"];3982[label="xuu56/False",fontsize=10,color="white",style="solid",shape="box"];470 -> 3982[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3982 -> 576[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3983[label="xuu56/True",fontsize=10,color="white",style="solid",shape="box"];470 -> 3983[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3983 -> 577[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 474[label="Succ xuu31100000",fontsize=16,color="green",shape="box"];475[label="xuu6000",fontsize=16,color="green",shape="box"];476 -> 396[label="",style="dashed", color="red", weight=0]; 25.61/9.72 476[label="primCmpNat Zero (Succ xuu60000)",fontsize=16,color="magenta"];476 -> 578[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 476 -> 579[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 477[label="EQ",fontsize=16,color="green",shape="box"];478[label="GT",fontsize=16,color="green",shape="box"];479[label="EQ",fontsize=16,color="green",shape="box"];480[label="xuu6000",fontsize=16,color="green",shape="box"];481[label="Succ xuu31100000",fontsize=16,color="green",shape="box"];482[label="LT",fontsize=16,color="green",shape="box"];483[label="EQ",fontsize=16,color="green",shape="box"];484 -> 396[label="",style="dashed", color="red", weight=0]; 25.61/9.72 484[label="primCmpNat (Succ xuu60000) Zero",fontsize=16,color="magenta"];484 -> 580[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 484 -> 581[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 485[label="EQ",fontsize=16,color="green",shape="box"];1112[label="xuu3110002",fontsize=16,color="green",shape="box"];1113[label="xuu6001",fontsize=16,color="green",shape="box"];1114[label="xuu3110000",fontsize=16,color="green",shape="box"];1115 -> 1163[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1115[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001 && xuu3110002 == xuu6002",fontsize=16,color="magenta"];1115 -> 1164[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1115 -> 1165[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1116[label="xuu3110001",fontsize=16,color="green",shape="box"];1117[label="xuu6002",fontsize=16,color="green",shape="box"];1118[label="xuu6000",fontsize=16,color="green",shape="box"];1111[label="compare2 (xuu101,xuu102,xuu103) (xuu104,xuu105,xuu106) xuu143",fontsize=16,color="burlywood",shape="triangle"];3984[label="xuu143/False",fontsize=10,color="white",style="solid",shape="box"];1111 -> 3984[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3984 -> 1158[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3985[label="xuu143/True",fontsize=10,color="white",style="solid",shape="box"];1111 -> 3985[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 3985 -> 1159[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 494 -> 185[label="",style="dashed", color="red", weight=0]; 25.61/9.72 494[label="compare (xuu3110000 * Pos xuu60010) (Pos xuu31100010 * xuu6000)",fontsize=16,color="magenta"];494 -> 598[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 494 -> 599[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 495 -> 185[label="",style="dashed", color="red", weight=0]; 25.61/9.72 495[label="compare (xuu3110000 * Pos xuu60010) (Neg xuu31100010 * xuu6000)",fontsize=16,color="magenta"];495 -> 600[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 495 -> 601[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 496 -> 185[label="",style="dashed", color="red", weight=0]; 25.61/9.72 496[label="compare (xuu3110000 * Neg xuu60010) (Pos xuu31100010 * xuu6000)",fontsize=16,color="magenta"];496 -> 602[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 496 -> 603[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 497 -> 185[label="",style="dashed", color="red", weight=0]; 25.61/9.72 497[label="compare (xuu3110000 * Neg xuu60010) (Neg xuu31100010 * xuu6000)",fontsize=16,color="magenta"];497 -> 604[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 497 -> 605[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 498 -> 185[label="",style="dashed", color="red", weight=0]; 25.61/9.72 498[label="compare (xuu3110000 * Pos xuu60010) (Pos xuu31100010 * xuu6000)",fontsize=16,color="magenta"];498 -> 606[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 498 -> 607[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 499 -> 185[label="",style="dashed", color="red", weight=0]; 25.61/9.72 499[label="compare (xuu3110000 * Pos xuu60010) (Neg xuu31100010 * xuu6000)",fontsize=16,color="magenta"];499 -> 608[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 499 -> 609[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 500 -> 185[label="",style="dashed", color="red", weight=0]; 25.61/9.72 500[label="compare (xuu3110000 * Neg xuu60010) (Pos xuu31100010 * xuu6000)",fontsize=16,color="magenta"];500 -> 610[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 500 -> 611[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 501 -> 185[label="",style="dashed", color="red", weight=0]; 25.61/9.72 501[label="compare (xuu3110000 * Neg xuu60010) (Neg xuu31100010 * xuu6000)",fontsize=16,color="magenta"];501 -> 612[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 501 -> 613[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 502[label="EQ",fontsize=16,color="green",shape="box"];503[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];503 -> 614[label="",style="solid", color="black", weight=3]; 25.61/9.72 504[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];504 -> 615[label="",style="solid", color="black", weight=3]; 25.61/9.72 505[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];505 -> 616[label="",style="solid", color="black", weight=3]; 25.61/9.72 506[label="EQ",fontsize=16,color="green",shape="box"];507[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];507 -> 617[label="",style="solid", color="black", weight=3]; 25.61/9.72 508[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];508 -> 618[label="",style="solid", color="black", weight=3]; 25.61/9.72 509[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];509 -> 619[label="",style="solid", color="black", weight=3]; 25.61/9.72 510[label="EQ",fontsize=16,color="green",shape="box"];511[label="EQ",fontsize=16,color="green",shape="box"];512[label="compare1 Nothing (Just xuu6000) (Nothing <= Just xuu6000)",fontsize=16,color="black",shape="box"];512 -> 620[label="",style="solid", color="black", weight=3]; 25.61/9.72 513[label="compare1 (Just xuu3110000) Nothing (Just xuu3110000 <= Nothing)",fontsize=16,color="black",shape="box"];513 -> 621[label="",style="solid", color="black", weight=3]; 25.61/9.72 515[label="xuu6000",fontsize=16,color="green",shape="box"];516[label="xuu3110000",fontsize=16,color="green",shape="box"];517[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3986[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 3986[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3986 -> 622[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3987[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 3987[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3987 -> 623[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3988[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 3988[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3988 -> 624[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3989[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 3989[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3989 -> 625[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3990[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 3990[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3990 -> 626[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3991[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 3991[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3991 -> 627[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3992[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 3992[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3992 -> 628[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3993[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 3993[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3993 -> 629[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3994[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 3994[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3994 -> 630[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3995[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 3995[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3995 -> 631[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3996[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 3996[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3996 -> 632[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3997[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 3997[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3997 -> 633[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3998[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 3998[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3998 -> 634[label="",style="solid", color="blue", weight=3]; 25.61/9.72 3999[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 3999[label="",style="solid", color="blue", weight=9]; 25.61/9.72 3999 -> 635[label="",style="solid", color="blue", weight=3]; 25.61/9.72 514[label="compare2 (Just xuu76) (Just xuu77) xuu78",fontsize=16,color="burlywood",shape="triangle"];4000[label="xuu78/False",fontsize=10,color="white",style="solid",shape="box"];514 -> 4000[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4000 -> 636[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4001[label="xuu78/True",fontsize=10,color="white",style="solid",shape="box"];514 -> 4001[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4001 -> 637[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 932 -> 1163[label="",style="dashed", color="red", weight=0]; 25.61/9.72 932[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];932 -> 1166[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 932 -> 1167[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 933[label="xuu3110001",fontsize=16,color="green",shape="box"];934[label="xuu6000",fontsize=16,color="green",shape="box"];935[label="xuu3110000",fontsize=16,color="green",shape="box"];936[label="xuu6001",fontsize=16,color="green",shape="box"];931[label="compare2 (xuu114,xuu115) (xuu116,xuu117) xuu118",fontsize=16,color="burlywood",shape="triangle"];4002[label="xuu118/False",fontsize=10,color="white",style="solid",shape="box"];931 -> 4002[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4002 -> 956[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4003[label="xuu118/True",fontsize=10,color="white",style="solid",shape="box"];931 -> 4003[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4003 -> 957[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 524[label="primMulInt xuu6000 xuu3110001",fontsize=16,color="burlywood",shape="triangle"];4004[label="xuu6000/Pos xuu60000",fontsize=10,color="white",style="solid",shape="box"];524 -> 4004[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4004 -> 659[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4005[label="xuu6000/Neg xuu60000",fontsize=10,color="white",style="solid",shape="box"];524 -> 4005[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4005 -> 660[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 525[label="xuu6001",fontsize=16,color="green",shape="box"];526[label="xuu3110000",fontsize=16,color="green",shape="box"];527[label="Integer xuu60000 * xuu3110001",fontsize=16,color="burlywood",shape="box"];4006[label="xuu3110001/Integer xuu31100010",fontsize=10,color="white",style="solid",shape="box"];527 -> 4006[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4006 -> 661[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 528[label="xuu6001",fontsize=16,color="green",shape="box"];529[label="xuu3110000",fontsize=16,color="green",shape="box"];530[label="EQ",fontsize=16,color="green",shape="box"];531[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];531 -> 662[label="",style="solid", color="black", weight=3]; 25.61/9.72 532[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];532 -> 663[label="",style="solid", color="black", weight=3]; 25.61/9.72 533[label="EQ",fontsize=16,color="green",shape="box"];534[label="primCmpNat (Succ xuu31100000) (Succ xuu60000)",fontsize=16,color="black",shape="box"];534 -> 664[label="",style="solid", color="black", weight=3]; 25.61/9.72 535[label="primCmpNat (Succ xuu31100000) Zero",fontsize=16,color="black",shape="box"];535 -> 665[label="",style="solid", color="black", weight=3]; 25.61/9.72 536[label="primCmpNat Zero (Succ xuu60000)",fontsize=16,color="black",shape="box"];536 -> 666[label="",style="solid", color="black", weight=3]; 25.61/9.72 537[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];537 -> 667[label="",style="solid", color="black", weight=3]; 25.61/9.72 538[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 True",fontsize=16,color="black",shape="box"];538 -> 668[label="",style="solid", color="black", weight=3]; 25.61/9.72 539[label="xuu21",fontsize=16,color="green",shape="box"];540 -> 35[label="",style="dashed", color="red", weight=0]; 25.61/9.72 540[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu24 (xuu25 : xuu26) xuu27",fontsize=16,color="magenta"];540 -> 669[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 540 -> 670[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 540 -> 671[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 541[label="xuu19",fontsize=16,color="green",shape="box"];542[label="xuu20",fontsize=16,color="green",shape="box"];543[label="xuu23",fontsize=16,color="green",shape="box"];405[label="FiniteMap.addListToFM0 xuu61 xuu31101",fontsize=16,color="black",shape="triangle"];405 -> 462[label="",style="solid", color="black", weight=3]; 25.61/9.72 406 -> 856[label="",style="dashed", color="red", weight=0]; 25.61/9.72 406[label="FiniteMap.mkBalBranch6MkBalBranch5 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 (FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41 + FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];406 -> 857[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 2407 -> 2021[label="",style="dashed", color="red", weight=0]; 25.61/9.72 2407[label="FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="magenta"];2408 -> 2015[label="",style="dashed", color="red", weight=0]; 25.61/9.72 2408[label="FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="magenta"];2406[label="primPlusInt xuu212 xuu211",fontsize=16,color="burlywood",shape="triangle"];4007[label="xuu212/Pos xuu2120",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4007[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4007 -> 2441[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4008[label="xuu212/Neg xuu2120",fontsize=10,color="white",style="solid",shape="box"];2406 -> 4008[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4008 -> 2442[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 459 -> 3543[label="",style="dashed", color="red", weight=0]; 25.61/9.72 459[label="FiniteMap.mkBranch (Pos (Succ Zero)) (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="magenta"];459 -> 3544[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 459 -> 3545[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 459 -> 3546[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 459 -> 3547[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 459 -> 3548[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 460 -> 992[label="",style="dashed", color="red", weight=0]; 25.61/9.72 460[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 (FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64)",fontsize=16,color="magenta"];460 -> 993[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 461 -> 405[label="",style="dashed", color="red", weight=0]; 25.61/9.72 461[label="FiniteMap.addListToFM0 xuu61 xuu31101",fontsize=16,color="magenta"];544[label="xuu3110000 == xuu6000",fontsize=16,color="burlywood",shape="triangle"];4009[label="xuu3110000/()",fontsize=10,color="white",style="solid",shape="box"];544 -> 4009[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4009 -> 672[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 545[label="xuu3110000 == xuu6000",fontsize=16,color="black",shape="triangle"];545 -> 673[label="",style="solid", color="black", weight=3]; 25.61/9.72 546[label="xuu3110000 == xuu6000",fontsize=16,color="burlywood",shape="triangle"];4010[label="xuu3110000/(xuu31100000,xuu31100001)",fontsize=10,color="white",style="solid",shape="box"];546 -> 4010[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4010 -> 674[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 547[label="xuu3110000 == xuu6000",fontsize=16,color="burlywood",shape="triangle"];4011[label="xuu3110000/(xuu31100000,xuu31100001,xuu31100002)",fontsize=10,color="white",style="solid",shape="box"];547 -> 4011[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4011 -> 675[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 548[label="xuu3110000 == xuu6000",fontsize=16,color="black",shape="triangle"];548 -> 676[label="",style="solid", color="black", weight=3]; 25.61/9.72 549[label="xuu3110000 == xuu6000",fontsize=16,color="black",shape="triangle"];549 -> 677[label="",style="solid", color="black", weight=3]; 25.61/9.72 550[label="xuu3110000 == xuu6000",fontsize=16,color="burlywood",shape="triangle"];4012[label="xuu3110000/False",fontsize=10,color="white",style="solid",shape="box"];550 -> 4012[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4012 -> 678[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4013[label="xuu3110000/True",fontsize=10,color="white",style="solid",shape="box"];550 -> 4013[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4013 -> 679[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 551[label="xuu3110000 == xuu6000",fontsize=16,color="burlywood",shape="triangle"];4014[label="xuu3110000/Left xuu31100000",fontsize=10,color="white",style="solid",shape="box"];551 -> 4014[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4014 -> 680[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4015[label="xuu3110000/Right xuu31100000",fontsize=10,color="white",style="solid",shape="box"];551 -> 4015[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4015 -> 681[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 552[label="xuu3110000 == xuu6000",fontsize=16,color="black",shape="triangle"];552 -> 682[label="",style="solid", color="black", weight=3]; 25.61/9.72 553[label="xuu3110000 == xuu6000",fontsize=16,color="burlywood",shape="triangle"];4016[label="xuu3110000/xuu31100000 :% xuu31100001",fontsize=10,color="white",style="solid",shape="box"];553 -> 4016[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4016 -> 683[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 554[label="xuu3110000 == xuu6000",fontsize=16,color="burlywood",shape="triangle"];4017[label="xuu3110000/xuu31100000 : xuu31100001",fontsize=10,color="white",style="solid",shape="box"];554 -> 4017[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4017 -> 684[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4018[label="xuu3110000/[]",fontsize=10,color="white",style="solid",shape="box"];554 -> 4018[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4018 -> 685[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 555[label="xuu3110000 == xuu6000",fontsize=16,color="burlywood",shape="triangle"];4019[label="xuu3110000/Integer xuu31100000",fontsize=10,color="white",style="solid",shape="box"];555 -> 4019[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4019 -> 686[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 556[label="xuu3110000 == xuu6000",fontsize=16,color="burlywood",shape="triangle"];4020[label="xuu3110000/Nothing",fontsize=10,color="white",style="solid",shape="box"];556 -> 4020[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4020 -> 687[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4021[label="xuu3110000/Just xuu31100000",fontsize=10,color="white",style="solid",shape="box"];556 -> 4021[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4021 -> 688[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 557[label="xuu3110000 == xuu6000",fontsize=16,color="burlywood",shape="triangle"];4022[label="xuu3110000/LT",fontsize=10,color="white",style="solid",shape="box"];557 -> 4022[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4022 -> 689[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4023[label="xuu3110000/EQ",fontsize=10,color="white",style="solid",shape="box"];557 -> 4023[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4023 -> 690[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4024[label="xuu3110000/GT",fontsize=10,color="white",style="solid",shape="box"];557 -> 4024[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4024 -> 691[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 558[label="compare2 (Left xuu47) (Left xuu48) False",fontsize=16,color="black",shape="box"];558 -> 692[label="",style="solid", color="black", weight=3]; 25.61/9.72 559[label="compare2 (Left xuu47) (Left xuu48) True",fontsize=16,color="black",shape="box"];559 -> 693[label="",style="solid", color="black", weight=3]; 25.61/9.72 560[label="compare1 (Left xuu3110000) (Right xuu6000) True",fontsize=16,color="black",shape="box"];560 -> 694[label="",style="solid", color="black", weight=3]; 25.61/9.72 561[label="compare1 (Right xuu3110000) (Left xuu6000) False",fontsize=16,color="black",shape="box"];561 -> 695[label="",style="solid", color="black", weight=3]; 25.61/9.72 562 -> 544[label="",style="dashed", color="red", weight=0]; 25.61/9.72 562[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];562 -> 696[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 562 -> 697[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 563 -> 545[label="",style="dashed", color="red", weight=0]; 25.61/9.72 563[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];563 -> 698[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 563 -> 699[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 564 -> 546[label="",style="dashed", color="red", weight=0]; 25.61/9.72 564[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];564 -> 700[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 564 -> 701[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 565 -> 547[label="",style="dashed", color="red", weight=0]; 25.61/9.72 565[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];565 -> 702[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 565 -> 703[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 566 -> 548[label="",style="dashed", color="red", weight=0]; 25.61/9.72 566[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];566 -> 704[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 566 -> 705[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 567 -> 549[label="",style="dashed", color="red", weight=0]; 25.61/9.72 567[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];567 -> 706[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 567 -> 707[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 568 -> 550[label="",style="dashed", color="red", weight=0]; 25.61/9.72 568[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];568 -> 708[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 568 -> 709[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 569 -> 551[label="",style="dashed", color="red", weight=0]; 25.61/9.72 569[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];569 -> 710[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 569 -> 711[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 570 -> 552[label="",style="dashed", color="red", weight=0]; 25.61/9.72 570[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];570 -> 712[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 570 -> 713[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 571 -> 553[label="",style="dashed", color="red", weight=0]; 25.61/9.72 571[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];571 -> 714[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 571 -> 715[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 572 -> 554[label="",style="dashed", color="red", weight=0]; 25.61/9.72 572[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];572 -> 716[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 572 -> 717[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 573 -> 555[label="",style="dashed", color="red", weight=0]; 25.61/9.72 573[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];573 -> 718[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 573 -> 719[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 574 -> 556[label="",style="dashed", color="red", weight=0]; 25.61/9.72 574[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];574 -> 720[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 574 -> 721[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 575 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.72 575[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];575 -> 722[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 575 -> 723[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 576[label="compare2 (Right xuu54) (Right xuu55) False",fontsize=16,color="black",shape="box"];576 -> 724[label="",style="solid", color="black", weight=3]; 25.61/9.72 577[label="compare2 (Right xuu54) (Right xuu55) True",fontsize=16,color="black",shape="box"];577 -> 725[label="",style="solid", color="black", weight=3]; 25.61/9.72 578[label="Zero",fontsize=16,color="green",shape="box"];579[label="Succ xuu60000",fontsize=16,color="green",shape="box"];580[label="Succ xuu60000",fontsize=16,color="green",shape="box"];581[label="Zero",fontsize=16,color="green",shape="box"];1164[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4025[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4025[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4025 -> 1182[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4026[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4026[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4026 -> 1183[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4027[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4027[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4027 -> 1184[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4028[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4028[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4028 -> 1185[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4029[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4029[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4029 -> 1186[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4030[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4030[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4030 -> 1187[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4031[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4031[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4031 -> 1188[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4032[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4032[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4032 -> 1189[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4033[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4033[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4033 -> 1190[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4034[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4034[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4034 -> 1191[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4035[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4035[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4035 -> 1192[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4036[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4036[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4036 -> 1193[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4037[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4037[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4037 -> 1194[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4038[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4038[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4038 -> 1195[label="",style="solid", color="blue", weight=3]; 25.61/9.72 1165 -> 1163[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1165[label="xuu3110001 == xuu6001 && xuu3110002 == xuu6002",fontsize=16,color="magenta"];1165 -> 1196[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1165 -> 1197[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1163[label="xuu148 && xuu149",fontsize=16,color="burlywood",shape="triangle"];4039[label="xuu148/False",fontsize=10,color="white",style="solid",shape="box"];1163 -> 4039[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4039 -> 1198[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4040[label="xuu148/True",fontsize=10,color="white",style="solid",shape="box"];1163 -> 4040[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4040 -> 1199[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 1158[label="compare2 (xuu101,xuu102,xuu103) (xuu104,xuu105,xuu106) False",fontsize=16,color="black",shape="box"];1158 -> 1200[label="",style="solid", color="black", weight=3]; 25.61/9.72 1159[label="compare2 (xuu101,xuu102,xuu103) (xuu104,xuu105,xuu106) True",fontsize=16,color="black",shape="box"];1159 -> 1201[label="",style="solid", color="black", weight=3]; 25.61/9.72 598 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.72 598[label="Pos xuu31100010 * xuu6000",fontsize=16,color="magenta"];598 -> 756[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 598 -> 757[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 599 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.72 599[label="xuu3110000 * Pos xuu60010",fontsize=16,color="magenta"];599 -> 758[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 599 -> 759[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 600 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.72 600[label="Neg xuu31100010 * xuu6000",fontsize=16,color="magenta"];600 -> 760[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 600 -> 761[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 601 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.72 601[label="xuu3110000 * Pos xuu60010",fontsize=16,color="magenta"];601 -> 762[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 601 -> 763[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 602 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.72 602[label="Pos xuu31100010 * xuu6000",fontsize=16,color="magenta"];602 -> 764[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 602 -> 765[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 603 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.72 603[label="xuu3110000 * Neg xuu60010",fontsize=16,color="magenta"];603 -> 766[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 603 -> 767[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 604 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.72 604[label="Neg xuu31100010 * xuu6000",fontsize=16,color="magenta"];604 -> 768[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 604 -> 769[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 605 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.72 605[label="xuu3110000 * Neg xuu60010",fontsize=16,color="magenta"];605 -> 770[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 605 -> 771[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 606 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.72 606[label="Pos xuu31100010 * xuu6000",fontsize=16,color="magenta"];606 -> 772[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 606 -> 773[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 607 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.72 607[label="xuu3110000 * Pos xuu60010",fontsize=16,color="magenta"];607 -> 774[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 607 -> 775[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 608 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.72 608[label="Neg xuu31100010 * xuu6000",fontsize=16,color="magenta"];608 -> 776[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 608 -> 777[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 609 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.72 609[label="xuu3110000 * Pos xuu60010",fontsize=16,color="magenta"];609 -> 778[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 609 -> 779[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 610 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.72 610[label="Pos xuu31100010 * xuu6000",fontsize=16,color="magenta"];610 -> 780[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 610 -> 781[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 611 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.72 611[label="xuu3110000 * Neg xuu60010",fontsize=16,color="magenta"];611 -> 782[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 611 -> 783[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 612 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.72 612[label="Neg xuu31100010 * xuu6000",fontsize=16,color="magenta"];612 -> 784[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 612 -> 785[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 613 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.72 613[label="xuu3110000 * Neg xuu60010",fontsize=16,color="magenta"];613 -> 786[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 613 -> 787[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 614[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];614 -> 788[label="",style="solid", color="black", weight=3]; 25.61/9.72 615[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];615 -> 789[label="",style="solid", color="black", weight=3]; 25.61/9.72 616[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];616 -> 790[label="",style="solid", color="black", weight=3]; 25.61/9.72 617[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];617 -> 791[label="",style="solid", color="black", weight=3]; 25.61/9.72 618[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];618 -> 792[label="",style="solid", color="black", weight=3]; 25.61/9.72 619[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];619 -> 793[label="",style="solid", color="black", weight=3]; 25.61/9.72 620[label="compare1 Nothing (Just xuu6000) True",fontsize=16,color="black",shape="box"];620 -> 794[label="",style="solid", color="black", weight=3]; 25.61/9.72 621[label="compare1 (Just xuu3110000) Nothing False",fontsize=16,color="black",shape="box"];621 -> 795[label="",style="solid", color="black", weight=3]; 25.61/9.72 622 -> 544[label="",style="dashed", color="red", weight=0]; 25.61/9.72 622[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];622 -> 796[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 622 -> 797[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 623 -> 545[label="",style="dashed", color="red", weight=0]; 25.61/9.72 623[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];623 -> 798[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 623 -> 799[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 624 -> 546[label="",style="dashed", color="red", weight=0]; 25.61/9.72 624[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];624 -> 800[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 624 -> 801[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 625 -> 547[label="",style="dashed", color="red", weight=0]; 25.61/9.72 625[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];625 -> 802[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 625 -> 803[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 626 -> 548[label="",style="dashed", color="red", weight=0]; 25.61/9.72 626[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];626 -> 804[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 626 -> 805[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 627 -> 549[label="",style="dashed", color="red", weight=0]; 25.61/9.72 627[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];627 -> 806[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 627 -> 807[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 628 -> 550[label="",style="dashed", color="red", weight=0]; 25.61/9.72 628[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];628 -> 808[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 628 -> 809[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 629 -> 551[label="",style="dashed", color="red", weight=0]; 25.61/9.72 629[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];629 -> 810[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 629 -> 811[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 630 -> 552[label="",style="dashed", color="red", weight=0]; 25.61/9.72 630[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];630 -> 812[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 630 -> 813[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 631 -> 553[label="",style="dashed", color="red", weight=0]; 25.61/9.72 631[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];631 -> 814[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 631 -> 815[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 632 -> 554[label="",style="dashed", color="red", weight=0]; 25.61/9.72 632[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];632 -> 816[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 632 -> 817[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 633 -> 555[label="",style="dashed", color="red", weight=0]; 25.61/9.72 633[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];633 -> 818[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 633 -> 819[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 634 -> 556[label="",style="dashed", color="red", weight=0]; 25.61/9.72 634[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];634 -> 820[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 634 -> 821[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 635 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.72 635[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];635 -> 822[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 635 -> 823[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 636[label="compare2 (Just xuu76) (Just xuu77) False",fontsize=16,color="black",shape="box"];636 -> 824[label="",style="solid", color="black", weight=3]; 25.61/9.72 637[label="compare2 (Just xuu76) (Just xuu77) True",fontsize=16,color="black",shape="box"];637 -> 825[label="",style="solid", color="black", weight=3]; 25.61/9.72 1166[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4041[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 4041[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4041 -> 1202[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4042[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 4042[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4042 -> 1203[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4043[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 4043[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4043 -> 1204[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4044[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 4044[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4044 -> 1205[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4045[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 4045[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4045 -> 1206[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4046[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 4046[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4046 -> 1207[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4047[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 4047[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4047 -> 1208[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4048[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 4048[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4048 -> 1209[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4049[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 4049[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4049 -> 1210[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4050[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 4050[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4050 -> 1211[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4051[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 4051[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4051 -> 1212[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4052[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 4052[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4052 -> 1213[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4053[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 4053[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4053 -> 1214[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4054[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 4054[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4054 -> 1215[label="",style="solid", color="blue", weight=3]; 25.61/9.72 1167[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];4055[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 4055[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4055 -> 1216[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4056[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 4056[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4056 -> 1217[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4057[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 4057[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4057 -> 1218[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4058[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 4058[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4058 -> 1219[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4059[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 4059[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4059 -> 1220[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4060[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 4060[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4060 -> 1221[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4061[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 4061[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4061 -> 1222[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4062[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 4062[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4062 -> 1223[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4063[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 4063[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4063 -> 1224[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4064[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 4064[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4064 -> 1225[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4065[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 4065[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4065 -> 1226[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4066[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 4066[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4066 -> 1227[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4067[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 4067[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4067 -> 1228[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4068[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 4068[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4068 -> 1229[label="",style="solid", color="blue", weight=3]; 25.61/9.72 956[label="compare2 (xuu114,xuu115) (xuu116,xuu117) False",fontsize=16,color="black",shape="box"];956 -> 996[label="",style="solid", color="black", weight=3]; 25.61/9.72 957[label="compare2 (xuu114,xuu115) (xuu116,xuu117) True",fontsize=16,color="black",shape="box"];957 -> 997[label="",style="solid", color="black", weight=3]; 25.61/9.72 659[label="primMulInt (Pos xuu60000) xuu3110001",fontsize=16,color="burlywood",shape="box"];4069[label="xuu3110001/Pos xuu31100010",fontsize=10,color="white",style="solid",shape="box"];659 -> 4069[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4069 -> 859[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4070[label="xuu3110001/Neg xuu31100010",fontsize=10,color="white",style="solid",shape="box"];659 -> 4070[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4070 -> 860[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 660[label="primMulInt (Neg xuu60000) xuu3110001",fontsize=16,color="burlywood",shape="box"];4071[label="xuu3110001/Pos xuu31100010",fontsize=10,color="white",style="solid",shape="box"];660 -> 4071[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4071 -> 861[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4072[label="xuu3110001/Neg xuu31100010",fontsize=10,color="white",style="solid",shape="box"];660 -> 4072[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4072 -> 862[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 661[label="Integer xuu60000 * Integer xuu31100010",fontsize=16,color="black",shape="box"];661 -> 863[label="",style="solid", color="black", weight=3]; 25.61/9.72 662[label="compare1 False True True",fontsize=16,color="black",shape="box"];662 -> 864[label="",style="solid", color="black", weight=3]; 25.61/9.72 663[label="compare1 True False False",fontsize=16,color="black",shape="box"];663 -> 865[label="",style="solid", color="black", weight=3]; 25.61/9.72 664 -> 396[label="",style="dashed", color="red", weight=0]; 25.61/9.72 664[label="primCmpNat xuu31100000 xuu60000",fontsize=16,color="magenta"];664 -> 866[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 664 -> 867[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 665[label="GT",fontsize=16,color="green",shape="box"];666[label="LT",fontsize=16,color="green",shape="box"];667[label="EQ",fontsize=16,color="green",shape="box"];668[label="FiniteMap.Branch (xuu25 : xuu26) (FiniteMap.addListToFM0 xuu21 xuu27) xuu22 xuu23 xuu24",fontsize=16,color="green",shape="box"];668 -> 868[label="",style="dashed", color="green", weight=3]; 25.61/9.72 669[label="xuu25 : xuu26",fontsize=16,color="green",shape="box"];670[label="xuu27",fontsize=16,color="green",shape="box"];671[label="xuu24",fontsize=16,color="green",shape="box"];462[label="xuu31101",fontsize=16,color="green",shape="box"];857[label="FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41 + FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];857 -> 869[label="",style="solid", color="black", weight=3]; 25.61/9.72 856[label="FiniteMap.mkBalBranch6MkBalBranch5 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 xuu91",fontsize=16,color="burlywood",shape="triangle"];4073[label="xuu91/False",fontsize=10,color="white",style="solid",shape="box"];856 -> 4073[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4073 -> 870[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4074[label="xuu91/True",fontsize=10,color="white",style="solid",shape="box"];856 -> 4074[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4074 -> 871[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 2021[label="FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="black",shape="triangle"];2021 -> 2036[label="",style="solid", color="black", weight=3]; 25.61/9.72 2015[label="FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="black",shape="triangle"];2015 -> 2025[label="",style="solid", color="black", weight=3]; 25.61/9.72 2441[label="primPlusInt (Pos xuu2120) xuu211",fontsize=16,color="burlywood",shape="box"];4075[label="xuu211/Pos xuu2110",fontsize=10,color="white",style="solid",shape="box"];2441 -> 4075[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4075 -> 2447[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4076[label="xuu211/Neg xuu2110",fontsize=10,color="white",style="solid",shape="box"];2441 -> 4076[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4076 -> 2448[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 2442[label="primPlusInt (Neg xuu2120) xuu211",fontsize=16,color="burlywood",shape="box"];4077[label="xuu211/Pos xuu2110",fontsize=10,color="white",style="solid",shape="box"];2442 -> 4077[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4077 -> 2449[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4078[label="xuu211/Neg xuu2110",fontsize=10,color="white",style="solid",shape="box"];2442 -> 4078[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4078 -> 2450[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 3544[label="xuu600 : xuu601",fontsize=16,color="green",shape="box"];3545[label="xuu64",fontsize=16,color="green",shape="box"];3546[label="Zero",fontsize=16,color="green",shape="box"];3547[label="xuu61",fontsize=16,color="green",shape="box"];3548[label="xuu29",fontsize=16,color="green",shape="box"];3543[label="FiniteMap.mkBranch (Pos (Succ xuu307)) xuu308 xuu309 xuu310 xuu311",fontsize=16,color="black",shape="triangle"];3543 -> 3714[label="",style="solid", color="black", weight=3]; 25.61/9.72 993 -> 2014[label="",style="dashed", color="red", weight=0]; 25.61/9.72 993[label="FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="magenta"];993 -> 2015[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 993 -> 2016[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 992[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 xuu126",fontsize=16,color="burlywood",shape="triangle"];4079[label="xuu126/False",fontsize=10,color="white",style="solid",shape="box"];992 -> 4079[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4079 -> 1000[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4080[label="xuu126/True",fontsize=10,color="white",style="solid",shape="box"];992 -> 4080[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4080 -> 1001[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 672[label="() == xuu6000",fontsize=16,color="burlywood",shape="box"];4081[label="xuu6000/()",fontsize=10,color="white",style="solid",shape="box"];672 -> 4081[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4081 -> 878[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 673[label="primEqChar xuu3110000 xuu6000",fontsize=16,color="burlywood",shape="box"];4082[label="xuu3110000/Char xuu31100000",fontsize=10,color="white",style="solid",shape="box"];673 -> 4082[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4082 -> 879[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 674[label="(xuu31100000,xuu31100001) == xuu6000",fontsize=16,color="burlywood",shape="box"];4083[label="xuu6000/(xuu60000,xuu60001)",fontsize=10,color="white",style="solid",shape="box"];674 -> 4083[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4083 -> 880[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 675[label="(xuu31100000,xuu31100001,xuu31100002) == xuu6000",fontsize=16,color="burlywood",shape="box"];4084[label="xuu6000/(xuu60000,xuu60001,xuu60002)",fontsize=10,color="white",style="solid",shape="box"];675 -> 4084[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4084 -> 881[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 676[label="primEqFloat xuu3110000 xuu6000",fontsize=16,color="burlywood",shape="box"];4085[label="xuu3110000/Float xuu31100000 xuu31100001",fontsize=10,color="white",style="solid",shape="box"];676 -> 4085[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4085 -> 882[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 677[label="primEqInt xuu3110000 xuu6000",fontsize=16,color="burlywood",shape="triangle"];4086[label="xuu3110000/Pos xuu31100000",fontsize=10,color="white",style="solid",shape="box"];677 -> 4086[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4086 -> 883[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4087[label="xuu3110000/Neg xuu31100000",fontsize=10,color="white",style="solid",shape="box"];677 -> 4087[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4087 -> 884[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 678[label="False == xuu6000",fontsize=16,color="burlywood",shape="box"];4088[label="xuu6000/False",fontsize=10,color="white",style="solid",shape="box"];678 -> 4088[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4088 -> 885[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4089[label="xuu6000/True",fontsize=10,color="white",style="solid",shape="box"];678 -> 4089[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4089 -> 886[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 679[label="True == xuu6000",fontsize=16,color="burlywood",shape="box"];4090[label="xuu6000/False",fontsize=10,color="white",style="solid",shape="box"];679 -> 4090[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4090 -> 887[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4091[label="xuu6000/True",fontsize=10,color="white",style="solid",shape="box"];679 -> 4091[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4091 -> 888[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 680[label="Left xuu31100000 == xuu6000",fontsize=16,color="burlywood",shape="box"];4092[label="xuu6000/Left xuu60000",fontsize=10,color="white",style="solid",shape="box"];680 -> 4092[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4092 -> 889[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4093[label="xuu6000/Right xuu60000",fontsize=10,color="white",style="solid",shape="box"];680 -> 4093[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4093 -> 890[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 681[label="Right xuu31100000 == xuu6000",fontsize=16,color="burlywood",shape="box"];4094[label="xuu6000/Left xuu60000",fontsize=10,color="white",style="solid",shape="box"];681 -> 4094[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4094 -> 891[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4095[label="xuu6000/Right xuu60000",fontsize=10,color="white",style="solid",shape="box"];681 -> 4095[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4095 -> 892[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 682[label="primEqDouble xuu3110000 xuu6000",fontsize=16,color="burlywood",shape="box"];4096[label="xuu3110000/Double xuu31100000 xuu31100001",fontsize=10,color="white",style="solid",shape="box"];682 -> 4096[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4096 -> 893[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 683[label="xuu31100000 :% xuu31100001 == xuu6000",fontsize=16,color="burlywood",shape="box"];4097[label="xuu6000/xuu60000 :% xuu60001",fontsize=10,color="white",style="solid",shape="box"];683 -> 4097[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4097 -> 894[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 684[label="xuu31100000 : xuu31100001 == xuu6000",fontsize=16,color="burlywood",shape="box"];4098[label="xuu6000/xuu60000 : xuu60001",fontsize=10,color="white",style="solid",shape="box"];684 -> 4098[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4098 -> 895[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4099[label="xuu6000/[]",fontsize=10,color="white",style="solid",shape="box"];684 -> 4099[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4099 -> 896[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 685[label="[] == xuu6000",fontsize=16,color="burlywood",shape="box"];4100[label="xuu6000/xuu60000 : xuu60001",fontsize=10,color="white",style="solid",shape="box"];685 -> 4100[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4100 -> 897[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4101[label="xuu6000/[]",fontsize=10,color="white",style="solid",shape="box"];685 -> 4101[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4101 -> 898[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 686[label="Integer xuu31100000 == xuu6000",fontsize=16,color="burlywood",shape="box"];4102[label="xuu6000/Integer xuu60000",fontsize=10,color="white",style="solid",shape="box"];686 -> 4102[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4102 -> 899[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 687[label="Nothing == xuu6000",fontsize=16,color="burlywood",shape="box"];4103[label="xuu6000/Nothing",fontsize=10,color="white",style="solid",shape="box"];687 -> 4103[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4103 -> 900[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4104[label="xuu6000/Just xuu60000",fontsize=10,color="white",style="solid",shape="box"];687 -> 4104[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4104 -> 901[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 688[label="Just xuu31100000 == xuu6000",fontsize=16,color="burlywood",shape="box"];4105[label="xuu6000/Nothing",fontsize=10,color="white",style="solid",shape="box"];688 -> 4105[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4105 -> 902[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4106[label="xuu6000/Just xuu60000",fontsize=10,color="white",style="solid",shape="box"];688 -> 4106[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4106 -> 903[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 689[label="LT == xuu6000",fontsize=16,color="burlywood",shape="box"];4107[label="xuu6000/LT",fontsize=10,color="white",style="solid",shape="box"];689 -> 4107[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4107 -> 904[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4108[label="xuu6000/EQ",fontsize=10,color="white",style="solid",shape="box"];689 -> 4108[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4108 -> 905[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4109[label="xuu6000/GT",fontsize=10,color="white",style="solid",shape="box"];689 -> 4109[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4109 -> 906[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 690[label="EQ == xuu6000",fontsize=16,color="burlywood",shape="box"];4110[label="xuu6000/LT",fontsize=10,color="white",style="solid",shape="box"];690 -> 4110[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4110 -> 907[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4111[label="xuu6000/EQ",fontsize=10,color="white",style="solid",shape="box"];690 -> 4111[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4111 -> 908[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4112[label="xuu6000/GT",fontsize=10,color="white",style="solid",shape="box"];690 -> 4112[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4112 -> 909[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 691[label="GT == xuu6000",fontsize=16,color="burlywood",shape="box"];4113[label="xuu6000/LT",fontsize=10,color="white",style="solid",shape="box"];691 -> 4113[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4113 -> 910[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4114[label="xuu6000/EQ",fontsize=10,color="white",style="solid",shape="box"];691 -> 4114[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4114 -> 911[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4115[label="xuu6000/GT",fontsize=10,color="white",style="solid",shape="box"];691 -> 4115[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4115 -> 912[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 692 -> 1073[label="",style="dashed", color="red", weight=0]; 25.61/9.72 692[label="compare1 (Left xuu47) (Left xuu48) (Left xuu47 <= Left xuu48)",fontsize=16,color="magenta"];692 -> 1074[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 692 -> 1075[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 692 -> 1076[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 693[label="EQ",fontsize=16,color="green",shape="box"];694[label="LT",fontsize=16,color="green",shape="box"];695[label="compare0 (Right xuu3110000) (Left xuu6000) otherwise",fontsize=16,color="black",shape="box"];695 -> 914[label="",style="solid", color="black", weight=3]; 25.61/9.72 696[label="xuu6000",fontsize=16,color="green",shape="box"];697[label="xuu3110000",fontsize=16,color="green",shape="box"];698[label="xuu6000",fontsize=16,color="green",shape="box"];699[label="xuu3110000",fontsize=16,color="green",shape="box"];700[label="xuu6000",fontsize=16,color="green",shape="box"];701[label="xuu3110000",fontsize=16,color="green",shape="box"];702[label="xuu6000",fontsize=16,color="green",shape="box"];703[label="xuu3110000",fontsize=16,color="green",shape="box"];704[label="xuu6000",fontsize=16,color="green",shape="box"];705[label="xuu3110000",fontsize=16,color="green",shape="box"];706[label="xuu6000",fontsize=16,color="green",shape="box"];707[label="xuu3110000",fontsize=16,color="green",shape="box"];708[label="xuu6000",fontsize=16,color="green",shape="box"];709[label="xuu3110000",fontsize=16,color="green",shape="box"];710[label="xuu6000",fontsize=16,color="green",shape="box"];711[label="xuu3110000",fontsize=16,color="green",shape="box"];712[label="xuu6000",fontsize=16,color="green",shape="box"];713[label="xuu3110000",fontsize=16,color="green",shape="box"];714[label="xuu6000",fontsize=16,color="green",shape="box"];715[label="xuu3110000",fontsize=16,color="green",shape="box"];716[label="xuu6000",fontsize=16,color="green",shape="box"];717[label="xuu3110000",fontsize=16,color="green",shape="box"];718[label="xuu6000",fontsize=16,color="green",shape="box"];719[label="xuu3110000",fontsize=16,color="green",shape="box"];720[label="xuu6000",fontsize=16,color="green",shape="box"];721[label="xuu3110000",fontsize=16,color="green",shape="box"];722[label="xuu6000",fontsize=16,color="green",shape="box"];723[label="xuu3110000",fontsize=16,color="green",shape="box"];724 -> 1086[label="",style="dashed", color="red", weight=0]; 25.61/9.72 724[label="compare1 (Right xuu54) (Right xuu55) (Right xuu54 <= Right xuu55)",fontsize=16,color="magenta"];724 -> 1087[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 724 -> 1088[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 724 -> 1089[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 725[label="EQ",fontsize=16,color="green",shape="box"];1182 -> 544[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1182[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1182 -> 1241[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1182 -> 1242[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1183 -> 545[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1183[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1183 -> 1243[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1183 -> 1244[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1184 -> 546[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1184[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1184 -> 1245[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1184 -> 1246[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1185 -> 547[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1185[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1185 -> 1247[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1185 -> 1248[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1186 -> 548[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1186[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1186 -> 1249[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1186 -> 1250[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1187 -> 549[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1187[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1187 -> 1251[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1187 -> 1252[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1188 -> 550[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1188[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1188 -> 1253[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1188 -> 1254[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1189 -> 551[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1189[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1189 -> 1255[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1189 -> 1256[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1190 -> 552[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1190[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1190 -> 1257[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1190 -> 1258[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1191 -> 553[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1191[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1191 -> 1259[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1191 -> 1260[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1192 -> 554[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1192[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1192 -> 1261[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1192 -> 1262[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1193 -> 555[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1193[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1193 -> 1263[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1193 -> 1264[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1194 -> 556[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1194[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1194 -> 1265[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1194 -> 1266[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1195 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1195[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1195 -> 1267[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1195 -> 1268[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1196[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];4116[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 4116[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4116 -> 1269[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4117[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 4117[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4117 -> 1270[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4118[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 4118[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4118 -> 1271[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4119[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 4119[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4119 -> 1272[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4120[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 4120[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4120 -> 1273[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4121[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 4121[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4121 -> 1274[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4122[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 4122[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4122 -> 1275[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4123[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 4123[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4123 -> 1276[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4124[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 4124[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4124 -> 1277[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4125[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 4125[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4125 -> 1278[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4126[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 4126[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4126 -> 1279[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4127[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 4127[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4127 -> 1280[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4128[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 4128[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4128 -> 1281[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4129[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 4129[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4129 -> 1282[label="",style="solid", color="blue", weight=3]; 25.61/9.72 1197[label="xuu3110002 == xuu6002",fontsize=16,color="blue",shape="box"];4130[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4130[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4130 -> 1283[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4131[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4131[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4131 -> 1284[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4132[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4132[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4132 -> 1285[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4133[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4133[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4133 -> 1286[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4134[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4134[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4134 -> 1287[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4135[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4135[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4135 -> 1288[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4136[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4136[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4136 -> 1289[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4137[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4137[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4137 -> 1290[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4138[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4138[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4138 -> 1291[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4139[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4139[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4139 -> 1292[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4140[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4140[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4140 -> 1293[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4141[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4141[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4141 -> 1294[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4142[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4142[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4142 -> 1295[label="",style="solid", color="blue", weight=3]; 25.61/9.72 4143[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4143[label="",style="solid", color="blue", weight=9]; 25.61/9.72 4143 -> 1296[label="",style="solid", color="blue", weight=3]; 25.61/9.72 1198[label="False && xuu149",fontsize=16,color="black",shape="box"];1198 -> 1297[label="",style="solid", color="black", weight=3]; 25.61/9.72 1199[label="True && xuu149",fontsize=16,color="black",shape="box"];1199 -> 1298[label="",style="solid", color="black", weight=3]; 25.61/9.72 1200[label="compare1 (xuu101,xuu102,xuu103) (xuu104,xuu105,xuu106) ((xuu101,xuu102,xuu103) <= (xuu104,xuu105,xuu106))",fontsize=16,color="black",shape="box"];1200 -> 1299[label="",style="solid", color="black", weight=3]; 25.61/9.72 1201[label="EQ",fontsize=16,color="green",shape="box"];756[label="xuu6000",fontsize=16,color="green",shape="box"];757[label="Pos xuu31100010",fontsize=16,color="green",shape="box"];758[label="Pos xuu60010",fontsize=16,color="green",shape="box"];759[label="xuu3110000",fontsize=16,color="green",shape="box"];760[label="xuu6000",fontsize=16,color="green",shape="box"];761[label="Neg xuu31100010",fontsize=16,color="green",shape="box"];762[label="Pos xuu60010",fontsize=16,color="green",shape="box"];763[label="xuu3110000",fontsize=16,color="green",shape="box"];764[label="xuu6000",fontsize=16,color="green",shape="box"];765[label="Pos xuu31100010",fontsize=16,color="green",shape="box"];766[label="Neg xuu60010",fontsize=16,color="green",shape="box"];767[label="xuu3110000",fontsize=16,color="green",shape="box"];768[label="xuu6000",fontsize=16,color="green",shape="box"];769[label="Neg xuu31100010",fontsize=16,color="green",shape="box"];770[label="Neg xuu60010",fontsize=16,color="green",shape="box"];771[label="xuu3110000",fontsize=16,color="green",shape="box"];772[label="xuu6000",fontsize=16,color="green",shape="box"];773[label="Pos xuu31100010",fontsize=16,color="green",shape="box"];774[label="Pos xuu60010",fontsize=16,color="green",shape="box"];775[label="xuu3110000",fontsize=16,color="green",shape="box"];776[label="xuu6000",fontsize=16,color="green",shape="box"];777[label="Neg xuu31100010",fontsize=16,color="green",shape="box"];778[label="Pos xuu60010",fontsize=16,color="green",shape="box"];779[label="xuu3110000",fontsize=16,color="green",shape="box"];780[label="xuu6000",fontsize=16,color="green",shape="box"];781[label="Pos xuu31100010",fontsize=16,color="green",shape="box"];782[label="Neg xuu60010",fontsize=16,color="green",shape="box"];783[label="xuu3110000",fontsize=16,color="green",shape="box"];784[label="xuu6000",fontsize=16,color="green",shape="box"];785[label="Neg xuu31100010",fontsize=16,color="green",shape="box"];786[label="Neg xuu60010",fontsize=16,color="green",shape="box"];787[label="xuu3110000",fontsize=16,color="green",shape="box"];788[label="LT",fontsize=16,color="green",shape="box"];789[label="LT",fontsize=16,color="green",shape="box"];790[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];790 -> 925[label="",style="solid", color="black", weight=3]; 25.61/9.72 791[label="LT",fontsize=16,color="green",shape="box"];792[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];792 -> 926[label="",style="solid", color="black", weight=3]; 25.61/9.72 793[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];793 -> 927[label="",style="solid", color="black", weight=3]; 25.61/9.72 794[label="LT",fontsize=16,color="green",shape="box"];795[label="compare0 (Just xuu3110000) Nothing otherwise",fontsize=16,color="black",shape="box"];795 -> 928[label="",style="solid", color="black", weight=3]; 25.61/9.72 796[label="xuu6000",fontsize=16,color="green",shape="box"];797[label="xuu3110000",fontsize=16,color="green",shape="box"];798[label="xuu6000",fontsize=16,color="green",shape="box"];799[label="xuu3110000",fontsize=16,color="green",shape="box"];800[label="xuu6000",fontsize=16,color="green",shape="box"];801[label="xuu3110000",fontsize=16,color="green",shape="box"];802[label="xuu6000",fontsize=16,color="green",shape="box"];803[label="xuu3110000",fontsize=16,color="green",shape="box"];804[label="xuu6000",fontsize=16,color="green",shape="box"];805[label="xuu3110000",fontsize=16,color="green",shape="box"];806[label="xuu6000",fontsize=16,color="green",shape="box"];807[label="xuu3110000",fontsize=16,color="green",shape="box"];808[label="xuu6000",fontsize=16,color="green",shape="box"];809[label="xuu3110000",fontsize=16,color="green",shape="box"];810[label="xuu6000",fontsize=16,color="green",shape="box"];811[label="xuu3110000",fontsize=16,color="green",shape="box"];812[label="xuu6000",fontsize=16,color="green",shape="box"];813[label="xuu3110000",fontsize=16,color="green",shape="box"];814[label="xuu6000",fontsize=16,color="green",shape="box"];815[label="xuu3110000",fontsize=16,color="green",shape="box"];816[label="xuu6000",fontsize=16,color="green",shape="box"];817[label="xuu3110000",fontsize=16,color="green",shape="box"];818[label="xuu6000",fontsize=16,color="green",shape="box"];819[label="xuu3110000",fontsize=16,color="green",shape="box"];820[label="xuu6000",fontsize=16,color="green",shape="box"];821[label="xuu3110000",fontsize=16,color="green",shape="box"];822[label="xuu6000",fontsize=16,color="green",shape="box"];823[label="xuu3110000",fontsize=16,color="green",shape="box"];824 -> 1234[label="",style="dashed", color="red", weight=0]; 25.61/9.72 824[label="compare1 (Just xuu76) (Just xuu77) (Just xuu76 <= Just xuu77)",fontsize=16,color="magenta"];824 -> 1235[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 824 -> 1236[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 824 -> 1237[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 825[label="EQ",fontsize=16,color="green",shape="box"];1202 -> 544[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1202[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1202 -> 1300[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1202 -> 1301[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1203 -> 545[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1203[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1203 -> 1302[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1203 -> 1303[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1204 -> 546[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1204[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1204 -> 1304[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1204 -> 1305[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1205 -> 547[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1205[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1205 -> 1306[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1205 -> 1307[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1206 -> 548[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1206[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1206 -> 1308[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1206 -> 1309[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1207 -> 549[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1207[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1207 -> 1310[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1207 -> 1311[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1208 -> 550[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1208[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1208 -> 1312[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1208 -> 1313[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1209 -> 551[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1209[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1209 -> 1314[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1209 -> 1315[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1210 -> 552[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1210[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1210 -> 1316[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1210 -> 1317[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1211 -> 553[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1211[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1211 -> 1318[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1211 -> 1319[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1212 -> 554[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1212[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1212 -> 1320[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1212 -> 1321[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1213 -> 555[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1213[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1213 -> 1322[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1213 -> 1323[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1214 -> 556[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1214[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1214 -> 1324[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1214 -> 1325[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1215 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1215[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1215 -> 1326[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1215 -> 1327[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1216 -> 544[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1216[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1216 -> 1328[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1216 -> 1329[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1217 -> 545[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1217[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1217 -> 1330[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1217 -> 1331[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1218 -> 546[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1218[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1218 -> 1332[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1218 -> 1333[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1219 -> 547[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1219[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1219 -> 1334[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1219 -> 1335[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1220 -> 548[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1220[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1220 -> 1336[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1220 -> 1337[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1221 -> 549[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1221[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1221 -> 1338[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1221 -> 1339[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1222 -> 550[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1222[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1222 -> 1340[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1222 -> 1341[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1223 -> 551[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1223[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1223 -> 1342[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1223 -> 1343[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1224 -> 552[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1224[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1224 -> 1344[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1224 -> 1345[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1225 -> 553[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1225[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1225 -> 1346[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1225 -> 1347[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1226 -> 554[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1226[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1226 -> 1348[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1226 -> 1349[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1227 -> 555[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1227[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1227 -> 1350[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1227 -> 1351[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1228 -> 556[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1228[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1228 -> 1352[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1228 -> 1353[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1229 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.72 1229[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1229 -> 1354[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 1229 -> 1355[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 996[label="compare1 (xuu114,xuu115) (xuu116,xuu117) ((xuu114,xuu115) <= (xuu116,xuu117))",fontsize=16,color="black",shape="box"];996 -> 1032[label="",style="solid", color="black", weight=3]; 25.61/9.72 997[label="EQ",fontsize=16,color="green",shape="box"];859[label="primMulInt (Pos xuu60000) (Pos xuu31100010)",fontsize=16,color="black",shape="box"];859 -> 974[label="",style="solid", color="black", weight=3]; 25.61/9.72 860[label="primMulInt (Pos xuu60000) (Neg xuu31100010)",fontsize=16,color="black",shape="box"];860 -> 975[label="",style="solid", color="black", weight=3]; 25.61/9.72 861[label="primMulInt (Neg xuu60000) (Pos xuu31100010)",fontsize=16,color="black",shape="box"];861 -> 976[label="",style="solid", color="black", weight=3]; 25.61/9.72 862[label="primMulInt (Neg xuu60000) (Neg xuu31100010)",fontsize=16,color="black",shape="box"];862 -> 977[label="",style="solid", color="black", weight=3]; 25.61/9.72 863[label="Integer (primMulInt xuu60000 xuu31100010)",fontsize=16,color="green",shape="box"];863 -> 978[label="",style="dashed", color="green", weight=3]; 25.61/9.72 864[label="LT",fontsize=16,color="green",shape="box"];865[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];865 -> 979[label="",style="solid", color="black", weight=3]; 25.61/9.72 866[label="xuu31100000",fontsize=16,color="green",shape="box"];867[label="xuu60000",fontsize=16,color="green",shape="box"];868 -> 405[label="",style="dashed", color="red", weight=0]; 25.61/9.72 868[label="FiniteMap.addListToFM0 xuu21 xuu27",fontsize=16,color="magenta"];868 -> 980[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 868 -> 981[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 869 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.72 869[label="compare (FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41 + FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];869 -> 982[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 869 -> 983[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 870[label="FiniteMap.mkBalBranch6MkBalBranch5 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 False",fontsize=16,color="black",shape="box"];870 -> 984[label="",style="solid", color="black", weight=3]; 25.61/9.72 871[label="FiniteMap.mkBalBranch6MkBalBranch5 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 True",fontsize=16,color="black",shape="box"];871 -> 985[label="",style="solid", color="black", weight=3]; 25.61/9.72 2036 -> 2025[label="",style="dashed", color="red", weight=0]; 25.61/9.72 2036[label="FiniteMap.sizeFM xuu29",fontsize=16,color="magenta"];2036 -> 2320[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 2025[label="FiniteMap.sizeFM xuu64",fontsize=16,color="burlywood",shape="triangle"];4144[label="xuu64/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2025 -> 4144[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4144 -> 2225[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4145[label="xuu64/FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644",fontsize=10,color="white",style="solid",shape="box"];2025 -> 4145[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4145 -> 2226[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 2447[label="primPlusInt (Pos xuu2120) (Pos xuu2110)",fontsize=16,color="black",shape="box"];2447 -> 2461[label="",style="solid", color="black", weight=3]; 25.61/9.72 2448[label="primPlusInt (Pos xuu2120) (Neg xuu2110)",fontsize=16,color="black",shape="box"];2448 -> 2462[label="",style="solid", color="black", weight=3]; 25.61/9.72 2449[label="primPlusInt (Neg xuu2120) (Pos xuu2110)",fontsize=16,color="black",shape="box"];2449 -> 2463[label="",style="solid", color="black", weight=3]; 25.61/9.72 2450[label="primPlusInt (Neg xuu2120) (Neg xuu2110)",fontsize=16,color="black",shape="box"];2450 -> 2464[label="",style="solid", color="black", weight=3]; 25.61/9.72 3714[label="FiniteMap.mkBranchResult xuu308 xuu309 xuu311 xuu310",fontsize=16,color="black",shape="box"];3714 -> 3767[label="",style="solid", color="black", weight=3]; 25.61/9.72 2016 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.72 2016[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="magenta"];2016 -> 2026[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 2016 -> 2027[label="",style="dashed", color="magenta", weight=3]; 25.61/9.72 2014[label="xuu202 > xuu201",fontsize=16,color="black",shape="triangle"];2014 -> 2028[label="",style="solid", color="black", weight=3]; 25.61/9.72 1000[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 False",fontsize=16,color="black",shape="box"];1000 -> 1080[label="",style="solid", color="black", weight=3]; 25.61/9.72 1001[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 True",fontsize=16,color="black",shape="box"];1001 -> 1081[label="",style="solid", color="black", weight=3]; 25.61/9.72 878[label="() == ()",fontsize=16,color="black",shape="box"];878 -> 1036[label="",style="solid", color="black", weight=3]; 25.61/9.72 879[label="primEqChar (Char xuu31100000) xuu6000",fontsize=16,color="burlywood",shape="box"];4146[label="xuu6000/Char xuu60000",fontsize=10,color="white",style="solid",shape="box"];879 -> 4146[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4146 -> 1037[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 880[label="(xuu31100000,xuu31100001) == (xuu60000,xuu60001)",fontsize=16,color="black",shape="box"];880 -> 1038[label="",style="solid", color="black", weight=3]; 25.61/9.72 881[label="(xuu31100000,xuu31100001,xuu31100002) == (xuu60000,xuu60001,xuu60002)",fontsize=16,color="black",shape="box"];881 -> 1039[label="",style="solid", color="black", weight=3]; 25.61/9.72 882[label="primEqFloat (Float xuu31100000 xuu31100001) xuu6000",fontsize=16,color="burlywood",shape="box"];4147[label="xuu6000/Float xuu60000 xuu60001",fontsize=10,color="white",style="solid",shape="box"];882 -> 4147[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4147 -> 1040[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 883[label="primEqInt (Pos xuu31100000) xuu6000",fontsize=16,color="burlywood",shape="box"];4148[label="xuu31100000/Succ xuu311000000",fontsize=10,color="white",style="solid",shape="box"];883 -> 4148[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4148 -> 1041[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4149[label="xuu31100000/Zero",fontsize=10,color="white",style="solid",shape="box"];883 -> 4149[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4149 -> 1042[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 884[label="primEqInt (Neg xuu31100000) xuu6000",fontsize=16,color="burlywood",shape="box"];4150[label="xuu31100000/Succ xuu311000000",fontsize=10,color="white",style="solid",shape="box"];884 -> 4150[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4150 -> 1043[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4151[label="xuu31100000/Zero",fontsize=10,color="white",style="solid",shape="box"];884 -> 4151[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4151 -> 1044[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 885[label="False == False",fontsize=16,color="black",shape="box"];885 -> 1045[label="",style="solid", color="black", weight=3]; 25.61/9.72 886[label="False == True",fontsize=16,color="black",shape="box"];886 -> 1046[label="",style="solid", color="black", weight=3]; 25.61/9.72 887[label="True == False",fontsize=16,color="black",shape="box"];887 -> 1047[label="",style="solid", color="black", weight=3]; 25.61/9.72 888[label="True == True",fontsize=16,color="black",shape="box"];888 -> 1048[label="",style="solid", color="black", weight=3]; 25.61/9.72 889[label="Left xuu31100000 == Left xuu60000",fontsize=16,color="black",shape="box"];889 -> 1049[label="",style="solid", color="black", weight=3]; 25.61/9.72 890[label="Left xuu31100000 == Right xuu60000",fontsize=16,color="black",shape="box"];890 -> 1050[label="",style="solid", color="black", weight=3]; 25.61/9.72 891[label="Right xuu31100000 == Left xuu60000",fontsize=16,color="black",shape="box"];891 -> 1051[label="",style="solid", color="black", weight=3]; 25.61/9.72 892[label="Right xuu31100000 == Right xuu60000",fontsize=16,color="black",shape="box"];892 -> 1052[label="",style="solid", color="black", weight=3]; 25.61/9.72 893[label="primEqDouble (Double xuu31100000 xuu31100001) xuu6000",fontsize=16,color="burlywood",shape="box"];4152[label="xuu6000/Double xuu60000 xuu60001",fontsize=10,color="white",style="solid",shape="box"];893 -> 4152[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4152 -> 1053[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 894[label="xuu31100000 :% xuu31100001 == xuu60000 :% xuu60001",fontsize=16,color="black",shape="box"];894 -> 1054[label="",style="solid", color="black", weight=3]; 25.61/9.72 895[label="xuu31100000 : xuu31100001 == xuu60000 : xuu60001",fontsize=16,color="black",shape="box"];895 -> 1055[label="",style="solid", color="black", weight=3]; 25.61/9.72 896[label="xuu31100000 : xuu31100001 == []",fontsize=16,color="black",shape="box"];896 -> 1056[label="",style="solid", color="black", weight=3]; 25.61/9.72 897[label="[] == xuu60000 : xuu60001",fontsize=16,color="black",shape="box"];897 -> 1057[label="",style="solid", color="black", weight=3]; 25.61/9.72 898[label="[] == []",fontsize=16,color="black",shape="box"];898 -> 1058[label="",style="solid", color="black", weight=3]; 25.61/9.72 899[label="Integer xuu31100000 == Integer xuu60000",fontsize=16,color="black",shape="box"];899 -> 1059[label="",style="solid", color="black", weight=3]; 25.61/9.72 900[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];900 -> 1060[label="",style="solid", color="black", weight=3]; 25.61/9.72 901[label="Nothing == Just xuu60000",fontsize=16,color="black",shape="box"];901 -> 1061[label="",style="solid", color="black", weight=3]; 25.61/9.72 902[label="Just xuu31100000 == Nothing",fontsize=16,color="black",shape="box"];902 -> 1062[label="",style="solid", color="black", weight=3]; 25.61/9.72 903[label="Just xuu31100000 == Just xuu60000",fontsize=16,color="black",shape="box"];903 -> 1063[label="",style="solid", color="black", weight=3]; 25.61/9.72 904[label="LT == LT",fontsize=16,color="black",shape="box"];904 -> 1064[label="",style="solid", color="black", weight=3]; 25.61/9.72 905[label="LT == EQ",fontsize=16,color="black",shape="box"];905 -> 1065[label="",style="solid", color="black", weight=3]; 25.61/9.72 906[label="LT == GT",fontsize=16,color="black",shape="box"];906 -> 1066[label="",style="solid", color="black", weight=3]; 25.61/9.72 907[label="EQ == LT",fontsize=16,color="black",shape="box"];907 -> 1067[label="",style="solid", color="black", weight=3]; 25.61/9.72 908[label="EQ == EQ",fontsize=16,color="black",shape="box"];908 -> 1068[label="",style="solid", color="black", weight=3]; 25.61/9.72 909[label="EQ == GT",fontsize=16,color="black",shape="box"];909 -> 1069[label="",style="solid", color="black", weight=3]; 25.61/9.72 910[label="GT == LT",fontsize=16,color="black",shape="box"];910 -> 1070[label="",style="solid", color="black", weight=3]; 25.61/9.72 911[label="GT == EQ",fontsize=16,color="black",shape="box"];911 -> 1071[label="",style="solid", color="black", weight=3]; 25.61/9.72 912[label="GT == GT",fontsize=16,color="black",shape="box"];912 -> 1072[label="",style="solid", color="black", weight=3]; 25.61/9.72 1074[label="xuu47",fontsize=16,color="green",shape="box"];1075[label="Left xuu47 <= Left xuu48",fontsize=16,color="black",shape="box"];1075 -> 1082[label="",style="solid", color="black", weight=3]; 25.61/9.72 1076[label="xuu48",fontsize=16,color="green",shape="box"];1073[label="compare1 (Left xuu133) (Left xuu134) xuu135",fontsize=16,color="burlywood",shape="triangle"];4153[label="xuu135/False",fontsize=10,color="white",style="solid",shape="box"];1073 -> 4153[label="",style="solid", color="burlywood", weight=9]; 25.61/9.72 4153 -> 1083[label="",style="solid", color="burlywood", weight=3]; 25.61/9.72 4154[label="xuu135/True",fontsize=10,color="white",style="solid",shape="box"];1073 -> 4154[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4154 -> 1084[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 914[label="compare0 (Right xuu3110000) (Left xuu6000) True",fontsize=16,color="black",shape="box"];914 -> 1085[label="",style="solid", color="black", weight=3]; 25.61/9.73 1087[label="xuu55",fontsize=16,color="green",shape="box"];1088[label="Right xuu54 <= Right xuu55",fontsize=16,color="black",shape="box"];1088 -> 1093[label="",style="solid", color="black", weight=3]; 25.61/9.73 1089[label="xuu54",fontsize=16,color="green",shape="box"];1086[label="compare1 (Right xuu140) (Right xuu141) xuu142",fontsize=16,color="burlywood",shape="triangle"];4155[label="xuu142/False",fontsize=10,color="white",style="solid",shape="box"];1086 -> 4155[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4155 -> 1094[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4156[label="xuu142/True",fontsize=10,color="white",style="solid",shape="box"];1086 -> 4156[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4156 -> 1095[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1241[label="xuu6000",fontsize=16,color="green",shape="box"];1242[label="xuu3110000",fontsize=16,color="green",shape="box"];1243[label="xuu6000",fontsize=16,color="green",shape="box"];1244[label="xuu3110000",fontsize=16,color="green",shape="box"];1245[label="xuu6000",fontsize=16,color="green",shape="box"];1246[label="xuu3110000",fontsize=16,color="green",shape="box"];1247[label="xuu6000",fontsize=16,color="green",shape="box"];1248[label="xuu3110000",fontsize=16,color="green",shape="box"];1249[label="xuu6000",fontsize=16,color="green",shape="box"];1250[label="xuu3110000",fontsize=16,color="green",shape="box"];1251[label="xuu6000",fontsize=16,color="green",shape="box"];1252[label="xuu3110000",fontsize=16,color="green",shape="box"];1253[label="xuu6000",fontsize=16,color="green",shape="box"];1254[label="xuu3110000",fontsize=16,color="green",shape="box"];1255[label="xuu6000",fontsize=16,color="green",shape="box"];1256[label="xuu3110000",fontsize=16,color="green",shape="box"];1257[label="xuu6000",fontsize=16,color="green",shape="box"];1258[label="xuu3110000",fontsize=16,color="green",shape="box"];1259[label="xuu6000",fontsize=16,color="green",shape="box"];1260[label="xuu3110000",fontsize=16,color="green",shape="box"];1261[label="xuu6000",fontsize=16,color="green",shape="box"];1262[label="xuu3110000",fontsize=16,color="green",shape="box"];1263[label="xuu6000",fontsize=16,color="green",shape="box"];1264[label="xuu3110000",fontsize=16,color="green",shape="box"];1265[label="xuu6000",fontsize=16,color="green",shape="box"];1266[label="xuu3110000",fontsize=16,color="green",shape="box"];1267[label="xuu6000",fontsize=16,color="green",shape="box"];1268[label="xuu3110000",fontsize=16,color="green",shape="box"];1269 -> 544[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1269[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1269 -> 1361[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1269 -> 1362[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1270 -> 545[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1270[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1270 -> 1363[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1270 -> 1364[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1271 -> 546[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1271[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1271 -> 1365[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1271 -> 1366[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1272 -> 547[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1272[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1272 -> 1367[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1272 -> 1368[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1273 -> 548[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1273[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1273 -> 1369[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1273 -> 1370[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1274 -> 549[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1274[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1274 -> 1371[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1274 -> 1372[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1275 -> 550[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1275[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1275 -> 1373[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1275 -> 1374[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1276 -> 551[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1276[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1276 -> 1375[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1276 -> 1376[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1277 -> 552[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1277[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1277 -> 1377[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1277 -> 1378[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1278 -> 553[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1278[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1278 -> 1379[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1278 -> 1380[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1279 -> 554[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1279[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1279 -> 1381[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1279 -> 1382[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1280 -> 555[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1280[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1280 -> 1383[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1280 -> 1384[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1281 -> 556[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1281[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1281 -> 1385[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1281 -> 1386[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1282 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1282[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1282 -> 1387[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1282 -> 1388[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1283 -> 544[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1283[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1283 -> 1389[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1283 -> 1390[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1284 -> 545[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1284[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1284 -> 1391[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1284 -> 1392[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1285 -> 546[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1285[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1285 -> 1393[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1285 -> 1394[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1286 -> 547[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1286[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1286 -> 1395[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1286 -> 1396[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1287 -> 548[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1287[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1287 -> 1397[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1287 -> 1398[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1288 -> 549[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1288[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1288 -> 1399[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1288 -> 1400[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1289 -> 550[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1289[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1289 -> 1401[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1289 -> 1402[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1290 -> 551[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1290[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1290 -> 1403[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1290 -> 1404[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1291 -> 552[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1291[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1291 -> 1405[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1291 -> 1406[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1292 -> 553[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1292[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1292 -> 1407[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1292 -> 1408[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1293 -> 554[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1293[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1293 -> 1409[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1293 -> 1410[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1294 -> 555[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1294[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1294 -> 1411[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1294 -> 1412[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1295 -> 556[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1295[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1295 -> 1413[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1295 -> 1414[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1296 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1296[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1296 -> 1415[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1296 -> 1416[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1297[label="False",fontsize=16,color="green",shape="box"];1298[label="xuu149",fontsize=16,color="green",shape="box"];1299 -> 1534[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1299[label="compare1 (xuu101,xuu102,xuu103) (xuu104,xuu105,xuu106) (xuu101 < xuu104 || xuu101 == xuu104 && (xuu102 < xuu105 || xuu102 == xuu105 && xuu103 <= xuu106))",fontsize=16,color="magenta"];1299 -> 1535[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1299 -> 1536[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1299 -> 1537[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1299 -> 1538[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1299 -> 1539[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1299 -> 1540[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1299 -> 1541[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1299 -> 1542[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 925[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];925 -> 1230[label="",style="solid", color="black", weight=3]; 25.61/9.73 926[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];926 -> 1231[label="",style="solid", color="black", weight=3]; 25.61/9.73 927[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];927 -> 1232[label="",style="solid", color="black", weight=3]; 25.61/9.73 928[label="compare0 (Just xuu3110000) Nothing True",fontsize=16,color="black",shape="box"];928 -> 1233[label="",style="solid", color="black", weight=3]; 25.61/9.73 1235[label="Just xuu76 <= Just xuu77",fontsize=16,color="black",shape="box"];1235 -> 1356[label="",style="solid", color="black", weight=3]; 25.61/9.73 1236[label="xuu76",fontsize=16,color="green",shape="box"];1237[label="xuu77",fontsize=16,color="green",shape="box"];1234[label="compare1 (Just xuu154) (Just xuu155) xuu156",fontsize=16,color="burlywood",shape="triangle"];4157[label="xuu156/False",fontsize=10,color="white",style="solid",shape="box"];1234 -> 4157[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4157 -> 1357[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4158[label="xuu156/True",fontsize=10,color="white",style="solid",shape="box"];1234 -> 4158[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4158 -> 1358[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1300[label="xuu6000",fontsize=16,color="green",shape="box"];1301[label="xuu3110000",fontsize=16,color="green",shape="box"];1302[label="xuu6000",fontsize=16,color="green",shape="box"];1303[label="xuu3110000",fontsize=16,color="green",shape="box"];1304[label="xuu6000",fontsize=16,color="green",shape="box"];1305[label="xuu3110000",fontsize=16,color="green",shape="box"];1306[label="xuu6000",fontsize=16,color="green",shape="box"];1307[label="xuu3110000",fontsize=16,color="green",shape="box"];1308[label="xuu6000",fontsize=16,color="green",shape="box"];1309[label="xuu3110000",fontsize=16,color="green",shape="box"];1310[label="xuu6000",fontsize=16,color="green",shape="box"];1311[label="xuu3110000",fontsize=16,color="green",shape="box"];1312[label="xuu6000",fontsize=16,color="green",shape="box"];1313[label="xuu3110000",fontsize=16,color="green",shape="box"];1314[label="xuu6000",fontsize=16,color="green",shape="box"];1315[label="xuu3110000",fontsize=16,color="green",shape="box"];1316[label="xuu6000",fontsize=16,color="green",shape="box"];1317[label="xuu3110000",fontsize=16,color="green",shape="box"];1318[label="xuu6000",fontsize=16,color="green",shape="box"];1319[label="xuu3110000",fontsize=16,color="green",shape="box"];1320[label="xuu6000",fontsize=16,color="green",shape="box"];1321[label="xuu3110000",fontsize=16,color="green",shape="box"];1322[label="xuu6000",fontsize=16,color="green",shape="box"];1323[label="xuu3110000",fontsize=16,color="green",shape="box"];1324[label="xuu6000",fontsize=16,color="green",shape="box"];1325[label="xuu3110000",fontsize=16,color="green",shape="box"];1326[label="xuu6000",fontsize=16,color="green",shape="box"];1327[label="xuu3110000",fontsize=16,color="green",shape="box"];1328[label="xuu6001",fontsize=16,color="green",shape="box"];1329[label="xuu3110001",fontsize=16,color="green",shape="box"];1330[label="xuu6001",fontsize=16,color="green",shape="box"];1331[label="xuu3110001",fontsize=16,color="green",shape="box"];1332[label="xuu6001",fontsize=16,color="green",shape="box"];1333[label="xuu3110001",fontsize=16,color="green",shape="box"];1334[label="xuu6001",fontsize=16,color="green",shape="box"];1335[label="xuu3110001",fontsize=16,color="green",shape="box"];1336[label="xuu6001",fontsize=16,color="green",shape="box"];1337[label="xuu3110001",fontsize=16,color="green",shape="box"];1338[label="xuu6001",fontsize=16,color="green",shape="box"];1339[label="xuu3110001",fontsize=16,color="green",shape="box"];1340[label="xuu6001",fontsize=16,color="green",shape="box"];1341[label="xuu3110001",fontsize=16,color="green",shape="box"];1342[label="xuu6001",fontsize=16,color="green",shape="box"];1343[label="xuu3110001",fontsize=16,color="green",shape="box"];1344[label="xuu6001",fontsize=16,color="green",shape="box"];1345[label="xuu3110001",fontsize=16,color="green",shape="box"];1346[label="xuu6001",fontsize=16,color="green",shape="box"];1347[label="xuu3110001",fontsize=16,color="green",shape="box"];1348[label="xuu6001",fontsize=16,color="green",shape="box"];1349[label="xuu3110001",fontsize=16,color="green",shape="box"];1350[label="xuu6001",fontsize=16,color="green",shape="box"];1351[label="xuu3110001",fontsize=16,color="green",shape="box"];1352[label="xuu6001",fontsize=16,color="green",shape="box"];1353[label="xuu3110001",fontsize=16,color="green",shape="box"];1354[label="xuu6001",fontsize=16,color="green",shape="box"];1355[label="xuu3110001",fontsize=16,color="green",shape="box"];1032 -> 1587[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1032[label="compare1 (xuu114,xuu115) (xuu116,xuu117) (xuu114 < xuu116 || xuu114 == xuu116 && xuu115 <= xuu117)",fontsize=16,color="magenta"];1032 -> 1588[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1032 -> 1589[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1032 -> 1590[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1032 -> 1591[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1032 -> 1592[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1032 -> 1593[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 974[label="Pos (primMulNat xuu60000 xuu31100010)",fontsize=16,color="green",shape="box"];974 -> 1419[label="",style="dashed", color="green", weight=3]; 25.61/9.73 975[label="Neg (primMulNat xuu60000 xuu31100010)",fontsize=16,color="green",shape="box"];975 -> 1420[label="",style="dashed", color="green", weight=3]; 25.61/9.73 976[label="Neg (primMulNat xuu60000 xuu31100010)",fontsize=16,color="green",shape="box"];976 -> 1421[label="",style="dashed", color="green", weight=3]; 25.61/9.73 977[label="Pos (primMulNat xuu60000 xuu31100010)",fontsize=16,color="green",shape="box"];977 -> 1422[label="",style="dashed", color="green", weight=3]; 25.61/9.73 978 -> 524[label="",style="dashed", color="red", weight=0]; 25.61/9.73 978[label="primMulInt xuu60000 xuu31100010",fontsize=16,color="magenta"];978 -> 1423[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 978 -> 1424[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 979[label="compare0 True False True",fontsize=16,color="black",shape="box"];979 -> 1425[label="",style="solid", color="black", weight=3]; 25.61/9.73 980[label="xuu21",fontsize=16,color="green",shape="box"];981[label="xuu27",fontsize=16,color="green",shape="box"];982[label="LT",fontsize=16,color="green",shape="box"];983 -> 185[label="",style="dashed", color="red", weight=0]; 25.61/9.73 983[label="compare (FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41 + FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];983 -> 1426[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 983 -> 1427[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 984 -> 1987[label="",style="dashed", color="red", weight=0]; 25.61/9.73 984[label="FiniteMap.mkBalBranch6MkBalBranch4 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 (FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41)",fontsize=16,color="magenta"];984 -> 1988[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 985 -> 3543[label="",style="dashed", color="red", weight=0]; 25.61/9.73 985[label="FiniteMap.mkBranch (Pos (Succ Zero)) [] xuu61 xuu63 xuu41",fontsize=16,color="magenta"];985 -> 3549[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 985 -> 3550[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 985 -> 3551[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 985 -> 3552[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 985 -> 3553[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2320[label="xuu29",fontsize=16,color="green",shape="box"];2225[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2225 -> 2316[label="",style="solid", color="black", weight=3]; 25.61/9.73 2226[label="FiniteMap.sizeFM (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];2226 -> 2317[label="",style="solid", color="black", weight=3]; 25.61/9.73 2461[label="Pos (primPlusNat xuu2120 xuu2110)",fontsize=16,color="green",shape="box"];2461 -> 2661[label="",style="dashed", color="green", weight=3]; 25.61/9.73 2462[label="primMinusNat xuu2120 xuu2110",fontsize=16,color="burlywood",shape="triangle"];4159[label="xuu2120/Succ xuu21200",fontsize=10,color="white",style="solid",shape="box"];2462 -> 4159[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4159 -> 2662[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4160[label="xuu2120/Zero",fontsize=10,color="white",style="solid",shape="box"];2462 -> 4160[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4160 -> 2663[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 2463 -> 2462[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2463[label="primMinusNat xuu2110 xuu2120",fontsize=16,color="magenta"];2463 -> 2664[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2463 -> 2665[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2464[label="Neg (primPlusNat xuu2120 xuu2110)",fontsize=16,color="green",shape="box"];2464 -> 2666[label="",style="dashed", color="green", weight=3]; 25.61/9.73 3767[label="FiniteMap.Branch xuu308 xuu309 (FiniteMap.mkBranchUnbox xuu311 xuu308 xuu310 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu311 xuu308 xuu310 + FiniteMap.mkBranchRight_size xuu311 xuu308 xuu310)) xuu310 xuu311",fontsize=16,color="green",shape="box"];3767 -> 3773[label="",style="dashed", color="green", weight=3]; 25.61/9.73 2026 -> 2021[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2026[label="FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="magenta"];2027[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];2027 -> 2227[label="",style="solid", color="black", weight=3]; 25.61/9.73 2028 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2028[label="compare xuu202 xuu201 == GT",fontsize=16,color="magenta"];2028 -> 2228[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2028 -> 2229[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1080 -> 2010[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1080[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 (FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64)",fontsize=16,color="magenta"];1080 -> 2011[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1081[label="FiniteMap.mkBalBranch6MkBalBranch0 (xuu600 : xuu601) xuu61 xuu29 xuu64 xuu29 xuu64 xuu64",fontsize=16,color="burlywood",shape="box"];4161[label="xuu64/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1081 -> 4161[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4161 -> 1443[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4162[label="xuu64/FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644",fontsize=10,color="white",style="solid",shape="box"];1081 -> 4162[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4162 -> 1444[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1036[label="True",fontsize=16,color="green",shape="box"];1037[label="primEqChar (Char xuu31100000) (Char xuu60000)",fontsize=16,color="black",shape="box"];1037 -> 1445[label="",style="solid", color="black", weight=3]; 25.61/9.73 1038 -> 1163[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1038[label="xuu31100000 == xuu60000 && xuu31100001 == xuu60001",fontsize=16,color="magenta"];1038 -> 1172[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1038 -> 1173[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1039 -> 1163[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1039[label="xuu31100000 == xuu60000 && xuu31100001 == xuu60001 && xuu31100002 == xuu60002",fontsize=16,color="magenta"];1039 -> 1174[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1039 -> 1175[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1040[label="primEqFloat (Float xuu31100000 xuu31100001) (Float xuu60000 xuu60001)",fontsize=16,color="black",shape="box"];1040 -> 1446[label="",style="solid", color="black", weight=3]; 25.61/9.73 1041[label="primEqInt (Pos (Succ xuu311000000)) xuu6000",fontsize=16,color="burlywood",shape="box"];4163[label="xuu6000/Pos xuu60000",fontsize=10,color="white",style="solid",shape="box"];1041 -> 4163[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4163 -> 1447[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4164[label="xuu6000/Neg xuu60000",fontsize=10,color="white",style="solid",shape="box"];1041 -> 4164[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4164 -> 1448[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1042[label="primEqInt (Pos Zero) xuu6000",fontsize=16,color="burlywood",shape="box"];4165[label="xuu6000/Pos xuu60000",fontsize=10,color="white",style="solid",shape="box"];1042 -> 4165[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4165 -> 1449[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4166[label="xuu6000/Neg xuu60000",fontsize=10,color="white",style="solid",shape="box"];1042 -> 4166[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4166 -> 1450[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1043[label="primEqInt (Neg (Succ xuu311000000)) xuu6000",fontsize=16,color="burlywood",shape="box"];4167[label="xuu6000/Pos xuu60000",fontsize=10,color="white",style="solid",shape="box"];1043 -> 4167[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4167 -> 1451[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4168[label="xuu6000/Neg xuu60000",fontsize=10,color="white",style="solid",shape="box"];1043 -> 4168[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4168 -> 1452[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1044[label="primEqInt (Neg Zero) xuu6000",fontsize=16,color="burlywood",shape="box"];4169[label="xuu6000/Pos xuu60000",fontsize=10,color="white",style="solid",shape="box"];1044 -> 4169[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4169 -> 1453[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4170[label="xuu6000/Neg xuu60000",fontsize=10,color="white",style="solid",shape="box"];1044 -> 4170[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4170 -> 1454[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1045[label="True",fontsize=16,color="green",shape="box"];1046[label="False",fontsize=16,color="green",shape="box"];1047[label="False",fontsize=16,color="green",shape="box"];1048[label="True",fontsize=16,color="green",shape="box"];1049[label="xuu31100000 == xuu60000",fontsize=16,color="blue",shape="box"];4171[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1049 -> 4171[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4171 -> 1455[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4172[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1049 -> 4172[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4172 -> 1456[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4173[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1049 -> 4173[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4173 -> 1457[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4174[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1049 -> 4174[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4174 -> 1458[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4175[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1049 -> 4175[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4175 -> 1459[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4176[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1049 -> 4176[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4176 -> 1460[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4177[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1049 -> 4177[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4177 -> 1461[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4178[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1049 -> 4178[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4178 -> 1462[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4179[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1049 -> 4179[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4179 -> 1463[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4180[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1049 -> 4180[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4180 -> 1464[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4181[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1049 -> 4181[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4181 -> 1465[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4182[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1049 -> 4182[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4182 -> 1466[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4183[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1049 -> 4183[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4183 -> 1467[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4184[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1049 -> 4184[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4184 -> 1468[label="",style="solid", color="blue", weight=3]; 25.61/9.73 1050[label="False",fontsize=16,color="green",shape="box"];1051[label="False",fontsize=16,color="green",shape="box"];1052[label="xuu31100000 == xuu60000",fontsize=16,color="blue",shape="box"];4185[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 4185[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4185 -> 1469[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4186[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 4186[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4186 -> 1470[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4187[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 4187[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4187 -> 1471[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4188[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 4188[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4188 -> 1472[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4189[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 4189[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4189 -> 1473[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4190[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 4190[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4190 -> 1474[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4191[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 4191[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4191 -> 1475[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4192[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 4192[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4192 -> 1476[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4193[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 4193[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4193 -> 1477[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4194[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 4194[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4194 -> 1478[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4195[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 4195[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4195 -> 1479[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4196[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 4196[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4196 -> 1480[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4197[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 4197[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4197 -> 1481[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4198[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1052 -> 4198[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4198 -> 1482[label="",style="solid", color="blue", weight=3]; 25.61/9.73 1053[label="primEqDouble (Double xuu31100000 xuu31100001) (Double xuu60000 xuu60001)",fontsize=16,color="black",shape="box"];1053 -> 1483[label="",style="solid", color="black", weight=3]; 25.61/9.73 1054 -> 1163[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1054[label="xuu31100000 == xuu60000 && xuu31100001 == xuu60001",fontsize=16,color="magenta"];1054 -> 1176[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1054 -> 1177[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1055 -> 1163[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1055[label="xuu31100000 == xuu60000 && xuu31100001 == xuu60001",fontsize=16,color="magenta"];1055 -> 1178[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1055 -> 1179[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1056[label="False",fontsize=16,color="green",shape="box"];1057[label="False",fontsize=16,color="green",shape="box"];1058[label="True",fontsize=16,color="green",shape="box"];1059 -> 677[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1059[label="primEqInt xuu31100000 xuu60000",fontsize=16,color="magenta"];1059 -> 1484[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1059 -> 1485[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1060[label="True",fontsize=16,color="green",shape="box"];1061[label="False",fontsize=16,color="green",shape="box"];1062[label="False",fontsize=16,color="green",shape="box"];1063[label="xuu31100000 == xuu60000",fontsize=16,color="blue",shape="box"];4199[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 4199[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4199 -> 1486[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4200[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 4200[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4200 -> 1487[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4201[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 4201[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4201 -> 1488[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4202[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 4202[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4202 -> 1489[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4203[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 4203[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4203 -> 1490[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4204[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 4204[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4204 -> 1491[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4205[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 4205[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4205 -> 1492[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4206[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 4206[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4206 -> 1493[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4207[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 4207[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4207 -> 1494[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4208[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 4208[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4208 -> 1495[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4209[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 4209[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4209 -> 1496[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4210[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 4210[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4210 -> 1497[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4211[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 4211[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4211 -> 1498[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4212[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1063 -> 4212[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4212 -> 1499[label="",style="solid", color="blue", weight=3]; 25.61/9.73 1064[label="True",fontsize=16,color="green",shape="box"];1065[label="False",fontsize=16,color="green",shape="box"];1066[label="False",fontsize=16,color="green",shape="box"];1067[label="False",fontsize=16,color="green",shape="box"];1068[label="True",fontsize=16,color="green",shape="box"];1069[label="False",fontsize=16,color="green",shape="box"];1070[label="False",fontsize=16,color="green",shape="box"];1071[label="False",fontsize=16,color="green",shape="box"];1072[label="True",fontsize=16,color="green",shape="box"];1082[label="xuu47 <= xuu48",fontsize=16,color="blue",shape="box"];4213[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 4213[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4213 -> 1500[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4214[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 4214[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4214 -> 1501[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4215[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 4215[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4215 -> 1502[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4216[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 4216[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4216 -> 1503[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4217[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 4217[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4217 -> 1504[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4218[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 4218[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4218 -> 1505[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4219[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 4219[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4219 -> 1506[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4220[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 4220[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4220 -> 1507[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4221[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 4221[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4221 -> 1508[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4222[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 4222[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4222 -> 1509[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4223[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 4223[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4223 -> 1510[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4224[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 4224[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4224 -> 1511[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4225[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 4225[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4225 -> 1512[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4226[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 4226[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4226 -> 1513[label="",style="solid", color="blue", weight=3]; 25.61/9.73 1083[label="compare1 (Left xuu133) (Left xuu134) False",fontsize=16,color="black",shape="box"];1083 -> 1514[label="",style="solid", color="black", weight=3]; 25.61/9.73 1084[label="compare1 (Left xuu133) (Left xuu134) True",fontsize=16,color="black",shape="box"];1084 -> 1515[label="",style="solid", color="black", weight=3]; 25.61/9.73 1085[label="GT",fontsize=16,color="green",shape="box"];1093[label="xuu54 <= xuu55",fontsize=16,color="blue",shape="box"];4227[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 4227[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4227 -> 1516[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4228[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 4228[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4228 -> 1517[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4229[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 4229[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4229 -> 1518[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4230[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 4230[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4230 -> 1519[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4231[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 4231[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4231 -> 1520[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4232[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 4232[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4232 -> 1521[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4233[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 4233[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4233 -> 1522[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4234[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 4234[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4234 -> 1523[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4235[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 4235[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4235 -> 1524[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4236[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 4236[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4236 -> 1525[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4237[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 4237[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4237 -> 1526[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4238[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 4238[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4238 -> 1527[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4239[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 4239[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4239 -> 1528[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4240[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 4240[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4240 -> 1529[label="",style="solid", color="blue", weight=3]; 25.61/9.73 1094[label="compare1 (Right xuu140) (Right xuu141) False",fontsize=16,color="black",shape="box"];1094 -> 1530[label="",style="solid", color="black", weight=3]; 25.61/9.73 1095[label="compare1 (Right xuu140) (Right xuu141) True",fontsize=16,color="black",shape="box"];1095 -> 1531[label="",style="solid", color="black", weight=3]; 25.61/9.73 1361[label="xuu6001",fontsize=16,color="green",shape="box"];1362[label="xuu3110001",fontsize=16,color="green",shape="box"];1363[label="xuu6001",fontsize=16,color="green",shape="box"];1364[label="xuu3110001",fontsize=16,color="green",shape="box"];1365[label="xuu6001",fontsize=16,color="green",shape="box"];1366[label="xuu3110001",fontsize=16,color="green",shape="box"];1367[label="xuu6001",fontsize=16,color="green",shape="box"];1368[label="xuu3110001",fontsize=16,color="green",shape="box"];1369[label="xuu6001",fontsize=16,color="green",shape="box"];1370[label="xuu3110001",fontsize=16,color="green",shape="box"];1371[label="xuu6001",fontsize=16,color="green",shape="box"];1372[label="xuu3110001",fontsize=16,color="green",shape="box"];1373[label="xuu6001",fontsize=16,color="green",shape="box"];1374[label="xuu3110001",fontsize=16,color="green",shape="box"];1375[label="xuu6001",fontsize=16,color="green",shape="box"];1376[label="xuu3110001",fontsize=16,color="green",shape="box"];1377[label="xuu6001",fontsize=16,color="green",shape="box"];1378[label="xuu3110001",fontsize=16,color="green",shape="box"];1379[label="xuu6001",fontsize=16,color="green",shape="box"];1380[label="xuu3110001",fontsize=16,color="green",shape="box"];1381[label="xuu6001",fontsize=16,color="green",shape="box"];1382[label="xuu3110001",fontsize=16,color="green",shape="box"];1383[label="xuu6001",fontsize=16,color="green",shape="box"];1384[label="xuu3110001",fontsize=16,color="green",shape="box"];1385[label="xuu6001",fontsize=16,color="green",shape="box"];1386[label="xuu3110001",fontsize=16,color="green",shape="box"];1387[label="xuu6001",fontsize=16,color="green",shape="box"];1388[label="xuu3110001",fontsize=16,color="green",shape="box"];1389[label="xuu6002",fontsize=16,color="green",shape="box"];1390[label="xuu3110002",fontsize=16,color="green",shape="box"];1391[label="xuu6002",fontsize=16,color="green",shape="box"];1392[label="xuu3110002",fontsize=16,color="green",shape="box"];1393[label="xuu6002",fontsize=16,color="green",shape="box"];1394[label="xuu3110002",fontsize=16,color="green",shape="box"];1395[label="xuu6002",fontsize=16,color="green",shape="box"];1396[label="xuu3110002",fontsize=16,color="green",shape="box"];1397[label="xuu6002",fontsize=16,color="green",shape="box"];1398[label="xuu3110002",fontsize=16,color="green",shape="box"];1399[label="xuu6002",fontsize=16,color="green",shape="box"];1400[label="xuu3110002",fontsize=16,color="green",shape="box"];1401[label="xuu6002",fontsize=16,color="green",shape="box"];1402[label="xuu3110002",fontsize=16,color="green",shape="box"];1403[label="xuu6002",fontsize=16,color="green",shape="box"];1404[label="xuu3110002",fontsize=16,color="green",shape="box"];1405[label="xuu6002",fontsize=16,color="green",shape="box"];1406[label="xuu3110002",fontsize=16,color="green",shape="box"];1407[label="xuu6002",fontsize=16,color="green",shape="box"];1408[label="xuu3110002",fontsize=16,color="green",shape="box"];1409[label="xuu6002",fontsize=16,color="green",shape="box"];1410[label="xuu3110002",fontsize=16,color="green",shape="box"];1411[label="xuu6002",fontsize=16,color="green",shape="box"];1412[label="xuu3110002",fontsize=16,color="green",shape="box"];1413[label="xuu6002",fontsize=16,color="green",shape="box"];1414[label="xuu3110002",fontsize=16,color="green",shape="box"];1415[label="xuu6002",fontsize=16,color="green",shape="box"];1416[label="xuu3110002",fontsize=16,color="green",shape="box"];1535[label="xuu106",fontsize=16,color="green",shape="box"];1536[label="xuu101 < xuu104",fontsize=16,color="blue",shape="box"];4241[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1536 -> 4241[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4241 -> 1551[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4242[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1536 -> 4242[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4242 -> 1552[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4243[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1536 -> 4243[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4243 -> 1553[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4244[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1536 -> 4244[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4244 -> 1554[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4245[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1536 -> 4245[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4245 -> 1555[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4246[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1536 -> 4246[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4246 -> 1556[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4247[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1536 -> 4247[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4247 -> 1557[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4248[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1536 -> 4248[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4248 -> 1558[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4249[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1536 -> 4249[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4249 -> 1559[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4250[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1536 -> 4250[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4250 -> 1560[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4251[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1536 -> 4251[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4251 -> 1561[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4252[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1536 -> 4252[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4252 -> 1562[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4253[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1536 -> 4253[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4253 -> 1563[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4254[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1536 -> 4254[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4254 -> 1564[label="",style="solid", color="blue", weight=3]; 25.61/9.73 1537[label="xuu104",fontsize=16,color="green",shape="box"];1538[label="xuu102",fontsize=16,color="green",shape="box"];1539 -> 1163[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1539[label="xuu101 == xuu104 && (xuu102 < xuu105 || xuu102 == xuu105 && xuu103 <= xuu106)",fontsize=16,color="magenta"];1539 -> 1565[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1539 -> 1566[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1540[label="xuu101",fontsize=16,color="green",shape="box"];1541[label="xuu103",fontsize=16,color="green",shape="box"];1542[label="xuu105",fontsize=16,color="green",shape="box"];1534[label="compare1 (xuu173,xuu174,xuu175) (xuu176,xuu177,xuu178) (xuu179 || xuu180)",fontsize=16,color="burlywood",shape="triangle"];4255[label="xuu179/False",fontsize=10,color="white",style="solid",shape="box"];1534 -> 4255[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4255 -> 1567[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4256[label="xuu179/True",fontsize=10,color="white",style="solid",shape="box"];1534 -> 4256[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4256 -> 1568[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1230[label="GT",fontsize=16,color="green",shape="box"];1231[label="GT",fontsize=16,color="green",shape="box"];1232[label="GT",fontsize=16,color="green",shape="box"];1233[label="GT",fontsize=16,color="green",shape="box"];1356[label="xuu76 <= xuu77",fontsize=16,color="blue",shape="box"];4257[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 4257[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4257 -> 1569[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4258[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 4258[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4258 -> 1570[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4259[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 4259[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4259 -> 1571[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4260[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 4260[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4260 -> 1572[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4261[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 4261[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4261 -> 1573[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4262[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 4262[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4262 -> 1574[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4263[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 4263[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4263 -> 1575[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4264[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 4264[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4264 -> 1576[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4265[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 4265[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4265 -> 1577[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4266[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 4266[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4266 -> 1578[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4267[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 4267[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4267 -> 1579[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4268[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 4268[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4268 -> 1580[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4269[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 4269[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4269 -> 1581[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4270[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 4270[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4270 -> 1582[label="",style="solid", color="blue", weight=3]; 25.61/9.73 1357[label="compare1 (Just xuu154) (Just xuu155) False",fontsize=16,color="black",shape="box"];1357 -> 1583[label="",style="solid", color="black", weight=3]; 25.61/9.73 1358[label="compare1 (Just xuu154) (Just xuu155) True",fontsize=16,color="black",shape="box"];1358 -> 1584[label="",style="solid", color="black", weight=3]; 25.61/9.73 1588[label="xuu114",fontsize=16,color="green",shape="box"];1589[label="xuu116",fontsize=16,color="green",shape="box"];1590[label="xuu114 < xuu116",fontsize=16,color="blue",shape="box"];4271[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4271[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4271 -> 1600[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4272[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4272[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4272 -> 1601[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4273[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4273[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4273 -> 1602[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4274[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4274[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4274 -> 1603[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4275[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4275[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4275 -> 1604[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4276[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4276[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4276 -> 1605[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4277[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4277[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4277 -> 1606[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4278[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4278[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4278 -> 1607[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4279[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4279[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4279 -> 1608[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4280[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4280[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4280 -> 1609[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4281[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4281[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4281 -> 1610[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4282[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4282[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4282 -> 1611[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4283[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4283[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4283 -> 1612[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4284[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4284[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4284 -> 1613[label="",style="solid", color="blue", weight=3]; 25.61/9.73 1591[label="xuu117",fontsize=16,color="green",shape="box"];1592 -> 1163[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1592[label="xuu114 == xuu116 && xuu115 <= xuu117",fontsize=16,color="magenta"];1592 -> 1614[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1592 -> 1615[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1593[label="xuu115",fontsize=16,color="green",shape="box"];1587[label="compare1 (xuu188,xuu189) (xuu190,xuu191) (xuu192 || xuu193)",fontsize=16,color="burlywood",shape="triangle"];4285[label="xuu192/False",fontsize=10,color="white",style="solid",shape="box"];1587 -> 4285[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4285 -> 1616[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4286[label="xuu192/True",fontsize=10,color="white",style="solid",shape="box"];1587 -> 4286[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4286 -> 1617[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1419[label="primMulNat xuu60000 xuu31100010",fontsize=16,color="burlywood",shape="triangle"];4287[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];1419 -> 4287[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4287 -> 1618[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4288[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];1419 -> 4288[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4288 -> 1619[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1420 -> 1419[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1420[label="primMulNat xuu60000 xuu31100010",fontsize=16,color="magenta"];1420 -> 1620[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1421 -> 1419[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1421[label="primMulNat xuu60000 xuu31100010",fontsize=16,color="magenta"];1421 -> 1621[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1422 -> 1419[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1422[label="primMulNat xuu60000 xuu31100010",fontsize=16,color="magenta"];1422 -> 1622[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1422 -> 1623[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1423[label="xuu31100010",fontsize=16,color="green",shape="box"];1424[label="xuu60000",fontsize=16,color="green",shape="box"];1425[label="GT",fontsize=16,color="green",shape="box"];1426[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1427[label="FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41 + FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41",fontsize=16,color="black",shape="box"];1427 -> 1624[label="",style="solid", color="black", weight=3]; 25.61/9.73 1988 -> 2014[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1988[label="FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41",fontsize=16,color="magenta"];1988 -> 2019[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1988 -> 2020[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1987[label="FiniteMap.mkBalBranch6MkBalBranch4 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 xuu195",fontsize=16,color="burlywood",shape="triangle"];4289[label="xuu195/False",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4289[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4289 -> 1993[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4290[label="xuu195/True",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4290[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4290 -> 1994[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 3549[label="[]",fontsize=16,color="green",shape="box"];3550[label="xuu41",fontsize=16,color="green",shape="box"];3551[label="Zero",fontsize=16,color="green",shape="box"];3552[label="xuu61",fontsize=16,color="green",shape="box"];3553[label="xuu63",fontsize=16,color="green",shape="box"];2316[label="Pos Zero",fontsize=16,color="green",shape="box"];2317[label="xuu642",fontsize=16,color="green",shape="box"];2661[label="primPlusNat xuu2120 xuu2110",fontsize=16,color="burlywood",shape="triangle"];4291[label="xuu2120/Succ xuu21200",fontsize=10,color="white",style="solid",shape="box"];2661 -> 4291[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4291 -> 2716[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4292[label="xuu2120/Zero",fontsize=10,color="white",style="solid",shape="box"];2661 -> 4292[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4292 -> 2717[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 2662[label="primMinusNat (Succ xuu21200) xuu2110",fontsize=16,color="burlywood",shape="box"];4293[label="xuu2110/Succ xuu21100",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4293[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4293 -> 2718[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4294[label="xuu2110/Zero",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4294[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4294 -> 2719[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 2663[label="primMinusNat Zero xuu2110",fontsize=16,color="burlywood",shape="box"];4295[label="xuu2110/Succ xuu21100",fontsize=10,color="white",style="solid",shape="box"];2663 -> 4295[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4295 -> 2720[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4296[label="xuu2110/Zero",fontsize=10,color="white",style="solid",shape="box"];2663 -> 4296[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4296 -> 2721[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 2664[label="xuu2120",fontsize=16,color="green",shape="box"];2665[label="xuu2110",fontsize=16,color="green",shape="box"];2666 -> 2661[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2666[label="primPlusNat xuu2120 xuu2110",fontsize=16,color="magenta"];2666 -> 2722[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2666 -> 2723[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 3773[label="FiniteMap.mkBranchUnbox xuu311 xuu308 xuu310 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu311 xuu308 xuu310 + FiniteMap.mkBranchRight_size xuu311 xuu308 xuu310)",fontsize=16,color="black",shape="box"];3773 -> 3784[label="",style="solid", color="black", weight=3]; 25.61/9.73 2227[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];2228[label="GT",fontsize=16,color="green",shape="box"];2229 -> 185[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2229[label="compare xuu202 xuu201",fontsize=16,color="magenta"];2229 -> 2318[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2229 -> 2319[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2011 -> 2014[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2011[label="FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="magenta"];2011 -> 2021[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2011 -> 2022[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2010[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 xuu199",fontsize=16,color="burlywood",shape="triangle"];4297[label="xuu199/False",fontsize=10,color="white",style="solid",shape="box"];2010 -> 4297[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4297 -> 2029[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4298[label="xuu199/True",fontsize=10,color="white",style="solid",shape="box"];2010 -> 4298[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4298 -> 2030[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1443[label="FiniteMap.mkBalBranch6MkBalBranch0 (xuu600 : xuu601) xuu61 xuu29 FiniteMap.EmptyFM xuu29 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1443 -> 1643[label="",style="solid", color="black", weight=3]; 25.61/9.73 1444[label="FiniteMap.mkBalBranch6MkBalBranch0 (xuu600 : xuu601) xuu61 xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1444 -> 1644[label="",style="solid", color="black", weight=3]; 25.61/9.73 1445[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="burlywood",shape="triangle"];4299[label="xuu31100000/Succ xuu311000000",fontsize=10,color="white",style="solid",shape="box"];1445 -> 4299[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4299 -> 1645[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4300[label="xuu31100000/Zero",fontsize=10,color="white",style="solid",shape="box"];1445 -> 4300[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4300 -> 1646[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1172[label="xuu31100000 == xuu60000",fontsize=16,color="blue",shape="box"];4301[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4301[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4301 -> 1647[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4302[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4302[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4302 -> 1648[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4303[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4303[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4303 -> 1649[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4304[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4304[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4304 -> 1650[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4305[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4305[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4305 -> 1651[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4306[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4306[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4306 -> 1652[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4307[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4307[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4307 -> 1653[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4308[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4308[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4308 -> 1654[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4309[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4309[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4309 -> 1655[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4310[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4310[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4310 -> 1656[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4311[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4311[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4311 -> 1657[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4312[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4312[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4312 -> 1658[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4313[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4313[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4313 -> 1659[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4314[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4314[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4314 -> 1660[label="",style="solid", color="blue", weight=3]; 25.61/9.73 1173[label="xuu31100001 == xuu60001",fontsize=16,color="blue",shape="box"];4315[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4315[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4315 -> 1661[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4316[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4316[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4316 -> 1662[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4317[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4317[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4317 -> 1663[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4318[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4318[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4318 -> 1664[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4319[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4319[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4319 -> 1665[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4320[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4320[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4320 -> 1666[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4321[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4321[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4321 -> 1667[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4322[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4322[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4322 -> 1668[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4323[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4323[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4323 -> 1669[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4324[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4324[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4324 -> 1670[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4325[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4325[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4325 -> 1671[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4326[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4326[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4326 -> 1672[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4327[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4327[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4327 -> 1673[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4328[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1173 -> 4328[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4328 -> 1674[label="",style="solid", color="blue", weight=3]; 25.61/9.73 1174[label="xuu31100000 == xuu60000",fontsize=16,color="blue",shape="box"];4329[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4329[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4329 -> 1675[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4330[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4330[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4330 -> 1676[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4331[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4331[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4331 -> 1677[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4332[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4332[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4332 -> 1678[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4333[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4333[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4333 -> 1679[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4334[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4334[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4334 -> 1680[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4335[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4335[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4335 -> 1681[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4336[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4336[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4336 -> 1682[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4337[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4337[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4337 -> 1683[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4338[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4338[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4338 -> 1684[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4339[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4339[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4339 -> 1685[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4340[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4340[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4340 -> 1686[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4341[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4341[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4341 -> 1687[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4342[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 4342[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4342 -> 1688[label="",style="solid", color="blue", weight=3]; 25.61/9.73 1175 -> 1163[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1175[label="xuu31100001 == xuu60001 && xuu31100002 == xuu60002",fontsize=16,color="magenta"];1175 -> 1689[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1175 -> 1690[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1446 -> 549[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1446[label="xuu31100000 * xuu60001 == xuu31100001 * xuu60000",fontsize=16,color="magenta"];1446 -> 1691[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1446 -> 1692[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1447[label="primEqInt (Pos (Succ xuu311000000)) (Pos xuu60000)",fontsize=16,color="burlywood",shape="box"];4343[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];1447 -> 4343[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4343 -> 1693[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4344[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];1447 -> 4344[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4344 -> 1694[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1448[label="primEqInt (Pos (Succ xuu311000000)) (Neg xuu60000)",fontsize=16,color="black",shape="box"];1448 -> 1695[label="",style="solid", color="black", weight=3]; 25.61/9.73 1449[label="primEqInt (Pos Zero) (Pos xuu60000)",fontsize=16,color="burlywood",shape="box"];4345[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];1449 -> 4345[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4345 -> 1696[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4346[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];1449 -> 4346[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4346 -> 1697[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1450[label="primEqInt (Pos Zero) (Neg xuu60000)",fontsize=16,color="burlywood",shape="box"];4347[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];1450 -> 4347[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4347 -> 1698[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4348[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];1450 -> 4348[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4348 -> 1699[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1451[label="primEqInt (Neg (Succ xuu311000000)) (Pos xuu60000)",fontsize=16,color="black",shape="box"];1451 -> 1700[label="",style="solid", color="black", weight=3]; 25.61/9.73 1452[label="primEqInt (Neg (Succ xuu311000000)) (Neg xuu60000)",fontsize=16,color="burlywood",shape="box"];4349[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];1452 -> 4349[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4349 -> 1701[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4350[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];1452 -> 4350[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4350 -> 1702[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1453[label="primEqInt (Neg Zero) (Pos xuu60000)",fontsize=16,color="burlywood",shape="box"];4351[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];1453 -> 4351[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4351 -> 1703[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4352[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];1453 -> 4352[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4352 -> 1704[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1454[label="primEqInt (Neg Zero) (Neg xuu60000)",fontsize=16,color="burlywood",shape="box"];4353[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];1454 -> 4353[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4353 -> 1705[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4354[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];1454 -> 4354[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4354 -> 1706[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1455 -> 544[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1455[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1455 -> 1707[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1455 -> 1708[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1456 -> 545[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1456[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1456 -> 1709[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1456 -> 1710[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1457 -> 546[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1457[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1457 -> 1711[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1457 -> 1712[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1458 -> 547[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1458[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1458 -> 1713[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1458 -> 1714[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1459 -> 548[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1459[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1459 -> 1715[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1459 -> 1716[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1460 -> 549[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1460[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1460 -> 1717[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1460 -> 1718[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1461 -> 550[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1461[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1461 -> 1719[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1461 -> 1720[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1462 -> 551[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1462[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1462 -> 1721[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1462 -> 1722[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1463 -> 552[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1463[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1463 -> 1723[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1463 -> 1724[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1464 -> 553[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1464[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1464 -> 1725[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1464 -> 1726[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1465 -> 554[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1465[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1465 -> 1727[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1465 -> 1728[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1466 -> 555[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1466[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1466 -> 1729[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1466 -> 1730[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1467 -> 556[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1467[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1467 -> 1731[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1467 -> 1732[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1468 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1468[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1468 -> 1733[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1468 -> 1734[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1469 -> 544[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1469[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1469 -> 1735[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1469 -> 1736[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1470 -> 545[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1470[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1470 -> 1737[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1470 -> 1738[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1471 -> 546[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1471[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1471 -> 1739[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1471 -> 1740[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1472 -> 547[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1472[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1472 -> 1741[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1472 -> 1742[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1473 -> 548[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1473[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1473 -> 1743[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1473 -> 1744[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1474 -> 549[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1474[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1474 -> 1745[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1474 -> 1746[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1475 -> 550[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1475[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1475 -> 1747[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1475 -> 1748[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1476 -> 551[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1476[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1476 -> 1749[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1476 -> 1750[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1477 -> 552[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1477[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1477 -> 1751[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1477 -> 1752[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1478 -> 553[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1478[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1478 -> 1753[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1478 -> 1754[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1479 -> 554[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1479[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1479 -> 1755[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1479 -> 1756[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1480 -> 555[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1480[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1480 -> 1757[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1480 -> 1758[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1481 -> 556[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1481[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1481 -> 1759[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1481 -> 1760[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1482 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1482[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1482 -> 1761[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1482 -> 1762[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1483 -> 549[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1483[label="xuu31100000 * xuu60001 == xuu31100001 * xuu60000",fontsize=16,color="magenta"];1483 -> 1763[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1483 -> 1764[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1176[label="xuu31100000 == xuu60000",fontsize=16,color="blue",shape="box"];4355[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1176 -> 4355[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4355 -> 1765[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4356[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1176 -> 4356[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4356 -> 1766[label="",style="solid", color="blue", weight=3]; 25.61/9.73 1177[label="xuu31100001 == xuu60001",fontsize=16,color="blue",shape="box"];4357[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1177 -> 4357[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4357 -> 1767[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4358[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1177 -> 4358[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4358 -> 1768[label="",style="solid", color="blue", weight=3]; 25.61/9.73 1178[label="xuu31100000 == xuu60000",fontsize=16,color="blue",shape="box"];4359[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 4359[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4359 -> 1769[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4360[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 4360[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4360 -> 1770[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4361[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 4361[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4361 -> 1771[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4362[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 4362[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4362 -> 1772[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4363[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 4363[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4363 -> 1773[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4364[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 4364[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4364 -> 1774[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4365[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 4365[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4365 -> 1775[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4366[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 4366[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4366 -> 1776[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4367[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 4367[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4367 -> 1777[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4368[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 4368[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4368 -> 1778[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4369[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 4369[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4369 -> 1779[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4370[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 4370[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4370 -> 1780[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4371[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 4371[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4371 -> 1781[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4372[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 4372[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4372 -> 1782[label="",style="solid", color="blue", weight=3]; 25.61/9.73 1179 -> 554[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1179[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1179 -> 1783[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1179 -> 1784[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1484[label="xuu60000",fontsize=16,color="green",shape="box"];1485[label="xuu31100000",fontsize=16,color="green",shape="box"];1486 -> 544[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1486[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1486 -> 1785[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1486 -> 1786[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1487 -> 545[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1487[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1487 -> 1787[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1487 -> 1788[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1488 -> 546[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1488[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1488 -> 1789[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1488 -> 1790[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1489 -> 547[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1489[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1489 -> 1791[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1489 -> 1792[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1490 -> 548[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1490[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1490 -> 1793[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1490 -> 1794[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1491 -> 549[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1491[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1491 -> 1795[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1491 -> 1796[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1492 -> 550[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1492[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1492 -> 1797[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1492 -> 1798[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1493 -> 551[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1493[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1493 -> 1799[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1493 -> 1800[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1494 -> 552[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1494[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1494 -> 1801[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1494 -> 1802[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1495 -> 553[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1495[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1495 -> 1803[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1495 -> 1804[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1496 -> 554[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1496[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1496 -> 1805[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1496 -> 1806[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1497 -> 555[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1497[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1497 -> 1807[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1497 -> 1808[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1498 -> 556[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1498[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1498 -> 1809[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1498 -> 1810[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1499 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1499[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1499 -> 1811[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1499 -> 1812[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1500[label="xuu47 <= xuu48",fontsize=16,color="burlywood",shape="triangle"];4373[label="xuu47/Left xuu470",fontsize=10,color="white",style="solid",shape="box"];1500 -> 4373[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4373 -> 1813[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4374[label="xuu47/Right xuu470",fontsize=10,color="white",style="solid",shape="box"];1500 -> 4374[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4374 -> 1814[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1501[label="xuu47 <= xuu48",fontsize=16,color="black",shape="triangle"];1501 -> 1815[label="",style="solid", color="black", weight=3]; 25.61/9.73 1502[label="xuu47 <= xuu48",fontsize=16,color="burlywood",shape="triangle"];4375[label="xuu47/(xuu470,xuu471,xuu472)",fontsize=10,color="white",style="solid",shape="box"];1502 -> 4375[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4375 -> 1816[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1503[label="xuu47 <= xuu48",fontsize=16,color="black",shape="triangle"];1503 -> 1817[label="",style="solid", color="black", weight=3]; 25.61/9.73 1504[label="xuu47 <= xuu48",fontsize=16,color="black",shape="triangle"];1504 -> 1818[label="",style="solid", color="black", weight=3]; 25.61/9.73 1505[label="xuu47 <= xuu48",fontsize=16,color="black",shape="triangle"];1505 -> 1819[label="",style="solid", color="black", weight=3]; 25.61/9.73 1506[label="xuu47 <= xuu48",fontsize=16,color="burlywood",shape="triangle"];4376[label="xuu47/LT",fontsize=10,color="white",style="solid",shape="box"];1506 -> 4376[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4376 -> 1820[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4377[label="xuu47/EQ",fontsize=10,color="white",style="solid",shape="box"];1506 -> 4377[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4377 -> 1821[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4378[label="xuu47/GT",fontsize=10,color="white",style="solid",shape="box"];1506 -> 4378[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4378 -> 1822[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1507[label="xuu47 <= xuu48",fontsize=16,color="black",shape="triangle"];1507 -> 1823[label="",style="solid", color="black", weight=3]; 25.61/9.73 1508[label="xuu47 <= xuu48",fontsize=16,color="burlywood",shape="triangle"];4379[label="xuu47/Nothing",fontsize=10,color="white",style="solid",shape="box"];1508 -> 4379[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4379 -> 1824[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4380[label="xuu47/Just xuu470",fontsize=10,color="white",style="solid",shape="box"];1508 -> 4380[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4380 -> 1825[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1509[label="xuu47 <= xuu48",fontsize=16,color="burlywood",shape="triangle"];4381[label="xuu47/(xuu470,xuu471)",fontsize=10,color="white",style="solid",shape="box"];1509 -> 4381[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4381 -> 1826[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1510[label="xuu47 <= xuu48",fontsize=16,color="black",shape="triangle"];1510 -> 1827[label="",style="solid", color="black", weight=3]; 25.61/9.73 1511[label="xuu47 <= xuu48",fontsize=16,color="burlywood",shape="triangle"];4382[label="xuu47/False",fontsize=10,color="white",style="solid",shape="box"];1511 -> 4382[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4382 -> 1828[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4383[label="xuu47/True",fontsize=10,color="white",style="solid",shape="box"];1511 -> 4383[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4383 -> 1829[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1512[label="xuu47 <= xuu48",fontsize=16,color="black",shape="triangle"];1512 -> 1830[label="",style="solid", color="black", weight=3]; 25.61/9.73 1513[label="xuu47 <= xuu48",fontsize=16,color="black",shape="triangle"];1513 -> 1831[label="",style="solid", color="black", weight=3]; 25.61/9.73 1514[label="compare0 (Left xuu133) (Left xuu134) otherwise",fontsize=16,color="black",shape="box"];1514 -> 1832[label="",style="solid", color="black", weight=3]; 25.61/9.73 1515[label="LT",fontsize=16,color="green",shape="box"];1516 -> 1500[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1516[label="xuu54 <= xuu55",fontsize=16,color="magenta"];1516 -> 1833[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1516 -> 1834[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1517 -> 1501[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1517[label="xuu54 <= xuu55",fontsize=16,color="magenta"];1517 -> 1835[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1517 -> 1836[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1518 -> 1502[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1518[label="xuu54 <= xuu55",fontsize=16,color="magenta"];1518 -> 1837[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1518 -> 1838[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1519 -> 1503[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1519[label="xuu54 <= xuu55",fontsize=16,color="magenta"];1519 -> 1839[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1519 -> 1840[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1520 -> 1504[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1520[label="xuu54 <= xuu55",fontsize=16,color="magenta"];1520 -> 1841[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1520 -> 1842[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1521 -> 1505[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1521[label="xuu54 <= xuu55",fontsize=16,color="magenta"];1521 -> 1843[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1521 -> 1844[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1522 -> 1506[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1522[label="xuu54 <= xuu55",fontsize=16,color="magenta"];1522 -> 1845[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1522 -> 1846[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1523 -> 1507[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1523[label="xuu54 <= xuu55",fontsize=16,color="magenta"];1523 -> 1847[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1523 -> 1848[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1524 -> 1508[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1524[label="xuu54 <= xuu55",fontsize=16,color="magenta"];1524 -> 1849[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1524 -> 1850[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1525 -> 1509[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1525[label="xuu54 <= xuu55",fontsize=16,color="magenta"];1525 -> 1851[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1525 -> 1852[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1526 -> 1510[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1526[label="xuu54 <= xuu55",fontsize=16,color="magenta"];1526 -> 1853[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1526 -> 1854[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1527 -> 1511[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1527[label="xuu54 <= xuu55",fontsize=16,color="magenta"];1527 -> 1855[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1527 -> 1856[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1528 -> 1512[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1528[label="xuu54 <= xuu55",fontsize=16,color="magenta"];1528 -> 1857[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1528 -> 1858[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1529 -> 1513[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1529[label="xuu54 <= xuu55",fontsize=16,color="magenta"];1529 -> 1859[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1529 -> 1860[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1530[label="compare0 (Right xuu140) (Right xuu141) otherwise",fontsize=16,color="black",shape="box"];1530 -> 1861[label="",style="solid", color="black", weight=3]; 25.61/9.73 1531[label="LT",fontsize=16,color="green",shape="box"];1551[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1551 -> 1862[label="",style="solid", color="black", weight=3]; 25.61/9.73 1552[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1552 -> 1863[label="",style="solid", color="black", weight=3]; 25.61/9.73 1553[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1553 -> 1864[label="",style="solid", color="black", weight=3]; 25.61/9.73 1554[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1554 -> 1865[label="",style="solid", color="black", weight=3]; 25.61/9.73 1555[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1555 -> 1866[label="",style="solid", color="black", weight=3]; 25.61/9.73 1556[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1556 -> 1867[label="",style="solid", color="black", weight=3]; 25.61/9.73 1557[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1557 -> 1868[label="",style="solid", color="black", weight=3]; 25.61/9.73 1558[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1558 -> 1869[label="",style="solid", color="black", weight=3]; 25.61/9.73 1559[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1559 -> 1870[label="",style="solid", color="black", weight=3]; 25.61/9.73 1560[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1560 -> 1871[label="",style="solid", color="black", weight=3]; 25.61/9.73 1561[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1561 -> 1872[label="",style="solid", color="black", weight=3]; 25.61/9.73 1562[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1562 -> 1873[label="",style="solid", color="black", weight=3]; 25.61/9.73 1563[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1563 -> 1874[label="",style="solid", color="black", weight=3]; 25.61/9.73 1564[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1564 -> 1875[label="",style="solid", color="black", weight=3]; 25.61/9.73 1565[label="xuu101 == xuu104",fontsize=16,color="blue",shape="box"];4384[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4384[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4384 -> 1876[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4385[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4385[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4385 -> 1877[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4386[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4386[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4386 -> 1878[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4387[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4387[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4387 -> 1879[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4388[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4388[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4388 -> 1880[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4389[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4389[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4389 -> 1881[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4390[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4390[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4390 -> 1882[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4391[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4391[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4391 -> 1883[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4392[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4392[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4392 -> 1884[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4393[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4393[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4393 -> 1885[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4394[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4394[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4394 -> 1886[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4395[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4395[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4395 -> 1887[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4396[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4396[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4396 -> 1888[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4397[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4397[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4397 -> 1889[label="",style="solid", color="blue", weight=3]; 25.61/9.73 1566 -> 2311[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1566[label="xuu102 < xuu105 || xuu102 == xuu105 && xuu103 <= xuu106",fontsize=16,color="magenta"];1566 -> 2312[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1566 -> 2313[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1567[label="compare1 (xuu173,xuu174,xuu175) (xuu176,xuu177,xuu178) (False || xuu180)",fontsize=16,color="black",shape="box"];1567 -> 1892[label="",style="solid", color="black", weight=3]; 25.61/9.73 1568[label="compare1 (xuu173,xuu174,xuu175) (xuu176,xuu177,xuu178) (True || xuu180)",fontsize=16,color="black",shape="box"];1568 -> 1893[label="",style="solid", color="black", weight=3]; 25.61/9.73 1569 -> 1500[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1569[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1569 -> 1894[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1569 -> 1895[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1570 -> 1501[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1570[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1570 -> 1896[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1570 -> 1897[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1571 -> 1502[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1571[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1571 -> 1898[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1571 -> 1899[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1572 -> 1503[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1572[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1572 -> 1900[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1572 -> 1901[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1573 -> 1504[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1573[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1573 -> 1902[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1573 -> 1903[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1574 -> 1505[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1574[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1574 -> 1904[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1574 -> 1905[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1575 -> 1506[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1575[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1575 -> 1906[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1575 -> 1907[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1576 -> 1507[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1576[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1576 -> 1908[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1576 -> 1909[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1577 -> 1508[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1577[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1577 -> 1910[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1577 -> 1911[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1578 -> 1509[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1578[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1578 -> 1912[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1578 -> 1913[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1579 -> 1510[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1579[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1579 -> 1914[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1579 -> 1915[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1580 -> 1511[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1580[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1580 -> 1916[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1580 -> 1917[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1581 -> 1512[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1581[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1581 -> 1918[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1581 -> 1919[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1582 -> 1513[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1582[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1582 -> 1920[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1582 -> 1921[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1583[label="compare0 (Just xuu154) (Just xuu155) otherwise",fontsize=16,color="black",shape="box"];1583 -> 1922[label="",style="solid", color="black", weight=3]; 25.61/9.73 1584[label="LT",fontsize=16,color="green",shape="box"];1600 -> 1551[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1600[label="xuu114 < xuu116",fontsize=16,color="magenta"];1600 -> 1923[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1600 -> 1924[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1601 -> 1552[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1601[label="xuu114 < xuu116",fontsize=16,color="magenta"];1601 -> 1925[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1601 -> 1926[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1602 -> 1553[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1602[label="xuu114 < xuu116",fontsize=16,color="magenta"];1602 -> 1927[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1602 -> 1928[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1603 -> 1554[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1603[label="xuu114 < xuu116",fontsize=16,color="magenta"];1603 -> 1929[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1603 -> 1930[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1604 -> 1555[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1604[label="xuu114 < xuu116",fontsize=16,color="magenta"];1604 -> 1931[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1604 -> 1932[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1605 -> 1556[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1605[label="xuu114 < xuu116",fontsize=16,color="magenta"];1605 -> 1933[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1605 -> 1934[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1606 -> 1557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1606[label="xuu114 < xuu116",fontsize=16,color="magenta"];1606 -> 1935[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1606 -> 1936[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1607 -> 1558[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1607[label="xuu114 < xuu116",fontsize=16,color="magenta"];1607 -> 1937[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1607 -> 1938[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1608 -> 1559[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1608[label="xuu114 < xuu116",fontsize=16,color="magenta"];1608 -> 1939[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1608 -> 1940[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1609 -> 1560[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1609[label="xuu114 < xuu116",fontsize=16,color="magenta"];1609 -> 1941[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1609 -> 1942[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1610 -> 1561[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1610[label="xuu114 < xuu116",fontsize=16,color="magenta"];1610 -> 1943[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1610 -> 1944[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1611 -> 1562[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1611[label="xuu114 < xuu116",fontsize=16,color="magenta"];1611 -> 1945[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1611 -> 1946[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1612 -> 1563[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1612[label="xuu114 < xuu116",fontsize=16,color="magenta"];1612 -> 1947[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1612 -> 1948[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1613 -> 1564[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1613[label="xuu114 < xuu116",fontsize=16,color="magenta"];1613 -> 1949[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1613 -> 1950[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1614[label="xuu114 == xuu116",fontsize=16,color="blue",shape="box"];4398[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 4398[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4398 -> 1951[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4399[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 4399[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4399 -> 1952[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4400[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 4400[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4400 -> 1953[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4401[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 4401[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4401 -> 1954[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4402[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 4402[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4402 -> 1955[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4403[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 4403[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4403 -> 1956[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4404[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 4404[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4404 -> 1957[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4405[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 4405[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4405 -> 1958[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4406[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 4406[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4406 -> 1959[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4407[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 4407[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4407 -> 1960[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4408[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 4408[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4408 -> 1961[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4409[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 4409[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4409 -> 1962[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4410[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 4410[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4410 -> 1963[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4411[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 4411[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4411 -> 1964[label="",style="solid", color="blue", weight=3]; 25.61/9.73 1615[label="xuu115 <= xuu117",fontsize=16,color="blue",shape="box"];4412[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 4412[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4412 -> 1965[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4413[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 4413[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4413 -> 1966[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4414[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 4414[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4414 -> 1967[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4415[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 4415[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4415 -> 1968[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4416[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 4416[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4416 -> 1969[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4417[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 4417[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4417 -> 1970[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4418[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 4418[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4418 -> 1971[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4419[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 4419[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4419 -> 1972[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4420[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 4420[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4420 -> 1973[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4421[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 4421[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4421 -> 1974[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4422[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 4422[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4422 -> 1975[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4423[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 4423[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4423 -> 1976[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4424[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 4424[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4424 -> 1977[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4425[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1615 -> 4425[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4425 -> 1978[label="",style="solid", color="blue", weight=3]; 25.61/9.73 1616[label="compare1 (xuu188,xuu189) (xuu190,xuu191) (False || xuu193)",fontsize=16,color="black",shape="box"];1616 -> 1979[label="",style="solid", color="black", weight=3]; 25.61/9.73 1617[label="compare1 (xuu188,xuu189) (xuu190,xuu191) (True || xuu193)",fontsize=16,color="black",shape="box"];1617 -> 1980[label="",style="solid", color="black", weight=3]; 25.61/9.73 1618[label="primMulNat (Succ xuu600000) xuu31100010",fontsize=16,color="burlywood",shape="box"];4426[label="xuu31100010/Succ xuu311000100",fontsize=10,color="white",style="solid",shape="box"];1618 -> 4426[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4426 -> 1981[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4427[label="xuu31100010/Zero",fontsize=10,color="white",style="solid",shape="box"];1618 -> 4427[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4427 -> 1982[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1619[label="primMulNat Zero xuu31100010",fontsize=16,color="burlywood",shape="box"];4428[label="xuu31100010/Succ xuu311000100",fontsize=10,color="white",style="solid",shape="box"];1619 -> 4428[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4428 -> 1983[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4429[label="xuu31100010/Zero",fontsize=10,color="white",style="solid",shape="box"];1619 -> 4429[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4429 -> 1984[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1620[label="xuu31100010",fontsize=16,color="green",shape="box"];1621[label="xuu60000",fontsize=16,color="green",shape="box"];1622[label="xuu31100010",fontsize=16,color="green",shape="box"];1623[label="xuu60000",fontsize=16,color="green",shape="box"];1624 -> 2406[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1624[label="primPlusInt (FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41) (FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41)",fontsize=16,color="magenta"];1624 -> 2421[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1624 -> 2422[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2019[label="FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41",fontsize=16,color="black",shape="triangle"];2019 -> 2031[label="",style="solid", color="black", weight=3]; 25.61/9.73 2020 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2020[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41",fontsize=16,color="magenta"];2020 -> 2032[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2020 -> 2033[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1993[label="FiniteMap.mkBalBranch6MkBalBranch4 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 False",fontsize=16,color="black",shape="box"];1993 -> 2034[label="",style="solid", color="black", weight=3]; 25.61/9.73 1994[label="FiniteMap.mkBalBranch6MkBalBranch4 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 True",fontsize=16,color="black",shape="box"];1994 -> 2035[label="",style="solid", color="black", weight=3]; 25.61/9.73 2716[label="primPlusNat (Succ xuu21200) xuu2110",fontsize=16,color="burlywood",shape="box"];4430[label="xuu2110/Succ xuu21100",fontsize=10,color="white",style="solid",shape="box"];2716 -> 4430[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4430 -> 2879[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4431[label="xuu2110/Zero",fontsize=10,color="white",style="solid",shape="box"];2716 -> 4431[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4431 -> 2880[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 2717[label="primPlusNat Zero xuu2110",fontsize=16,color="burlywood",shape="box"];4432[label="xuu2110/Succ xuu21100",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4432[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4432 -> 2881[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4433[label="xuu2110/Zero",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4433[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4433 -> 2882[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 2718[label="primMinusNat (Succ xuu21200) (Succ xuu21100)",fontsize=16,color="black",shape="box"];2718 -> 2883[label="",style="solid", color="black", weight=3]; 25.61/9.73 2719[label="primMinusNat (Succ xuu21200) Zero",fontsize=16,color="black",shape="box"];2719 -> 2884[label="",style="solid", color="black", weight=3]; 25.61/9.73 2720[label="primMinusNat Zero (Succ xuu21100)",fontsize=16,color="black",shape="box"];2720 -> 2885[label="",style="solid", color="black", weight=3]; 25.61/9.73 2721[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];2721 -> 2886[label="",style="solid", color="black", weight=3]; 25.61/9.73 2722[label="xuu2120",fontsize=16,color="green",shape="box"];2723[label="xuu2110",fontsize=16,color="green",shape="box"];3784[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu311 xuu308 xuu310 + FiniteMap.mkBranchRight_size xuu311 xuu308 xuu310",fontsize=16,color="black",shape="box"];3784 -> 3785[label="",style="solid", color="black", weight=3]; 25.61/9.73 2318[label="xuu201",fontsize=16,color="green",shape="box"];2319[label="xuu202",fontsize=16,color="green",shape="box"];2022 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2022[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="magenta"];2022 -> 2037[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2022 -> 2038[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2029[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 False",fontsize=16,color="black",shape="box"];2029 -> 2230[label="",style="solid", color="black", weight=3]; 25.61/9.73 2030[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 True",fontsize=16,color="black",shape="box"];2030 -> 2231[label="",style="solid", color="black", weight=3]; 25.61/9.73 1643[label="error []",fontsize=16,color="red",shape="box"];1644[label="FiniteMap.mkBalBranch6MkBalBranch02 (xuu600 : xuu601) xuu61 xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1644 -> 2039[label="",style="solid", color="black", weight=3]; 25.61/9.73 1645[label="primEqNat (Succ xuu311000000) xuu60000",fontsize=16,color="burlywood",shape="box"];4434[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];1645 -> 4434[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4434 -> 2040[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4435[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];1645 -> 4435[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4435 -> 2041[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1646[label="primEqNat Zero xuu60000",fontsize=16,color="burlywood",shape="box"];4436[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];1646 -> 4436[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4436 -> 2042[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4437[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];1646 -> 4437[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4437 -> 2043[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1647 -> 544[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1647[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1647 -> 2044[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1647 -> 2045[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1648 -> 545[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1648[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1648 -> 2046[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1648 -> 2047[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1649 -> 546[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1649[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1649 -> 2048[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1649 -> 2049[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1650 -> 547[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1650[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1650 -> 2050[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1650 -> 2051[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1651 -> 548[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1651[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1651 -> 2052[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1651 -> 2053[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1652 -> 549[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1652[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1652 -> 2054[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1652 -> 2055[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1653 -> 550[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1653[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1653 -> 2056[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1653 -> 2057[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1654 -> 551[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1654[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1654 -> 2058[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1654 -> 2059[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1655 -> 552[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1655[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1655 -> 2060[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1655 -> 2061[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1656 -> 553[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1656[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1656 -> 2062[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1656 -> 2063[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1657 -> 554[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1657[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1657 -> 2064[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1657 -> 2065[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1658 -> 555[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1658[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1658 -> 2066[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1658 -> 2067[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1659 -> 556[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1659[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1659 -> 2068[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1659 -> 2069[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1660 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1660[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1660 -> 2070[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1660 -> 2071[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1661 -> 544[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1661[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1661 -> 2072[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1661 -> 2073[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1662 -> 545[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1662[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1662 -> 2074[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1662 -> 2075[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1663 -> 546[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1663[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1663 -> 2076[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1663 -> 2077[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1664 -> 547[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1664[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1664 -> 2078[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1664 -> 2079[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1665 -> 548[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1665[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1665 -> 2080[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1665 -> 2081[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1666 -> 549[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1666[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1666 -> 2082[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1666 -> 2083[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1667 -> 550[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1667[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1667 -> 2084[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1667 -> 2085[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1668 -> 551[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1668[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1668 -> 2086[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1668 -> 2087[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1669 -> 552[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1669[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1669 -> 2088[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1669 -> 2089[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1670 -> 553[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1670[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1670 -> 2090[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1670 -> 2091[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1671 -> 554[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1671[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1671 -> 2092[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1671 -> 2093[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1672 -> 555[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1672[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1672 -> 2094[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1672 -> 2095[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1673 -> 556[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1673[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1673 -> 2096[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1673 -> 2097[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1674 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1674[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1674 -> 2098[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1674 -> 2099[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1675 -> 544[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1675[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1675 -> 2100[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1675 -> 2101[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1676 -> 545[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1676[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1676 -> 2102[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1676 -> 2103[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1677 -> 546[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1677[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1677 -> 2104[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1677 -> 2105[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1678 -> 547[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1678[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1678 -> 2106[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1678 -> 2107[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1679 -> 548[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1679[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1679 -> 2108[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1679 -> 2109[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1680 -> 549[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1680[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1680 -> 2110[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1680 -> 2111[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1681 -> 550[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1681[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1681 -> 2112[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1681 -> 2113[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1682 -> 551[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1682[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1682 -> 2114[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1682 -> 2115[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1683 -> 552[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1683[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1683 -> 2116[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1683 -> 2117[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1684 -> 553[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1684[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1684 -> 2118[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1684 -> 2119[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1685 -> 554[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1685[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1685 -> 2120[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1685 -> 2121[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1686 -> 555[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1686[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1686 -> 2122[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1686 -> 2123[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1687 -> 556[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1687[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1687 -> 2124[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1687 -> 2125[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1688 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1688[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1688 -> 2126[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1688 -> 2127[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1689[label="xuu31100001 == xuu60001",fontsize=16,color="blue",shape="box"];4438[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4438[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4438 -> 2128[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4439[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4439[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4439 -> 2129[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4440[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4440[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4440 -> 2130[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4441[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4441[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4441 -> 2131[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4442[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4442[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4442 -> 2132[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4443[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4443[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4443 -> 2133[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4444[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4444[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4444 -> 2134[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4445[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4445[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4445 -> 2135[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4446[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4446[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4446 -> 2136[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4447[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4447[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4447 -> 2137[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4448[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4448[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4448 -> 2138[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4449[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4449[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4449 -> 2139[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4450[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4450[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4450 -> 2140[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4451[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1689 -> 4451[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4451 -> 2141[label="",style="solid", color="blue", weight=3]; 25.61/9.73 1690[label="xuu31100002 == xuu60002",fontsize=16,color="blue",shape="box"];4452[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1690 -> 4452[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4452 -> 2142[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4453[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1690 -> 4453[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4453 -> 2143[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4454[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1690 -> 4454[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4454 -> 2144[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4455[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1690 -> 4455[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4455 -> 2145[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4456[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1690 -> 4456[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4456 -> 2146[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4457[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1690 -> 4457[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4457 -> 2147[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4458[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1690 -> 4458[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4458 -> 2148[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4459[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1690 -> 4459[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4459 -> 2149[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4460[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1690 -> 4460[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4460 -> 2150[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4461[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1690 -> 4461[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4461 -> 2151[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4462[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1690 -> 4462[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4462 -> 2152[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4463[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1690 -> 4463[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4463 -> 2153[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4464[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1690 -> 4464[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4464 -> 2154[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4465[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1690 -> 4465[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4465 -> 2155[label="",style="solid", color="blue", weight=3]; 25.61/9.73 1691 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1691[label="xuu31100001 * xuu60000",fontsize=16,color="magenta"];1691 -> 2156[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1691 -> 2157[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1692 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1692[label="xuu31100000 * xuu60001",fontsize=16,color="magenta"];1692 -> 2158[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1692 -> 2159[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1693[label="primEqInt (Pos (Succ xuu311000000)) (Pos (Succ xuu600000))",fontsize=16,color="black",shape="box"];1693 -> 2160[label="",style="solid", color="black", weight=3]; 25.61/9.73 1694[label="primEqInt (Pos (Succ xuu311000000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1694 -> 2161[label="",style="solid", color="black", weight=3]; 25.61/9.73 1695[label="False",fontsize=16,color="green",shape="box"];1696[label="primEqInt (Pos Zero) (Pos (Succ xuu600000))",fontsize=16,color="black",shape="box"];1696 -> 2162[label="",style="solid", color="black", weight=3]; 25.61/9.73 1697[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1697 -> 2163[label="",style="solid", color="black", weight=3]; 25.61/9.73 1698[label="primEqInt (Pos Zero) (Neg (Succ xuu600000))",fontsize=16,color="black",shape="box"];1698 -> 2164[label="",style="solid", color="black", weight=3]; 25.61/9.73 1699[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1699 -> 2165[label="",style="solid", color="black", weight=3]; 25.61/9.73 1700[label="False",fontsize=16,color="green",shape="box"];1701[label="primEqInt (Neg (Succ xuu311000000)) (Neg (Succ xuu600000))",fontsize=16,color="black",shape="box"];1701 -> 2166[label="",style="solid", color="black", weight=3]; 25.61/9.73 1702[label="primEqInt (Neg (Succ xuu311000000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1702 -> 2167[label="",style="solid", color="black", weight=3]; 25.61/9.73 1703[label="primEqInt (Neg Zero) (Pos (Succ xuu600000))",fontsize=16,color="black",shape="box"];1703 -> 2168[label="",style="solid", color="black", weight=3]; 25.61/9.73 1704[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1704 -> 2169[label="",style="solid", color="black", weight=3]; 25.61/9.73 1705[label="primEqInt (Neg Zero) (Neg (Succ xuu600000))",fontsize=16,color="black",shape="box"];1705 -> 2170[label="",style="solid", color="black", weight=3]; 25.61/9.73 1706[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1706 -> 2171[label="",style="solid", color="black", weight=3]; 25.61/9.73 1707[label="xuu60000",fontsize=16,color="green",shape="box"];1708[label="xuu31100000",fontsize=16,color="green",shape="box"];1709[label="xuu60000",fontsize=16,color="green",shape="box"];1710[label="xuu31100000",fontsize=16,color="green",shape="box"];1711[label="xuu60000",fontsize=16,color="green",shape="box"];1712[label="xuu31100000",fontsize=16,color="green",shape="box"];1713[label="xuu60000",fontsize=16,color="green",shape="box"];1714[label="xuu31100000",fontsize=16,color="green",shape="box"];1715[label="xuu60000",fontsize=16,color="green",shape="box"];1716[label="xuu31100000",fontsize=16,color="green",shape="box"];1717[label="xuu60000",fontsize=16,color="green",shape="box"];1718[label="xuu31100000",fontsize=16,color="green",shape="box"];1719[label="xuu60000",fontsize=16,color="green",shape="box"];1720[label="xuu31100000",fontsize=16,color="green",shape="box"];1721[label="xuu60000",fontsize=16,color="green",shape="box"];1722[label="xuu31100000",fontsize=16,color="green",shape="box"];1723[label="xuu60000",fontsize=16,color="green",shape="box"];1724[label="xuu31100000",fontsize=16,color="green",shape="box"];1725[label="xuu60000",fontsize=16,color="green",shape="box"];1726[label="xuu31100000",fontsize=16,color="green",shape="box"];1727[label="xuu60000",fontsize=16,color="green",shape="box"];1728[label="xuu31100000",fontsize=16,color="green",shape="box"];1729[label="xuu60000",fontsize=16,color="green",shape="box"];1730[label="xuu31100000",fontsize=16,color="green",shape="box"];1731[label="xuu60000",fontsize=16,color="green",shape="box"];1732[label="xuu31100000",fontsize=16,color="green",shape="box"];1733[label="xuu60000",fontsize=16,color="green",shape="box"];1734[label="xuu31100000",fontsize=16,color="green",shape="box"];1735[label="xuu60000",fontsize=16,color="green",shape="box"];1736[label="xuu31100000",fontsize=16,color="green",shape="box"];1737[label="xuu60000",fontsize=16,color="green",shape="box"];1738[label="xuu31100000",fontsize=16,color="green",shape="box"];1739[label="xuu60000",fontsize=16,color="green",shape="box"];1740[label="xuu31100000",fontsize=16,color="green",shape="box"];1741[label="xuu60000",fontsize=16,color="green",shape="box"];1742[label="xuu31100000",fontsize=16,color="green",shape="box"];1743[label="xuu60000",fontsize=16,color="green",shape="box"];1744[label="xuu31100000",fontsize=16,color="green",shape="box"];1745[label="xuu60000",fontsize=16,color="green",shape="box"];1746[label="xuu31100000",fontsize=16,color="green",shape="box"];1747[label="xuu60000",fontsize=16,color="green",shape="box"];1748[label="xuu31100000",fontsize=16,color="green",shape="box"];1749[label="xuu60000",fontsize=16,color="green",shape="box"];1750[label="xuu31100000",fontsize=16,color="green",shape="box"];1751[label="xuu60000",fontsize=16,color="green",shape="box"];1752[label="xuu31100000",fontsize=16,color="green",shape="box"];1753[label="xuu60000",fontsize=16,color="green",shape="box"];1754[label="xuu31100000",fontsize=16,color="green",shape="box"];1755[label="xuu60000",fontsize=16,color="green",shape="box"];1756[label="xuu31100000",fontsize=16,color="green",shape="box"];1757[label="xuu60000",fontsize=16,color="green",shape="box"];1758[label="xuu31100000",fontsize=16,color="green",shape="box"];1759[label="xuu60000",fontsize=16,color="green",shape="box"];1760[label="xuu31100000",fontsize=16,color="green",shape="box"];1761[label="xuu60000",fontsize=16,color="green",shape="box"];1762[label="xuu31100000",fontsize=16,color="green",shape="box"];1763 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1763[label="xuu31100001 * xuu60000",fontsize=16,color="magenta"];1763 -> 2172[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1763 -> 2173[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1764 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1764[label="xuu31100000 * xuu60001",fontsize=16,color="magenta"];1764 -> 2174[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1764 -> 2175[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1765 -> 549[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1765[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1765 -> 2176[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1765 -> 2177[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1766 -> 555[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1766[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1766 -> 2178[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1766 -> 2179[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1767 -> 549[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1767[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1767 -> 2180[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1767 -> 2181[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1768 -> 555[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1768[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1768 -> 2182[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1768 -> 2183[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1769 -> 544[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1769[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1769 -> 2184[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1769 -> 2185[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1770 -> 545[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1770[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1770 -> 2186[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1770 -> 2187[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1771 -> 546[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1771[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1771 -> 2188[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1771 -> 2189[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1772 -> 547[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1772[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1772 -> 2190[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1772 -> 2191[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1773 -> 548[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1773[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1773 -> 2192[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1773 -> 2193[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1774 -> 549[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1774[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1774 -> 2194[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1774 -> 2195[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1775 -> 550[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1775[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1775 -> 2196[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1775 -> 2197[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1776 -> 551[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1776[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1776 -> 2198[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1776 -> 2199[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1777 -> 552[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1777[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1777 -> 2200[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1777 -> 2201[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1778 -> 553[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1778[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1778 -> 2202[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1778 -> 2203[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1779 -> 554[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1779[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1779 -> 2204[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1779 -> 2205[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1780 -> 555[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1780[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1780 -> 2206[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1780 -> 2207[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1781 -> 556[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1781[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1781 -> 2208[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1781 -> 2209[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1782 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1782[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1782 -> 2210[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1782 -> 2211[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1783[label="xuu60001",fontsize=16,color="green",shape="box"];1784[label="xuu31100001",fontsize=16,color="green",shape="box"];1785[label="xuu60000",fontsize=16,color="green",shape="box"];1786[label="xuu31100000",fontsize=16,color="green",shape="box"];1787[label="xuu60000",fontsize=16,color="green",shape="box"];1788[label="xuu31100000",fontsize=16,color="green",shape="box"];1789[label="xuu60000",fontsize=16,color="green",shape="box"];1790[label="xuu31100000",fontsize=16,color="green",shape="box"];1791[label="xuu60000",fontsize=16,color="green",shape="box"];1792[label="xuu31100000",fontsize=16,color="green",shape="box"];1793[label="xuu60000",fontsize=16,color="green",shape="box"];1794[label="xuu31100000",fontsize=16,color="green",shape="box"];1795[label="xuu60000",fontsize=16,color="green",shape="box"];1796[label="xuu31100000",fontsize=16,color="green",shape="box"];1797[label="xuu60000",fontsize=16,color="green",shape="box"];1798[label="xuu31100000",fontsize=16,color="green",shape="box"];1799[label="xuu60000",fontsize=16,color="green",shape="box"];1800[label="xuu31100000",fontsize=16,color="green",shape="box"];1801[label="xuu60000",fontsize=16,color="green",shape="box"];1802[label="xuu31100000",fontsize=16,color="green",shape="box"];1803[label="xuu60000",fontsize=16,color="green",shape="box"];1804[label="xuu31100000",fontsize=16,color="green",shape="box"];1805[label="xuu60000",fontsize=16,color="green",shape="box"];1806[label="xuu31100000",fontsize=16,color="green",shape="box"];1807[label="xuu60000",fontsize=16,color="green",shape="box"];1808[label="xuu31100000",fontsize=16,color="green",shape="box"];1809[label="xuu60000",fontsize=16,color="green",shape="box"];1810[label="xuu31100000",fontsize=16,color="green",shape="box"];1811[label="xuu60000",fontsize=16,color="green",shape="box"];1812[label="xuu31100000",fontsize=16,color="green",shape="box"];1813[label="Left xuu470 <= xuu48",fontsize=16,color="burlywood",shape="box"];4466[label="xuu48/Left xuu480",fontsize=10,color="white",style="solid",shape="box"];1813 -> 4466[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4466 -> 2212[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4467[label="xuu48/Right xuu480",fontsize=10,color="white",style="solid",shape="box"];1813 -> 4467[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4467 -> 2213[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1814[label="Right xuu470 <= xuu48",fontsize=16,color="burlywood",shape="box"];4468[label="xuu48/Left xuu480",fontsize=10,color="white",style="solid",shape="box"];1814 -> 4468[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4468 -> 2214[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4469[label="xuu48/Right xuu480",fontsize=10,color="white",style="solid",shape="box"];1814 -> 4469[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4469 -> 2215[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1815 -> 2216[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1815[label="compare xuu47 xuu48 /= GT",fontsize=16,color="magenta"];1815 -> 2217[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1816[label="(xuu470,xuu471,xuu472) <= xuu48",fontsize=16,color="burlywood",shape="box"];4470[label="xuu48/(xuu480,xuu481,xuu482)",fontsize=10,color="white",style="solid",shape="box"];1816 -> 4470[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4470 -> 2232[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1817 -> 2216[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1817[label="compare xuu47 xuu48 /= GT",fontsize=16,color="magenta"];1817 -> 2218[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1818 -> 2216[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1818[label="compare xuu47 xuu48 /= GT",fontsize=16,color="magenta"];1818 -> 2219[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1819 -> 2216[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1819[label="compare xuu47 xuu48 /= GT",fontsize=16,color="magenta"];1819 -> 2220[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1820[label="LT <= xuu48",fontsize=16,color="burlywood",shape="box"];4471[label="xuu48/LT",fontsize=10,color="white",style="solid",shape="box"];1820 -> 4471[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4471 -> 2233[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4472[label="xuu48/EQ",fontsize=10,color="white",style="solid",shape="box"];1820 -> 4472[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4472 -> 2234[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4473[label="xuu48/GT",fontsize=10,color="white",style="solid",shape="box"];1820 -> 4473[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4473 -> 2235[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1821[label="EQ <= xuu48",fontsize=16,color="burlywood",shape="box"];4474[label="xuu48/LT",fontsize=10,color="white",style="solid",shape="box"];1821 -> 4474[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4474 -> 2236[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4475[label="xuu48/EQ",fontsize=10,color="white",style="solid",shape="box"];1821 -> 4475[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4475 -> 2237[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4476[label="xuu48/GT",fontsize=10,color="white",style="solid",shape="box"];1821 -> 4476[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4476 -> 2238[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1822[label="GT <= xuu48",fontsize=16,color="burlywood",shape="box"];4477[label="xuu48/LT",fontsize=10,color="white",style="solid",shape="box"];1822 -> 4477[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4477 -> 2239[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4478[label="xuu48/EQ",fontsize=10,color="white",style="solid",shape="box"];1822 -> 4478[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4478 -> 2240[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4479[label="xuu48/GT",fontsize=10,color="white",style="solid",shape="box"];1822 -> 4479[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4479 -> 2241[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1823 -> 2216[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1823[label="compare xuu47 xuu48 /= GT",fontsize=16,color="magenta"];1823 -> 2221[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1824[label="Nothing <= xuu48",fontsize=16,color="burlywood",shape="box"];4480[label="xuu48/Nothing",fontsize=10,color="white",style="solid",shape="box"];1824 -> 4480[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4480 -> 2242[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4481[label="xuu48/Just xuu480",fontsize=10,color="white",style="solid",shape="box"];1824 -> 4481[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4481 -> 2243[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1825[label="Just xuu470 <= xuu48",fontsize=16,color="burlywood",shape="box"];4482[label="xuu48/Nothing",fontsize=10,color="white",style="solid",shape="box"];1825 -> 4482[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4482 -> 2244[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4483[label="xuu48/Just xuu480",fontsize=10,color="white",style="solid",shape="box"];1825 -> 4483[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4483 -> 2245[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1826[label="(xuu470,xuu471) <= xuu48",fontsize=16,color="burlywood",shape="box"];4484[label="xuu48/(xuu480,xuu481)",fontsize=10,color="white",style="solid",shape="box"];1826 -> 4484[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4484 -> 2246[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1827 -> 2216[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1827[label="compare xuu47 xuu48 /= GT",fontsize=16,color="magenta"];1827 -> 2222[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1828[label="False <= xuu48",fontsize=16,color="burlywood",shape="box"];4485[label="xuu48/False",fontsize=10,color="white",style="solid",shape="box"];1828 -> 4485[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4485 -> 2247[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4486[label="xuu48/True",fontsize=10,color="white",style="solid",shape="box"];1828 -> 4486[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4486 -> 2248[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1829[label="True <= xuu48",fontsize=16,color="burlywood",shape="box"];4487[label="xuu48/False",fontsize=10,color="white",style="solid",shape="box"];1829 -> 4487[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4487 -> 2249[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4488[label="xuu48/True",fontsize=10,color="white",style="solid",shape="box"];1829 -> 4488[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4488 -> 2250[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1830 -> 2216[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1830[label="compare xuu47 xuu48 /= GT",fontsize=16,color="magenta"];1830 -> 2223[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1831 -> 2216[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1831[label="compare xuu47 xuu48 /= GT",fontsize=16,color="magenta"];1831 -> 2224[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1832[label="compare0 (Left xuu133) (Left xuu134) True",fontsize=16,color="black",shape="box"];1832 -> 2251[label="",style="solid", color="black", weight=3]; 25.61/9.73 1833[label="xuu54",fontsize=16,color="green",shape="box"];1834[label="xuu55",fontsize=16,color="green",shape="box"];1835[label="xuu54",fontsize=16,color="green",shape="box"];1836[label="xuu55",fontsize=16,color="green",shape="box"];1837[label="xuu54",fontsize=16,color="green",shape="box"];1838[label="xuu55",fontsize=16,color="green",shape="box"];1839[label="xuu54",fontsize=16,color="green",shape="box"];1840[label="xuu55",fontsize=16,color="green",shape="box"];1841[label="xuu54",fontsize=16,color="green",shape="box"];1842[label="xuu55",fontsize=16,color="green",shape="box"];1843[label="xuu54",fontsize=16,color="green",shape="box"];1844[label="xuu55",fontsize=16,color="green",shape="box"];1845[label="xuu54",fontsize=16,color="green",shape="box"];1846[label="xuu55",fontsize=16,color="green",shape="box"];1847[label="xuu54",fontsize=16,color="green",shape="box"];1848[label="xuu55",fontsize=16,color="green",shape="box"];1849[label="xuu54",fontsize=16,color="green",shape="box"];1850[label="xuu55",fontsize=16,color="green",shape="box"];1851[label="xuu54",fontsize=16,color="green",shape="box"];1852[label="xuu55",fontsize=16,color="green",shape="box"];1853[label="xuu54",fontsize=16,color="green",shape="box"];1854[label="xuu55",fontsize=16,color="green",shape="box"];1855[label="xuu54",fontsize=16,color="green",shape="box"];1856[label="xuu55",fontsize=16,color="green",shape="box"];1857[label="xuu54",fontsize=16,color="green",shape="box"];1858[label="xuu55",fontsize=16,color="green",shape="box"];1859[label="xuu54",fontsize=16,color="green",shape="box"];1860[label="xuu55",fontsize=16,color="green",shape="box"];1861[label="compare0 (Right xuu140) (Right xuu141) True",fontsize=16,color="black",shape="box"];1861 -> 2252[label="",style="solid", color="black", weight=3]; 25.61/9.73 1862 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1862[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1862 -> 2253[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1862 -> 2254[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1863 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1863[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1863 -> 2255[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1863 -> 2256[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1864 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1864[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1864 -> 2257[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1864 -> 2258[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1865 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1865[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1865 -> 2259[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1865 -> 2260[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1866 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1866[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1866 -> 2261[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1866 -> 2262[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1867 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1867[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1867 -> 2263[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1867 -> 2264[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1868 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1868[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1868 -> 2265[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1868 -> 2266[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1869 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1869[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1869 -> 2267[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1869 -> 2268[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1870 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1870[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1870 -> 2269[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1870 -> 2270[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1871 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1871[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1871 -> 2271[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1871 -> 2272[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1872 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1872[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1872 -> 2273[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1872 -> 2274[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1873 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1873[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1873 -> 2275[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1873 -> 2276[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1874 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1874[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1874 -> 2277[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1874 -> 2278[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1875 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1875[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1875 -> 2279[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1875 -> 2280[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1876 -> 551[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1876[label="xuu101 == xuu104",fontsize=16,color="magenta"];1876 -> 2281[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1876 -> 2282[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1877 -> 549[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1877[label="xuu101 == xuu104",fontsize=16,color="magenta"];1877 -> 2283[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1877 -> 2284[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1878 -> 547[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1878[label="xuu101 == xuu104",fontsize=16,color="magenta"];1878 -> 2285[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1878 -> 2286[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1879 -> 552[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1879[label="xuu101 == xuu104",fontsize=16,color="magenta"];1879 -> 2287[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1879 -> 2288[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1880 -> 555[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1880[label="xuu101 == xuu104",fontsize=16,color="magenta"];1880 -> 2289[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1880 -> 2290[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1881 -> 548[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1881[label="xuu101 == xuu104",fontsize=16,color="magenta"];1881 -> 2291[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1881 -> 2292[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1882 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1882[label="xuu101 == xuu104",fontsize=16,color="magenta"];1882 -> 2293[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1882 -> 2294[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1883 -> 554[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1883[label="xuu101 == xuu104",fontsize=16,color="magenta"];1883 -> 2295[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1883 -> 2296[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1884 -> 556[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1884[label="xuu101 == xuu104",fontsize=16,color="magenta"];1884 -> 2297[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1884 -> 2298[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1885 -> 546[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1885[label="xuu101 == xuu104",fontsize=16,color="magenta"];1885 -> 2299[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1885 -> 2300[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1886 -> 553[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1886[label="xuu101 == xuu104",fontsize=16,color="magenta"];1886 -> 2301[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1886 -> 2302[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1887 -> 550[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1887[label="xuu101 == xuu104",fontsize=16,color="magenta"];1887 -> 2303[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1887 -> 2304[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1888 -> 545[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1888[label="xuu101 == xuu104",fontsize=16,color="magenta"];1888 -> 2305[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1888 -> 2306[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1889 -> 544[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1889[label="xuu101 == xuu104",fontsize=16,color="magenta"];1889 -> 2307[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1889 -> 2308[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2312[label="xuu102 < xuu105",fontsize=16,color="blue",shape="box"];4489[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 4489[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4489 -> 2321[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4490[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 4490[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4490 -> 2322[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4491[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 4491[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4491 -> 2323[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4492[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 4492[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4492 -> 2324[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4493[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 4493[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4493 -> 2325[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4494[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 4494[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4494 -> 2326[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4495[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 4495[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4495 -> 2327[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4496[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 4496[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4496 -> 2328[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4497[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 4497[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4497 -> 2329[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4498[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 4498[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4498 -> 2330[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4499[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 4499[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4499 -> 2331[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4500[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 4500[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4500 -> 2332[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4501[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 4501[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4501 -> 2333[label="",style="solid", color="blue", weight=3]; 25.61/9.73 4502[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 4502[label="",style="solid", color="blue", weight=9]; 25.61/9.73 4502 -> 2334[label="",style="solid", color="blue", weight=3]; 25.61/9.73 2313 -> 1163[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2313[label="xuu102 == xuu105 && xuu103 <= xuu106",fontsize=16,color="magenta"];2313 -> 2335[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2313 -> 2336[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2311[label="xuu209 || xuu210",fontsize=16,color="burlywood",shape="triangle"];4503[label="xuu209/False",fontsize=10,color="white",style="solid",shape="box"];2311 -> 4503[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4503 -> 2337[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4504[label="xuu209/True",fontsize=10,color="white",style="solid",shape="box"];2311 -> 4504[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4504 -> 2338[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1892[label="compare1 (xuu173,xuu174,xuu175) (xuu176,xuu177,xuu178) xuu180",fontsize=16,color="burlywood",shape="triangle"];4505[label="xuu180/False",fontsize=10,color="white",style="solid",shape="box"];1892 -> 4505[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4505 -> 2339[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4506[label="xuu180/True",fontsize=10,color="white",style="solid",shape="box"];1892 -> 4506[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4506 -> 2340[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1893 -> 1892[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1893[label="compare1 (xuu173,xuu174,xuu175) (xuu176,xuu177,xuu178) True",fontsize=16,color="magenta"];1893 -> 2341[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1894[label="xuu76",fontsize=16,color="green",shape="box"];1895[label="xuu77",fontsize=16,color="green",shape="box"];1896[label="xuu76",fontsize=16,color="green",shape="box"];1897[label="xuu77",fontsize=16,color="green",shape="box"];1898[label="xuu76",fontsize=16,color="green",shape="box"];1899[label="xuu77",fontsize=16,color="green",shape="box"];1900[label="xuu76",fontsize=16,color="green",shape="box"];1901[label="xuu77",fontsize=16,color="green",shape="box"];1902[label="xuu76",fontsize=16,color="green",shape="box"];1903[label="xuu77",fontsize=16,color="green",shape="box"];1904[label="xuu76",fontsize=16,color="green",shape="box"];1905[label="xuu77",fontsize=16,color="green",shape="box"];1906[label="xuu76",fontsize=16,color="green",shape="box"];1907[label="xuu77",fontsize=16,color="green",shape="box"];1908[label="xuu76",fontsize=16,color="green",shape="box"];1909[label="xuu77",fontsize=16,color="green",shape="box"];1910[label="xuu76",fontsize=16,color="green",shape="box"];1911[label="xuu77",fontsize=16,color="green",shape="box"];1912[label="xuu76",fontsize=16,color="green",shape="box"];1913[label="xuu77",fontsize=16,color="green",shape="box"];1914[label="xuu76",fontsize=16,color="green",shape="box"];1915[label="xuu77",fontsize=16,color="green",shape="box"];1916[label="xuu76",fontsize=16,color="green",shape="box"];1917[label="xuu77",fontsize=16,color="green",shape="box"];1918[label="xuu76",fontsize=16,color="green",shape="box"];1919[label="xuu77",fontsize=16,color="green",shape="box"];1920[label="xuu76",fontsize=16,color="green",shape="box"];1921[label="xuu77",fontsize=16,color="green",shape="box"];1922[label="compare0 (Just xuu154) (Just xuu155) True",fontsize=16,color="black",shape="box"];1922 -> 2342[label="",style="solid", color="black", weight=3]; 25.61/9.73 1923[label="xuu114",fontsize=16,color="green",shape="box"];1924[label="xuu116",fontsize=16,color="green",shape="box"];1925[label="xuu114",fontsize=16,color="green",shape="box"];1926[label="xuu116",fontsize=16,color="green",shape="box"];1927[label="xuu114",fontsize=16,color="green",shape="box"];1928[label="xuu116",fontsize=16,color="green",shape="box"];1929[label="xuu114",fontsize=16,color="green",shape="box"];1930[label="xuu116",fontsize=16,color="green",shape="box"];1931[label="xuu114",fontsize=16,color="green",shape="box"];1932[label="xuu116",fontsize=16,color="green",shape="box"];1933[label="xuu114",fontsize=16,color="green",shape="box"];1934[label="xuu116",fontsize=16,color="green",shape="box"];1935[label="xuu114",fontsize=16,color="green",shape="box"];1936[label="xuu116",fontsize=16,color="green",shape="box"];1937[label="xuu114",fontsize=16,color="green",shape="box"];1938[label="xuu116",fontsize=16,color="green",shape="box"];1939[label="xuu114",fontsize=16,color="green",shape="box"];1940[label="xuu116",fontsize=16,color="green",shape="box"];1941[label="xuu114",fontsize=16,color="green",shape="box"];1942[label="xuu116",fontsize=16,color="green",shape="box"];1943[label="xuu114",fontsize=16,color="green",shape="box"];1944[label="xuu116",fontsize=16,color="green",shape="box"];1945[label="xuu114",fontsize=16,color="green",shape="box"];1946[label="xuu116",fontsize=16,color="green",shape="box"];1947[label="xuu114",fontsize=16,color="green",shape="box"];1948[label="xuu116",fontsize=16,color="green",shape="box"];1949[label="xuu114",fontsize=16,color="green",shape="box"];1950[label="xuu116",fontsize=16,color="green",shape="box"];1951 -> 551[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1951[label="xuu114 == xuu116",fontsize=16,color="magenta"];1951 -> 2343[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1951 -> 2344[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1952 -> 549[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1952[label="xuu114 == xuu116",fontsize=16,color="magenta"];1952 -> 2345[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1952 -> 2346[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1953 -> 547[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1953[label="xuu114 == xuu116",fontsize=16,color="magenta"];1953 -> 2347[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1953 -> 2348[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1954 -> 552[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1954[label="xuu114 == xuu116",fontsize=16,color="magenta"];1954 -> 2349[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1954 -> 2350[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1955 -> 555[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1955[label="xuu114 == xuu116",fontsize=16,color="magenta"];1955 -> 2351[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1955 -> 2352[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1956 -> 548[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1956[label="xuu114 == xuu116",fontsize=16,color="magenta"];1956 -> 2353[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1956 -> 2354[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1957 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1957[label="xuu114 == xuu116",fontsize=16,color="magenta"];1957 -> 2355[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1957 -> 2356[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1958 -> 554[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1958[label="xuu114 == xuu116",fontsize=16,color="magenta"];1958 -> 2357[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1958 -> 2358[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1959 -> 556[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1959[label="xuu114 == xuu116",fontsize=16,color="magenta"];1959 -> 2359[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1959 -> 2360[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1960 -> 546[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1960[label="xuu114 == xuu116",fontsize=16,color="magenta"];1960 -> 2361[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1960 -> 2362[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1961 -> 553[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1961[label="xuu114 == xuu116",fontsize=16,color="magenta"];1961 -> 2363[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1961 -> 2364[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1962 -> 550[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1962[label="xuu114 == xuu116",fontsize=16,color="magenta"];1962 -> 2365[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1962 -> 2366[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1963 -> 545[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1963[label="xuu114 == xuu116",fontsize=16,color="magenta"];1963 -> 2367[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1963 -> 2368[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1964 -> 544[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1964[label="xuu114 == xuu116",fontsize=16,color="magenta"];1964 -> 2369[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1964 -> 2370[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1965 -> 1500[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1965[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1965 -> 2371[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1965 -> 2372[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1966 -> 1501[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1966[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1966 -> 2373[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1966 -> 2374[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1967 -> 1502[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1967[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1967 -> 2375[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1967 -> 2376[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1968 -> 1503[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1968[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1968 -> 2377[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1968 -> 2378[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1969 -> 1504[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1969[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1969 -> 2379[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1969 -> 2380[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1970 -> 1505[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1970[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1970 -> 2381[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1970 -> 2382[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1971 -> 1506[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1971[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1971 -> 2383[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1971 -> 2384[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1972 -> 1507[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1972[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1972 -> 2385[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1972 -> 2386[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1973 -> 1508[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1973[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1973 -> 2387[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1973 -> 2388[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1974 -> 1509[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1974[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1974 -> 2389[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1974 -> 2390[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1975 -> 1510[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1975[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1975 -> 2391[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1975 -> 2392[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1976 -> 1511[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1976[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1976 -> 2393[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1976 -> 2394[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1977 -> 1512[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1977[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1977 -> 2395[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1977 -> 2396[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1978 -> 1513[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1978[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1978 -> 2397[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1978 -> 2398[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1979[label="compare1 (xuu188,xuu189) (xuu190,xuu191) xuu193",fontsize=16,color="burlywood",shape="triangle"];4507[label="xuu193/False",fontsize=10,color="white",style="solid",shape="box"];1979 -> 4507[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4507 -> 2399[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4508[label="xuu193/True",fontsize=10,color="white",style="solid",shape="box"];1979 -> 4508[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4508 -> 2400[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 1980 -> 1979[label="",style="dashed", color="red", weight=0]; 25.61/9.73 1980[label="compare1 (xuu188,xuu189) (xuu190,xuu191) True",fontsize=16,color="magenta"];1980 -> 2401[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 1981[label="primMulNat (Succ xuu600000) (Succ xuu311000100)",fontsize=16,color="black",shape="box"];1981 -> 2402[label="",style="solid", color="black", weight=3]; 25.61/9.73 1982[label="primMulNat (Succ xuu600000) Zero",fontsize=16,color="black",shape="box"];1982 -> 2403[label="",style="solid", color="black", weight=3]; 25.61/9.73 1983[label="primMulNat Zero (Succ xuu311000100)",fontsize=16,color="black",shape="box"];1983 -> 2404[label="",style="solid", color="black", weight=3]; 25.61/9.73 1984[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1984 -> 2405[label="",style="solid", color="black", weight=3]; 25.61/9.73 2421[label="FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41",fontsize=16,color="black",shape="triangle"];2421 -> 2443[label="",style="solid", color="black", weight=3]; 25.61/9.73 2422 -> 2019[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2422[label="FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41",fontsize=16,color="magenta"];2031 -> 2025[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2031[label="FiniteMap.sizeFM xuu41",fontsize=16,color="magenta"];2031 -> 2444[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2032 -> 2421[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2032[label="FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41",fontsize=16,color="magenta"];2033 -> 2027[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2033[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2034 -> 2445[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2034[label="FiniteMap.mkBalBranch6MkBalBranch3 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 (FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41)",fontsize=16,color="magenta"];2034 -> 2446[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2035[label="FiniteMap.mkBalBranch6MkBalBranch0 [] xuu61 xuu63 xuu41 xuu63 xuu41 xuu41",fontsize=16,color="burlywood",shape="box"];4509[label="xuu41/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2035 -> 4509[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4509 -> 2451[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4510[label="xuu41/FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414",fontsize=10,color="white",style="solid",shape="box"];2035 -> 4510[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4510 -> 2452[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 2879[label="primPlusNat (Succ xuu21200) (Succ xuu21100)",fontsize=16,color="black",shape="box"];2879 -> 2954[label="",style="solid", color="black", weight=3]; 25.61/9.73 2880[label="primPlusNat (Succ xuu21200) Zero",fontsize=16,color="black",shape="box"];2880 -> 2955[label="",style="solid", color="black", weight=3]; 25.61/9.73 2881[label="primPlusNat Zero (Succ xuu21100)",fontsize=16,color="black",shape="box"];2881 -> 2956[label="",style="solid", color="black", weight=3]; 25.61/9.73 2882[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2882 -> 2957[label="",style="solid", color="black", weight=3]; 25.61/9.73 2883 -> 2462[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2883[label="primMinusNat xuu21200 xuu21100",fontsize=16,color="magenta"];2883 -> 2958[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2883 -> 2959[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2884[label="Pos (Succ xuu21200)",fontsize=16,color="green",shape="box"];2885[label="Neg (Succ xuu21100)",fontsize=16,color="green",shape="box"];2886[label="Pos Zero",fontsize=16,color="green",shape="box"];3785 -> 2406[label="",style="dashed", color="red", weight=0]; 25.61/9.73 3785[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu311 xuu308 xuu310) (FiniteMap.mkBranchRight_size xuu311 xuu308 xuu310)",fontsize=16,color="magenta"];3785 -> 3786[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 3785 -> 3787[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2037 -> 2015[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2037[label="FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="magenta"];2038 -> 2027[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2038[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2230[label="FiniteMap.mkBalBranch6MkBalBranch2 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 otherwise",fontsize=16,color="black",shape="box"];2230 -> 2456[label="",style="solid", color="black", weight=3]; 25.61/9.73 2231[label="FiniteMap.mkBalBranch6MkBalBranch1 (xuu600 : xuu601) xuu61 xuu29 xuu64 xuu29 xuu64 xuu29",fontsize=16,color="burlywood",shape="box"];4511[label="xuu29/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2231 -> 4511[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4511 -> 2457[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 4512[label="xuu29/FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294",fontsize=10,color="white",style="solid",shape="box"];2231 -> 4512[label="",style="solid", color="burlywood", weight=9]; 25.61/9.73 4512 -> 2458[label="",style="solid", color="burlywood", weight=3]; 25.61/9.73 2039 -> 2459[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2039[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu600 : xuu601) xuu61 xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 (FiniteMap.sizeFM xuu643 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644)",fontsize=16,color="magenta"];2039 -> 2460[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2040[label="primEqNat (Succ xuu311000000) (Succ xuu600000)",fontsize=16,color="black",shape="box"];2040 -> 2465[label="",style="solid", color="black", weight=3]; 25.61/9.73 2041[label="primEqNat (Succ xuu311000000) Zero",fontsize=16,color="black",shape="box"];2041 -> 2466[label="",style="solid", color="black", weight=3]; 25.61/9.73 2042[label="primEqNat Zero (Succ xuu600000)",fontsize=16,color="black",shape="box"];2042 -> 2467[label="",style="solid", color="black", weight=3]; 25.61/9.73 2043[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2043 -> 2468[label="",style="solid", color="black", weight=3]; 25.61/9.73 2044[label="xuu60000",fontsize=16,color="green",shape="box"];2045[label="xuu31100000",fontsize=16,color="green",shape="box"];2046[label="xuu60000",fontsize=16,color="green",shape="box"];2047[label="xuu31100000",fontsize=16,color="green",shape="box"];2048[label="xuu60000",fontsize=16,color="green",shape="box"];2049[label="xuu31100000",fontsize=16,color="green",shape="box"];2050[label="xuu60000",fontsize=16,color="green",shape="box"];2051[label="xuu31100000",fontsize=16,color="green",shape="box"];2052[label="xuu60000",fontsize=16,color="green",shape="box"];2053[label="xuu31100000",fontsize=16,color="green",shape="box"];2054[label="xuu60000",fontsize=16,color="green",shape="box"];2055[label="xuu31100000",fontsize=16,color="green",shape="box"];2056[label="xuu60000",fontsize=16,color="green",shape="box"];2057[label="xuu31100000",fontsize=16,color="green",shape="box"];2058[label="xuu60000",fontsize=16,color="green",shape="box"];2059[label="xuu31100000",fontsize=16,color="green",shape="box"];2060[label="xuu60000",fontsize=16,color="green",shape="box"];2061[label="xuu31100000",fontsize=16,color="green",shape="box"];2062[label="xuu60000",fontsize=16,color="green",shape="box"];2063[label="xuu31100000",fontsize=16,color="green",shape="box"];2064[label="xuu60000",fontsize=16,color="green",shape="box"];2065[label="xuu31100000",fontsize=16,color="green",shape="box"];2066[label="xuu60000",fontsize=16,color="green",shape="box"];2067[label="xuu31100000",fontsize=16,color="green",shape="box"];2068[label="xuu60000",fontsize=16,color="green",shape="box"];2069[label="xuu31100000",fontsize=16,color="green",shape="box"];2070[label="xuu60000",fontsize=16,color="green",shape="box"];2071[label="xuu31100000",fontsize=16,color="green",shape="box"];2072[label="xuu60001",fontsize=16,color="green",shape="box"];2073[label="xuu31100001",fontsize=16,color="green",shape="box"];2074[label="xuu60001",fontsize=16,color="green",shape="box"];2075[label="xuu31100001",fontsize=16,color="green",shape="box"];2076[label="xuu60001",fontsize=16,color="green",shape="box"];2077[label="xuu31100001",fontsize=16,color="green",shape="box"];2078[label="xuu60001",fontsize=16,color="green",shape="box"];2079[label="xuu31100001",fontsize=16,color="green",shape="box"];2080[label="xuu60001",fontsize=16,color="green",shape="box"];2081[label="xuu31100001",fontsize=16,color="green",shape="box"];2082[label="xuu60001",fontsize=16,color="green",shape="box"];2083[label="xuu31100001",fontsize=16,color="green",shape="box"];2084[label="xuu60001",fontsize=16,color="green",shape="box"];2085[label="xuu31100001",fontsize=16,color="green",shape="box"];2086[label="xuu60001",fontsize=16,color="green",shape="box"];2087[label="xuu31100001",fontsize=16,color="green",shape="box"];2088[label="xuu60001",fontsize=16,color="green",shape="box"];2089[label="xuu31100001",fontsize=16,color="green",shape="box"];2090[label="xuu60001",fontsize=16,color="green",shape="box"];2091[label="xuu31100001",fontsize=16,color="green",shape="box"];2092[label="xuu60001",fontsize=16,color="green",shape="box"];2093[label="xuu31100001",fontsize=16,color="green",shape="box"];2094[label="xuu60001",fontsize=16,color="green",shape="box"];2095[label="xuu31100001",fontsize=16,color="green",shape="box"];2096[label="xuu60001",fontsize=16,color="green",shape="box"];2097[label="xuu31100001",fontsize=16,color="green",shape="box"];2098[label="xuu60001",fontsize=16,color="green",shape="box"];2099[label="xuu31100001",fontsize=16,color="green",shape="box"];2100[label="xuu60000",fontsize=16,color="green",shape="box"];2101[label="xuu31100000",fontsize=16,color="green",shape="box"];2102[label="xuu60000",fontsize=16,color="green",shape="box"];2103[label="xuu31100000",fontsize=16,color="green",shape="box"];2104[label="xuu60000",fontsize=16,color="green",shape="box"];2105[label="xuu31100000",fontsize=16,color="green",shape="box"];2106[label="xuu60000",fontsize=16,color="green",shape="box"];2107[label="xuu31100000",fontsize=16,color="green",shape="box"];2108[label="xuu60000",fontsize=16,color="green",shape="box"];2109[label="xuu31100000",fontsize=16,color="green",shape="box"];2110[label="xuu60000",fontsize=16,color="green",shape="box"];2111[label="xuu31100000",fontsize=16,color="green",shape="box"];2112[label="xuu60000",fontsize=16,color="green",shape="box"];2113[label="xuu31100000",fontsize=16,color="green",shape="box"];2114[label="xuu60000",fontsize=16,color="green",shape="box"];2115[label="xuu31100000",fontsize=16,color="green",shape="box"];2116[label="xuu60000",fontsize=16,color="green",shape="box"];2117[label="xuu31100000",fontsize=16,color="green",shape="box"];2118[label="xuu60000",fontsize=16,color="green",shape="box"];2119[label="xuu31100000",fontsize=16,color="green",shape="box"];2120[label="xuu60000",fontsize=16,color="green",shape="box"];2121[label="xuu31100000",fontsize=16,color="green",shape="box"];2122[label="xuu60000",fontsize=16,color="green",shape="box"];2123[label="xuu31100000",fontsize=16,color="green",shape="box"];2124[label="xuu60000",fontsize=16,color="green",shape="box"];2125[label="xuu31100000",fontsize=16,color="green",shape="box"];2126[label="xuu60000",fontsize=16,color="green",shape="box"];2127[label="xuu31100000",fontsize=16,color="green",shape="box"];2128 -> 544[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2128[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2128 -> 2469[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2128 -> 2470[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2129 -> 545[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2129[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2129 -> 2471[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2129 -> 2472[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2130 -> 546[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2130[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2130 -> 2473[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2130 -> 2474[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2131 -> 547[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2131[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2131 -> 2475[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2131 -> 2476[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2132 -> 548[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2132[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2132 -> 2477[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2132 -> 2478[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2133 -> 549[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2133[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2133 -> 2479[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2133 -> 2480[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2134 -> 550[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2134[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2134 -> 2481[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2134 -> 2482[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2135 -> 551[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2135[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2135 -> 2483[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2135 -> 2484[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2136 -> 552[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2136[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2136 -> 2485[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2136 -> 2486[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2137 -> 553[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2137[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2137 -> 2487[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2137 -> 2488[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2138 -> 554[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2138[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2138 -> 2489[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2138 -> 2490[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2139 -> 555[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2139[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2139 -> 2491[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2139 -> 2492[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2140 -> 556[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2140[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2140 -> 2493[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2140 -> 2494[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2141 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2141[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2141 -> 2495[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2141 -> 2496[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2142 -> 544[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2142[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2142 -> 2497[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2142 -> 2498[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2143 -> 545[label="",style="dashed", color="red", weight=0]; 25.61/9.73 2143[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2143 -> 2499[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2143 -> 2500[label="",style="dashed", color="magenta", weight=3]; 25.61/9.73 2144 -> 546[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2144[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2144 -> 2501[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2144 -> 2502[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2145 -> 547[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2145[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2145 -> 2503[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2145 -> 2504[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2146 -> 548[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2146[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2146 -> 2505[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2146 -> 2506[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2147 -> 549[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2147[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2147 -> 2507[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2147 -> 2508[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2148 -> 550[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2148[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2148 -> 2509[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2148 -> 2510[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2149 -> 551[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2149[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2149 -> 2511[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2149 -> 2512[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2150 -> 552[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2150[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2150 -> 2513[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2150 -> 2514[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2151 -> 553[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2151[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2151 -> 2515[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2151 -> 2516[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2152 -> 554[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2152[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2152 -> 2517[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2152 -> 2518[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2153 -> 555[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2153[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2153 -> 2519[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2153 -> 2520[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2154 -> 556[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2154[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2154 -> 2521[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2154 -> 2522[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2155 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2155[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2155 -> 2523[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2155 -> 2524[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2156[label="xuu60000",fontsize=16,color="green",shape="box"];2157[label="xuu31100001",fontsize=16,color="green",shape="box"];2158[label="xuu60001",fontsize=16,color="green",shape="box"];2159[label="xuu31100000",fontsize=16,color="green",shape="box"];2160 -> 1445[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2160[label="primEqNat xuu311000000 xuu600000",fontsize=16,color="magenta"];2160 -> 2525[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2160 -> 2526[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2161[label="False",fontsize=16,color="green",shape="box"];2162[label="False",fontsize=16,color="green",shape="box"];2163[label="True",fontsize=16,color="green",shape="box"];2164[label="False",fontsize=16,color="green",shape="box"];2165[label="True",fontsize=16,color="green",shape="box"];2166 -> 1445[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2166[label="primEqNat xuu311000000 xuu600000",fontsize=16,color="magenta"];2166 -> 2527[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2166 -> 2528[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2167[label="False",fontsize=16,color="green",shape="box"];2168[label="False",fontsize=16,color="green",shape="box"];2169[label="True",fontsize=16,color="green",shape="box"];2170[label="False",fontsize=16,color="green",shape="box"];2171[label="True",fontsize=16,color="green",shape="box"];2172[label="xuu60000",fontsize=16,color="green",shape="box"];2173[label="xuu31100001",fontsize=16,color="green",shape="box"];2174[label="xuu60001",fontsize=16,color="green",shape="box"];2175[label="xuu31100000",fontsize=16,color="green",shape="box"];2176[label="xuu60000",fontsize=16,color="green",shape="box"];2177[label="xuu31100000",fontsize=16,color="green",shape="box"];2178[label="xuu60000",fontsize=16,color="green",shape="box"];2179[label="xuu31100000",fontsize=16,color="green",shape="box"];2180[label="xuu60001",fontsize=16,color="green",shape="box"];2181[label="xuu31100001",fontsize=16,color="green",shape="box"];2182[label="xuu60001",fontsize=16,color="green",shape="box"];2183[label="xuu31100001",fontsize=16,color="green",shape="box"];2184[label="xuu60000",fontsize=16,color="green",shape="box"];2185[label="xuu31100000",fontsize=16,color="green",shape="box"];2186[label="xuu60000",fontsize=16,color="green",shape="box"];2187[label="xuu31100000",fontsize=16,color="green",shape="box"];2188[label="xuu60000",fontsize=16,color="green",shape="box"];2189[label="xuu31100000",fontsize=16,color="green",shape="box"];2190[label="xuu60000",fontsize=16,color="green",shape="box"];2191[label="xuu31100000",fontsize=16,color="green",shape="box"];2192[label="xuu60000",fontsize=16,color="green",shape="box"];2193[label="xuu31100000",fontsize=16,color="green",shape="box"];2194[label="xuu60000",fontsize=16,color="green",shape="box"];2195[label="xuu31100000",fontsize=16,color="green",shape="box"];2196[label="xuu60000",fontsize=16,color="green",shape="box"];2197[label="xuu31100000",fontsize=16,color="green",shape="box"];2198[label="xuu60000",fontsize=16,color="green",shape="box"];2199[label="xuu31100000",fontsize=16,color="green",shape="box"];2200[label="xuu60000",fontsize=16,color="green",shape="box"];2201[label="xuu31100000",fontsize=16,color="green",shape="box"];2202[label="xuu60000",fontsize=16,color="green",shape="box"];2203[label="xuu31100000",fontsize=16,color="green",shape="box"];2204[label="xuu60000",fontsize=16,color="green",shape="box"];2205[label="xuu31100000",fontsize=16,color="green",shape="box"];2206[label="xuu60000",fontsize=16,color="green",shape="box"];2207[label="xuu31100000",fontsize=16,color="green",shape="box"];2208[label="xuu60000",fontsize=16,color="green",shape="box"];2209[label="xuu31100000",fontsize=16,color="green",shape="box"];2210[label="xuu60000",fontsize=16,color="green",shape="box"];2211[label="xuu31100000",fontsize=16,color="green",shape="box"];2212[label="Left xuu470 <= Left xuu480",fontsize=16,color="black",shape="box"];2212 -> 2529[label="",style="solid", color="black", weight=3]; 25.61/9.74 2213[label="Left xuu470 <= Right xuu480",fontsize=16,color="black",shape="box"];2213 -> 2530[label="",style="solid", color="black", weight=3]; 25.61/9.74 2214[label="Right xuu470 <= Left xuu480",fontsize=16,color="black",shape="box"];2214 -> 2531[label="",style="solid", color="black", weight=3]; 25.61/9.74 2215[label="Right xuu470 <= Right xuu480",fontsize=16,color="black",shape="box"];2215 -> 2532[label="",style="solid", color="black", weight=3]; 25.61/9.74 2217 -> 185[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2217[label="compare xuu47 xuu48",fontsize=16,color="magenta"];2217 -> 2533[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2217 -> 2534[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2216[label="xuu205 /= GT",fontsize=16,color="black",shape="triangle"];2216 -> 2535[label="",style="solid", color="black", weight=3]; 25.61/9.74 2232[label="(xuu470,xuu471,xuu472) <= (xuu480,xuu481,xuu482)",fontsize=16,color="black",shape="box"];2232 -> 2536[label="",style="solid", color="black", weight=3]; 25.61/9.74 2218 -> 187[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2218[label="compare xuu47 xuu48",fontsize=16,color="magenta"];2218 -> 2537[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2218 -> 2538[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2219 -> 188[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2219[label="compare xuu47 xuu48",fontsize=16,color="magenta"];2219 -> 2539[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2219 -> 2540[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2220 -> 189[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2220[label="compare xuu47 xuu48",fontsize=16,color="magenta"];2220 -> 2541[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2220 -> 2542[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2233[label="LT <= LT",fontsize=16,color="black",shape="box"];2233 -> 2543[label="",style="solid", color="black", weight=3]; 25.61/9.74 2234[label="LT <= EQ",fontsize=16,color="black",shape="box"];2234 -> 2544[label="",style="solid", color="black", weight=3]; 25.61/9.74 2235[label="LT <= GT",fontsize=16,color="black",shape="box"];2235 -> 2545[label="",style="solid", color="black", weight=3]; 25.61/9.74 2236[label="EQ <= LT",fontsize=16,color="black",shape="box"];2236 -> 2546[label="",style="solid", color="black", weight=3]; 25.61/9.74 2237[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2237 -> 2547[label="",style="solid", color="black", weight=3]; 25.61/9.74 2238[label="EQ <= GT",fontsize=16,color="black",shape="box"];2238 -> 2548[label="",style="solid", color="black", weight=3]; 25.61/9.74 2239[label="GT <= LT",fontsize=16,color="black",shape="box"];2239 -> 2549[label="",style="solid", color="black", weight=3]; 25.61/9.74 2240[label="GT <= EQ",fontsize=16,color="black",shape="box"];2240 -> 2550[label="",style="solid", color="black", weight=3]; 25.61/9.74 2241[label="GT <= GT",fontsize=16,color="black",shape="box"];2241 -> 2551[label="",style="solid", color="black", weight=3]; 25.61/9.74 2221 -> 191[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2221[label="compare xuu47 xuu48",fontsize=16,color="magenta"];2221 -> 2552[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2221 -> 2553[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2242[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2242 -> 2554[label="",style="solid", color="black", weight=3]; 25.61/9.74 2243[label="Nothing <= Just xuu480",fontsize=16,color="black",shape="box"];2243 -> 2555[label="",style="solid", color="black", weight=3]; 25.61/9.74 2244[label="Just xuu470 <= Nothing",fontsize=16,color="black",shape="box"];2244 -> 2556[label="",style="solid", color="black", weight=3]; 25.61/9.74 2245[label="Just xuu470 <= Just xuu480",fontsize=16,color="black",shape="box"];2245 -> 2557[label="",style="solid", color="black", weight=3]; 25.61/9.74 2246[label="(xuu470,xuu471) <= (xuu480,xuu481)",fontsize=16,color="black",shape="box"];2246 -> 2558[label="",style="solid", color="black", weight=3]; 25.61/9.74 2222 -> 194[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2222[label="compare xuu47 xuu48",fontsize=16,color="magenta"];2222 -> 2559[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2222 -> 2560[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2247[label="False <= False",fontsize=16,color="black",shape="box"];2247 -> 2561[label="",style="solid", color="black", weight=3]; 25.61/9.74 2248[label="False <= True",fontsize=16,color="black",shape="box"];2248 -> 2562[label="",style="solid", color="black", weight=3]; 25.61/9.74 2249[label="True <= False",fontsize=16,color="black",shape="box"];2249 -> 2563[label="",style="solid", color="black", weight=3]; 25.61/9.74 2250[label="True <= True",fontsize=16,color="black",shape="box"];2250 -> 2564[label="",style="solid", color="black", weight=3]; 25.61/9.74 2223 -> 196[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2223[label="compare xuu47 xuu48",fontsize=16,color="magenta"];2223 -> 2565[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2223 -> 2566[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2224 -> 197[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2224[label="compare xuu47 xuu48",fontsize=16,color="magenta"];2224 -> 2567[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2224 -> 2568[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2251[label="GT",fontsize=16,color="green",shape="box"];2252[label="GT",fontsize=16,color="green",shape="box"];2253[label="LT",fontsize=16,color="green",shape="box"];2254 -> 184[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2254[label="compare xuu101 xuu104",fontsize=16,color="magenta"];2254 -> 2569[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2254 -> 2570[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2255[label="LT",fontsize=16,color="green",shape="box"];2256 -> 185[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2256[label="compare xuu101 xuu104",fontsize=16,color="magenta"];2256 -> 2571[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2256 -> 2572[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2257[label="LT",fontsize=16,color="green",shape="box"];2258 -> 186[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2258[label="compare xuu101 xuu104",fontsize=16,color="magenta"];2258 -> 2573[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2258 -> 2574[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2259[label="LT",fontsize=16,color="green",shape="box"];2260 -> 187[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2260[label="compare xuu101 xuu104",fontsize=16,color="magenta"];2260 -> 2575[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2260 -> 2576[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2261[label="LT",fontsize=16,color="green",shape="box"];2262 -> 188[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2262[label="compare xuu101 xuu104",fontsize=16,color="magenta"];2262 -> 2577[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2262 -> 2578[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2263[label="LT",fontsize=16,color="green",shape="box"];2264 -> 189[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2264[label="compare xuu101 xuu104",fontsize=16,color="magenta"];2264 -> 2579[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2264 -> 2580[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2265[label="LT",fontsize=16,color="green",shape="box"];2266 -> 190[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2266[label="compare xuu101 xuu104",fontsize=16,color="magenta"];2266 -> 2581[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2266 -> 2582[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2267[label="LT",fontsize=16,color="green",shape="box"];2268 -> 191[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2268[label="compare xuu101 xuu104",fontsize=16,color="magenta"];2268 -> 2583[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2268 -> 2584[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2269[label="LT",fontsize=16,color="green",shape="box"];2270 -> 192[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2270[label="compare xuu101 xuu104",fontsize=16,color="magenta"];2270 -> 2585[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2270 -> 2586[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2271[label="LT",fontsize=16,color="green",shape="box"];2272 -> 193[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2272[label="compare xuu101 xuu104",fontsize=16,color="magenta"];2272 -> 2587[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2272 -> 2588[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2273[label="LT",fontsize=16,color="green",shape="box"];2274 -> 194[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2274[label="compare xuu101 xuu104",fontsize=16,color="magenta"];2274 -> 2589[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2274 -> 2590[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2275[label="LT",fontsize=16,color="green",shape="box"];2276 -> 195[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2276[label="compare xuu101 xuu104",fontsize=16,color="magenta"];2276 -> 2591[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2276 -> 2592[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2277[label="LT",fontsize=16,color="green",shape="box"];2278 -> 196[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2278[label="compare xuu101 xuu104",fontsize=16,color="magenta"];2278 -> 2593[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2278 -> 2594[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2279[label="LT",fontsize=16,color="green",shape="box"];2280 -> 197[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2280[label="compare xuu101 xuu104",fontsize=16,color="magenta"];2280 -> 2595[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2280 -> 2596[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2281[label="xuu104",fontsize=16,color="green",shape="box"];2282[label="xuu101",fontsize=16,color="green",shape="box"];2283[label="xuu104",fontsize=16,color="green",shape="box"];2284[label="xuu101",fontsize=16,color="green",shape="box"];2285[label="xuu104",fontsize=16,color="green",shape="box"];2286[label="xuu101",fontsize=16,color="green",shape="box"];2287[label="xuu104",fontsize=16,color="green",shape="box"];2288[label="xuu101",fontsize=16,color="green",shape="box"];2289[label="xuu104",fontsize=16,color="green",shape="box"];2290[label="xuu101",fontsize=16,color="green",shape="box"];2291[label="xuu104",fontsize=16,color="green",shape="box"];2292[label="xuu101",fontsize=16,color="green",shape="box"];2293[label="xuu104",fontsize=16,color="green",shape="box"];2294[label="xuu101",fontsize=16,color="green",shape="box"];2295[label="xuu104",fontsize=16,color="green",shape="box"];2296[label="xuu101",fontsize=16,color="green",shape="box"];2297[label="xuu104",fontsize=16,color="green",shape="box"];2298[label="xuu101",fontsize=16,color="green",shape="box"];2299[label="xuu104",fontsize=16,color="green",shape="box"];2300[label="xuu101",fontsize=16,color="green",shape="box"];2301[label="xuu104",fontsize=16,color="green",shape="box"];2302[label="xuu101",fontsize=16,color="green",shape="box"];2303[label="xuu104",fontsize=16,color="green",shape="box"];2304[label="xuu101",fontsize=16,color="green",shape="box"];2305[label="xuu104",fontsize=16,color="green",shape="box"];2306[label="xuu101",fontsize=16,color="green",shape="box"];2307[label="xuu104",fontsize=16,color="green",shape="box"];2308[label="xuu101",fontsize=16,color="green",shape="box"];2321 -> 1551[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2321[label="xuu102 < xuu105",fontsize=16,color="magenta"];2321 -> 2597[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2321 -> 2598[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2322 -> 1552[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2322[label="xuu102 < xuu105",fontsize=16,color="magenta"];2322 -> 2599[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2322 -> 2600[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2323 -> 1553[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2323[label="xuu102 < xuu105",fontsize=16,color="magenta"];2323 -> 2601[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2323 -> 2602[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2324 -> 1554[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2324[label="xuu102 < xuu105",fontsize=16,color="magenta"];2324 -> 2603[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2324 -> 2604[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2325 -> 1555[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2325[label="xuu102 < xuu105",fontsize=16,color="magenta"];2325 -> 2605[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2325 -> 2606[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2326 -> 1556[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2326[label="xuu102 < xuu105",fontsize=16,color="magenta"];2326 -> 2607[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2326 -> 2608[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2327 -> 1557[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2327[label="xuu102 < xuu105",fontsize=16,color="magenta"];2327 -> 2609[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2327 -> 2610[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2328 -> 1558[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2328[label="xuu102 < xuu105",fontsize=16,color="magenta"];2328 -> 2611[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2328 -> 2612[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2329 -> 1559[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2329[label="xuu102 < xuu105",fontsize=16,color="magenta"];2329 -> 2613[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2329 -> 2614[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2330 -> 1560[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2330[label="xuu102 < xuu105",fontsize=16,color="magenta"];2330 -> 2615[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2330 -> 2616[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2331 -> 1561[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2331[label="xuu102 < xuu105",fontsize=16,color="magenta"];2331 -> 2617[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2331 -> 2618[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2332 -> 1562[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2332[label="xuu102 < xuu105",fontsize=16,color="magenta"];2332 -> 2619[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2332 -> 2620[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2333 -> 1563[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2333[label="xuu102 < xuu105",fontsize=16,color="magenta"];2333 -> 2621[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2333 -> 2622[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2334 -> 1564[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2334[label="xuu102 < xuu105",fontsize=16,color="magenta"];2334 -> 2623[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2334 -> 2624[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2335[label="xuu102 == xuu105",fontsize=16,color="blue",shape="box"];4513[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4513[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4513 -> 2625[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4514[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4514[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4514 -> 2626[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4515[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4515[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4515 -> 2627[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4516[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4516[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4516 -> 2628[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4517[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4517[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4517 -> 2629[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4518[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4518[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4518 -> 2630[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4519[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4519[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4519 -> 2631[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4520[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4520[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4520 -> 2632[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4521[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4521[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4521 -> 2633[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4522[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4522[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4522 -> 2634[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4523[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4523[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4523 -> 2635[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4524[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4524[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4524 -> 2636[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4525[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4525[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4525 -> 2637[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4526[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2335 -> 4526[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4526 -> 2638[label="",style="solid", color="blue", weight=3]; 25.61/9.74 2336[label="xuu103 <= xuu106",fontsize=16,color="blue",shape="box"];4527[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4527[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4527 -> 2639[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4528[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4528[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4528 -> 2640[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4529[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4529[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4529 -> 2641[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4530[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4530[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4530 -> 2642[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4531[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4531[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4531 -> 2643[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4532[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4532[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4532 -> 2644[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4533[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4533[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4533 -> 2645[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4534[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4534[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4534 -> 2646[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4535[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4535[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4535 -> 2647[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4536[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4536[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4536 -> 2648[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4537[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4537[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4537 -> 2649[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4538[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4538[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4538 -> 2650[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4539[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4539[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4539 -> 2651[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4540[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2336 -> 4540[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4540 -> 2652[label="",style="solid", color="blue", weight=3]; 25.61/9.74 2337[label="False || xuu210",fontsize=16,color="black",shape="box"];2337 -> 2653[label="",style="solid", color="black", weight=3]; 25.61/9.74 2338[label="True || xuu210",fontsize=16,color="black",shape="box"];2338 -> 2654[label="",style="solid", color="black", weight=3]; 25.61/9.74 2339[label="compare1 (xuu173,xuu174,xuu175) (xuu176,xuu177,xuu178) False",fontsize=16,color="black",shape="box"];2339 -> 2655[label="",style="solid", color="black", weight=3]; 25.61/9.74 2340[label="compare1 (xuu173,xuu174,xuu175) (xuu176,xuu177,xuu178) True",fontsize=16,color="black",shape="box"];2340 -> 2656[label="",style="solid", color="black", weight=3]; 25.61/9.74 2341[label="True",fontsize=16,color="green",shape="box"];2342[label="GT",fontsize=16,color="green",shape="box"];2343[label="xuu116",fontsize=16,color="green",shape="box"];2344[label="xuu114",fontsize=16,color="green",shape="box"];2345[label="xuu116",fontsize=16,color="green",shape="box"];2346[label="xuu114",fontsize=16,color="green",shape="box"];2347[label="xuu116",fontsize=16,color="green",shape="box"];2348[label="xuu114",fontsize=16,color="green",shape="box"];2349[label="xuu116",fontsize=16,color="green",shape="box"];2350[label="xuu114",fontsize=16,color="green",shape="box"];2351[label="xuu116",fontsize=16,color="green",shape="box"];2352[label="xuu114",fontsize=16,color="green",shape="box"];2353[label="xuu116",fontsize=16,color="green",shape="box"];2354[label="xuu114",fontsize=16,color="green",shape="box"];2355[label="xuu116",fontsize=16,color="green",shape="box"];2356[label="xuu114",fontsize=16,color="green",shape="box"];2357[label="xuu116",fontsize=16,color="green",shape="box"];2358[label="xuu114",fontsize=16,color="green",shape="box"];2359[label="xuu116",fontsize=16,color="green",shape="box"];2360[label="xuu114",fontsize=16,color="green",shape="box"];2361[label="xuu116",fontsize=16,color="green",shape="box"];2362[label="xuu114",fontsize=16,color="green",shape="box"];2363[label="xuu116",fontsize=16,color="green",shape="box"];2364[label="xuu114",fontsize=16,color="green",shape="box"];2365[label="xuu116",fontsize=16,color="green",shape="box"];2366[label="xuu114",fontsize=16,color="green",shape="box"];2367[label="xuu116",fontsize=16,color="green",shape="box"];2368[label="xuu114",fontsize=16,color="green",shape="box"];2369[label="xuu116",fontsize=16,color="green",shape="box"];2370[label="xuu114",fontsize=16,color="green",shape="box"];2371[label="xuu115",fontsize=16,color="green",shape="box"];2372[label="xuu117",fontsize=16,color="green",shape="box"];2373[label="xuu115",fontsize=16,color="green",shape="box"];2374[label="xuu117",fontsize=16,color="green",shape="box"];2375[label="xuu115",fontsize=16,color="green",shape="box"];2376[label="xuu117",fontsize=16,color="green",shape="box"];2377[label="xuu115",fontsize=16,color="green",shape="box"];2378[label="xuu117",fontsize=16,color="green",shape="box"];2379[label="xuu115",fontsize=16,color="green",shape="box"];2380[label="xuu117",fontsize=16,color="green",shape="box"];2381[label="xuu115",fontsize=16,color="green",shape="box"];2382[label="xuu117",fontsize=16,color="green",shape="box"];2383[label="xuu115",fontsize=16,color="green",shape="box"];2384[label="xuu117",fontsize=16,color="green",shape="box"];2385[label="xuu115",fontsize=16,color="green",shape="box"];2386[label="xuu117",fontsize=16,color="green",shape="box"];2387[label="xuu115",fontsize=16,color="green",shape="box"];2388[label="xuu117",fontsize=16,color="green",shape="box"];2389[label="xuu115",fontsize=16,color="green",shape="box"];2390[label="xuu117",fontsize=16,color="green",shape="box"];2391[label="xuu115",fontsize=16,color="green",shape="box"];2392[label="xuu117",fontsize=16,color="green",shape="box"];2393[label="xuu115",fontsize=16,color="green",shape="box"];2394[label="xuu117",fontsize=16,color="green",shape="box"];2395[label="xuu115",fontsize=16,color="green",shape="box"];2396[label="xuu117",fontsize=16,color="green",shape="box"];2397[label="xuu115",fontsize=16,color="green",shape="box"];2398[label="xuu117",fontsize=16,color="green",shape="box"];2399[label="compare1 (xuu188,xuu189) (xuu190,xuu191) False",fontsize=16,color="black",shape="box"];2399 -> 2657[label="",style="solid", color="black", weight=3]; 25.61/9.74 2400[label="compare1 (xuu188,xuu189) (xuu190,xuu191) True",fontsize=16,color="black",shape="box"];2400 -> 2658[label="",style="solid", color="black", weight=3]; 25.61/9.74 2401[label="True",fontsize=16,color="green",shape="box"];2402 -> 2659[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2402[label="primPlusNat (primMulNat xuu600000 (Succ xuu311000100)) (Succ xuu311000100)",fontsize=16,color="magenta"];2402 -> 2660[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2403[label="Zero",fontsize=16,color="green",shape="box"];2404[label="Zero",fontsize=16,color="green",shape="box"];2405[label="Zero",fontsize=16,color="green",shape="box"];2443 -> 2025[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2443[label="FiniteMap.sizeFM xuu63",fontsize=16,color="magenta"];2443 -> 2667[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2444[label="xuu41",fontsize=16,color="green",shape="box"];2446 -> 2014[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2446[label="FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41",fontsize=16,color="magenta"];2446 -> 2668[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2446 -> 2669[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2445[label="FiniteMap.mkBalBranch6MkBalBranch3 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 xuu213",fontsize=16,color="burlywood",shape="triangle"];4541[label="xuu213/False",fontsize=10,color="white",style="solid",shape="box"];2445 -> 4541[label="",style="solid", color="burlywood", weight=9]; 25.61/9.74 4541 -> 2670[label="",style="solid", color="burlywood", weight=3]; 25.61/9.74 4542[label="xuu213/True",fontsize=10,color="white",style="solid",shape="box"];2445 -> 4542[label="",style="solid", color="burlywood", weight=9]; 25.61/9.74 4542 -> 2671[label="",style="solid", color="burlywood", weight=3]; 25.61/9.74 2451[label="FiniteMap.mkBalBranch6MkBalBranch0 [] xuu61 xuu63 FiniteMap.EmptyFM xuu63 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2451 -> 2672[label="",style="solid", color="black", weight=3]; 25.61/9.74 2452[label="FiniteMap.mkBalBranch6MkBalBranch0 [] xuu61 xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414)",fontsize=16,color="black",shape="box"];2452 -> 2673[label="",style="solid", color="black", weight=3]; 25.61/9.74 2954[label="Succ (Succ (primPlusNat xuu21200 xuu21100))",fontsize=16,color="green",shape="box"];2954 -> 2965[label="",style="dashed", color="green", weight=3]; 25.61/9.74 2955[label="Succ xuu21200",fontsize=16,color="green",shape="box"];2956[label="Succ xuu21100",fontsize=16,color="green",shape="box"];2957[label="Zero",fontsize=16,color="green",shape="box"];2958[label="xuu21100",fontsize=16,color="green",shape="box"];2959[label="xuu21200",fontsize=16,color="green",shape="box"];3786[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu311 xuu308 xuu310",fontsize=16,color="black",shape="box"];3786 -> 3788[label="",style="solid", color="black", weight=3]; 25.61/9.74 3787[label="FiniteMap.mkBranchRight_size xuu311 xuu308 xuu310",fontsize=16,color="black",shape="box"];3787 -> 3789[label="",style="solid", color="black", weight=3]; 25.61/9.74 2456[label="FiniteMap.mkBalBranch6MkBalBranch2 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 True",fontsize=16,color="black",shape="box"];2456 -> 2677[label="",style="solid", color="black", weight=3]; 25.61/9.74 2457[label="FiniteMap.mkBalBranch6MkBalBranch1 (xuu600 : xuu601) xuu61 FiniteMap.EmptyFM xuu64 FiniteMap.EmptyFM xuu64 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2457 -> 2678[label="",style="solid", color="black", weight=3]; 25.61/9.74 2458[label="FiniteMap.mkBalBranch6MkBalBranch1 (xuu600 : xuu601) xuu61 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294)",fontsize=16,color="black",shape="box"];2458 -> 2679[label="",style="solid", color="black", weight=3]; 25.61/9.74 2460 -> 1552[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2460[label="FiniteMap.sizeFM xuu643 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];2460 -> 2680[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2460 -> 2681[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2459[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu600 : xuu601) xuu61 xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 xuu218",fontsize=16,color="burlywood",shape="triangle"];4543[label="xuu218/False",fontsize=10,color="white",style="solid",shape="box"];2459 -> 4543[label="",style="solid", color="burlywood", weight=9]; 25.61/9.74 4543 -> 2682[label="",style="solid", color="burlywood", weight=3]; 25.61/9.74 4544[label="xuu218/True",fontsize=10,color="white",style="solid",shape="box"];2459 -> 4544[label="",style="solid", color="burlywood", weight=9]; 25.61/9.74 4544 -> 2683[label="",style="solid", color="burlywood", weight=3]; 25.61/9.74 2465 -> 1445[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2465[label="primEqNat xuu311000000 xuu600000",fontsize=16,color="magenta"];2465 -> 2684[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2465 -> 2685[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2466[label="False",fontsize=16,color="green",shape="box"];2467[label="False",fontsize=16,color="green",shape="box"];2468[label="True",fontsize=16,color="green",shape="box"];2469[label="xuu60001",fontsize=16,color="green",shape="box"];2470[label="xuu31100001",fontsize=16,color="green",shape="box"];2471[label="xuu60001",fontsize=16,color="green",shape="box"];2472[label="xuu31100001",fontsize=16,color="green",shape="box"];2473[label="xuu60001",fontsize=16,color="green",shape="box"];2474[label="xuu31100001",fontsize=16,color="green",shape="box"];2475[label="xuu60001",fontsize=16,color="green",shape="box"];2476[label="xuu31100001",fontsize=16,color="green",shape="box"];2477[label="xuu60001",fontsize=16,color="green",shape="box"];2478[label="xuu31100001",fontsize=16,color="green",shape="box"];2479[label="xuu60001",fontsize=16,color="green",shape="box"];2480[label="xuu31100001",fontsize=16,color="green",shape="box"];2481[label="xuu60001",fontsize=16,color="green",shape="box"];2482[label="xuu31100001",fontsize=16,color="green",shape="box"];2483[label="xuu60001",fontsize=16,color="green",shape="box"];2484[label="xuu31100001",fontsize=16,color="green",shape="box"];2485[label="xuu60001",fontsize=16,color="green",shape="box"];2486[label="xuu31100001",fontsize=16,color="green",shape="box"];2487[label="xuu60001",fontsize=16,color="green",shape="box"];2488[label="xuu31100001",fontsize=16,color="green",shape="box"];2489[label="xuu60001",fontsize=16,color="green",shape="box"];2490[label="xuu31100001",fontsize=16,color="green",shape="box"];2491[label="xuu60001",fontsize=16,color="green",shape="box"];2492[label="xuu31100001",fontsize=16,color="green",shape="box"];2493[label="xuu60001",fontsize=16,color="green",shape="box"];2494[label="xuu31100001",fontsize=16,color="green",shape="box"];2495[label="xuu60001",fontsize=16,color="green",shape="box"];2496[label="xuu31100001",fontsize=16,color="green",shape="box"];2497[label="xuu60002",fontsize=16,color="green",shape="box"];2498[label="xuu31100002",fontsize=16,color="green",shape="box"];2499[label="xuu60002",fontsize=16,color="green",shape="box"];2500[label="xuu31100002",fontsize=16,color="green",shape="box"];2501[label="xuu60002",fontsize=16,color="green",shape="box"];2502[label="xuu31100002",fontsize=16,color="green",shape="box"];2503[label="xuu60002",fontsize=16,color="green",shape="box"];2504[label="xuu31100002",fontsize=16,color="green",shape="box"];2505[label="xuu60002",fontsize=16,color="green",shape="box"];2506[label="xuu31100002",fontsize=16,color="green",shape="box"];2507[label="xuu60002",fontsize=16,color="green",shape="box"];2508[label="xuu31100002",fontsize=16,color="green",shape="box"];2509[label="xuu60002",fontsize=16,color="green",shape="box"];2510[label="xuu31100002",fontsize=16,color="green",shape="box"];2511[label="xuu60002",fontsize=16,color="green",shape="box"];2512[label="xuu31100002",fontsize=16,color="green",shape="box"];2513[label="xuu60002",fontsize=16,color="green",shape="box"];2514[label="xuu31100002",fontsize=16,color="green",shape="box"];2515[label="xuu60002",fontsize=16,color="green",shape="box"];2516[label="xuu31100002",fontsize=16,color="green",shape="box"];2517[label="xuu60002",fontsize=16,color="green",shape="box"];2518[label="xuu31100002",fontsize=16,color="green",shape="box"];2519[label="xuu60002",fontsize=16,color="green",shape="box"];2520[label="xuu31100002",fontsize=16,color="green",shape="box"];2521[label="xuu60002",fontsize=16,color="green",shape="box"];2522[label="xuu31100002",fontsize=16,color="green",shape="box"];2523[label="xuu60002",fontsize=16,color="green",shape="box"];2524[label="xuu31100002",fontsize=16,color="green",shape="box"];2525[label="xuu600000",fontsize=16,color="green",shape="box"];2526[label="xuu311000000",fontsize=16,color="green",shape="box"];2527[label="xuu600000",fontsize=16,color="green",shape="box"];2528[label="xuu311000000",fontsize=16,color="green",shape="box"];2529[label="xuu470 <= xuu480",fontsize=16,color="blue",shape="box"];4545[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2529 -> 4545[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4545 -> 2686[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4546[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2529 -> 4546[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4546 -> 2687[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4547[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2529 -> 4547[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4547 -> 2688[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4548[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2529 -> 4548[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4548 -> 2689[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4549[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2529 -> 4549[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4549 -> 2690[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4550[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2529 -> 4550[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4550 -> 2691[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4551[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2529 -> 4551[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4551 -> 2692[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4552[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2529 -> 4552[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4552 -> 2693[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4553[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2529 -> 4553[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4553 -> 2694[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4554[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2529 -> 4554[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4554 -> 2695[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4555[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2529 -> 4555[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4555 -> 2696[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4556[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2529 -> 4556[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4556 -> 2697[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4557[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2529 -> 4557[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4557 -> 2698[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4558[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2529 -> 4558[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4558 -> 2699[label="",style="solid", color="blue", weight=3]; 25.61/9.74 2530[label="True",fontsize=16,color="green",shape="box"];2531[label="False",fontsize=16,color="green",shape="box"];2532[label="xuu470 <= xuu480",fontsize=16,color="blue",shape="box"];4559[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 4559[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4559 -> 2700[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4560[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 4560[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4560 -> 2701[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4561[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 4561[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4561 -> 2702[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4562[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 4562[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4562 -> 2703[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4563[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 4563[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4563 -> 2704[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4564[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 4564[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4564 -> 2705[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4565[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 4565[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4565 -> 2706[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4566[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 4566[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4566 -> 2707[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4567[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 4567[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4567 -> 2708[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4568[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 4568[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4568 -> 2709[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4569[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 4569[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4569 -> 2710[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4570[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 4570[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4570 -> 2711[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4571[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 4571[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4571 -> 2712[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4572[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 4572[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4572 -> 2713[label="",style="solid", color="blue", weight=3]; 25.61/9.74 2533[label="xuu48",fontsize=16,color="green",shape="box"];2534[label="xuu47",fontsize=16,color="green",shape="box"];2535 -> 2714[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2535[label="not (xuu205 == GT)",fontsize=16,color="magenta"];2535 -> 2715[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2536 -> 2311[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2536[label="xuu470 < xuu480 || xuu470 == xuu480 && (xuu471 < xuu481 || xuu471 == xuu481 && xuu472 <= xuu482)",fontsize=16,color="magenta"];2536 -> 2724[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2536 -> 2725[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2537[label="xuu48",fontsize=16,color="green",shape="box"];2538[label="xuu47",fontsize=16,color="green",shape="box"];2539[label="xuu48",fontsize=16,color="green",shape="box"];2540[label="xuu47",fontsize=16,color="green",shape="box"];2541[label="xuu48",fontsize=16,color="green",shape="box"];2542[label="xuu47",fontsize=16,color="green",shape="box"];2543[label="True",fontsize=16,color="green",shape="box"];2544[label="True",fontsize=16,color="green",shape="box"];2545[label="True",fontsize=16,color="green",shape="box"];2546[label="False",fontsize=16,color="green",shape="box"];2547[label="True",fontsize=16,color="green",shape="box"];2548[label="True",fontsize=16,color="green",shape="box"];2549[label="False",fontsize=16,color="green",shape="box"];2550[label="False",fontsize=16,color="green",shape="box"];2551[label="True",fontsize=16,color="green",shape="box"];2552[label="xuu48",fontsize=16,color="green",shape="box"];2553[label="xuu47",fontsize=16,color="green",shape="box"];2554[label="True",fontsize=16,color="green",shape="box"];2555[label="True",fontsize=16,color="green",shape="box"];2556[label="False",fontsize=16,color="green",shape="box"];2557[label="xuu470 <= xuu480",fontsize=16,color="blue",shape="box"];4573[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 4573[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4573 -> 2726[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4574[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 4574[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4574 -> 2727[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4575[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 4575[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4575 -> 2728[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4576[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 4576[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4576 -> 2729[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4577[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 4577[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4577 -> 2730[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4578[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 4578[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4578 -> 2731[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4579[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 4579[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4579 -> 2732[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4580[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 4580[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4580 -> 2733[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4581[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 4581[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4581 -> 2734[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4582[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 4582[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4582 -> 2735[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4583[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 4583[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4583 -> 2736[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4584[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 4584[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4584 -> 2737[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4585[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 4585[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4585 -> 2738[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4586[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 4586[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4586 -> 2739[label="",style="solid", color="blue", weight=3]; 25.61/9.74 2558 -> 2311[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2558[label="xuu470 < xuu480 || xuu470 == xuu480 && xuu471 <= xuu481",fontsize=16,color="magenta"];2558 -> 2740[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2558 -> 2741[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2559[label="xuu48",fontsize=16,color="green",shape="box"];2560[label="xuu47",fontsize=16,color="green",shape="box"];2561[label="True",fontsize=16,color="green",shape="box"];2562[label="True",fontsize=16,color="green",shape="box"];2563[label="False",fontsize=16,color="green",shape="box"];2564[label="True",fontsize=16,color="green",shape="box"];2565[label="xuu48",fontsize=16,color="green",shape="box"];2566[label="xuu47",fontsize=16,color="green",shape="box"];2567[label="xuu48",fontsize=16,color="green",shape="box"];2568[label="xuu47",fontsize=16,color="green",shape="box"];2569[label="xuu104",fontsize=16,color="green",shape="box"];2570[label="xuu101",fontsize=16,color="green",shape="box"];2571[label="xuu104",fontsize=16,color="green",shape="box"];2572[label="xuu101",fontsize=16,color="green",shape="box"];2573[label="xuu104",fontsize=16,color="green",shape="box"];2574[label="xuu101",fontsize=16,color="green",shape="box"];2575[label="xuu104",fontsize=16,color="green",shape="box"];2576[label="xuu101",fontsize=16,color="green",shape="box"];2577[label="xuu104",fontsize=16,color="green",shape="box"];2578[label="xuu101",fontsize=16,color="green",shape="box"];2579[label="xuu104",fontsize=16,color="green",shape="box"];2580[label="xuu101",fontsize=16,color="green",shape="box"];2581[label="xuu104",fontsize=16,color="green",shape="box"];2582[label="xuu101",fontsize=16,color="green",shape="box"];2583[label="xuu104",fontsize=16,color="green",shape="box"];2584[label="xuu101",fontsize=16,color="green",shape="box"];2585[label="xuu104",fontsize=16,color="green",shape="box"];2586[label="xuu101",fontsize=16,color="green",shape="box"];2587[label="xuu104",fontsize=16,color="green",shape="box"];2588[label="xuu101",fontsize=16,color="green",shape="box"];2589[label="xuu104",fontsize=16,color="green",shape="box"];2590[label="xuu101",fontsize=16,color="green",shape="box"];2591[label="xuu104",fontsize=16,color="green",shape="box"];2592[label="xuu101",fontsize=16,color="green",shape="box"];2593[label="xuu104",fontsize=16,color="green",shape="box"];2594[label="xuu101",fontsize=16,color="green",shape="box"];2595[label="xuu104",fontsize=16,color="green",shape="box"];2596[label="xuu101",fontsize=16,color="green",shape="box"];2597[label="xuu102",fontsize=16,color="green",shape="box"];2598[label="xuu105",fontsize=16,color="green",shape="box"];2599[label="xuu102",fontsize=16,color="green",shape="box"];2600[label="xuu105",fontsize=16,color="green",shape="box"];2601[label="xuu102",fontsize=16,color="green",shape="box"];2602[label="xuu105",fontsize=16,color="green",shape="box"];2603[label="xuu102",fontsize=16,color="green",shape="box"];2604[label="xuu105",fontsize=16,color="green",shape="box"];2605[label="xuu102",fontsize=16,color="green",shape="box"];2606[label="xuu105",fontsize=16,color="green",shape="box"];2607[label="xuu102",fontsize=16,color="green",shape="box"];2608[label="xuu105",fontsize=16,color="green",shape="box"];2609[label="xuu102",fontsize=16,color="green",shape="box"];2610[label="xuu105",fontsize=16,color="green",shape="box"];2611[label="xuu102",fontsize=16,color="green",shape="box"];2612[label="xuu105",fontsize=16,color="green",shape="box"];2613[label="xuu102",fontsize=16,color="green",shape="box"];2614[label="xuu105",fontsize=16,color="green",shape="box"];2615[label="xuu102",fontsize=16,color="green",shape="box"];2616[label="xuu105",fontsize=16,color="green",shape="box"];2617[label="xuu102",fontsize=16,color="green",shape="box"];2618[label="xuu105",fontsize=16,color="green",shape="box"];2619[label="xuu102",fontsize=16,color="green",shape="box"];2620[label="xuu105",fontsize=16,color="green",shape="box"];2621[label="xuu102",fontsize=16,color="green",shape="box"];2622[label="xuu105",fontsize=16,color="green",shape="box"];2623[label="xuu102",fontsize=16,color="green",shape="box"];2624[label="xuu105",fontsize=16,color="green",shape="box"];2625 -> 551[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2625[label="xuu102 == xuu105",fontsize=16,color="magenta"];2625 -> 2742[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2625 -> 2743[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2626 -> 549[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2626[label="xuu102 == xuu105",fontsize=16,color="magenta"];2626 -> 2744[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2626 -> 2745[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2627 -> 547[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2627[label="xuu102 == xuu105",fontsize=16,color="magenta"];2627 -> 2746[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2627 -> 2747[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2628 -> 552[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2628[label="xuu102 == xuu105",fontsize=16,color="magenta"];2628 -> 2748[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2628 -> 2749[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2629 -> 555[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2629[label="xuu102 == xuu105",fontsize=16,color="magenta"];2629 -> 2750[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2629 -> 2751[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2630 -> 548[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2630[label="xuu102 == xuu105",fontsize=16,color="magenta"];2630 -> 2752[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2630 -> 2753[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2631 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2631[label="xuu102 == xuu105",fontsize=16,color="magenta"];2631 -> 2754[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2631 -> 2755[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2632 -> 554[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2632[label="xuu102 == xuu105",fontsize=16,color="magenta"];2632 -> 2756[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2632 -> 2757[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2633 -> 556[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2633[label="xuu102 == xuu105",fontsize=16,color="magenta"];2633 -> 2758[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2633 -> 2759[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2634 -> 546[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2634[label="xuu102 == xuu105",fontsize=16,color="magenta"];2634 -> 2760[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2634 -> 2761[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2635 -> 553[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2635[label="xuu102 == xuu105",fontsize=16,color="magenta"];2635 -> 2762[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2635 -> 2763[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2636 -> 550[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2636[label="xuu102 == xuu105",fontsize=16,color="magenta"];2636 -> 2764[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2636 -> 2765[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2637 -> 545[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2637[label="xuu102 == xuu105",fontsize=16,color="magenta"];2637 -> 2766[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2637 -> 2767[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2638 -> 544[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2638[label="xuu102 == xuu105",fontsize=16,color="magenta"];2638 -> 2768[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2638 -> 2769[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2639 -> 1500[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2639[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2639 -> 2770[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2639 -> 2771[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2640 -> 1501[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2640[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2640 -> 2772[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2640 -> 2773[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2641 -> 1502[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2641[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2641 -> 2774[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2641 -> 2775[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2642 -> 1503[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2642[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2642 -> 2776[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2642 -> 2777[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2643 -> 1504[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2643[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2643 -> 2778[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2643 -> 2779[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2644 -> 1505[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2644[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2644 -> 2780[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2644 -> 2781[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2645 -> 1506[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2645[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2645 -> 2782[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2645 -> 2783[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2646 -> 1507[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2646[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2646 -> 2784[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2646 -> 2785[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2647 -> 1508[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2647[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2647 -> 2786[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2647 -> 2787[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2648 -> 1509[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2648[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2648 -> 2788[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2648 -> 2789[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2649 -> 1510[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2649[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2649 -> 2790[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2649 -> 2791[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2650 -> 1511[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2650[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2650 -> 2792[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2650 -> 2793[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2651 -> 1512[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2651[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2651 -> 2794[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2651 -> 2795[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2652 -> 1513[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2652[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2652 -> 2796[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2652 -> 2797[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2653[label="xuu210",fontsize=16,color="green",shape="box"];2654[label="True",fontsize=16,color="green",shape="box"];2655[label="compare0 (xuu173,xuu174,xuu175) (xuu176,xuu177,xuu178) otherwise",fontsize=16,color="black",shape="box"];2655 -> 2798[label="",style="solid", color="black", weight=3]; 25.61/9.74 2656[label="LT",fontsize=16,color="green",shape="box"];2657[label="compare0 (xuu188,xuu189) (xuu190,xuu191) otherwise",fontsize=16,color="black",shape="box"];2657 -> 2799[label="",style="solid", color="black", weight=3]; 25.61/9.74 2658[label="LT",fontsize=16,color="green",shape="box"];2660 -> 1419[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2660[label="primMulNat xuu600000 (Succ xuu311000100)",fontsize=16,color="magenta"];2660 -> 2800[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2660 -> 2801[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2659 -> 2661[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2659[label="primPlusNat xuu222 (Succ xuu311000100)",fontsize=16,color="magenta"];2659 -> 2802[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2659 -> 2803[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2667[label="xuu63",fontsize=16,color="green",shape="box"];2668 -> 2421[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2668[label="FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41",fontsize=16,color="magenta"];2669 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2669[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41",fontsize=16,color="magenta"];2669 -> 2804[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2669 -> 2805[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2670[label="FiniteMap.mkBalBranch6MkBalBranch3 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 False",fontsize=16,color="black",shape="box"];2670 -> 2806[label="",style="solid", color="black", weight=3]; 25.61/9.74 2671[label="FiniteMap.mkBalBranch6MkBalBranch3 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 True",fontsize=16,color="black",shape="box"];2671 -> 2807[label="",style="solid", color="black", weight=3]; 25.61/9.74 2672[label="error []",fontsize=16,color="red",shape="box"];2673[label="FiniteMap.mkBalBranch6MkBalBranch02 [] xuu61 xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414)",fontsize=16,color="black",shape="box"];2673 -> 2808[label="",style="solid", color="black", weight=3]; 25.61/9.74 2965 -> 2661[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2965[label="primPlusNat xuu21200 xuu21100",fontsize=16,color="magenta"];2965 -> 3085[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2965 -> 3086[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 3788 -> 2406[label="",style="dashed", color="red", weight=0]; 25.61/9.74 3788[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu311 xuu308 xuu310)",fontsize=16,color="magenta"];3788 -> 3790[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 3788 -> 3791[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 3789[label="FiniteMap.sizeFM xuu311",fontsize=16,color="burlywood",shape="triangle"];4587[label="xuu311/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3789 -> 4587[label="",style="solid", color="burlywood", weight=9]; 25.61/9.74 4587 -> 3792[label="",style="solid", color="burlywood", weight=3]; 25.61/9.74 4588[label="xuu311/FiniteMap.Branch xuu3110 xuu3111 xuu3112 xuu3113 xuu3114",fontsize=10,color="white",style="solid",shape="box"];3789 -> 4588[label="",style="solid", color="burlywood", weight=9]; 25.61/9.74 4588 -> 3793[label="",style="solid", color="burlywood", weight=3]; 25.61/9.74 2677 -> 3543[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2677[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="magenta"];2677 -> 3554[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2677 -> 3555[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2677 -> 3556[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2677 -> 3557[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2677 -> 3558[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2678[label="error []",fontsize=16,color="red",shape="box"];2679[label="FiniteMap.mkBalBranch6MkBalBranch12 (xuu600 : xuu601) xuu61 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294)",fontsize=16,color="black",shape="box"];2679 -> 2813[label="",style="solid", color="black", weight=3]; 25.61/9.74 2680 -> 2025[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2680[label="FiniteMap.sizeFM xuu643",fontsize=16,color="magenta"];2680 -> 2814[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2681 -> 446[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2681[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];2681 -> 2815[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2681 -> 2816[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2682[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu600 : xuu601) xuu61 xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 False",fontsize=16,color="black",shape="box"];2682 -> 2817[label="",style="solid", color="black", weight=3]; 25.61/9.74 2683[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu600 : xuu601) xuu61 xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 True",fontsize=16,color="black",shape="box"];2683 -> 2818[label="",style="solid", color="black", weight=3]; 25.61/9.74 2684[label="xuu600000",fontsize=16,color="green",shape="box"];2685[label="xuu311000000",fontsize=16,color="green",shape="box"];2686 -> 1500[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2686[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2686 -> 2819[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2686 -> 2820[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2687 -> 1501[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2687[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2687 -> 2821[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2687 -> 2822[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2688 -> 1502[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2688[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2688 -> 2823[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2688 -> 2824[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2689 -> 1503[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2689[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2689 -> 2825[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2689 -> 2826[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2690 -> 1504[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2690[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2690 -> 2827[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2690 -> 2828[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2691 -> 1505[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2691[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2691 -> 2829[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2691 -> 2830[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2692 -> 1506[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2692[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2692 -> 2831[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2692 -> 2832[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2693 -> 1507[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2693[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2693 -> 2833[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2693 -> 2834[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2694 -> 1508[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2694[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2694 -> 2835[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2694 -> 2836[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2695 -> 1509[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2695[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2695 -> 2837[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2695 -> 2838[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2696 -> 1510[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2696[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2696 -> 2839[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2696 -> 2840[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2697 -> 1511[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2697[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2697 -> 2841[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2697 -> 2842[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2698 -> 1512[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2698[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2698 -> 2843[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2698 -> 2844[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2699 -> 1513[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2699[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2699 -> 2845[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2699 -> 2846[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2700 -> 1500[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2700[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2700 -> 2847[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2700 -> 2848[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2701 -> 1501[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2701[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2701 -> 2849[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2701 -> 2850[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2702 -> 1502[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2702[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2702 -> 2851[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2702 -> 2852[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2703 -> 1503[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2703[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2703 -> 2853[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2703 -> 2854[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2704 -> 1504[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2704[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2704 -> 2855[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2704 -> 2856[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2705 -> 1505[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2705[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2705 -> 2857[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2705 -> 2858[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2706 -> 1506[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2706[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2706 -> 2859[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2706 -> 2860[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2707 -> 1507[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2707[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2707 -> 2861[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2707 -> 2862[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2708 -> 1508[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2708[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2708 -> 2863[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2708 -> 2864[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2709 -> 1509[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2709[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2709 -> 2865[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2709 -> 2866[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2710 -> 1510[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2710[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2710 -> 2867[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2710 -> 2868[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2711 -> 1511[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2711[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2711 -> 2869[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2711 -> 2870[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2712 -> 1512[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2712[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2712 -> 2871[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2712 -> 2872[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2713 -> 1513[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2713[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2713 -> 2873[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2713 -> 2874[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2715 -> 557[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2715[label="xuu205 == GT",fontsize=16,color="magenta"];2715 -> 2875[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2715 -> 2876[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2714[label="not xuu223",fontsize=16,color="burlywood",shape="triangle"];4589[label="xuu223/False",fontsize=10,color="white",style="solid",shape="box"];2714 -> 4589[label="",style="solid", color="burlywood", weight=9]; 25.61/9.74 4589 -> 2877[label="",style="solid", color="burlywood", weight=3]; 25.61/9.74 4590[label="xuu223/True",fontsize=10,color="white",style="solid",shape="box"];2714 -> 4590[label="",style="solid", color="burlywood", weight=9]; 25.61/9.74 4590 -> 2878[label="",style="solid", color="burlywood", weight=3]; 25.61/9.74 2724[label="xuu470 < xuu480",fontsize=16,color="blue",shape="box"];4591[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2724 -> 4591[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4591 -> 2887[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4592[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2724 -> 4592[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4592 -> 2888[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4593[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2724 -> 4593[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4593 -> 2889[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4594[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2724 -> 4594[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4594 -> 2890[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4595[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2724 -> 4595[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4595 -> 2891[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4596[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2724 -> 4596[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4596 -> 2892[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4597[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2724 -> 4597[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4597 -> 2893[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4598[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2724 -> 4598[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4598 -> 2894[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4599[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2724 -> 4599[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4599 -> 2895[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4600[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2724 -> 4600[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4600 -> 2896[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4601[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2724 -> 4601[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4601 -> 2897[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4602[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2724 -> 4602[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4602 -> 2898[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4603[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2724 -> 4603[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4603 -> 2899[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4604[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2724 -> 4604[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4604 -> 2900[label="",style="solid", color="blue", weight=3]; 25.61/9.74 2725 -> 1163[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2725[label="xuu470 == xuu480 && (xuu471 < xuu481 || xuu471 == xuu481 && xuu472 <= xuu482)",fontsize=16,color="magenta"];2725 -> 2901[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2725 -> 2902[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2726 -> 1500[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2726[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2726 -> 2903[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2726 -> 2904[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2727 -> 1501[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2727[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2727 -> 2905[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2727 -> 2906[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2728 -> 1502[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2728[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2728 -> 2907[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2728 -> 2908[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2729 -> 1503[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2729[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2729 -> 2909[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2729 -> 2910[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2730 -> 1504[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2730[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2730 -> 2911[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2730 -> 2912[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2731 -> 1505[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2731[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2731 -> 2913[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2731 -> 2914[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2732 -> 1506[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2732[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2732 -> 2915[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2732 -> 2916[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2733 -> 1507[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2733[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2733 -> 2917[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2733 -> 2918[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2734 -> 1508[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2734[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2734 -> 2919[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2734 -> 2920[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2735 -> 1509[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2735[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2735 -> 2921[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2735 -> 2922[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2736 -> 1510[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2736[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2736 -> 2923[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2736 -> 2924[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2737 -> 1511[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2737[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2737 -> 2925[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2737 -> 2926[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2738 -> 1512[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2738[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2738 -> 2927[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2738 -> 2928[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2739 -> 1513[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2739[label="xuu470 <= xuu480",fontsize=16,color="magenta"];2739 -> 2929[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2739 -> 2930[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2740[label="xuu470 < xuu480",fontsize=16,color="blue",shape="box"];4605[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4605[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4605 -> 2931[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4606[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4606[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4606 -> 2932[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4607[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4607[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4607 -> 2933[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4608[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4608[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4608 -> 2934[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4609[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4609[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4609 -> 2935[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4610[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4610[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4610 -> 2936[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4611[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4611[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4611 -> 2937[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4612[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4612[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4612 -> 2938[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4613[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4613[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4613 -> 2939[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4614[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4614[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4614 -> 2940[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4615[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4615[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4615 -> 2941[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4616[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4616[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4616 -> 2942[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4617[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4617[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4617 -> 2943[label="",style="solid", color="blue", weight=3]; 25.61/9.74 4618[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4618[label="",style="solid", color="blue", weight=9]; 25.61/9.74 4618 -> 2944[label="",style="solid", color="blue", weight=3]; 25.61/9.74 2741 -> 1163[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2741[label="xuu470 == xuu480 && xuu471 <= xuu481",fontsize=16,color="magenta"];2741 -> 2945[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2741 -> 2946[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 2742[label="xuu105",fontsize=16,color="green",shape="box"];2743[label="xuu102",fontsize=16,color="green",shape="box"];2744[label="xuu105",fontsize=16,color="green",shape="box"];2745[label="xuu102",fontsize=16,color="green",shape="box"];2746[label="xuu105",fontsize=16,color="green",shape="box"];2747[label="xuu102",fontsize=16,color="green",shape="box"];2748[label="xuu105",fontsize=16,color="green",shape="box"];2749[label="xuu102",fontsize=16,color="green",shape="box"];2750[label="xuu105",fontsize=16,color="green",shape="box"];2751[label="xuu102",fontsize=16,color="green",shape="box"];2752[label="xuu105",fontsize=16,color="green",shape="box"];2753[label="xuu102",fontsize=16,color="green",shape="box"];2754[label="xuu105",fontsize=16,color="green",shape="box"];2755[label="xuu102",fontsize=16,color="green",shape="box"];2756[label="xuu105",fontsize=16,color="green",shape="box"];2757[label="xuu102",fontsize=16,color="green",shape="box"];2758[label="xuu105",fontsize=16,color="green",shape="box"];2759[label="xuu102",fontsize=16,color="green",shape="box"];2760[label="xuu105",fontsize=16,color="green",shape="box"];2761[label="xuu102",fontsize=16,color="green",shape="box"];2762[label="xuu105",fontsize=16,color="green",shape="box"];2763[label="xuu102",fontsize=16,color="green",shape="box"];2764[label="xuu105",fontsize=16,color="green",shape="box"];2765[label="xuu102",fontsize=16,color="green",shape="box"];2766[label="xuu105",fontsize=16,color="green",shape="box"];2767[label="xuu102",fontsize=16,color="green",shape="box"];2768[label="xuu105",fontsize=16,color="green",shape="box"];2769[label="xuu102",fontsize=16,color="green",shape="box"];2770[label="xuu103",fontsize=16,color="green",shape="box"];2771[label="xuu106",fontsize=16,color="green",shape="box"];2772[label="xuu103",fontsize=16,color="green",shape="box"];2773[label="xuu106",fontsize=16,color="green",shape="box"];2774[label="xuu103",fontsize=16,color="green",shape="box"];2775[label="xuu106",fontsize=16,color="green",shape="box"];2776[label="xuu103",fontsize=16,color="green",shape="box"];2777[label="xuu106",fontsize=16,color="green",shape="box"];2778[label="xuu103",fontsize=16,color="green",shape="box"];2779[label="xuu106",fontsize=16,color="green",shape="box"];2780[label="xuu103",fontsize=16,color="green",shape="box"];2781[label="xuu106",fontsize=16,color="green",shape="box"];2782[label="xuu103",fontsize=16,color="green",shape="box"];2783[label="xuu106",fontsize=16,color="green",shape="box"];2784[label="xuu103",fontsize=16,color="green",shape="box"];2785[label="xuu106",fontsize=16,color="green",shape="box"];2786[label="xuu103",fontsize=16,color="green",shape="box"];2787[label="xuu106",fontsize=16,color="green",shape="box"];2788[label="xuu103",fontsize=16,color="green",shape="box"];2789[label="xuu106",fontsize=16,color="green",shape="box"];2790[label="xuu103",fontsize=16,color="green",shape="box"];2791[label="xuu106",fontsize=16,color="green",shape="box"];2792[label="xuu103",fontsize=16,color="green",shape="box"];2793[label="xuu106",fontsize=16,color="green",shape="box"];2794[label="xuu103",fontsize=16,color="green",shape="box"];2795[label="xuu106",fontsize=16,color="green",shape="box"];2796[label="xuu103",fontsize=16,color="green",shape="box"];2797[label="xuu106",fontsize=16,color="green",shape="box"];2798[label="compare0 (xuu173,xuu174,xuu175) (xuu176,xuu177,xuu178) True",fontsize=16,color="black",shape="box"];2798 -> 2947[label="",style="solid", color="black", weight=3]; 25.61/9.74 2799[label="compare0 (xuu188,xuu189) (xuu190,xuu191) True",fontsize=16,color="black",shape="box"];2799 -> 2948[label="",style="solid", color="black", weight=3]; 25.61/9.74 2800[label="Succ xuu311000100",fontsize=16,color="green",shape="box"];2801[label="xuu600000",fontsize=16,color="green",shape="box"];2802[label="xuu222",fontsize=16,color="green",shape="box"];2803[label="Succ xuu311000100",fontsize=16,color="green",shape="box"];2804 -> 2019[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2804[label="FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41",fontsize=16,color="magenta"];2805 -> 2027[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2805[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2806[label="FiniteMap.mkBalBranch6MkBalBranch2 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 otherwise",fontsize=16,color="black",shape="box"];2806 -> 2949[label="",style="solid", color="black", weight=3]; 25.61/9.74 2807[label="FiniteMap.mkBalBranch6MkBalBranch1 [] xuu61 xuu63 xuu41 xuu63 xuu41 xuu63",fontsize=16,color="burlywood",shape="box"];4619[label="xuu63/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2807 -> 4619[label="",style="solid", color="burlywood", weight=9]; 25.61/9.74 4619 -> 2950[label="",style="solid", color="burlywood", weight=3]; 25.61/9.74 4620[label="xuu63/FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634",fontsize=10,color="white",style="solid",shape="box"];2807 -> 4620[label="",style="solid", color="burlywood", weight=9]; 25.61/9.74 4620 -> 2951[label="",style="solid", color="burlywood", weight=3]; 25.61/9.74 2808 -> 2952[label="",style="dashed", color="red", weight=0]; 25.61/9.74 2808[label="FiniteMap.mkBalBranch6MkBalBranch01 [] xuu61 xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu63 (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"];2808 -> 2953[label="",style="dashed", color="magenta", weight=3]; 25.61/9.74 3085[label="xuu21200",fontsize=16,color="green",shape="box"];3086[label="xuu21100",fontsize=16,color="green",shape="box"];3790[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];3791[label="FiniteMap.mkBranchLeft_size xuu311 xuu308 xuu310",fontsize=16,color="black",shape="box"];3791 -> 3794[label="",style="solid", color="black", weight=3]; 25.69/9.74 3792[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];3792 -> 3795[label="",style="solid", color="black", weight=3]; 25.69/9.74 3793[label="FiniteMap.sizeFM (FiniteMap.Branch xuu3110 xuu3111 xuu3112 xuu3113 xuu3114)",fontsize=16,color="black",shape="box"];3793 -> 3796[label="",style="solid", color="black", weight=3]; 25.69/9.74 3554[label="xuu600 : xuu601",fontsize=16,color="green",shape="box"];3555[label="xuu64",fontsize=16,color="green",shape="box"];3556[label="Succ Zero",fontsize=16,color="green",shape="box"];3557[label="xuu61",fontsize=16,color="green",shape="box"];3558[label="xuu29",fontsize=16,color="green",shape="box"];2813 -> 2963[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2813[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu600 : xuu601) xuu61 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 xuu290 xuu291 xuu292 xuu293 xuu294 (FiniteMap.sizeFM xuu294 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu293)",fontsize=16,color="magenta"];2813 -> 2964[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2814[label="xuu643",fontsize=16,color="green",shape="box"];2815 -> 2025[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2815[label="FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];2815 -> 2966[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2816[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2817[label="FiniteMap.mkBalBranch6MkBalBranch00 (xuu600 : xuu601) xuu61 xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 otherwise",fontsize=16,color="black",shape="box"];2817 -> 2967[label="",style="solid", color="black", weight=3]; 25.69/9.74 2818[label="FiniteMap.mkBalBranch6Single_L (xuu600 : xuu601) xuu61 xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];2818 -> 2968[label="",style="solid", color="black", weight=3]; 25.69/9.74 2819[label="xuu470",fontsize=16,color="green",shape="box"];2820[label="xuu480",fontsize=16,color="green",shape="box"];2821[label="xuu470",fontsize=16,color="green",shape="box"];2822[label="xuu480",fontsize=16,color="green",shape="box"];2823[label="xuu470",fontsize=16,color="green",shape="box"];2824[label="xuu480",fontsize=16,color="green",shape="box"];2825[label="xuu470",fontsize=16,color="green",shape="box"];2826[label="xuu480",fontsize=16,color="green",shape="box"];2827[label="xuu470",fontsize=16,color="green",shape="box"];2828[label="xuu480",fontsize=16,color="green",shape="box"];2829[label="xuu470",fontsize=16,color="green",shape="box"];2830[label="xuu480",fontsize=16,color="green",shape="box"];2831[label="xuu470",fontsize=16,color="green",shape="box"];2832[label="xuu480",fontsize=16,color="green",shape="box"];2833[label="xuu470",fontsize=16,color="green",shape="box"];2834[label="xuu480",fontsize=16,color="green",shape="box"];2835[label="xuu470",fontsize=16,color="green",shape="box"];2836[label="xuu480",fontsize=16,color="green",shape="box"];2837[label="xuu470",fontsize=16,color="green",shape="box"];2838[label="xuu480",fontsize=16,color="green",shape="box"];2839[label="xuu470",fontsize=16,color="green",shape="box"];2840[label="xuu480",fontsize=16,color="green",shape="box"];2841[label="xuu470",fontsize=16,color="green",shape="box"];2842[label="xuu480",fontsize=16,color="green",shape="box"];2843[label="xuu470",fontsize=16,color="green",shape="box"];2844[label="xuu480",fontsize=16,color="green",shape="box"];2845[label="xuu470",fontsize=16,color="green",shape="box"];2846[label="xuu480",fontsize=16,color="green",shape="box"];2847[label="xuu470",fontsize=16,color="green",shape="box"];2848[label="xuu480",fontsize=16,color="green",shape="box"];2849[label="xuu470",fontsize=16,color="green",shape="box"];2850[label="xuu480",fontsize=16,color="green",shape="box"];2851[label="xuu470",fontsize=16,color="green",shape="box"];2852[label="xuu480",fontsize=16,color="green",shape="box"];2853[label="xuu470",fontsize=16,color="green",shape="box"];2854[label="xuu480",fontsize=16,color="green",shape="box"];2855[label="xuu470",fontsize=16,color="green",shape="box"];2856[label="xuu480",fontsize=16,color="green",shape="box"];2857[label="xuu470",fontsize=16,color="green",shape="box"];2858[label="xuu480",fontsize=16,color="green",shape="box"];2859[label="xuu470",fontsize=16,color="green",shape="box"];2860[label="xuu480",fontsize=16,color="green",shape="box"];2861[label="xuu470",fontsize=16,color="green",shape="box"];2862[label="xuu480",fontsize=16,color="green",shape="box"];2863[label="xuu470",fontsize=16,color="green",shape="box"];2864[label="xuu480",fontsize=16,color="green",shape="box"];2865[label="xuu470",fontsize=16,color="green",shape="box"];2866[label="xuu480",fontsize=16,color="green",shape="box"];2867[label="xuu470",fontsize=16,color="green",shape="box"];2868[label="xuu480",fontsize=16,color="green",shape="box"];2869[label="xuu470",fontsize=16,color="green",shape="box"];2870[label="xuu480",fontsize=16,color="green",shape="box"];2871[label="xuu470",fontsize=16,color="green",shape="box"];2872[label="xuu480",fontsize=16,color="green",shape="box"];2873[label="xuu470",fontsize=16,color="green",shape="box"];2874[label="xuu480",fontsize=16,color="green",shape="box"];2875[label="GT",fontsize=16,color="green",shape="box"];2876[label="xuu205",fontsize=16,color="green",shape="box"];2877[label="not False",fontsize=16,color="black",shape="box"];2877 -> 2969[label="",style="solid", color="black", weight=3]; 25.69/9.74 2878[label="not True",fontsize=16,color="black",shape="box"];2878 -> 2970[label="",style="solid", color="black", weight=3]; 25.69/9.74 2887 -> 1551[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2887[label="xuu470 < xuu480",fontsize=16,color="magenta"];2887 -> 2971[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2887 -> 2972[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2888 -> 1552[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2888[label="xuu470 < xuu480",fontsize=16,color="magenta"];2888 -> 2973[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2888 -> 2974[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2889 -> 1553[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2889[label="xuu470 < xuu480",fontsize=16,color="magenta"];2889 -> 2975[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2889 -> 2976[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2890 -> 1554[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2890[label="xuu470 < xuu480",fontsize=16,color="magenta"];2890 -> 2977[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2890 -> 2978[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2891 -> 1555[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2891[label="xuu470 < xuu480",fontsize=16,color="magenta"];2891 -> 2979[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2891 -> 2980[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2892 -> 1556[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2892[label="xuu470 < xuu480",fontsize=16,color="magenta"];2892 -> 2981[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2892 -> 2982[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2893 -> 1557[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2893[label="xuu470 < xuu480",fontsize=16,color="magenta"];2893 -> 2983[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2893 -> 2984[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2894 -> 1558[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2894[label="xuu470 < xuu480",fontsize=16,color="magenta"];2894 -> 2985[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2894 -> 2986[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2895 -> 1559[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2895[label="xuu470 < xuu480",fontsize=16,color="magenta"];2895 -> 2987[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2895 -> 2988[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2896 -> 1560[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2896[label="xuu470 < xuu480",fontsize=16,color="magenta"];2896 -> 2989[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2896 -> 2990[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2897 -> 1561[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2897[label="xuu470 < xuu480",fontsize=16,color="magenta"];2897 -> 2991[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2897 -> 2992[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2898 -> 1562[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2898[label="xuu470 < xuu480",fontsize=16,color="magenta"];2898 -> 2993[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2898 -> 2994[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2899 -> 1563[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2899[label="xuu470 < xuu480",fontsize=16,color="magenta"];2899 -> 2995[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2899 -> 2996[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2900 -> 1564[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2900[label="xuu470 < xuu480",fontsize=16,color="magenta"];2900 -> 2997[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2900 -> 2998[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2901[label="xuu470 == xuu480",fontsize=16,color="blue",shape="box"];4621[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2901 -> 4621[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4621 -> 2999[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4622[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2901 -> 4622[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4622 -> 3000[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4623[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2901 -> 4623[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4623 -> 3001[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4624[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2901 -> 4624[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4624 -> 3002[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4625[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2901 -> 4625[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4625 -> 3003[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4626[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2901 -> 4626[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4626 -> 3004[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4627[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2901 -> 4627[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4627 -> 3005[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4628[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2901 -> 4628[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4628 -> 3006[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4629[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2901 -> 4629[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4629 -> 3007[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4630[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2901 -> 4630[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4630 -> 3008[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4631[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2901 -> 4631[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4631 -> 3009[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4632[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2901 -> 4632[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4632 -> 3010[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4633[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2901 -> 4633[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4633 -> 3011[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4634[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2901 -> 4634[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4634 -> 3012[label="",style="solid", color="blue", weight=3]; 25.69/9.74 2902 -> 2311[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2902[label="xuu471 < xuu481 || xuu471 == xuu481 && xuu472 <= xuu482",fontsize=16,color="magenta"];2902 -> 3013[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2902 -> 3014[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2903[label="xuu470",fontsize=16,color="green",shape="box"];2904[label="xuu480",fontsize=16,color="green",shape="box"];2905[label="xuu470",fontsize=16,color="green",shape="box"];2906[label="xuu480",fontsize=16,color="green",shape="box"];2907[label="xuu470",fontsize=16,color="green",shape="box"];2908[label="xuu480",fontsize=16,color="green",shape="box"];2909[label="xuu470",fontsize=16,color="green",shape="box"];2910[label="xuu480",fontsize=16,color="green",shape="box"];2911[label="xuu470",fontsize=16,color="green",shape="box"];2912[label="xuu480",fontsize=16,color="green",shape="box"];2913[label="xuu470",fontsize=16,color="green",shape="box"];2914[label="xuu480",fontsize=16,color="green",shape="box"];2915[label="xuu470",fontsize=16,color="green",shape="box"];2916[label="xuu480",fontsize=16,color="green",shape="box"];2917[label="xuu470",fontsize=16,color="green",shape="box"];2918[label="xuu480",fontsize=16,color="green",shape="box"];2919[label="xuu470",fontsize=16,color="green",shape="box"];2920[label="xuu480",fontsize=16,color="green",shape="box"];2921[label="xuu470",fontsize=16,color="green",shape="box"];2922[label="xuu480",fontsize=16,color="green",shape="box"];2923[label="xuu470",fontsize=16,color="green",shape="box"];2924[label="xuu480",fontsize=16,color="green",shape="box"];2925[label="xuu470",fontsize=16,color="green",shape="box"];2926[label="xuu480",fontsize=16,color="green",shape="box"];2927[label="xuu470",fontsize=16,color="green",shape="box"];2928[label="xuu480",fontsize=16,color="green",shape="box"];2929[label="xuu470",fontsize=16,color="green",shape="box"];2930[label="xuu480",fontsize=16,color="green",shape="box"];2931 -> 1551[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2931[label="xuu470 < xuu480",fontsize=16,color="magenta"];2931 -> 3015[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2931 -> 3016[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2932 -> 1552[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2932[label="xuu470 < xuu480",fontsize=16,color="magenta"];2932 -> 3017[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2932 -> 3018[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2933 -> 1553[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2933[label="xuu470 < xuu480",fontsize=16,color="magenta"];2933 -> 3019[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2933 -> 3020[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2934 -> 1554[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2934[label="xuu470 < xuu480",fontsize=16,color="magenta"];2934 -> 3021[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2934 -> 3022[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2935 -> 1555[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2935[label="xuu470 < xuu480",fontsize=16,color="magenta"];2935 -> 3023[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2935 -> 3024[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2936 -> 1556[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2936[label="xuu470 < xuu480",fontsize=16,color="magenta"];2936 -> 3025[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2936 -> 3026[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2937 -> 1557[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2937[label="xuu470 < xuu480",fontsize=16,color="magenta"];2937 -> 3027[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2937 -> 3028[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2938 -> 1558[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2938[label="xuu470 < xuu480",fontsize=16,color="magenta"];2938 -> 3029[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2938 -> 3030[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2939 -> 1559[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2939[label="xuu470 < xuu480",fontsize=16,color="magenta"];2939 -> 3031[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2939 -> 3032[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2940 -> 1560[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2940[label="xuu470 < xuu480",fontsize=16,color="magenta"];2940 -> 3033[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2940 -> 3034[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2941 -> 1561[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2941[label="xuu470 < xuu480",fontsize=16,color="magenta"];2941 -> 3035[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2941 -> 3036[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2942 -> 1562[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2942[label="xuu470 < xuu480",fontsize=16,color="magenta"];2942 -> 3037[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2942 -> 3038[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2943 -> 1563[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2943[label="xuu470 < xuu480",fontsize=16,color="magenta"];2943 -> 3039[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2943 -> 3040[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2944 -> 1564[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2944[label="xuu470 < xuu480",fontsize=16,color="magenta"];2944 -> 3041[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2944 -> 3042[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2945[label="xuu470 == xuu480",fontsize=16,color="blue",shape="box"];4635[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4635[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4635 -> 3043[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4636[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4636[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4636 -> 3044[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4637[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4637[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4637 -> 3045[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4638[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4638[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4638 -> 3046[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4639[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4639[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4639 -> 3047[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4640[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4640[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4640 -> 3048[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4641[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4641[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4641 -> 3049[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4642[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4642[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4642 -> 3050[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4643[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4643[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4643 -> 3051[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4644[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4644[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4644 -> 3052[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4645[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4645[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4645 -> 3053[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4646[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4646[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4646 -> 3054[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4647[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4647[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4647 -> 3055[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4648[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2945 -> 4648[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4648 -> 3056[label="",style="solid", color="blue", weight=3]; 25.69/9.74 2946[label="xuu471 <= xuu481",fontsize=16,color="blue",shape="box"];4649[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2946 -> 4649[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4649 -> 3057[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4650[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2946 -> 4650[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4650 -> 3058[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4651[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2946 -> 4651[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4651 -> 3059[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4652[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2946 -> 4652[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4652 -> 3060[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4653[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2946 -> 4653[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4653 -> 3061[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4654[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2946 -> 4654[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4654 -> 3062[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4655[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2946 -> 4655[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4655 -> 3063[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4656[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2946 -> 4656[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4656 -> 3064[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4657[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2946 -> 4657[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4657 -> 3065[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4658[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2946 -> 4658[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4658 -> 3066[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4659[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2946 -> 4659[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4659 -> 3067[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4660[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2946 -> 4660[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4660 -> 3068[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4661[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2946 -> 4661[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4661 -> 3069[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4662[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2946 -> 4662[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4662 -> 3070[label="",style="solid", color="blue", weight=3]; 25.69/9.74 2947[label="GT",fontsize=16,color="green",shape="box"];2948[label="GT",fontsize=16,color="green",shape="box"];2949[label="FiniteMap.mkBalBranch6MkBalBranch2 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 True",fontsize=16,color="black",shape="box"];2949 -> 3071[label="",style="solid", color="black", weight=3]; 25.69/9.74 2950[label="FiniteMap.mkBalBranch6MkBalBranch1 [] xuu61 FiniteMap.EmptyFM xuu41 FiniteMap.EmptyFM xuu41 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2950 -> 3072[label="",style="solid", color="black", weight=3]; 25.69/9.74 2951[label="FiniteMap.mkBalBranch6MkBalBranch1 [] xuu61 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634)",fontsize=16,color="black",shape="box"];2951 -> 3073[label="",style="solid", color="black", weight=3]; 25.69/9.74 2953 -> 1552[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2953[label="FiniteMap.sizeFM xuu413 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu414",fontsize=16,color="magenta"];2953 -> 3074[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2953 -> 3075[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2952[label="FiniteMap.mkBalBranch6MkBalBranch01 [] xuu61 xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu410 xuu411 xuu412 xuu413 xuu414 xuu224",fontsize=16,color="burlywood",shape="triangle"];4663[label="xuu224/False",fontsize=10,color="white",style="solid",shape="box"];2952 -> 4663[label="",style="solid", color="burlywood", weight=9]; 25.69/9.74 4663 -> 3076[label="",style="solid", color="burlywood", weight=3]; 25.69/9.74 4664[label="xuu224/True",fontsize=10,color="white",style="solid",shape="box"];2952 -> 4664[label="",style="solid", color="burlywood", weight=9]; 25.69/9.74 4664 -> 3077[label="",style="solid", color="burlywood", weight=3]; 25.69/9.74 3794 -> 3789[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3794[label="FiniteMap.sizeFM xuu310",fontsize=16,color="magenta"];3794 -> 3797[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3795[label="Pos Zero",fontsize=16,color="green",shape="box"];3796[label="xuu3112",fontsize=16,color="green",shape="box"];2964 -> 1552[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2964[label="FiniteMap.sizeFM xuu294 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu293",fontsize=16,color="magenta"];2964 -> 3081[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2964 -> 3082[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2963[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu600 : xuu601) xuu61 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 xuu290 xuu291 xuu292 xuu293 xuu294 xuu228",fontsize=16,color="burlywood",shape="triangle"];4665[label="xuu228/False",fontsize=10,color="white",style="solid",shape="box"];2963 -> 4665[label="",style="solid", color="burlywood", weight=9]; 25.69/9.74 4665 -> 3083[label="",style="solid", color="burlywood", weight=3]; 25.69/9.74 4666[label="xuu228/True",fontsize=10,color="white",style="solid",shape="box"];2963 -> 4666[label="",style="solid", color="burlywood", weight=9]; 25.69/9.74 4666 -> 3084[label="",style="solid", color="burlywood", weight=3]; 25.69/9.74 2966[label="xuu644",fontsize=16,color="green",shape="box"];2967[label="FiniteMap.mkBalBranch6MkBalBranch00 (xuu600 : xuu601) xuu61 xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 True",fontsize=16,color="black",shape="box"];2967 -> 3087[label="",style="solid", color="black", weight=3]; 25.69/9.74 2968 -> 3543[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2968[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu640 xuu641 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu600 : xuu601) xuu61 xuu29 xuu643) xuu644",fontsize=16,color="magenta"];2968 -> 3559[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2968 -> 3560[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2968 -> 3561[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2968 -> 3562[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2968 -> 3563[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2969[label="True",fontsize=16,color="green",shape="box"];2970[label="False",fontsize=16,color="green",shape="box"];2971[label="xuu470",fontsize=16,color="green",shape="box"];2972[label="xuu480",fontsize=16,color="green",shape="box"];2973[label="xuu470",fontsize=16,color="green",shape="box"];2974[label="xuu480",fontsize=16,color="green",shape="box"];2975[label="xuu470",fontsize=16,color="green",shape="box"];2976[label="xuu480",fontsize=16,color="green",shape="box"];2977[label="xuu470",fontsize=16,color="green",shape="box"];2978[label="xuu480",fontsize=16,color="green",shape="box"];2979[label="xuu470",fontsize=16,color="green",shape="box"];2980[label="xuu480",fontsize=16,color="green",shape="box"];2981[label="xuu470",fontsize=16,color="green",shape="box"];2982[label="xuu480",fontsize=16,color="green",shape="box"];2983[label="xuu470",fontsize=16,color="green",shape="box"];2984[label="xuu480",fontsize=16,color="green",shape="box"];2985[label="xuu470",fontsize=16,color="green",shape="box"];2986[label="xuu480",fontsize=16,color="green",shape="box"];2987[label="xuu470",fontsize=16,color="green",shape="box"];2988[label="xuu480",fontsize=16,color="green",shape="box"];2989[label="xuu470",fontsize=16,color="green",shape="box"];2990[label="xuu480",fontsize=16,color="green",shape="box"];2991[label="xuu470",fontsize=16,color="green",shape="box"];2992[label="xuu480",fontsize=16,color="green",shape="box"];2993[label="xuu470",fontsize=16,color="green",shape="box"];2994[label="xuu480",fontsize=16,color="green",shape="box"];2995[label="xuu470",fontsize=16,color="green",shape="box"];2996[label="xuu480",fontsize=16,color="green",shape="box"];2997[label="xuu470",fontsize=16,color="green",shape="box"];2998[label="xuu480",fontsize=16,color="green",shape="box"];2999 -> 551[label="",style="dashed", color="red", weight=0]; 25.69/9.74 2999[label="xuu470 == xuu480",fontsize=16,color="magenta"];2999 -> 3089[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 2999 -> 3090[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3000 -> 549[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3000[label="xuu470 == xuu480",fontsize=16,color="magenta"];3000 -> 3091[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3000 -> 3092[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3001 -> 547[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3001[label="xuu470 == xuu480",fontsize=16,color="magenta"];3001 -> 3093[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3001 -> 3094[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3002 -> 552[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3002[label="xuu470 == xuu480",fontsize=16,color="magenta"];3002 -> 3095[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3002 -> 3096[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3003 -> 555[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3003[label="xuu470 == xuu480",fontsize=16,color="magenta"];3003 -> 3097[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3003 -> 3098[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3004 -> 548[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3004[label="xuu470 == xuu480",fontsize=16,color="magenta"];3004 -> 3099[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3004 -> 3100[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3005 -> 557[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3005[label="xuu470 == xuu480",fontsize=16,color="magenta"];3005 -> 3101[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3005 -> 3102[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3006 -> 554[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3006[label="xuu470 == xuu480",fontsize=16,color="magenta"];3006 -> 3103[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3006 -> 3104[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3007 -> 556[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3007[label="xuu470 == xuu480",fontsize=16,color="magenta"];3007 -> 3105[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3007 -> 3106[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3008 -> 546[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3008[label="xuu470 == xuu480",fontsize=16,color="magenta"];3008 -> 3107[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3008 -> 3108[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3009 -> 553[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3009[label="xuu470 == xuu480",fontsize=16,color="magenta"];3009 -> 3109[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3009 -> 3110[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3010 -> 550[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3010[label="xuu470 == xuu480",fontsize=16,color="magenta"];3010 -> 3111[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3010 -> 3112[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3011 -> 545[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3011[label="xuu470 == xuu480",fontsize=16,color="magenta"];3011 -> 3113[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3011 -> 3114[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3012 -> 544[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3012[label="xuu470 == xuu480",fontsize=16,color="magenta"];3012 -> 3115[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3012 -> 3116[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3013[label="xuu471 < xuu481",fontsize=16,color="blue",shape="box"];4667[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4667[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4667 -> 3117[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4668[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4668[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4668 -> 3118[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4669[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4669[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4669 -> 3119[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4670[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4670[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4670 -> 3120[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4671[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4671[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4671 -> 3121[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4672[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4672[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4672 -> 3122[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4673[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4673[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4673 -> 3123[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4674[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4674[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4674 -> 3124[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4675[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4675[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4675 -> 3125[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4676[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4676[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4676 -> 3126[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4677[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4677[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4677 -> 3127[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4678[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4678[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4678 -> 3128[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4679[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4679[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4679 -> 3129[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4680[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3013 -> 4680[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4680 -> 3130[label="",style="solid", color="blue", weight=3]; 25.69/9.74 3014 -> 1163[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3014[label="xuu471 == xuu481 && xuu472 <= xuu482",fontsize=16,color="magenta"];3014 -> 3131[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3014 -> 3132[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3015[label="xuu470",fontsize=16,color="green",shape="box"];3016[label="xuu480",fontsize=16,color="green",shape="box"];3017[label="xuu470",fontsize=16,color="green",shape="box"];3018[label="xuu480",fontsize=16,color="green",shape="box"];3019[label="xuu470",fontsize=16,color="green",shape="box"];3020[label="xuu480",fontsize=16,color="green",shape="box"];3021[label="xuu470",fontsize=16,color="green",shape="box"];3022[label="xuu480",fontsize=16,color="green",shape="box"];3023[label="xuu470",fontsize=16,color="green",shape="box"];3024[label="xuu480",fontsize=16,color="green",shape="box"];3025[label="xuu470",fontsize=16,color="green",shape="box"];3026[label="xuu480",fontsize=16,color="green",shape="box"];3027[label="xuu470",fontsize=16,color="green",shape="box"];3028[label="xuu480",fontsize=16,color="green",shape="box"];3029[label="xuu470",fontsize=16,color="green",shape="box"];3030[label="xuu480",fontsize=16,color="green",shape="box"];3031[label="xuu470",fontsize=16,color="green",shape="box"];3032[label="xuu480",fontsize=16,color="green",shape="box"];3033[label="xuu470",fontsize=16,color="green",shape="box"];3034[label="xuu480",fontsize=16,color="green",shape="box"];3035[label="xuu470",fontsize=16,color="green",shape="box"];3036[label="xuu480",fontsize=16,color="green",shape="box"];3037[label="xuu470",fontsize=16,color="green",shape="box"];3038[label="xuu480",fontsize=16,color="green",shape="box"];3039[label="xuu470",fontsize=16,color="green",shape="box"];3040[label="xuu480",fontsize=16,color="green",shape="box"];3041[label="xuu470",fontsize=16,color="green",shape="box"];3042[label="xuu480",fontsize=16,color="green",shape="box"];3043 -> 551[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3043[label="xuu470 == xuu480",fontsize=16,color="magenta"];3043 -> 3133[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3043 -> 3134[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3044 -> 549[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3044[label="xuu470 == xuu480",fontsize=16,color="magenta"];3044 -> 3135[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3044 -> 3136[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3045 -> 547[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3045[label="xuu470 == xuu480",fontsize=16,color="magenta"];3045 -> 3137[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3045 -> 3138[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3046 -> 552[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3046[label="xuu470 == xuu480",fontsize=16,color="magenta"];3046 -> 3139[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3046 -> 3140[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3047 -> 555[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3047[label="xuu470 == xuu480",fontsize=16,color="magenta"];3047 -> 3141[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3047 -> 3142[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3048 -> 548[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3048[label="xuu470 == xuu480",fontsize=16,color="magenta"];3048 -> 3143[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3048 -> 3144[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3049 -> 557[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3049[label="xuu470 == xuu480",fontsize=16,color="magenta"];3049 -> 3145[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3049 -> 3146[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3050 -> 554[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3050[label="xuu470 == xuu480",fontsize=16,color="magenta"];3050 -> 3147[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3050 -> 3148[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3051 -> 556[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3051[label="xuu470 == xuu480",fontsize=16,color="magenta"];3051 -> 3149[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3051 -> 3150[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3052 -> 546[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3052[label="xuu470 == xuu480",fontsize=16,color="magenta"];3052 -> 3151[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3052 -> 3152[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3053 -> 553[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3053[label="xuu470 == xuu480",fontsize=16,color="magenta"];3053 -> 3153[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3053 -> 3154[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3054 -> 550[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3054[label="xuu470 == xuu480",fontsize=16,color="magenta"];3054 -> 3155[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3054 -> 3156[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3055 -> 545[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3055[label="xuu470 == xuu480",fontsize=16,color="magenta"];3055 -> 3157[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3055 -> 3158[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3056 -> 544[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3056[label="xuu470 == xuu480",fontsize=16,color="magenta"];3056 -> 3159[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3056 -> 3160[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3057 -> 1500[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3057[label="xuu471 <= xuu481",fontsize=16,color="magenta"];3057 -> 3161[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3057 -> 3162[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3058 -> 1501[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3058[label="xuu471 <= xuu481",fontsize=16,color="magenta"];3058 -> 3163[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3058 -> 3164[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3059 -> 1502[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3059[label="xuu471 <= xuu481",fontsize=16,color="magenta"];3059 -> 3165[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3059 -> 3166[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3060 -> 1503[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3060[label="xuu471 <= xuu481",fontsize=16,color="magenta"];3060 -> 3167[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3060 -> 3168[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3061 -> 1504[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3061[label="xuu471 <= xuu481",fontsize=16,color="magenta"];3061 -> 3169[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3061 -> 3170[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3062 -> 1505[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3062[label="xuu471 <= xuu481",fontsize=16,color="magenta"];3062 -> 3171[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3062 -> 3172[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3063 -> 1506[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3063[label="xuu471 <= xuu481",fontsize=16,color="magenta"];3063 -> 3173[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3063 -> 3174[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3064 -> 1507[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3064[label="xuu471 <= xuu481",fontsize=16,color="magenta"];3064 -> 3175[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3064 -> 3176[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3065 -> 1508[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3065[label="xuu471 <= xuu481",fontsize=16,color="magenta"];3065 -> 3177[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3065 -> 3178[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3066 -> 1509[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3066[label="xuu471 <= xuu481",fontsize=16,color="magenta"];3066 -> 3179[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3066 -> 3180[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3067 -> 1510[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3067[label="xuu471 <= xuu481",fontsize=16,color="magenta"];3067 -> 3181[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3067 -> 3182[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3068 -> 1511[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3068[label="xuu471 <= xuu481",fontsize=16,color="magenta"];3068 -> 3183[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3068 -> 3184[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3069 -> 1512[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3069[label="xuu471 <= xuu481",fontsize=16,color="magenta"];3069 -> 3185[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3069 -> 3186[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3070 -> 1513[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3070[label="xuu471 <= xuu481",fontsize=16,color="magenta"];3070 -> 3187[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3070 -> 3188[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3071 -> 3543[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3071[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) [] xuu61 xuu63 xuu41",fontsize=16,color="magenta"];3071 -> 3564[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3071 -> 3565[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3071 -> 3566[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3071 -> 3567[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3071 -> 3568[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3072[label="error []",fontsize=16,color="red",shape="box"];3073[label="FiniteMap.mkBalBranch6MkBalBranch12 [] xuu61 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634)",fontsize=16,color="black",shape="box"];3073 -> 3190[label="",style="solid", color="black", weight=3]; 25.69/9.74 3074 -> 2025[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3074[label="FiniteMap.sizeFM xuu413",fontsize=16,color="magenta"];3074 -> 3191[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3075 -> 446[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3075[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu414",fontsize=16,color="magenta"];3075 -> 3192[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3075 -> 3193[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3076[label="FiniteMap.mkBalBranch6MkBalBranch01 [] xuu61 xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu410 xuu411 xuu412 xuu413 xuu414 False",fontsize=16,color="black",shape="box"];3076 -> 3194[label="",style="solid", color="black", weight=3]; 25.69/9.74 3077[label="FiniteMap.mkBalBranch6MkBalBranch01 [] xuu61 xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu410 xuu411 xuu412 xuu413 xuu414 True",fontsize=16,color="black",shape="box"];3077 -> 3195[label="",style="solid", color="black", weight=3]; 25.69/9.74 3797[label="xuu310",fontsize=16,color="green",shape="box"];3081 -> 2025[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3081[label="FiniteMap.sizeFM xuu294",fontsize=16,color="magenta"];3081 -> 3197[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3082 -> 446[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3082[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu293",fontsize=16,color="magenta"];3082 -> 3198[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3082 -> 3199[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3083[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu600 : xuu601) xuu61 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 xuu290 xuu291 xuu292 xuu293 xuu294 False",fontsize=16,color="black",shape="box"];3083 -> 3200[label="",style="solid", color="black", weight=3]; 25.69/9.74 3084[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu600 : xuu601) xuu61 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 xuu290 xuu291 xuu292 xuu293 xuu294 True",fontsize=16,color="black",shape="box"];3084 -> 3201[label="",style="solid", color="black", weight=3]; 25.69/9.74 3087[label="FiniteMap.mkBalBranch6Double_L (xuu600 : xuu601) xuu61 xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="burlywood",shape="box"];4681[label="xuu643/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3087 -> 4681[label="",style="solid", color="burlywood", weight=9]; 25.69/9.74 4681 -> 3202[label="",style="solid", color="burlywood", weight=3]; 25.69/9.74 4682[label="xuu643/FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434",fontsize=10,color="white",style="solid",shape="box"];3087 -> 4682[label="",style="solid", color="burlywood", weight=9]; 25.69/9.74 4682 -> 3203[label="",style="solid", color="burlywood", weight=3]; 25.69/9.74 3559[label="xuu640",fontsize=16,color="green",shape="box"];3560[label="xuu644",fontsize=16,color="green",shape="box"];3561[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];3562[label="xuu641",fontsize=16,color="green",shape="box"];3563 -> 3543[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3563[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu600 : xuu601) xuu61 xuu29 xuu643",fontsize=16,color="magenta"];3563 -> 3715[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3563 -> 3716[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3563 -> 3717[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3563 -> 3718[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3563 -> 3719[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3089[label="xuu480",fontsize=16,color="green",shape="box"];3090[label="xuu470",fontsize=16,color="green",shape="box"];3091[label="xuu480",fontsize=16,color="green",shape="box"];3092[label="xuu470",fontsize=16,color="green",shape="box"];3093[label="xuu480",fontsize=16,color="green",shape="box"];3094[label="xuu470",fontsize=16,color="green",shape="box"];3095[label="xuu480",fontsize=16,color="green",shape="box"];3096[label="xuu470",fontsize=16,color="green",shape="box"];3097[label="xuu480",fontsize=16,color="green",shape="box"];3098[label="xuu470",fontsize=16,color="green",shape="box"];3099[label="xuu480",fontsize=16,color="green",shape="box"];3100[label="xuu470",fontsize=16,color="green",shape="box"];3101[label="xuu480",fontsize=16,color="green",shape="box"];3102[label="xuu470",fontsize=16,color="green",shape="box"];3103[label="xuu480",fontsize=16,color="green",shape="box"];3104[label="xuu470",fontsize=16,color="green",shape="box"];3105[label="xuu480",fontsize=16,color="green",shape="box"];3106[label="xuu470",fontsize=16,color="green",shape="box"];3107[label="xuu480",fontsize=16,color="green",shape="box"];3108[label="xuu470",fontsize=16,color="green",shape="box"];3109[label="xuu480",fontsize=16,color="green",shape="box"];3110[label="xuu470",fontsize=16,color="green",shape="box"];3111[label="xuu480",fontsize=16,color="green",shape="box"];3112[label="xuu470",fontsize=16,color="green",shape="box"];3113[label="xuu480",fontsize=16,color="green",shape="box"];3114[label="xuu470",fontsize=16,color="green",shape="box"];3115[label="xuu480",fontsize=16,color="green",shape="box"];3116[label="xuu470",fontsize=16,color="green",shape="box"];3117 -> 1551[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3117[label="xuu471 < xuu481",fontsize=16,color="magenta"];3117 -> 3205[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3117 -> 3206[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3118 -> 1552[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3118[label="xuu471 < xuu481",fontsize=16,color="magenta"];3118 -> 3207[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3118 -> 3208[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3119 -> 1553[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3119[label="xuu471 < xuu481",fontsize=16,color="magenta"];3119 -> 3209[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3119 -> 3210[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3120 -> 1554[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3120[label="xuu471 < xuu481",fontsize=16,color="magenta"];3120 -> 3211[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3120 -> 3212[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3121 -> 1555[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3121[label="xuu471 < xuu481",fontsize=16,color="magenta"];3121 -> 3213[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3121 -> 3214[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3122 -> 1556[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3122[label="xuu471 < xuu481",fontsize=16,color="magenta"];3122 -> 3215[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3122 -> 3216[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3123 -> 1557[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3123[label="xuu471 < xuu481",fontsize=16,color="magenta"];3123 -> 3217[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3123 -> 3218[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3124 -> 1558[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3124[label="xuu471 < xuu481",fontsize=16,color="magenta"];3124 -> 3219[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3124 -> 3220[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3125 -> 1559[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3125[label="xuu471 < xuu481",fontsize=16,color="magenta"];3125 -> 3221[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3125 -> 3222[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3126 -> 1560[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3126[label="xuu471 < xuu481",fontsize=16,color="magenta"];3126 -> 3223[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3126 -> 3224[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3127 -> 1561[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3127[label="xuu471 < xuu481",fontsize=16,color="magenta"];3127 -> 3225[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3127 -> 3226[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3128 -> 1562[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3128[label="xuu471 < xuu481",fontsize=16,color="magenta"];3128 -> 3227[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3128 -> 3228[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3129 -> 1563[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3129[label="xuu471 < xuu481",fontsize=16,color="magenta"];3129 -> 3229[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3129 -> 3230[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3130 -> 1564[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3130[label="xuu471 < xuu481",fontsize=16,color="magenta"];3130 -> 3231[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3130 -> 3232[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3131[label="xuu471 == xuu481",fontsize=16,color="blue",shape="box"];4683[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3131 -> 4683[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4683 -> 3233[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4684[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3131 -> 4684[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4684 -> 3234[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4685[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3131 -> 4685[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4685 -> 3235[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4686[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3131 -> 4686[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4686 -> 3236[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4687[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3131 -> 4687[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4687 -> 3237[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4688[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3131 -> 4688[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4688 -> 3238[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4689[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3131 -> 4689[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4689 -> 3239[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4690[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3131 -> 4690[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4690 -> 3240[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4691[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3131 -> 4691[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4691 -> 3241[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4692[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3131 -> 4692[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4692 -> 3242[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4693[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3131 -> 4693[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4693 -> 3243[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4694[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3131 -> 4694[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4694 -> 3244[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4695[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3131 -> 4695[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4695 -> 3245[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4696[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3131 -> 4696[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4696 -> 3246[label="",style="solid", color="blue", weight=3]; 25.69/9.74 3132[label="xuu472 <= xuu482",fontsize=16,color="blue",shape="box"];4697[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3132 -> 4697[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4697 -> 3247[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4698[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3132 -> 4698[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4698 -> 3248[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4699[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3132 -> 4699[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4699 -> 3249[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4700[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3132 -> 4700[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4700 -> 3250[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4701[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3132 -> 4701[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4701 -> 3251[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4702[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3132 -> 4702[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4702 -> 3252[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4703[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3132 -> 4703[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4703 -> 3253[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4704[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3132 -> 4704[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4704 -> 3254[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4705[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3132 -> 4705[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4705 -> 3255[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4706[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3132 -> 4706[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4706 -> 3256[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4707[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3132 -> 4707[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4707 -> 3257[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4708[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3132 -> 4708[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4708 -> 3258[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4709[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3132 -> 4709[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4709 -> 3259[label="",style="solid", color="blue", weight=3]; 25.69/9.74 4710[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3132 -> 4710[label="",style="solid", color="blue", weight=9]; 25.69/9.74 4710 -> 3260[label="",style="solid", color="blue", weight=3]; 25.69/9.74 3133[label="xuu480",fontsize=16,color="green",shape="box"];3134[label="xuu470",fontsize=16,color="green",shape="box"];3135[label="xuu480",fontsize=16,color="green",shape="box"];3136[label="xuu470",fontsize=16,color="green",shape="box"];3137[label="xuu480",fontsize=16,color="green",shape="box"];3138[label="xuu470",fontsize=16,color="green",shape="box"];3139[label="xuu480",fontsize=16,color="green",shape="box"];3140[label="xuu470",fontsize=16,color="green",shape="box"];3141[label="xuu480",fontsize=16,color="green",shape="box"];3142[label="xuu470",fontsize=16,color="green",shape="box"];3143[label="xuu480",fontsize=16,color="green",shape="box"];3144[label="xuu470",fontsize=16,color="green",shape="box"];3145[label="xuu480",fontsize=16,color="green",shape="box"];3146[label="xuu470",fontsize=16,color="green",shape="box"];3147[label="xuu480",fontsize=16,color="green",shape="box"];3148[label="xuu470",fontsize=16,color="green",shape="box"];3149[label="xuu480",fontsize=16,color="green",shape="box"];3150[label="xuu470",fontsize=16,color="green",shape="box"];3151[label="xuu480",fontsize=16,color="green",shape="box"];3152[label="xuu470",fontsize=16,color="green",shape="box"];3153[label="xuu480",fontsize=16,color="green",shape="box"];3154[label="xuu470",fontsize=16,color="green",shape="box"];3155[label="xuu480",fontsize=16,color="green",shape="box"];3156[label="xuu470",fontsize=16,color="green",shape="box"];3157[label="xuu480",fontsize=16,color="green",shape="box"];3158[label="xuu470",fontsize=16,color="green",shape="box"];3159[label="xuu480",fontsize=16,color="green",shape="box"];3160[label="xuu470",fontsize=16,color="green",shape="box"];3161[label="xuu471",fontsize=16,color="green",shape="box"];3162[label="xuu481",fontsize=16,color="green",shape="box"];3163[label="xuu471",fontsize=16,color="green",shape="box"];3164[label="xuu481",fontsize=16,color="green",shape="box"];3165[label="xuu471",fontsize=16,color="green",shape="box"];3166[label="xuu481",fontsize=16,color="green",shape="box"];3167[label="xuu471",fontsize=16,color="green",shape="box"];3168[label="xuu481",fontsize=16,color="green",shape="box"];3169[label="xuu471",fontsize=16,color="green",shape="box"];3170[label="xuu481",fontsize=16,color="green",shape="box"];3171[label="xuu471",fontsize=16,color="green",shape="box"];3172[label="xuu481",fontsize=16,color="green",shape="box"];3173[label="xuu471",fontsize=16,color="green",shape="box"];3174[label="xuu481",fontsize=16,color="green",shape="box"];3175[label="xuu471",fontsize=16,color="green",shape="box"];3176[label="xuu481",fontsize=16,color="green",shape="box"];3177[label="xuu471",fontsize=16,color="green",shape="box"];3178[label="xuu481",fontsize=16,color="green",shape="box"];3179[label="xuu471",fontsize=16,color="green",shape="box"];3180[label="xuu481",fontsize=16,color="green",shape="box"];3181[label="xuu471",fontsize=16,color="green",shape="box"];3182[label="xuu481",fontsize=16,color="green",shape="box"];3183[label="xuu471",fontsize=16,color="green",shape="box"];3184[label="xuu481",fontsize=16,color="green",shape="box"];3185[label="xuu471",fontsize=16,color="green",shape="box"];3186[label="xuu481",fontsize=16,color="green",shape="box"];3187[label="xuu471",fontsize=16,color="green",shape="box"];3188[label="xuu481",fontsize=16,color="green",shape="box"];3564[label="[]",fontsize=16,color="green",shape="box"];3565[label="xuu41",fontsize=16,color="green",shape="box"];3566[label="Succ Zero",fontsize=16,color="green",shape="box"];3567[label="xuu61",fontsize=16,color="green",shape="box"];3568[label="xuu63",fontsize=16,color="green",shape="box"];3190 -> 3261[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3190[label="FiniteMap.mkBalBranch6MkBalBranch11 [] xuu61 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 xuu630 xuu631 xuu632 xuu633 xuu634 (FiniteMap.sizeFM xuu634 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu633)",fontsize=16,color="magenta"];3190 -> 3262[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3191[label="xuu413",fontsize=16,color="green",shape="box"];3192 -> 2025[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3192[label="FiniteMap.sizeFM xuu414",fontsize=16,color="magenta"];3192 -> 3263[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3193[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3194[label="FiniteMap.mkBalBranch6MkBalBranch00 [] xuu61 xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu410 xuu411 xuu412 xuu413 xuu414 otherwise",fontsize=16,color="black",shape="box"];3194 -> 3264[label="",style="solid", color="black", weight=3]; 25.69/9.74 3195[label="FiniteMap.mkBalBranch6Single_L [] xuu61 xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414)",fontsize=16,color="black",shape="box"];3195 -> 3265[label="",style="solid", color="black", weight=3]; 25.69/9.74 3197[label="xuu294",fontsize=16,color="green",shape="box"];3198 -> 2025[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3198[label="FiniteMap.sizeFM xuu293",fontsize=16,color="magenta"];3198 -> 3267[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3199[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3200[label="FiniteMap.mkBalBranch6MkBalBranch10 (xuu600 : xuu601) xuu61 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 xuu290 xuu291 xuu292 xuu293 xuu294 otherwise",fontsize=16,color="black",shape="box"];3200 -> 3268[label="",style="solid", color="black", weight=3]; 25.69/9.74 3201[label="FiniteMap.mkBalBranch6Single_R (xuu600 : xuu601) xuu61 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64",fontsize=16,color="black",shape="box"];3201 -> 3269[label="",style="solid", color="black", weight=3]; 25.69/9.74 3202[label="FiniteMap.mkBalBranch6Double_L (xuu600 : xuu601) xuu61 xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 FiniteMap.EmptyFM xuu644) xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 FiniteMap.EmptyFM xuu644)",fontsize=16,color="black",shape="box"];3202 -> 3270[label="",style="solid", color="black", weight=3]; 25.69/9.74 3203[label="FiniteMap.mkBalBranch6Double_L (xuu600 : xuu601) xuu61 xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 (FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434) xuu644) xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 (FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434) xuu644)",fontsize=16,color="black",shape="box"];3203 -> 3271[label="",style="solid", color="black", weight=3]; 25.69/9.74 3715[label="xuu600 : xuu601",fontsize=16,color="green",shape="box"];3716[label="xuu643",fontsize=16,color="green",shape="box"];3717[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3718[label="xuu61",fontsize=16,color="green",shape="box"];3719[label="xuu29",fontsize=16,color="green",shape="box"];3205[label="xuu471",fontsize=16,color="green",shape="box"];3206[label="xuu481",fontsize=16,color="green",shape="box"];3207[label="xuu471",fontsize=16,color="green",shape="box"];3208[label="xuu481",fontsize=16,color="green",shape="box"];3209[label="xuu471",fontsize=16,color="green",shape="box"];3210[label="xuu481",fontsize=16,color="green",shape="box"];3211[label="xuu471",fontsize=16,color="green",shape="box"];3212[label="xuu481",fontsize=16,color="green",shape="box"];3213[label="xuu471",fontsize=16,color="green",shape="box"];3214[label="xuu481",fontsize=16,color="green",shape="box"];3215[label="xuu471",fontsize=16,color="green",shape="box"];3216[label="xuu481",fontsize=16,color="green",shape="box"];3217[label="xuu471",fontsize=16,color="green",shape="box"];3218[label="xuu481",fontsize=16,color="green",shape="box"];3219[label="xuu471",fontsize=16,color="green",shape="box"];3220[label="xuu481",fontsize=16,color="green",shape="box"];3221[label="xuu471",fontsize=16,color="green",shape="box"];3222[label="xuu481",fontsize=16,color="green",shape="box"];3223[label="xuu471",fontsize=16,color="green",shape="box"];3224[label="xuu481",fontsize=16,color="green",shape="box"];3225[label="xuu471",fontsize=16,color="green",shape="box"];3226[label="xuu481",fontsize=16,color="green",shape="box"];3227[label="xuu471",fontsize=16,color="green",shape="box"];3228[label="xuu481",fontsize=16,color="green",shape="box"];3229[label="xuu471",fontsize=16,color="green",shape="box"];3230[label="xuu481",fontsize=16,color="green",shape="box"];3231[label="xuu471",fontsize=16,color="green",shape="box"];3232[label="xuu481",fontsize=16,color="green",shape="box"];3233 -> 551[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3233[label="xuu471 == xuu481",fontsize=16,color="magenta"];3233 -> 3274[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3233 -> 3275[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3234 -> 549[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3234[label="xuu471 == xuu481",fontsize=16,color="magenta"];3234 -> 3276[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3234 -> 3277[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3235 -> 547[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3235[label="xuu471 == xuu481",fontsize=16,color="magenta"];3235 -> 3278[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3235 -> 3279[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3236 -> 552[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3236[label="xuu471 == xuu481",fontsize=16,color="magenta"];3236 -> 3280[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3236 -> 3281[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3237 -> 555[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3237[label="xuu471 == xuu481",fontsize=16,color="magenta"];3237 -> 3282[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3237 -> 3283[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3238 -> 548[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3238[label="xuu471 == xuu481",fontsize=16,color="magenta"];3238 -> 3284[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3238 -> 3285[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3239 -> 557[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3239[label="xuu471 == xuu481",fontsize=16,color="magenta"];3239 -> 3286[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3239 -> 3287[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3240 -> 554[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3240[label="xuu471 == xuu481",fontsize=16,color="magenta"];3240 -> 3288[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3240 -> 3289[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3241 -> 556[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3241[label="xuu471 == xuu481",fontsize=16,color="magenta"];3241 -> 3290[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3241 -> 3291[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3242 -> 546[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3242[label="xuu471 == xuu481",fontsize=16,color="magenta"];3242 -> 3292[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3242 -> 3293[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3243 -> 553[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3243[label="xuu471 == xuu481",fontsize=16,color="magenta"];3243 -> 3294[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3243 -> 3295[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3244 -> 550[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3244[label="xuu471 == xuu481",fontsize=16,color="magenta"];3244 -> 3296[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3244 -> 3297[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3245 -> 545[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3245[label="xuu471 == xuu481",fontsize=16,color="magenta"];3245 -> 3298[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3245 -> 3299[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3246 -> 544[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3246[label="xuu471 == xuu481",fontsize=16,color="magenta"];3246 -> 3300[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3246 -> 3301[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3247 -> 1500[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3247[label="xuu472 <= xuu482",fontsize=16,color="magenta"];3247 -> 3302[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3247 -> 3303[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3248 -> 1501[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3248[label="xuu472 <= xuu482",fontsize=16,color="magenta"];3248 -> 3304[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3248 -> 3305[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3249 -> 1502[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3249[label="xuu472 <= xuu482",fontsize=16,color="magenta"];3249 -> 3306[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3249 -> 3307[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3250 -> 1503[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3250[label="xuu472 <= xuu482",fontsize=16,color="magenta"];3250 -> 3308[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3250 -> 3309[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3251 -> 1504[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3251[label="xuu472 <= xuu482",fontsize=16,color="magenta"];3251 -> 3310[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3251 -> 3311[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3252 -> 1505[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3252[label="xuu472 <= xuu482",fontsize=16,color="magenta"];3252 -> 3312[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3252 -> 3313[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3253 -> 1506[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3253[label="xuu472 <= xuu482",fontsize=16,color="magenta"];3253 -> 3314[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3253 -> 3315[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3254 -> 1507[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3254[label="xuu472 <= xuu482",fontsize=16,color="magenta"];3254 -> 3316[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3254 -> 3317[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3255 -> 1508[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3255[label="xuu472 <= xuu482",fontsize=16,color="magenta"];3255 -> 3318[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3255 -> 3319[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3256 -> 1509[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3256[label="xuu472 <= xuu482",fontsize=16,color="magenta"];3256 -> 3320[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3256 -> 3321[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3257 -> 1510[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3257[label="xuu472 <= xuu482",fontsize=16,color="magenta"];3257 -> 3322[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3257 -> 3323[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3258 -> 1511[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3258[label="xuu472 <= xuu482",fontsize=16,color="magenta"];3258 -> 3324[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3258 -> 3325[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3259 -> 1512[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3259[label="xuu472 <= xuu482",fontsize=16,color="magenta"];3259 -> 3326[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3259 -> 3327[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3260 -> 1513[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3260[label="xuu472 <= xuu482",fontsize=16,color="magenta"];3260 -> 3328[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3260 -> 3329[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3262 -> 1552[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3262[label="FiniteMap.sizeFM xuu634 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu633",fontsize=16,color="magenta"];3262 -> 3330[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3262 -> 3331[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3261[label="FiniteMap.mkBalBranch6MkBalBranch11 [] xuu61 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 xuu630 xuu631 xuu632 xuu633 xuu634 xuu232",fontsize=16,color="burlywood",shape="triangle"];4711[label="xuu232/False",fontsize=10,color="white",style="solid",shape="box"];3261 -> 4711[label="",style="solid", color="burlywood", weight=9]; 25.69/9.74 4711 -> 3332[label="",style="solid", color="burlywood", weight=3]; 25.69/9.74 4712[label="xuu232/True",fontsize=10,color="white",style="solid",shape="box"];3261 -> 4712[label="",style="solid", color="burlywood", weight=9]; 25.69/9.74 4712 -> 3333[label="",style="solid", color="burlywood", weight=3]; 25.69/9.74 3263[label="xuu414",fontsize=16,color="green",shape="box"];3264[label="FiniteMap.mkBalBranch6MkBalBranch00 [] xuu61 xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu410 xuu411 xuu412 xuu413 xuu414 True",fontsize=16,color="black",shape="box"];3264 -> 3334[label="",style="solid", color="black", weight=3]; 25.69/9.74 3265 -> 3543[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3265[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu410 xuu411 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) [] xuu61 xuu63 xuu413) xuu414",fontsize=16,color="magenta"];3265 -> 3569[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3265 -> 3570[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3265 -> 3571[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3265 -> 3572[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3265 -> 3573[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3267[label="xuu293",fontsize=16,color="green",shape="box"];3268[label="FiniteMap.mkBalBranch6MkBalBranch10 (xuu600 : xuu601) xuu61 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 xuu290 xuu291 xuu292 xuu293 xuu294 True",fontsize=16,color="black",shape="box"];3268 -> 3336[label="",style="solid", color="black", weight=3]; 25.69/9.74 3269 -> 3543[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3269[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)))))))))) (xuu600 : xuu601) xuu61 xuu294 xuu64)",fontsize=16,color="magenta"];3269 -> 3574[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3269 -> 3575[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3269 -> 3576[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3269 -> 3577[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3269 -> 3578[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3270[label="error []",fontsize=16,color="red",shape="box"];3271 -> 3543[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3271[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu6430 xuu6431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu600 : xuu601) xuu61 xuu29 xuu6433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu640 xuu641 xuu6434 xuu644)",fontsize=16,color="magenta"];3271 -> 3579[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3271 -> 3580[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3271 -> 3581[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3271 -> 3582[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3271 -> 3583[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3274[label="xuu481",fontsize=16,color="green",shape="box"];3275[label="xuu471",fontsize=16,color="green",shape="box"];3276[label="xuu481",fontsize=16,color="green",shape="box"];3277[label="xuu471",fontsize=16,color="green",shape="box"];3278[label="xuu481",fontsize=16,color="green",shape="box"];3279[label="xuu471",fontsize=16,color="green",shape="box"];3280[label="xuu481",fontsize=16,color="green",shape="box"];3281[label="xuu471",fontsize=16,color="green",shape="box"];3282[label="xuu481",fontsize=16,color="green",shape="box"];3283[label="xuu471",fontsize=16,color="green",shape="box"];3284[label="xuu481",fontsize=16,color="green",shape="box"];3285[label="xuu471",fontsize=16,color="green",shape="box"];3286[label="xuu481",fontsize=16,color="green",shape="box"];3287[label="xuu471",fontsize=16,color="green",shape="box"];3288[label="xuu481",fontsize=16,color="green",shape="box"];3289[label="xuu471",fontsize=16,color="green",shape="box"];3290[label="xuu481",fontsize=16,color="green",shape="box"];3291[label="xuu471",fontsize=16,color="green",shape="box"];3292[label="xuu481",fontsize=16,color="green",shape="box"];3293[label="xuu471",fontsize=16,color="green",shape="box"];3294[label="xuu481",fontsize=16,color="green",shape="box"];3295[label="xuu471",fontsize=16,color="green",shape="box"];3296[label="xuu481",fontsize=16,color="green",shape="box"];3297[label="xuu471",fontsize=16,color="green",shape="box"];3298[label="xuu481",fontsize=16,color="green",shape="box"];3299[label="xuu471",fontsize=16,color="green",shape="box"];3300[label="xuu481",fontsize=16,color="green",shape="box"];3301[label="xuu471",fontsize=16,color="green",shape="box"];3302[label="xuu472",fontsize=16,color="green",shape="box"];3303[label="xuu482",fontsize=16,color="green",shape="box"];3304[label="xuu472",fontsize=16,color="green",shape="box"];3305[label="xuu482",fontsize=16,color="green",shape="box"];3306[label="xuu472",fontsize=16,color="green",shape="box"];3307[label="xuu482",fontsize=16,color="green",shape="box"];3308[label="xuu472",fontsize=16,color="green",shape="box"];3309[label="xuu482",fontsize=16,color="green",shape="box"];3310[label="xuu472",fontsize=16,color="green",shape="box"];3311[label="xuu482",fontsize=16,color="green",shape="box"];3312[label="xuu472",fontsize=16,color="green",shape="box"];3313[label="xuu482",fontsize=16,color="green",shape="box"];3314[label="xuu472",fontsize=16,color="green",shape="box"];3315[label="xuu482",fontsize=16,color="green",shape="box"];3316[label="xuu472",fontsize=16,color="green",shape="box"];3317[label="xuu482",fontsize=16,color="green",shape="box"];3318[label="xuu472",fontsize=16,color="green",shape="box"];3319[label="xuu482",fontsize=16,color="green",shape="box"];3320[label="xuu472",fontsize=16,color="green",shape="box"];3321[label="xuu482",fontsize=16,color="green",shape="box"];3322[label="xuu472",fontsize=16,color="green",shape="box"];3323[label="xuu482",fontsize=16,color="green",shape="box"];3324[label="xuu472",fontsize=16,color="green",shape="box"];3325[label="xuu482",fontsize=16,color="green",shape="box"];3326[label="xuu472",fontsize=16,color="green",shape="box"];3327[label="xuu482",fontsize=16,color="green",shape="box"];3328[label="xuu472",fontsize=16,color="green",shape="box"];3329[label="xuu482",fontsize=16,color="green",shape="box"];3330 -> 2025[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3330[label="FiniteMap.sizeFM xuu634",fontsize=16,color="magenta"];3330 -> 3362[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3331 -> 446[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3331[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu633",fontsize=16,color="magenta"];3331 -> 3363[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3331 -> 3364[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3332[label="FiniteMap.mkBalBranch6MkBalBranch11 [] xuu61 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 xuu630 xuu631 xuu632 xuu633 xuu634 False",fontsize=16,color="black",shape="box"];3332 -> 3365[label="",style="solid", color="black", weight=3]; 25.69/9.74 3333[label="FiniteMap.mkBalBranch6MkBalBranch11 [] xuu61 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 xuu630 xuu631 xuu632 xuu633 xuu634 True",fontsize=16,color="black",shape="box"];3333 -> 3366[label="",style="solid", color="black", weight=3]; 25.69/9.74 3334[label="FiniteMap.mkBalBranch6Double_L [] xuu61 xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414)",fontsize=16,color="burlywood",shape="box"];4713[label="xuu413/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3334 -> 4713[label="",style="solid", color="burlywood", weight=9]; 25.69/9.74 4713 -> 3367[label="",style="solid", color="burlywood", weight=3]; 25.69/9.74 4714[label="xuu413/FiniteMap.Branch xuu4130 xuu4131 xuu4132 xuu4133 xuu4134",fontsize=10,color="white",style="solid",shape="box"];3334 -> 4714[label="",style="solid", color="burlywood", weight=9]; 25.69/9.74 4714 -> 3368[label="",style="solid", color="burlywood", weight=3]; 25.69/9.74 3569[label="xuu410",fontsize=16,color="green",shape="box"];3570[label="xuu414",fontsize=16,color="green",shape="box"];3571[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];3572[label="xuu411",fontsize=16,color="green",shape="box"];3573 -> 3543[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3573[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) [] xuu61 xuu63 xuu413",fontsize=16,color="magenta"];3573 -> 3720[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3573 -> 3721[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3573 -> 3722[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3573 -> 3723[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3573 -> 3724[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3336[label="FiniteMap.mkBalBranch6Double_R (xuu600 : xuu601) xuu61 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64",fontsize=16,color="burlywood",shape="box"];4715[label="xuu294/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3336 -> 4715[label="",style="solid", color="burlywood", weight=9]; 25.69/9.74 4715 -> 3370[label="",style="solid", color="burlywood", weight=3]; 25.69/9.74 4716[label="xuu294/FiniteMap.Branch xuu2940 xuu2941 xuu2942 xuu2943 xuu2944",fontsize=10,color="white",style="solid",shape="box"];3336 -> 4716[label="",style="solid", color="burlywood", weight=9]; 25.69/9.74 4716 -> 3371[label="",style="solid", color="burlywood", weight=3]; 25.69/9.74 3574[label="xuu290",fontsize=16,color="green",shape="box"];3575 -> 3543[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3575[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (xuu600 : xuu601) xuu61 xuu294 xuu64",fontsize=16,color="magenta"];3575 -> 3725[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3575 -> 3726[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3575 -> 3727[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3575 -> 3728[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3575 -> 3729[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3576[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3577[label="xuu291",fontsize=16,color="green",shape="box"];3578[label="xuu293",fontsize=16,color="green",shape="box"];3579[label="xuu6430",fontsize=16,color="green",shape="box"];3580 -> 3543[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3580[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu640 xuu641 xuu6434 xuu644",fontsize=16,color="magenta"];3580 -> 3730[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3580 -> 3731[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3580 -> 3732[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3580 -> 3733[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3580 -> 3734[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3581[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3582[label="xuu6431",fontsize=16,color="green",shape="box"];3583 -> 3543[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3583[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu600 : xuu601) xuu61 xuu29 xuu6433",fontsize=16,color="magenta"];3583 -> 3735[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3583 -> 3736[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3583 -> 3737[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3583 -> 3738[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3583 -> 3739[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3362[label="xuu634",fontsize=16,color="green",shape="box"];3363 -> 2025[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3363[label="FiniteMap.sizeFM xuu633",fontsize=16,color="magenta"];3363 -> 3408[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3364[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3365[label="FiniteMap.mkBalBranch6MkBalBranch10 [] xuu61 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 xuu630 xuu631 xuu632 xuu633 xuu634 otherwise",fontsize=16,color="black",shape="box"];3365 -> 3409[label="",style="solid", color="black", weight=3]; 25.69/9.74 3366[label="FiniteMap.mkBalBranch6Single_R [] xuu61 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41",fontsize=16,color="black",shape="box"];3366 -> 3410[label="",style="solid", color="black", weight=3]; 25.69/9.74 3367[label="FiniteMap.mkBalBranch6Double_L [] xuu61 xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 FiniteMap.EmptyFM xuu414) xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 FiniteMap.EmptyFM xuu414)",fontsize=16,color="black",shape="box"];3367 -> 3411[label="",style="solid", color="black", weight=3]; 25.69/9.74 3368[label="FiniteMap.mkBalBranch6Double_L [] xuu61 xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 (FiniteMap.Branch xuu4130 xuu4131 xuu4132 xuu4133 xuu4134) xuu414) xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 (FiniteMap.Branch xuu4130 xuu4131 xuu4132 xuu4133 xuu4134) xuu414)",fontsize=16,color="black",shape="box"];3368 -> 3412[label="",style="solid", color="black", weight=3]; 25.69/9.74 3720[label="[]",fontsize=16,color="green",shape="box"];3721[label="xuu413",fontsize=16,color="green",shape="box"];3722[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3723[label="xuu61",fontsize=16,color="green",shape="box"];3724[label="xuu63",fontsize=16,color="green",shape="box"];3370[label="FiniteMap.mkBalBranch6Double_R (xuu600 : xuu601) xuu61 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 FiniteMap.EmptyFM) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 FiniteMap.EmptyFM) xuu64",fontsize=16,color="black",shape="box"];3370 -> 3415[label="",style="solid", color="black", weight=3]; 25.69/9.74 3371[label="FiniteMap.mkBalBranch6Double_R (xuu600 : xuu601) xuu61 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 (FiniteMap.Branch xuu2940 xuu2941 xuu2942 xuu2943 xuu2944)) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 (FiniteMap.Branch xuu2940 xuu2941 xuu2942 xuu2943 xuu2944)) xuu64",fontsize=16,color="black",shape="box"];3371 -> 3416[label="",style="solid", color="black", weight=3]; 25.69/9.74 3725[label="xuu600 : xuu601",fontsize=16,color="green",shape="box"];3726[label="xuu64",fontsize=16,color="green",shape="box"];3727[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3728[label="xuu61",fontsize=16,color="green",shape="box"];3729[label="xuu294",fontsize=16,color="green",shape="box"];3730[label="xuu640",fontsize=16,color="green",shape="box"];3731[label="xuu644",fontsize=16,color="green",shape="box"];3732[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3733[label="xuu641",fontsize=16,color="green",shape="box"];3734[label="xuu6434",fontsize=16,color="green",shape="box"];3735[label="xuu600 : xuu601",fontsize=16,color="green",shape="box"];3736[label="xuu6433",fontsize=16,color="green",shape="box"];3737[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];3738[label="xuu61",fontsize=16,color="green",shape="box"];3739[label="xuu29",fontsize=16,color="green",shape="box"];3408[label="xuu633",fontsize=16,color="green",shape="box"];3409[label="FiniteMap.mkBalBranch6MkBalBranch10 [] xuu61 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 xuu630 xuu631 xuu632 xuu633 xuu634 True",fontsize=16,color="black",shape="box"];3409 -> 3421[label="",style="solid", color="black", weight=3]; 25.69/9.74 3410 -> 3543[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3410[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu630 xuu631 xuu633 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) [] xuu61 xuu634 xuu41)",fontsize=16,color="magenta"];3410 -> 3614[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3410 -> 3615[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3410 -> 3616[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3410 -> 3617[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3410 -> 3618[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3411[label="error []",fontsize=16,color="red",shape="box"];3412 -> 3543[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3412[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu4130 xuu4131 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) [] xuu61 xuu63 xuu4133) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu410 xuu411 xuu4134 xuu414)",fontsize=16,color="magenta"];3412 -> 3619[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3412 -> 3620[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3412 -> 3621[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3412 -> 3622[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3412 -> 3623[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3415[label="error []",fontsize=16,color="red",shape="box"];3416 -> 3543[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3416[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))))))))))))) (xuu600 : xuu601) xuu61 xuu2944 xuu64)",fontsize=16,color="magenta"];3416 -> 3629[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3416 -> 3630[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3416 -> 3631[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3416 -> 3632[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3416 -> 3633[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3421[label="FiniteMap.mkBalBranch6Double_R [] xuu61 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41",fontsize=16,color="burlywood",shape="box"];4717[label="xuu634/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3421 -> 4717[label="",style="solid", color="burlywood", weight=9]; 25.69/9.74 4717 -> 3465[label="",style="solid", color="burlywood", weight=3]; 25.69/9.74 4718[label="xuu634/FiniteMap.Branch xuu6340 xuu6341 xuu6342 xuu6343 xuu6344",fontsize=10,color="white",style="solid",shape="box"];3421 -> 4718[label="",style="solid", color="burlywood", weight=9]; 25.69/9.74 4718 -> 3466[label="",style="solid", color="burlywood", weight=3]; 25.69/9.74 3614[label="xuu630",fontsize=16,color="green",shape="box"];3615 -> 3543[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3615[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) [] xuu61 xuu634 xuu41",fontsize=16,color="magenta"];3615 -> 3740[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3615 -> 3741[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3615 -> 3742[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3615 -> 3743[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3615 -> 3744[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3616[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3617[label="xuu631",fontsize=16,color="green",shape="box"];3618[label="xuu633",fontsize=16,color="green",shape="box"];3619[label="xuu4130",fontsize=16,color="green",shape="box"];3620 -> 3543[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3620[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu410 xuu411 xuu4134 xuu414",fontsize=16,color="magenta"];3620 -> 3745[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3620 -> 3746[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3620 -> 3747[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3620 -> 3748[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3620 -> 3749[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3621[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3622[label="xuu4131",fontsize=16,color="green",shape="box"];3623 -> 3543[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3623[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) [] xuu61 xuu63 xuu4133",fontsize=16,color="magenta"];3623 -> 3750[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3623 -> 3751[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3623 -> 3752[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3623 -> 3753[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3623 -> 3754[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3629[label="xuu2940",fontsize=16,color="green",shape="box"];3630 -> 3543[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3630[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (xuu600 : xuu601) xuu61 xuu2944 xuu64",fontsize=16,color="magenta"];3630 -> 3755[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3630 -> 3756[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3630 -> 3757[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3630 -> 3758[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3630 -> 3759[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3631[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3632[label="xuu2941",fontsize=16,color="green",shape="box"];3633 -> 3543[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3633[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu290 xuu291 xuu293 xuu2943",fontsize=16,color="magenta"];3633 -> 3760[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3633 -> 3761[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3633 -> 3762[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3633 -> 3763[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3633 -> 3764[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3465[label="FiniteMap.mkBalBranch6Double_R [] xuu61 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 FiniteMap.EmptyFM) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 FiniteMap.EmptyFM) xuu41",fontsize=16,color="black",shape="box"];3465 -> 3765[label="",style="solid", color="black", weight=3]; 25.69/9.74 3466[label="FiniteMap.mkBalBranch6Double_R [] xuu61 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 (FiniteMap.Branch xuu6340 xuu6341 xuu6342 xuu6343 xuu6344)) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 (FiniteMap.Branch xuu6340 xuu6341 xuu6342 xuu6343 xuu6344)) xuu41",fontsize=16,color="black",shape="box"];3466 -> 3766[label="",style="solid", color="black", weight=3]; 25.69/9.74 3740[label="[]",fontsize=16,color="green",shape="box"];3741[label="xuu41",fontsize=16,color="green",shape="box"];3742[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3743[label="xuu61",fontsize=16,color="green",shape="box"];3744[label="xuu634",fontsize=16,color="green",shape="box"];3745[label="xuu410",fontsize=16,color="green",shape="box"];3746[label="xuu414",fontsize=16,color="green",shape="box"];3747[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3748[label="xuu411",fontsize=16,color="green",shape="box"];3749[label="xuu4134",fontsize=16,color="green",shape="box"];3750[label="[]",fontsize=16,color="green",shape="box"];3751[label="xuu4133",fontsize=16,color="green",shape="box"];3752[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];3753[label="xuu61",fontsize=16,color="green",shape="box"];3754[label="xuu63",fontsize=16,color="green",shape="box"];3755[label="xuu600 : xuu601",fontsize=16,color="green",shape="box"];3756[label="xuu64",fontsize=16,color="green",shape="box"];3757[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3758[label="xuu61",fontsize=16,color="green",shape="box"];3759[label="xuu2944",fontsize=16,color="green",shape="box"];3760[label="xuu290",fontsize=16,color="green",shape="box"];3761[label="xuu2943",fontsize=16,color="green",shape="box"];3762[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3763[label="xuu291",fontsize=16,color="green",shape="box"];3764[label="xuu293",fontsize=16,color="green",shape="box"];3765[label="error []",fontsize=16,color="red",shape="box"];3766 -> 3543[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3766[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu6340 xuu6341 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu630 xuu631 xuu633 xuu6343) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) [] xuu61 xuu6344 xuu41)",fontsize=16,color="magenta"];3766 -> 3768[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3766 -> 3769[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3766 -> 3770[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3766 -> 3771[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3766 -> 3772[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3768[label="xuu6340",fontsize=16,color="green",shape="box"];3769 -> 3543[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3769[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) [] xuu61 xuu6344 xuu41",fontsize=16,color="magenta"];3769 -> 3774[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3769 -> 3775[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3769 -> 3776[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3769 -> 3777[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3769 -> 3778[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3770[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3771[label="xuu6341",fontsize=16,color="green",shape="box"];3772 -> 3543[label="",style="dashed", color="red", weight=0]; 25.69/9.74 3772[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu630 xuu631 xuu633 xuu6343",fontsize=16,color="magenta"];3772 -> 3779[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3772 -> 3780[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3772 -> 3781[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3772 -> 3782[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3772 -> 3783[label="",style="dashed", color="magenta", weight=3]; 25.69/9.74 3774[label="[]",fontsize=16,color="green",shape="box"];3775[label="xuu41",fontsize=16,color="green",shape="box"];3776[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3777[label="xuu61",fontsize=16,color="green",shape="box"];3778[label="xuu6344",fontsize=16,color="green",shape="box"];3779[label="xuu630",fontsize=16,color="green",shape="box"];3780[label="xuu6343",fontsize=16,color="green",shape="box"];3781[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3782[label="xuu631",fontsize=16,color="green",shape="box"];3783[label="xuu633",fontsize=16,color="green",shape="box"];} 25.69/9.74 25.69/9.74 ---------------------------------------- 25.69/9.74 25.69/9.74 (16) 25.69/9.74 Complex Obligation (AND) 25.69/9.74 25.69/9.74 ---------------------------------------- 25.69/9.74 25.69/9.74 (17) 25.69/9.74 Obligation: 25.69/9.74 Q DP problem: 25.69/9.74 The TRS P consists of the following rules: 25.69/9.74 25.69/9.74 new_primCmpNat(Succ(xuu31100000), Succ(xuu60000)) -> new_primCmpNat(xuu31100000, xuu60000) 25.69/9.74 25.69/9.74 R is empty. 25.69/9.74 Q is empty. 25.69/9.74 We have to consider all minimal (P,Q,R)-chains. 25.69/9.74 ---------------------------------------- 25.69/9.74 25.69/9.74 (18) QDPSizeChangeProof (EQUIVALENT) 25.69/9.74 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. 25.69/9.74 25.69/9.74 From the DPs we obtained the following set of size-change graphs: 25.69/9.74 *new_primCmpNat(Succ(xuu31100000), Succ(xuu60000)) -> new_primCmpNat(xuu31100000, xuu60000) 25.69/9.74 The graph contains the following edges 1 > 1, 2 > 2 25.69/9.74 25.69/9.74 25.69/9.74 ---------------------------------------- 25.69/9.74 25.69/9.74 (19) 25.69/9.74 YES 25.69/9.74 25.69/9.74 ---------------------------------------- 25.69/9.74 25.69/9.74 (20) 25.69/9.74 Obligation: 25.69/9.74 Q DP problem: 25.69/9.74 The TRS P consists of the following rules: 25.69/9.74 25.69/9.74 new_addToFM_C10(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, GT, bb, bc) -> new_addToFM_C(xuu64, :(xuu311000, xuu311001), xuu31101, bb, bc) 25.69/9.74 new_addToFM_C(Branch([], xuu61, xuu62, xuu63, xuu64), :(xuu311000, xuu311001), xuu31101, bb, bc) -> new_addToFM_C10(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, GT, bb, bc) 25.69/9.74 new_addToFM_C(Branch(:(xuu600, xuu601), xuu61, xuu62, xuu63, xuu64), [], xuu31101, bb, bc) -> new_addToFM_C(xuu63, [], xuu31101, bb, bc) 25.69/9.74 new_addToFM_C(Branch([], xuu61, xuu62, xuu63, xuu64), [], xuu31101, bb, bc) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu31101, EQ, bb, bc) 25.69/9.74 new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, EQ, h, ba) -> new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare6(:(xuu25, xuu26), :(xuu19, xuu20), h), h, ba) 25.69/9.74 new_addToFM_C20(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, h, ba) -> new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare6(:(xuu25, xuu26), :(xuu19, xuu20), h), h, ba) 25.69/9.74 new_addToFM_C(Branch(:(xuu600, xuu601), xuu61, xuu62, xuu63, xuu64), :(xuu311000, xuu311001), xuu31101, bb, bc) -> new_addToFM_C2(xuu600, xuu601, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, new_primCompAux1(xuu311000, xuu600, xuu311001, xuu601, bb), bb, bc) 25.69/9.74 new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu31101, GT, bb, bc) -> new_addToFM_C(xuu64, [], xuu31101, bb, bc) 25.69/9.74 new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, LT, h, ba) -> new_addToFM_C(xuu23, :(xuu25, xuu26), xuu27, h, ba) 25.69/9.74 new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, h, ba) -> new_addToFM_C20(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, h, ba) 25.69/9.74 new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, h, ba) -> new_addToFM_C(xuu24, :(xuu25, xuu26), xuu27, h, ba) 25.69/9.74 25.69/9.74 The TRS R consists of the following rules: 25.69/9.74 25.69/9.74 new_lt20(xuu471, xuu481, ty_Double) -> new_lt12(xuu471, xuu481) 25.69/9.74 new_compare5(xuu311000, xuu600, ty_Integer) -> new_compare14(xuu311000, xuu600) 25.69/9.74 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.69/9.74 new_esEs33(xuu31100001, xuu60001, app(ty_Ratio, dgb)) -> new_esEs23(xuu31100001, xuu60001, dgb) 25.69/9.74 new_primPlusNat0(Zero, Zero) -> Zero 25.69/9.74 new_esEs30(xuu470, xuu480, app(ty_Maybe, bha)) -> new_esEs25(xuu470, xuu480, bha) 25.69/9.74 new_pePe(True, xuu210) -> True 25.69/9.74 new_ltEs20(xuu54, xuu55, app(ty_Maybe, cda)) -> new_ltEs15(xuu54, xuu55, cda) 25.69/9.74 new_compare7(Float(xuu3110000, Pos(xuu31100010)), Float(xuu6000, Neg(xuu60010))) -> new_compare15(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) 25.69/9.74 new_compare7(Float(xuu3110000, Neg(xuu31100010)), Float(xuu6000, Pos(xuu60010))) -> new_compare15(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) 25.69/9.74 new_esEs32(xuu31100000, xuu60000, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.74 new_esEs33(xuu31100001, xuu60001, app(app(app(ty_@3, dfe), dff), dfg)) -> new_esEs17(xuu31100001, xuu60001, dfe, dff, dfg) 25.69/9.74 new_esEs6(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.74 new_ltEs24(xuu103, xuu106, app(app(ty_@2, fhf), fhg)) -> new_ltEs10(xuu103, xuu106, fhf, fhg) 25.69/9.74 new_ltEs24(xuu103, xuu106, ty_Ordering) -> new_ltEs14(xuu103, xuu106) 25.69/9.74 new_ltEs4(xuu47, xuu48, bd) -> new_fsEs(new_compare6(xuu47, xuu48, bd)) 25.69/9.74 new_esEs26(LT, GT) -> False 25.69/9.74 new_esEs26(GT, LT) -> False 25.69/9.74 new_esEs35(xuu31100001, xuu60001, app(ty_[], edc)) -> new_esEs12(xuu31100001, xuu60001, edc) 25.69/9.74 new_esEs8(xuu3110002, xuu6002, ty_Ordering) -> new_esEs26(xuu3110002, xuu6002) 25.69/9.74 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.69/9.74 new_compare24(xuu114, xuu115, xuu116, xuu117, True, eeg, eeh) -> EQ 25.69/9.74 new_esEs26(LT, EQ) -> False 25.69/9.74 new_esEs26(EQ, LT) -> False 25.69/9.74 new_lt8(xuu470, xuu480, ty_Bool) -> new_lt16(xuu470, xuu480) 25.69/9.74 new_ltEs24(xuu103, xuu106, app(ty_[], fhd)) -> new_ltEs4(xuu103, xuu106, fhd) 25.69/9.74 new_compare26(xuu54, xuu55, True, cca, ccb) -> EQ 25.69/9.74 new_esEs39(xuu102, xuu105, ty_Int) -> new_esEs19(xuu102, xuu105) 25.69/9.74 new_lt14(xuu101, xuu104) -> new_esEs26(new_compare7(xuu101, xuu104), LT) 25.69/9.74 new_esEs6(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.74 new_ltEs7(xuu47, xuu48) -> new_fsEs(new_compare14(xuu47, xuu48)) 25.69/9.74 new_ltEs12(Left(xuu470), Right(xuu480), bee, bdd) -> True 25.69/9.74 new_lt23(xuu102, xuu105, app(ty_Maybe, fgc)) -> new_lt15(xuu102, xuu105, fgc) 25.69/9.74 new_compare27(xuu47, xuu48, False, ddg, ddh) -> new_compare110(xuu47, xuu48, new_ltEs22(xuu47, xuu48, ddg), ddg, ddh) 25.69/9.74 new_ltEs24(xuu103, xuu106, app(ty_Ratio, fhh)) -> new_ltEs8(xuu103, xuu106, fhh) 25.69/9.74 new_primMulNat0(Succ(xuu600000), Succ(xuu311000100)) -> new_primPlusNat1(new_primMulNat0(xuu600000, Succ(xuu311000100)), xuu311000100) 25.69/9.74 new_esEs11(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) 25.69/9.74 new_lt6(xuu101, xuu104) -> new_esEs26(new_compare13(xuu101, xuu104), LT) 25.69/9.74 new_lt19(xuu470, xuu480, ty_Bool) -> new_lt16(xuu470, xuu480) 25.69/9.74 new_esEs6(xuu3110000, xuu6000, app(app(ty_@2, ehh), faa)) -> new_esEs16(xuu3110000, xuu6000, ehh, faa) 25.69/9.74 new_esEs36(xuu31100002, xuu60002, ty_@0) -> new_esEs14(xuu31100002, xuu60002) 25.69/9.74 new_esEs32(xuu31100000, xuu60000, ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.74 new_esEs21(Left(xuu31100000), Right(xuu60000), ced, cee) -> False 25.69/9.74 new_esEs21(Right(xuu31100000), Left(xuu60000), ced, cee) -> False 25.69/9.74 new_primCompAux00(xuu37, xuu38, EQ, ty_Integer) -> new_compare14(xuu37, xuu38) 25.69/9.74 new_esEs37(xuu114, xuu116, ty_Bool) -> new_esEs20(xuu114, xuu116) 25.69/9.74 new_primEqNat0(Succ(xuu311000000), Succ(xuu600000)) -> new_primEqNat0(xuu311000000, xuu600000) 25.69/9.74 new_ltEs22(xuu47, xuu48, ty_Double) -> new_ltEs6(xuu47, xuu48) 25.69/9.74 new_not(True) -> False 25.69/9.74 new_lt22(xuu101, xuu104, app(ty_[], dh)) -> new_lt7(xuu101, xuu104, dh) 25.69/9.74 new_ltEs19(xuu472, xuu482, ty_@0) -> new_ltEs18(xuu472, xuu482) 25.69/9.74 new_esEs35(xuu31100001, xuu60001, app(ty_Maybe, edd)) -> new_esEs25(xuu31100001, xuu60001, edd) 25.69/9.74 new_lt7(xuu101, xuu104, dh) -> new_esEs26(new_compare6(xuu101, xuu104, dh), LT) 25.69/9.74 new_esEs9(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.74 new_esEs10(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.74 new_compare17(xuu140, xuu141, False, dde, ddf) -> GT 25.69/9.74 new_esEs39(xuu102, xuu105, ty_Ordering) -> new_esEs26(xuu102, xuu105) 25.69/9.74 new_esEs38(xuu101, xuu104, app(ty_Ratio, da)) -> new_esEs23(xuu101, xuu104, da) 25.69/9.74 new_esEs38(xuu101, xuu104, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs17(xuu101, xuu104, dad, dae, daf) 25.69/9.74 new_esEs4(xuu3110000, xuu6000, app(ty_[], be)) -> new_esEs12(xuu3110000, xuu6000, be) 25.69/9.74 new_esEs33(xuu31100001, xuu60001, app(app(ty_Either, dfh), dga)) -> new_esEs21(xuu31100001, xuu60001, dfh, dga) 25.69/9.74 new_compare11(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, False, xuu180, de, df, dg) -> new_compare12(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, xuu180, de, df, dg) 25.69/9.74 new_lt22(xuu101, xuu104, app(app(ty_Either, cga), cgb)) -> new_lt9(xuu101, xuu104, cga, cgb) 25.69/9.74 new_lt22(xuu101, xuu104, app(ty_Ratio, da)) -> new_lt4(xuu101, xuu104, da) 25.69/9.74 new_compare6([], :(xuu6000, xuu6001), dab) -> LT 25.69/9.74 new_compare10(Double(xuu3110000, Pos(xuu31100010)), Double(xuu6000, Neg(xuu60010))) -> new_compare15(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) 25.69/9.74 new_compare10(Double(xuu3110000, Neg(xuu31100010)), Double(xuu6000, Pos(xuu60010))) -> new_compare15(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) 25.69/9.74 new_primEqNat0(Succ(xuu311000000), Zero) -> False 25.69/9.74 new_primEqNat0(Zero, Succ(xuu600000)) -> False 25.69/9.74 new_esEs14(@0, @0) -> True 25.69/9.74 new_lt23(xuu102, xuu105, ty_Char) -> new_lt17(xuu102, xuu105) 25.69/9.74 new_lt23(xuu102, xuu105, ty_Int) -> new_lt10(xuu102, xuu105) 25.69/9.74 new_ltEs21(xuu76, xuu77, ty_Integer) -> new_ltEs7(xuu76, xuu77) 25.69/9.74 new_esEs29(xuu470, xuu480, ty_Int) -> new_esEs19(xuu470, xuu480) 25.69/9.74 new_esEs37(xuu114, xuu116, ty_Float) -> new_esEs18(xuu114, xuu116) 25.69/9.74 new_ltEs23(xuu115, xuu117, ty_Char) -> new_ltEs17(xuu115, xuu117) 25.69/9.74 new_lt5(xuu101, xuu104, db, dc) -> new_esEs26(new_compare9(xuu101, xuu104, db, dc), LT) 25.69/9.74 new_esEs6(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.74 new_ltEs23(xuu115, xuu117, ty_Float) -> new_ltEs5(xuu115, xuu117) 25.69/9.74 new_esEs32(xuu31100000, xuu60000, ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.74 new_esEs9(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.74 new_ltEs14(EQ, EQ) -> True 25.69/9.74 new_esEs37(xuu114, xuu116, ty_Char) -> new_esEs15(xuu114, xuu116) 25.69/9.74 new_esEs4(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.74 new_lt21(xuu114, xuu116, ty_Bool) -> new_lt16(xuu114, xuu116) 25.69/9.74 new_compare210(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, True, ffb, ffc, ffd) -> EQ 25.69/9.74 new_ltEs20(xuu54, xuu55, app(app(app(ty_@3, cce), ccf), ccg)) -> new_ltEs13(xuu54, xuu55, cce, ccf, ccg) 25.69/9.74 new_compare13(LT, LT) -> EQ 25.69/9.74 new_primCmpInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> GT 25.69/9.74 new_lt13(xuu101, xuu104) -> new_esEs26(new_compare14(xuu101, xuu104), LT) 25.69/9.74 new_esEs21(Left(xuu31100000), Left(xuu60000), app(ty_Ratio, dhd), cee) -> new_esEs23(xuu31100000, xuu60000, dhd) 25.69/9.74 new_compare112(xuu188, xuu189, xuu190, xuu191, True, ehf, ehg) -> LT 25.69/9.74 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.74 new_esEs10(xuu3110000, xuu6000, app(ty_[], fd)) -> new_esEs12(xuu3110000, xuu6000, fd) 25.69/9.74 new_esEs29(xuu470, xuu480, ty_Ordering) -> new_esEs26(xuu470, xuu480) 25.69/9.74 new_compare13(GT, EQ) -> GT 25.69/9.74 new_primCompAux00(xuu37, xuu38, GT, dcb) -> GT 25.69/9.74 new_lt19(xuu470, xuu480, ty_Integer) -> new_lt13(xuu470, xuu480) 25.69/9.74 new_primCmpNat0(Zero, Succ(xuu60000)) -> LT 25.69/9.74 new_ltEs11(xuu471, xuu481, ty_Bool) -> new_ltEs16(xuu471, xuu481) 25.69/9.74 new_lt23(xuu102, xuu105, app(app(app(ty_@3, ffg), ffh), fga)) -> new_lt11(xuu102, xuu105, ffg, ffh, fga) 25.69/9.74 new_ltEs23(xuu115, xuu117, ty_Int) -> new_ltEs9(xuu115, xuu117) 25.69/9.74 new_esEs11(xuu3110001, xuu6001, ty_Ordering) -> new_esEs26(xuu3110001, xuu6001) 25.69/9.74 new_ltEs12(Left(xuu470), Left(xuu480), ty_Float, bdd) -> new_ltEs5(xuu470, xuu480) 25.69/9.74 new_compare26(xuu54, xuu55, False, cca, ccb) -> new_compare17(xuu54, xuu55, new_ltEs20(xuu54, xuu55, ccb), cca, ccb) 25.69/9.74 new_esEs9(xuu3110000, xuu6000, app(ty_[], bab)) -> new_esEs12(xuu3110000, xuu6000, bab) 25.69/9.74 new_esEs34(xuu31100000, xuu60000, ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.74 new_esEs38(xuu101, xuu104, app(app(ty_Either, cga), cgb)) -> new_esEs21(xuu101, xuu104, cga, cgb) 25.69/9.74 new_ltEs12(Left(xuu470), Left(xuu480), ty_Char, bdd) -> new_ltEs17(xuu470, xuu480) 25.69/9.74 new_ltEs21(xuu76, xuu77, ty_@0) -> new_ltEs18(xuu76, xuu77) 25.69/9.74 new_lt8(xuu470, xuu480, ty_Ordering) -> new_lt6(xuu470, xuu480) 25.69/9.74 new_ltEs19(xuu472, xuu482, app(app(ty_@2, cbf), cbg)) -> new_ltEs10(xuu472, xuu482, cbf, cbg) 25.69/9.74 new_esEs11(xuu3110001, xuu6001, app(ty_Ratio, gf)) -> new_esEs23(xuu3110001, xuu6001, gf) 25.69/9.74 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.74 new_esEs5(xuu3110000, xuu6000, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_esEs17(xuu3110000, xuu6000, cfa, cfb, cfc) 25.69/9.74 new_esEs9(xuu3110000, xuu6000, app(app(ty_@2, hb), hc)) -> new_esEs16(xuu3110000, xuu6000, hb, hc) 25.69/9.74 new_ltEs19(xuu472, xuu482, ty_Ordering) -> new_ltEs14(xuu472, xuu482) 25.69/9.74 new_ltEs12(Left(xuu470), Left(xuu480), ty_Double, bdd) -> new_ltEs6(xuu470, xuu480) 25.69/9.74 new_compare5(xuu311000, xuu600, ty_Float) -> new_compare7(xuu311000, xuu600) 25.69/9.74 new_esEs34(xuu31100000, xuu60000, ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.74 new_esEs38(xuu101, xuu104, app(ty_[], dh)) -> new_esEs12(xuu101, xuu104, dh) 25.69/9.74 new_esEs10(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.74 new_ltEs14(EQ, GT) -> True 25.69/9.74 new_esEs31(xuu471, xuu481, app(app(ty_Either, bhe), bhf)) -> new_esEs21(xuu471, xuu481, bhe, bhf) 25.69/9.74 new_ltEs12(Right(xuu470), Right(xuu480), bee, app(ty_Maybe, bfd)) -> new_ltEs15(xuu470, xuu480, bfd) 25.69/9.74 new_compare5(xuu311000, xuu600, app(app(ty_@2, eb), ec)) -> new_compare9(xuu311000, xuu600, eb, ec) 25.69/9.74 new_ltEs15(Just(xuu470), Just(xuu480), ty_Integer) -> new_ltEs7(xuu470, xuu480) 25.69/9.74 new_ltEs19(xuu472, xuu482, ty_Integer) -> new_ltEs7(xuu472, xuu482) 25.69/9.74 new_primEqInt(Neg(Succ(xuu311000000)), Neg(Succ(xuu600000))) -> new_primEqNat0(xuu311000000, xuu600000) 25.69/9.74 new_esEs33(xuu31100001, xuu60001, app(ty_Maybe, dgd)) -> new_esEs25(xuu31100001, xuu60001, dgd) 25.69/9.74 new_esEs31(xuu471, xuu481, ty_@0) -> new_esEs14(xuu471, xuu481) 25.69/9.74 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.74 new_ltEs12(Left(xuu470), Left(xuu480), app(ty_[], bdh), bdd) -> new_ltEs4(xuu470, xuu480, bdh) 25.69/9.74 new_primCmpInt(Neg(Zero), Pos(Succ(xuu60000))) -> LT 25.69/9.74 new_compare15(xuu311000, xuu600) -> new_primCmpInt(xuu311000, xuu600) 25.69/9.74 new_ltEs20(xuu54, xuu55, ty_Char) -> new_ltEs17(xuu54, xuu55) 25.69/9.74 new_primMulInt(Pos(xuu60000), Pos(xuu31100010)) -> Pos(new_primMulNat0(xuu60000, xuu31100010)) 25.69/9.74 new_compare13(EQ, LT) -> GT 25.69/9.74 new_ltEs14(LT, GT) -> True 25.69/9.74 new_ltEs14(GT, GT) -> True 25.69/9.74 new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_@2, ddb), ddc)) -> new_compare9(xuu37, xuu38, ddb, ddc) 25.69/9.74 new_ltEs21(xuu76, xuu77, ty_Bool) -> new_ltEs16(xuu76, xuu77) 25.69/9.74 new_esEs30(xuu470, xuu480, ty_Double) -> new_esEs22(xuu470, xuu480) 25.69/9.74 new_primCompAux00(xuu37, xuu38, EQ, ty_Float) -> new_compare7(xuu37, xuu38) 25.69/9.74 new_esEs9(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.74 new_primMulNat0(Succ(xuu600000), Zero) -> Zero 25.69/9.74 new_primMulNat0(Zero, Succ(xuu311000100)) -> Zero 25.69/9.74 new_esEs9(xuu3110000, xuu6000, app(ty_Maybe, bac)) -> new_esEs25(xuu3110000, xuu6000, bac) 25.69/9.74 new_lt21(xuu114, xuu116, ty_Integer) -> new_lt13(xuu114, xuu116) 25.69/9.74 new_esEs6(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.74 new_esEs7(xuu3110001, xuu6001, app(app(app(ty_@3, fbd), fbe), fbf)) -> new_esEs17(xuu3110001, xuu6001, fbd, fbe, fbf) 25.69/9.74 new_compare13(GT, LT) -> GT 25.69/9.74 new_esEs22(Double(xuu31100000, xuu31100001), Double(xuu60000, xuu60001)) -> new_esEs19(new_sr(xuu31100000, xuu60001), new_sr(xuu31100001, xuu60000)) 25.69/9.74 new_lt20(xuu471, xuu481, app(app(app(ty_@3, bhg), bhh), caa)) -> new_lt11(xuu471, xuu481, bhg, bhh, caa) 25.69/9.74 new_primPlusNat0(Succ(xuu21200), Zero) -> Succ(xuu21200) 25.69/9.74 new_primPlusNat0(Zero, Succ(xuu21100)) -> Succ(xuu21100) 25.69/9.74 new_compare7(Float(xuu3110000, Pos(xuu31100010)), Float(xuu6000, Pos(xuu60010))) -> new_compare15(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) 25.69/9.74 new_esEs26(EQ, GT) -> False 25.69/9.74 new_esEs26(GT, EQ) -> False 25.69/9.74 new_ltEs12(Left(xuu470), Left(xuu480), app(ty_Ratio, bed), bdd) -> new_ltEs8(xuu470, xuu480, bed) 25.69/9.74 new_esEs6(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.74 new_compare13(EQ, EQ) -> EQ 25.69/9.74 new_compare5(xuu311000, xuu600, app(app(app(ty_@3, chg), chh), daa)) -> new_compare28(xuu311000, xuu600, chg, chh, daa) 25.69/9.74 new_esEs39(xuu102, xuu105, ty_@0) -> new_esEs14(xuu102, xuu105) 25.69/9.74 new_compare29(False, False) -> EQ 25.69/9.74 new_esEs7(xuu3110001, xuu6001, app(ty_Maybe, fcc)) -> new_esEs25(xuu3110001, xuu6001, fcc) 25.69/9.74 new_esEs31(xuu471, xuu481, ty_Ordering) -> new_esEs26(xuu471, xuu481) 25.69/9.74 new_lt21(xuu114, xuu116, app(app(app(ty_@3, efc), efd), efe)) -> new_lt11(xuu114, xuu116, efc, efd, efe) 25.69/9.74 new_ltEs11(xuu471, xuu481, ty_@0) -> new_ltEs18(xuu471, xuu481) 25.69/9.74 new_esEs32(xuu31100000, xuu60000, app(app(ty_@2, dea), deb)) -> new_esEs16(xuu31100000, xuu60000, dea, deb) 25.69/9.74 new_esEs39(xuu102, xuu105, ty_Bool) -> new_esEs20(xuu102, xuu105) 25.69/9.74 new_lt8(xuu470, xuu480, ty_Integer) -> new_lt13(xuu470, xuu480) 25.69/9.74 new_esEs10(xuu3110000, xuu6000, app(ty_Maybe, ff)) -> new_esEs25(xuu3110000, xuu6000, ff) 25.69/9.74 new_esEs32(xuu31100000, xuu60000, ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.74 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Char, cee) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.74 new_ltEs20(xuu54, xuu55, ty_Float) -> new_ltEs5(xuu54, xuu55) 25.69/9.74 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Bool, cee) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.74 new_ltEs24(xuu103, xuu106, ty_@0) -> new_ltEs18(xuu103, xuu106) 25.69/9.74 new_esEs29(xuu470, xuu480, app(app(ty_Either, baf), bag)) -> new_esEs21(xuu470, xuu480, baf, bag) 25.69/9.74 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.74 new_esEs5(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.74 new_esEs25(Just(xuu31100000), Just(xuu60000), app(app(app(ty_@3, feb), fec), fed)) -> new_esEs17(xuu31100000, xuu60000, feb, fec, fed) 25.69/9.74 new_esEs25(Just(xuu31100000), Just(xuu60000), app(app(ty_Either, fee), fef)) -> new_esEs21(xuu31100000, xuu60000, fee, fef) 25.69/9.74 new_compare9(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), eb, ec) -> new_compare24(xuu3110000, xuu3110001, xuu6000, xuu6001, new_asAs(new_esEs10(xuu3110000, xuu6000, eb), new_esEs11(xuu3110001, xuu6001, ec)), eb, ec) 25.69/9.74 new_esEs29(xuu470, xuu480, ty_@0) -> new_esEs14(xuu470, xuu480) 25.69/9.74 new_esEs32(xuu31100000, xuu60000, app(ty_Maybe, dfb)) -> new_esEs25(xuu31100000, xuu60000, dfb) 25.69/9.74 new_compare25(xuu76, xuu77, True, cgd) -> EQ 25.69/9.74 new_esEs36(xuu31100002, xuu60002, app(ty_Ratio, eed)) -> new_esEs23(xuu31100002, xuu60002, eed) 25.69/9.74 new_esEs13(xuu31100000, xuu60000, app(ty_Ratio, ce)) -> new_esEs23(xuu31100000, xuu60000, ce) 25.69/9.74 new_ltEs5(xuu47, xuu48) -> new_fsEs(new_compare7(xuu47, xuu48)) 25.69/9.74 new_esEs27(xuu31100000, xuu60000, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.74 new_esEs30(xuu470, xuu480, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs17(xuu470, xuu480, bge, bgf, bgg) 25.69/9.74 new_lt23(xuu102, xuu105, ty_Double) -> new_lt12(xuu102, xuu105) 25.69/9.74 new_esEs13(xuu31100000, xuu60000, app(ty_[], cf)) -> new_esEs12(xuu31100000, xuu60000, cf) 25.69/9.74 new_esEs5(xuu3110000, xuu6000, app(app(ty_Either, cfd), cfe)) -> new_esEs21(xuu3110000, xuu6000, cfd, cfe) 25.69/9.74 new_compare29(True, False) -> GT 25.69/9.74 new_esEs7(xuu3110001, xuu6001, ty_Double) -> new_esEs22(xuu3110001, xuu6001) 25.69/9.74 new_ltEs15(Just(xuu470), Just(xuu480), ty_Bool) -> new_ltEs16(xuu470, xuu480) 25.69/9.74 new_ltEs19(xuu472, xuu482, ty_Bool) -> new_ltEs16(xuu472, xuu482) 25.69/9.74 new_esEs4(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.74 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Int, cee) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.74 new_esEs30(xuu470, xuu480, ty_Char) -> new_esEs15(xuu470, xuu480) 25.69/9.74 new_esEs10(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.74 new_ltEs11(xuu471, xuu481, ty_Char) -> new_ltEs17(xuu471, xuu481) 25.69/9.74 new_esEs21(Left(xuu31100000), Left(xuu60000), app(ty_Maybe, dhf), cee) -> new_esEs25(xuu31100000, xuu60000, dhf) 25.69/9.74 new_esEs10(xuu3110000, xuu6000, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs17(xuu3110000, xuu6000, ef, eg, eh) 25.69/9.74 new_lt20(xuu471, xuu481, ty_Char) -> new_lt17(xuu471, xuu481) 25.69/9.74 new_esEs34(xuu31100000, xuu60000, ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.74 new_esEs8(xuu3110002, xuu6002, ty_Float) -> new_esEs18(xuu3110002, xuu6002) 25.69/9.74 new_ltEs11(xuu471, xuu481, ty_Float) -> new_ltEs5(xuu471, xuu481) 25.69/9.74 new_esEs39(xuu102, xuu105, ty_Char) -> new_esEs15(xuu102, xuu105) 25.69/9.74 new_esEs10(xuu3110000, xuu6000, app(ty_Ratio, fc)) -> new_esEs23(xuu3110000, xuu6000, fc) 25.69/9.74 new_ltEs12(Left(xuu470), Left(xuu480), ty_Int, bdd) -> new_ltEs9(xuu470, xuu480) 25.69/9.74 new_esEs8(xuu3110002, xuu6002, app(app(ty_@2, fcd), fce)) -> new_esEs16(xuu3110002, xuu6002, fcd, fce) 25.69/9.74 new_compare25(xuu76, xuu77, False, cgd) -> new_compare19(xuu76, xuu77, new_ltEs21(xuu76, xuu77, cgd), cgd) 25.69/9.75 new_esEs37(xuu114, xuu116, app(ty_[], eff)) -> new_esEs12(xuu114, xuu116, eff) 25.69/9.75 new_esEs30(xuu470, xuu480, app(app(ty_Either, bgc), bgd)) -> new_esEs21(xuu470, xuu480, bgc, bgd) 25.69/9.75 new_esEs29(xuu470, xuu480, app(app(ty_@2, bbe), bbf)) -> new_esEs16(xuu470, xuu480, bbe, bbf) 25.69/9.75 new_primCompAux00(xuu37, xuu38, EQ, ty_Char) -> new_compare30(xuu37, xuu38) 25.69/9.75 new_lt23(xuu102, xuu105, ty_Bool) -> new_lt16(xuu102, xuu105) 25.69/9.75 new_esEs35(xuu31100001, xuu60001, app(app(app(ty_@3, ece), ecf), ecg)) -> new_esEs17(xuu31100001, xuu60001, ece, ecf, ecg) 25.69/9.75 new_esEs35(xuu31100001, xuu60001, ty_Bool) -> new_esEs20(xuu31100001, xuu60001) 25.69/9.75 new_ltEs24(xuu103, xuu106, ty_Double) -> new_ltEs6(xuu103, xuu106) 25.69/9.75 new_lt19(xuu470, xuu480, app(app(app(ty_@3, bge), bgf), bgg)) -> new_lt11(xuu470, xuu480, bge, bgf, bgg) 25.69/9.75 new_esEs31(xuu471, xuu481, app(ty_Ratio, caf)) -> new_esEs23(xuu471, xuu481, caf) 25.69/9.75 new_ltEs12(Left(xuu470), Left(xuu480), app(app(ty_@2, beb), bec), bdd) -> new_ltEs10(xuu470, xuu480, beb, bec) 25.69/9.75 new_ltEs15(Just(xuu470), Just(xuu480), app(app(ty_Either, dah), dba)) -> new_ltEs12(xuu470, xuu480, dah, dba) 25.69/9.75 new_ltEs12(Right(xuu470), Right(xuu480), bee, ty_@0) -> new_ltEs18(xuu470, xuu480) 25.69/9.75 new_esEs31(xuu471, xuu481, app(app(app(ty_@3, bhg), bhh), caa)) -> new_esEs17(xuu471, xuu481, bhg, bhh, caa) 25.69/9.75 new_ltEs11(xuu471, xuu481, app(ty_Ratio, bda)) -> new_ltEs8(xuu471, xuu481, bda) 25.69/9.75 new_esEs31(xuu471, xuu481, ty_Bool) -> new_esEs20(xuu471, xuu481) 25.69/9.75 new_esEs35(xuu31100001, xuu60001, app(ty_Ratio, edb)) -> new_esEs23(xuu31100001, xuu60001, edb) 25.69/9.75 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_@0, cee) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.75 new_lt15(xuu101, xuu104, cgc) -> new_esEs26(new_compare16(xuu101, xuu104, cgc), LT) 25.69/9.75 new_lt21(xuu114, xuu116, ty_@0) -> new_lt18(xuu114, xuu116) 25.69/9.75 new_esEs6(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.75 new_compare18(Right(xuu3110000), Right(xuu6000), cde, cdf) -> new_compare26(xuu3110000, xuu6000, new_esEs5(xuu3110000, xuu6000, cdf), cde, cdf) 25.69/9.75 new_ltEs22(xuu47, xuu48, app(app(ty_@2, bad), bae)) -> new_ltEs10(xuu47, xuu48, bad, bae) 25.69/9.75 new_esEs39(xuu102, xuu105, ty_Integer) -> new_esEs24(xuu102, xuu105) 25.69/9.75 new_lt8(xuu470, xuu480, ty_@0) -> new_lt18(xuu470, xuu480) 25.69/9.75 new_esEs4(xuu3110000, xuu6000, app(app(app(ty_@3, cea), ceb), cec)) -> new_esEs17(xuu3110000, xuu6000, cea, ceb, cec) 25.69/9.75 new_esEs32(xuu31100000, xuu60000, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.75 new_esEs23(:%(xuu31100000, xuu31100001), :%(xuu60000, xuu60001), dd) -> new_asAs(new_esEs27(xuu31100000, xuu60000, dd), new_esEs28(xuu31100001, xuu60001, dd)) 25.69/9.75 new_ltEs12(Right(xuu470), Right(xuu480), bee, app(app(app(ty_@3, beh), bfa), bfb)) -> new_ltEs13(xuu470, xuu480, beh, bfa, bfb) 25.69/9.75 new_esEs33(xuu31100001, xuu60001, ty_Ordering) -> new_esEs26(xuu31100001, xuu60001) 25.69/9.75 new_esEs4(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.75 new_ltEs16(True, False) -> False 25.69/9.75 new_compare5(xuu311000, xuu600, app(ty_Ratio, dac)) -> new_compare8(xuu311000, xuu600, dac) 25.69/9.75 new_esEs39(xuu102, xuu105, app(app(ty_Either, ffe), fff)) -> new_esEs21(xuu102, xuu105, ffe, fff) 25.69/9.75 new_esEs21(Left(xuu31100000), Left(xuu60000), app(app(ty_@2, dge), dgf), cee) -> new_esEs16(xuu31100000, xuu60000, dge, dgf) 25.69/9.75 new_esEs30(xuu470, xuu480, app(app(ty_@2, bhb), bhc)) -> new_esEs16(xuu470, xuu480, bhb, bhc) 25.69/9.75 new_ltEs22(xuu47, xuu48, ty_@0) -> new_ltEs18(xuu47, xuu48) 25.69/9.75 new_esEs37(xuu114, xuu116, ty_Int) -> new_esEs19(xuu114, xuu116) 25.69/9.75 new_primCmpInt(Pos(Succ(xuu31100000)), Pos(xuu6000)) -> new_primCmpNat0(Succ(xuu31100000), xuu6000) 25.69/9.75 new_esEs29(xuu470, xuu480, ty_Char) -> new_esEs15(xuu470, xuu480) 25.69/9.75 new_lt19(xuu470, xuu480, app(ty_Maybe, bha)) -> new_lt15(xuu470, xuu480, bha) 25.69/9.75 new_esEs13(xuu31100000, xuu60000, ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.75 new_esEs10(xuu3110000, xuu6000, app(app(ty_Either, fa), fb)) -> new_esEs21(xuu3110000, xuu6000, fa, fb) 25.69/9.75 new_lt8(xuu470, xuu480, ty_Char) -> new_lt17(xuu470, xuu480) 25.69/9.75 new_ltEs15(Just(xuu470), Just(xuu480), app(ty_Ratio, dca)) -> new_ltEs8(xuu470, xuu480, dca) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, app(ty_Maybe, gh)) -> new_esEs25(xuu3110001, xuu6001, gh) 25.69/9.75 new_compare13(GT, GT) -> EQ 25.69/9.75 new_ltEs20(xuu54, xuu55, ty_Double) -> new_ltEs6(xuu54, xuu55) 25.69/9.75 new_lt20(xuu471, xuu481, app(app(ty_Either, bhe), bhf)) -> new_lt9(xuu471, xuu481, bhe, bhf) 25.69/9.75 new_lt16(xuu101, xuu104) -> new_esEs26(new_compare29(xuu101, xuu104), LT) 25.69/9.75 new_ltEs21(xuu76, xuu77, app(app(ty_@2, chd), che)) -> new_ltEs10(xuu76, xuu77, chd, che) 25.69/9.75 new_ltEs15(Just(xuu470), Just(xuu480), ty_Ordering) -> new_ltEs14(xuu470, xuu480) 25.69/9.75 new_esEs39(xuu102, xuu105, app(app(app(ty_@3, ffg), ffh), fga)) -> new_esEs17(xuu102, xuu105, ffg, ffh, fga) 25.69/9.75 new_compare7(Float(xuu3110000, Neg(xuu31100010)), Float(xuu6000, Neg(xuu60010))) -> new_compare15(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) 25.69/9.75 new_esEs35(xuu31100001, xuu60001, ty_Integer) -> new_esEs24(xuu31100001, xuu60001) 25.69/9.75 new_lt20(xuu471, xuu481, ty_@0) -> new_lt18(xuu471, xuu481) 25.69/9.75 new_esEs13(xuu31100000, xuu60000, ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.75 new_esEs38(xuu101, xuu104, ty_@0) -> new_esEs14(xuu101, xuu104) 25.69/9.75 new_compare29(False, True) -> LT 25.69/9.75 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, app(app(ty_@2, dhg), dhh)) -> new_esEs16(xuu31100000, xuu60000, dhg, dhh) 25.69/9.75 new_primCompAux00(xuu37, xuu38, EQ, app(ty_Ratio, ddd)) -> new_compare8(xuu37, xuu38, ddd) 25.69/9.75 new_esEs29(xuu470, xuu480, ty_Bool) -> new_esEs20(xuu470, xuu480) 25.69/9.75 new_esEs34(xuu31100000, xuu60000, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.75 new_esEs36(xuu31100002, xuu60002, ty_Bool) -> new_esEs20(xuu31100002, xuu60002) 25.69/9.75 new_ltEs11(xuu471, xuu481, app(ty_Maybe, bcf)) -> new_ltEs15(xuu471, xuu481, bcf) 25.69/9.75 new_lt22(xuu101, xuu104, ty_Ordering) -> new_lt6(xuu101, xuu104) 25.69/9.75 new_primCompAux00(xuu37, xuu38, EQ, app(ty_Maybe, dda)) -> new_compare16(xuu37, xuu38, dda) 25.69/9.75 new_esEs30(xuu470, xuu480, ty_Bool) -> new_esEs20(xuu470, xuu480) 25.69/9.75 new_esEs5(xuu3110000, xuu6000, app(ty_Maybe, cfh)) -> new_esEs25(xuu3110000, xuu6000, cfh) 25.69/9.75 new_esEs36(xuu31100002, xuu60002, ty_Int) -> new_esEs19(xuu31100002, xuu60002) 25.69/9.75 new_lt21(xuu114, xuu116, app(ty_Maybe, efg)) -> new_lt15(xuu114, xuu116, efg) 25.69/9.75 new_lt19(xuu470, xuu480, ty_@0) -> new_lt18(xuu470, xuu480) 25.69/9.75 new_esEs5(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.75 new_esEs31(xuu471, xuu481, ty_Char) -> new_esEs15(xuu471, xuu481) 25.69/9.75 new_ltEs22(xuu47, xuu48, app(ty_[], bd)) -> new_ltEs4(xuu47, xuu48, bd) 25.69/9.75 new_compare18(Right(xuu3110000), Left(xuu6000), cde, cdf) -> GT 25.69/9.75 new_compare5(xuu311000, xuu600, ty_Char) -> new_compare30(xuu311000, xuu600) 25.69/9.75 new_compare6([], [], dab) -> EQ 25.69/9.75 new_ltEs18(xuu47, xuu48) -> new_fsEs(new_compare31(xuu47, xuu48)) 25.69/9.75 new_ltEs11(xuu471, xuu481, ty_Int) -> new_ltEs9(xuu471, xuu481) 25.69/9.75 new_lt8(xuu470, xuu480, ty_Float) -> new_lt14(xuu470, xuu480) 25.69/9.75 new_esEs34(xuu31100000, xuu60000, ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.75 new_esEs7(xuu3110001, xuu6001, ty_Float) -> new_esEs18(xuu3110001, xuu6001) 25.69/9.75 new_compare10(Double(xuu3110000, Neg(xuu31100010)), Double(xuu6000, Neg(xuu60010))) -> new_compare15(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) 25.69/9.75 new_esEs4(xuu3110000, xuu6000, app(ty_Maybe, cef)) -> new_esEs25(xuu3110000, xuu6000, cef) 25.69/9.75 new_lt9(xuu101, xuu104, cga, cgb) -> new_esEs26(new_compare18(xuu101, xuu104, cga, cgb), LT) 25.69/9.75 new_esEs10(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.75 new_lt8(xuu470, xuu480, app(app(ty_Either, baf), bag)) -> new_lt9(xuu470, xuu480, baf, bag) 25.69/9.75 new_ltEs12(Right(xuu470), Right(xuu480), bee, ty_Char) -> new_ltEs17(xuu470, xuu480) 25.69/9.75 new_compare112(xuu188, xuu189, xuu190, xuu191, False, ehf, ehg) -> GT 25.69/9.75 new_esEs35(xuu31100001, xuu60001, ty_@0) -> new_esEs14(xuu31100001, xuu60001) 25.69/9.75 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Float, cee) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.75 new_lt19(xuu470, xuu480, ty_Float) -> new_lt14(xuu470, xuu480) 25.69/9.75 new_esEs32(xuu31100000, xuu60000, ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.75 new_ltEs15(Nothing, Just(xuu480), dag) -> True 25.69/9.75 new_esEs31(xuu471, xuu481, ty_Int) -> new_esEs19(xuu471, xuu481) 25.69/9.75 new_esEs4(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.75 new_primPlusNat0(Succ(xuu21200), Succ(xuu21100)) -> Succ(Succ(new_primPlusNat0(xuu21200, xuu21100))) 25.69/9.75 new_compare18(Left(xuu3110000), Left(xuu6000), cde, cdf) -> new_compare27(xuu3110000, xuu6000, new_esEs4(xuu3110000, xuu6000, cde), cde, cdf) 25.69/9.75 new_esEs7(xuu3110001, xuu6001, app(ty_[], fcb)) -> new_esEs12(xuu3110001, xuu6001, fcb) 25.69/9.75 new_compare27(xuu47, xuu48, True, ddg, ddh) -> EQ 25.69/9.75 new_primCompAux00(xuu37, xuu38, EQ, ty_Ordering) -> new_compare13(xuu37, xuu38) 25.69/9.75 new_esEs38(xuu101, xuu104, ty_Integer) -> new_esEs24(xuu101, xuu104) 25.69/9.75 new_lt4(xuu101, xuu104, da) -> new_esEs26(new_compare8(xuu101, xuu104, da), LT) 25.69/9.75 new_esEs13(xuu31100000, xuu60000, ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.75 new_lt23(xuu102, xuu105, ty_Float) -> new_lt14(xuu102, xuu105) 25.69/9.75 new_esEs36(xuu31100002, xuu60002, app(app(ty_Either, eeb), eec)) -> new_esEs21(xuu31100002, xuu60002, eeb, eec) 25.69/9.75 new_esEs13(xuu31100000, xuu60000, app(app(ty_Either, cc), cd)) -> new_esEs21(xuu31100000, xuu60000, cc, cd) 25.69/9.75 new_ltEs16(False, False) -> True 25.69/9.75 new_ltEs21(xuu76, xuu77, app(ty_[], chb)) -> new_ltEs4(xuu76, xuu77, chb) 25.69/9.75 new_esEs13(xuu31100000, xuu60000, app(ty_Maybe, cg)) -> new_esEs25(xuu31100000, xuu60000, cg) 25.69/9.75 new_lt20(xuu471, xuu481, app(ty_Maybe, cac)) -> new_lt15(xuu471, xuu481, cac) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs17(xuu3110001, xuu6001, ga, gb, gc) 25.69/9.75 new_esEs32(xuu31100000, xuu60000, app(ty_Ratio, deh)) -> new_esEs23(xuu31100000, xuu60000, deh) 25.69/9.75 new_lt21(xuu114, xuu116, ty_Char) -> new_lt17(xuu114, xuu116) 25.69/9.75 new_esEs36(xuu31100002, xuu60002, app(ty_Maybe, eef)) -> new_esEs25(xuu31100002, xuu60002, eef) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, ty_Bool) -> new_esEs20(xuu3110001, xuu6001) 25.69/9.75 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Ordering, cee) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.75 new_esEs33(xuu31100001, xuu60001, ty_@0) -> new_esEs14(xuu31100001, xuu60001) 25.69/9.75 new_lt20(xuu471, xuu481, ty_Bool) -> new_lt16(xuu471, xuu481) 25.69/9.75 new_ltEs12(Right(xuu470), Right(xuu480), bee, ty_Ordering) -> new_ltEs14(xuu470, xuu480) 25.69/9.75 new_esEs34(xuu31100000, xuu60000, app(app(app(ty_@3, ebc), ebd), ebe)) -> new_esEs17(xuu31100000, xuu60000, ebc, ebd, ebe) 25.69/9.75 new_esEs13(xuu31100000, xuu60000, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.75 new_compare12(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, de, df, dg) -> LT 25.69/9.75 new_esEs18(Float(xuu31100000, xuu31100001), Float(xuu60000, xuu60001)) -> new_esEs19(new_sr(xuu31100000, xuu60001), new_sr(xuu31100001, xuu60000)) 25.69/9.75 new_lt20(xuu471, xuu481, ty_Float) -> new_lt14(xuu471, xuu481) 25.69/9.75 new_esEs36(xuu31100002, xuu60002, ty_Ordering) -> new_esEs26(xuu31100002, xuu60002) 25.69/9.75 new_lt21(xuu114, xuu116, ty_Ordering) -> new_lt6(xuu114, xuu116) 25.69/9.75 new_ltEs12(Right(xuu470), Right(xuu480), bee, app(ty_[], bfc)) -> new_ltEs4(xuu470, xuu480, bfc) 25.69/9.75 new_ltEs16(True, True) -> True 25.69/9.75 new_esEs39(xuu102, xuu105, ty_Float) -> new_esEs18(xuu102, xuu105) 25.69/9.75 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Integer, cee) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.75 new_ltEs11(xuu471, xuu481, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs13(xuu471, xuu481, bcb, bcc, bcd) 25.69/9.75 new_ltEs11(xuu471, xuu481, app(app(ty_Either, bbh), bca)) -> new_ltEs12(xuu471, xuu481, bbh, bca) 25.69/9.75 new_esEs35(xuu31100001, xuu60001, ty_Char) -> new_esEs15(xuu31100001, xuu60001) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, ty_Char) -> new_esEs15(xuu3110001, xuu6001) 25.69/9.75 new_esEs5(xuu3110000, xuu6000, app(ty_[], cfg)) -> new_esEs12(xuu3110000, xuu6000, cfg) 25.69/9.75 new_esEs36(xuu31100002, xuu60002, ty_Integer) -> new_esEs24(xuu31100002, xuu60002) 25.69/9.75 new_esEs17(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), cea, ceb, cec) -> new_asAs(new_esEs34(xuu31100000, xuu60000, cea), new_asAs(new_esEs35(xuu31100001, xuu60001, ceb), new_esEs36(xuu31100002, xuu60002, cec))) 25.69/9.75 new_esEs20(True, True) -> True 25.69/9.75 new_lt21(xuu114, xuu116, ty_Float) -> new_lt14(xuu114, xuu116) 25.69/9.75 new_esEs34(xuu31100000, xuu60000, ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.75 new_primCmpNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primCmpNat0(xuu31100000, xuu60000) 25.69/9.75 new_esEs25(Just(xuu31100000), Just(xuu60000), app(ty_[], feh)) -> new_esEs12(xuu31100000, xuu60000, feh) 25.69/9.75 new_esEs38(xuu101, xuu104, ty_Ordering) -> new_esEs26(xuu101, xuu104) 25.69/9.75 new_ltEs15(Just(xuu470), Just(xuu480), ty_Int) -> new_ltEs9(xuu470, xuu480) 25.69/9.75 new_compare5(xuu311000, xuu600, app(ty_Maybe, ha)) -> new_compare16(xuu311000, xuu600, ha) 25.69/9.75 new_esEs34(xuu31100000, xuu60000, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.75 new_lt22(xuu101, xuu104, ty_Float) -> new_lt14(xuu101, xuu104) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, app(app(ty_Either, gd), ge)) -> new_esEs21(xuu3110001, xuu6001, gd, ge) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, ty_Int) -> new_esEs19(xuu3110001, xuu6001) 25.69/9.75 new_esEs10(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.75 new_ltEs11(xuu471, xuu481, ty_Ordering) -> new_ltEs14(xuu471, xuu481) 25.69/9.75 new_esEs29(xuu470, xuu480, app(ty_Ratio, bbg)) -> new_esEs23(xuu470, xuu480, bbg) 25.69/9.75 new_esEs34(xuu31100000, xuu60000, app(app(ty_Either, ebf), ebg)) -> new_esEs21(xuu31100000, xuu60000, ebf, ebg) 25.69/9.75 new_esEs33(xuu31100001, xuu60001, ty_Char) -> new_esEs15(xuu31100001, xuu60001) 25.69/9.75 new_lt23(xuu102, xuu105, app(app(ty_Either, ffe), fff)) -> new_lt9(xuu102, xuu105, ffe, fff) 25.69/9.75 new_compare12(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, False, de, df, dg) -> GT 25.69/9.75 new_ltEs11(xuu471, xuu481, ty_Integer) -> new_ltEs7(xuu471, xuu481) 25.69/9.75 new_ltEs20(xuu54, xuu55, app(ty_[], cch)) -> new_ltEs4(xuu54, xuu55, cch) 25.69/9.75 new_compare13(LT, GT) -> LT 25.69/9.75 new_esEs37(xuu114, xuu116, ty_Ordering) -> new_esEs26(xuu114, xuu116) 25.69/9.75 new_esEs33(xuu31100001, xuu60001, ty_Int) -> new_esEs19(xuu31100001, xuu60001) 25.69/9.75 new_lt19(xuu470, xuu480, ty_Ordering) -> new_lt6(xuu470, xuu480) 25.69/9.75 new_esEs37(xuu114, xuu116, app(ty_Maybe, efg)) -> new_esEs25(xuu114, xuu116, efg) 25.69/9.75 new_esEs5(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.75 new_esEs15(Char(xuu31100000), Char(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 25.69/9.75 new_esEs36(xuu31100002, xuu60002, app(app(app(ty_@3, edg), edh), eea)) -> new_esEs17(xuu31100002, xuu60002, edg, edh, eea) 25.69/9.75 new_ltEs23(xuu115, xuu117, ty_Double) -> new_ltEs6(xuu115, xuu117) 25.69/9.75 new_ltEs12(Right(xuu470), Right(xuu480), bee, ty_Bool) -> new_ltEs16(xuu470, xuu480) 25.69/9.75 new_esEs30(xuu470, xuu480, app(ty_Ratio, bhd)) -> new_esEs23(xuu470, xuu480, bhd) 25.69/9.75 new_esEs38(xuu101, xuu104, app(ty_Maybe, cgc)) -> new_esEs25(xuu101, xuu104, cgc) 25.69/9.75 new_esEs13(xuu31100000, xuu60000, app(app(app(ty_@3, bh), ca), cb)) -> new_esEs17(xuu31100000, xuu60000, bh, ca, cb) 25.69/9.75 new_ltEs12(Right(xuu470), Right(xuu480), bee, ty_Float) -> new_ltEs5(xuu470, xuu480) 25.69/9.75 new_ltEs19(xuu472, xuu482, app(ty_[], cbd)) -> new_ltEs4(xuu472, xuu482, cbd) 25.69/9.75 new_ltEs14(LT, LT) -> True 25.69/9.75 new_lt22(xuu101, xuu104, ty_@0) -> new_lt18(xuu101, xuu104) 25.69/9.75 new_lt20(xuu471, xuu481, ty_Ordering) -> new_lt6(xuu471, xuu481) 25.69/9.75 new_compare210(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, ffb, ffc, ffd) -> new_compare11(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, new_lt22(xuu101, xuu104, ffb), new_asAs(new_esEs38(xuu101, xuu104, ffb), new_pePe(new_lt23(xuu102, xuu105, ffc), new_asAs(new_esEs39(xuu102, xuu105, ffc), new_ltEs24(xuu103, xuu106, ffd)))), ffb, ffc, ffd) 25.69/9.75 new_esEs35(xuu31100001, xuu60001, app(app(ty_Either, ech), eda)) -> new_esEs21(xuu31100001, xuu60001, ech, eda) 25.69/9.75 new_esEs6(xuu3110000, xuu6000, app(ty_[], fah)) -> new_esEs12(xuu3110000, xuu6000, fah) 25.69/9.75 new_esEs37(xuu114, xuu116, ty_Integer) -> new_esEs24(xuu114, xuu116) 25.69/9.75 new_ltEs12(Left(xuu470), Left(xuu480), app(app(app(ty_@3, bde), bdf), bdg), bdd) -> new_ltEs13(xuu470, xuu480, bde, bdf, bdg) 25.69/9.75 new_esEs10(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.75 new_lt19(xuu470, xuu480, ty_Char) -> new_lt17(xuu470, xuu480) 25.69/9.75 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.75 new_ltEs16(False, True) -> True 25.69/9.75 new_primCompAux1(xuu311000, xuu600, xuu311001, xuu601, bb) -> new_primCompAux00(xuu311001, xuu601, new_compare5(xuu311000, xuu600, bb), app(ty_[], bb)) 25.69/9.75 new_ltEs23(xuu115, xuu117, app(app(ty_@2, ehb), ehc)) -> new_ltEs10(xuu115, xuu117, ehb, ehc) 25.69/9.75 new_compare14(Integer(xuu3110000), Integer(xuu6000)) -> new_primCmpInt(xuu3110000, xuu6000) 25.69/9.75 new_ltEs23(xuu115, xuu117, app(app(ty_Either, egc), egd)) -> new_ltEs12(xuu115, xuu117, egc, egd) 25.69/9.75 new_lt23(xuu102, xuu105, ty_@0) -> new_lt18(xuu102, xuu105) 25.69/9.75 new_primCmpInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> LT 25.69/9.75 new_esEs29(xuu470, xuu480, app(ty_[], bbc)) -> new_esEs12(xuu470, xuu480, bbc) 25.69/9.75 new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_Either, dcc), dcd)) -> new_compare18(xuu37, xuu38, dcc, dcd) 25.69/9.75 new_esEs33(xuu31100001, xuu60001, ty_Bool) -> new_esEs20(xuu31100001, xuu60001) 25.69/9.75 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.75 new_esEs5(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.75 new_esEs6(xuu3110000, xuu6000, app(app(app(ty_@3, fab), fac), fad)) -> new_esEs17(xuu3110000, xuu6000, fab, fac, fad) 25.69/9.75 new_esEs30(xuu470, xuu480, ty_Int) -> new_esEs19(xuu470, xuu480) 25.69/9.75 new_compare13(EQ, GT) -> LT 25.69/9.75 new_compare24(xuu114, xuu115, xuu116, xuu117, False, eeg, eeh) -> new_compare111(xuu114, xuu115, xuu116, xuu117, new_lt21(xuu114, xuu116, eeg), new_asAs(new_esEs37(xuu114, xuu116, eeg), new_ltEs23(xuu115, xuu117, eeh)), eeg, eeh) 25.69/9.75 new_ltEs22(xuu47, xuu48, ty_Bool) -> new_ltEs16(xuu47, xuu48) 25.69/9.75 new_esEs35(xuu31100001, xuu60001, ty_Ordering) -> new_esEs26(xuu31100001, xuu60001) 25.69/9.75 new_ltEs12(Right(xuu470), Right(xuu480), bee, ty_Int) -> new_ltEs9(xuu470, xuu480) 25.69/9.75 new_esEs8(xuu3110002, xuu6002, app(ty_[], fdd)) -> new_esEs12(xuu3110002, xuu6002, fdd) 25.69/9.75 new_esEs12(:(xuu31100000, xuu31100001), [], be) -> False 25.69/9.75 new_esEs12([], :(xuu60000, xuu60001), be) -> False 25.69/9.75 new_primCmpInt(Pos(Zero), Neg(Succ(xuu60000))) -> GT 25.69/9.75 new_ltEs15(Just(xuu470), Just(xuu480), app(app(app(ty_@3, dbb), dbc), dbd)) -> new_ltEs13(xuu470, xuu480, dbb, dbc, dbd) 25.69/9.75 new_esEs10(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.75 new_compare5(xuu311000, xuu600, ty_Int) -> new_compare15(xuu311000, xuu600) 25.69/9.75 new_compare111(xuu188, xuu189, xuu190, xuu191, False, xuu193, ehf, ehg) -> new_compare112(xuu188, xuu189, xuu190, xuu191, xuu193, ehf, ehg) 25.69/9.75 new_compare29(True, True) -> EQ 25.69/9.75 new_esEs33(xuu31100001, xuu60001, ty_Float) -> new_esEs18(xuu31100001, xuu60001) 25.69/9.75 new_ltEs21(xuu76, xuu77, app(app(app(ty_@3, cgg), cgh), cha)) -> new_ltEs13(xuu76, xuu77, cgg, cgh, cha) 25.69/9.75 new_esEs37(xuu114, xuu116, app(app(ty_Either, efa), efb)) -> new_esEs21(xuu114, xuu116, efa, efb) 25.69/9.75 new_primCmpInt(Neg(Succ(xuu31100000)), Neg(xuu6000)) -> new_primCmpNat0(xuu6000, Succ(xuu31100000)) 25.69/9.75 new_esEs36(xuu31100002, xuu60002, ty_Double) -> new_esEs22(xuu31100002, xuu60002) 25.69/9.75 new_ltEs20(xuu54, xuu55, ty_@0) -> new_ltEs18(xuu54, xuu55) 25.69/9.75 new_esEs33(xuu31100001, xuu60001, app(app(ty_@2, dfc), dfd)) -> new_esEs16(xuu31100001, xuu60001, dfc, dfd) 25.69/9.75 new_ltEs22(xuu47, xuu48, ty_Integer) -> new_ltEs7(xuu47, xuu48) 25.69/9.75 new_esEs9(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.75 new_esEs5(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.75 new_primEqInt(Pos(Succ(xuu311000000)), Pos(Zero)) -> False 25.69/9.75 new_primEqInt(Pos(Zero), Pos(Succ(xuu600000))) -> False 25.69/9.75 new_esEs7(xuu3110001, xuu6001, ty_Int) -> new_esEs19(xuu3110001, xuu6001) 25.69/9.75 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.75 new_ltEs11(xuu471, xuu481, ty_Double) -> new_ltEs6(xuu471, xuu481) 25.69/9.75 new_lt21(xuu114, xuu116, app(app(ty_@2, efh), ega)) -> new_lt5(xuu114, xuu116, efh, ega) 25.69/9.75 new_ltEs17(xuu47, xuu48) -> new_fsEs(new_compare30(xuu47, xuu48)) 25.69/9.75 new_ltEs24(xuu103, xuu106, ty_Float) -> new_ltEs5(xuu103, xuu106) 25.69/9.75 new_primCompAux00(xuu37, xuu38, EQ, app(ty_[], dch)) -> new_compare6(xuu37, xuu38, dch) 25.69/9.75 new_lt23(xuu102, xuu105, app(ty_Ratio, fgf)) -> new_lt4(xuu102, xuu105, fgf) 25.69/9.75 new_esEs37(xuu114, xuu116, app(ty_Ratio, egb)) -> new_esEs23(xuu114, xuu116, egb) 25.69/9.75 new_compare6(:(xuu3110000, xuu3110001), [], dab) -> GT 25.69/9.75 new_esEs37(xuu114, xuu116, app(app(app(ty_@3, efc), efd), efe)) -> new_esEs17(xuu114, xuu116, efc, efd, efe) 25.69/9.75 new_esEs39(xuu102, xuu105, app(ty_Maybe, fgc)) -> new_esEs25(xuu102, xuu105, fgc) 25.69/9.75 new_ltEs8(xuu47, xuu48, ea) -> new_fsEs(new_compare8(xuu47, xuu48, ea)) 25.69/9.75 new_lt21(xuu114, xuu116, app(app(ty_Either, efa), efb)) -> new_lt9(xuu114, xuu116, efa, efb) 25.69/9.75 new_ltEs20(xuu54, xuu55, ty_Ordering) -> new_ltEs14(xuu54, xuu55) 25.69/9.75 new_ltEs20(xuu54, xuu55, app(app(ty_@2, cdb), cdc)) -> new_ltEs10(xuu54, xuu55, cdb, cdc) 25.69/9.75 new_esEs30(xuu470, xuu480, ty_Ordering) -> new_esEs26(xuu470, xuu480) 25.69/9.75 new_primCmpNat0(Zero, Zero) -> EQ 25.69/9.75 new_esEs35(xuu31100001, xuu60001, ty_Int) -> new_esEs19(xuu31100001, xuu60001) 25.69/9.75 new_ltEs15(Just(xuu470), Just(xuu480), ty_Double) -> new_ltEs6(xuu470, xuu480) 25.69/9.75 new_ltEs12(Right(xuu470), Right(xuu480), bee, ty_Integer) -> new_ltEs7(xuu470, xuu480) 25.69/9.75 new_ltEs22(xuu47, xuu48, ty_Int) -> new_ltEs9(xuu47, xuu48) 25.69/9.75 new_esEs21(Left(xuu31100000), Left(xuu60000), app(app(app(ty_@3, dgg), dgh), dha), cee) -> new_esEs17(xuu31100000, xuu60000, dgg, dgh, dha) 25.69/9.75 new_ltEs21(xuu76, xuu77, ty_Double) -> new_ltEs6(xuu76, xuu77) 25.69/9.75 new_lt23(xuu102, xuu105, app(ty_[], fgb)) -> new_lt7(xuu102, xuu105, fgb) 25.69/9.75 new_compare13(LT, EQ) -> LT 25.69/9.75 new_ltEs19(xuu472, xuu482, app(app(app(ty_@3, cba), cbb), cbc)) -> new_ltEs13(xuu472, xuu482, cba, cbb, cbc) 25.69/9.75 new_esEs5(xuu3110000, xuu6000, app(app(ty_@2, ceg), ceh)) -> new_esEs16(xuu3110000, xuu6000, ceg, ceh) 25.69/9.75 new_esEs36(xuu31100002, xuu60002, ty_Char) -> new_esEs15(xuu31100002, xuu60002) 25.69/9.75 new_esEs38(xuu101, xuu104, ty_Float) -> new_esEs18(xuu101, xuu104) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, ty_Integer) -> new_esEs24(xuu3110001, xuu6001) 25.69/9.75 new_lt19(xuu470, xuu480, ty_Double) -> new_lt12(xuu470, xuu480) 25.69/9.75 new_esEs4(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.75 new_esEs34(xuu31100000, xuu60000, app(ty_Maybe, ecb)) -> new_esEs25(xuu31100000, xuu60000, ecb) 25.69/9.75 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.75 new_esEs5(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.75 new_lt12(xuu101, xuu104) -> new_esEs26(new_compare10(xuu101, xuu104), LT) 25.69/9.75 new_ltEs20(xuu54, xuu55, app(ty_Ratio, cdd)) -> new_ltEs8(xuu54, xuu55, cdd) 25.69/9.75 new_lt22(xuu101, xuu104, ty_Char) -> new_lt17(xuu101, xuu104) 25.69/9.75 new_esEs20(False, True) -> False 25.69/9.75 new_esEs20(True, False) -> False 25.69/9.75 new_ltEs13(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), bfh, bga, bgb) -> new_pePe(new_lt19(xuu470, xuu480, bfh), new_asAs(new_esEs30(xuu470, xuu480, bfh), new_pePe(new_lt20(xuu471, xuu481, bga), new_asAs(new_esEs31(xuu471, xuu481, bga), new_ltEs19(xuu472, xuu482, bgb))))) 25.69/9.75 new_primCompAux00(xuu37, xuu38, EQ, ty_Int) -> new_compare15(xuu37, xuu38) 25.69/9.75 new_lt20(xuu471, xuu481, ty_Integer) -> new_lt13(xuu471, xuu481) 25.69/9.75 new_esEs32(xuu31100000, xuu60000, ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.75 new_lt19(xuu470, xuu480, app(app(ty_@2, bhb), bhc)) -> new_lt5(xuu470, xuu480, bhb, bhc) 25.69/9.75 new_esEs13(xuu31100000, xuu60000, ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.75 new_esEs37(xuu114, xuu116, ty_@0) -> new_esEs14(xuu114, xuu116) 25.69/9.75 new_ltEs14(EQ, LT) -> False 25.69/9.75 new_compare110(xuu133, xuu134, True, fdf, fdg) -> LT 25.69/9.75 new_esEs39(xuu102, xuu105, app(ty_[], fgb)) -> new_esEs12(xuu102, xuu105, fgb) 25.69/9.75 new_ltEs24(xuu103, xuu106, ty_Char) -> new_ltEs17(xuu103, xuu106) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, ty_Double) -> new_esEs22(xuu3110001, xuu6001) 25.69/9.75 new_esEs29(xuu470, xuu480, app(ty_Maybe, bbd)) -> new_esEs25(xuu470, xuu480, bbd) 25.69/9.75 new_esEs25(Just(xuu31100000), Just(xuu60000), app(ty_Maybe, ffa)) -> new_esEs25(xuu31100000, xuu60000, ffa) 25.69/9.75 new_compare5(xuu311000, xuu600, app(app(ty_Either, cde), cdf)) -> new_compare18(xuu311000, xuu600, cde, cdf) 25.69/9.75 new_esEs13(xuu31100000, xuu60000, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.75 new_esEs19(xuu3110000, xuu6000) -> new_primEqInt(xuu3110000, xuu6000) 25.69/9.75 new_compare8(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ty_Integer) -> new_compare14(new_sr0(xuu3110000, xuu6001), new_sr0(xuu6000, xuu3110001)) 25.69/9.75 new_esEs32(xuu31100000, xuu60000, app(app(ty_Either, def), deg)) -> new_esEs21(xuu31100000, xuu60000, def, deg) 25.69/9.75 new_esEs36(xuu31100002, xuu60002, app(ty_[], eee)) -> new_esEs12(xuu31100002, xuu60002, eee) 25.69/9.75 new_ltEs23(xuu115, xuu117, app(ty_[], egh)) -> new_ltEs4(xuu115, xuu117, egh) 25.69/9.75 new_primCmpNat0(Succ(xuu31100000), Zero) -> GT 25.69/9.75 new_ltEs19(xuu472, xuu482, ty_Double) -> new_ltEs6(xuu472, xuu482) 25.69/9.75 new_compare16(Just(xuu3110000), Nothing, ha) -> GT 25.69/9.75 new_esEs31(xuu471, xuu481, ty_Integer) -> new_esEs24(xuu471, xuu481) 25.69/9.75 new_pePe(False, xuu210) -> xuu210 25.69/9.75 new_esEs20(False, False) -> True 25.69/9.75 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.75 new_ltEs10(@2(xuu470, xuu471), @2(xuu480, xuu481), bad, bae) -> new_pePe(new_lt8(xuu470, xuu480, bad), new_asAs(new_esEs29(xuu470, xuu480, bad), new_ltEs11(xuu471, xuu481, bae))) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, app(app(ty_@2, fg), fh)) -> new_esEs16(xuu3110001, xuu6001, fg, fh) 25.69/9.75 new_compare28(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), chg, chh, daa) -> new_compare210(xuu3110000, xuu3110001, xuu3110002, xuu6000, xuu6001, xuu6002, new_asAs(new_esEs6(xuu3110000, xuu6000, chg), new_asAs(new_esEs7(xuu3110001, xuu6001, chh), new_esEs8(xuu3110002, xuu6002, daa))), chg, chh, daa) 25.69/9.75 new_compare5(xuu311000, xuu600, ty_Ordering) -> new_compare13(xuu311000, xuu600) 25.69/9.75 new_lt22(xuu101, xuu104, app(ty_Maybe, cgc)) -> new_lt15(xuu101, xuu104, cgc) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, ty_Float) -> new_esEs18(xuu3110001, xuu6001) 25.69/9.75 new_compare11(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, xuu180, de, df, dg) -> new_compare12(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, de, df, dg) 25.69/9.75 new_esEs34(xuu31100000, xuu60000, app(ty_Ratio, ebh)) -> new_esEs23(xuu31100000, xuu60000, ebh) 25.69/9.75 new_compare6(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), dab) -> new_primCompAux1(xuu3110000, xuu6000, xuu3110001, xuu6001, dab) 25.69/9.75 new_esEs32(xuu31100000, xuu60000, app(app(app(ty_@3, dec), ded), dee)) -> new_esEs17(xuu31100000, xuu60000, dec, ded, dee) 25.69/9.75 new_compare16(Nothing, Nothing, ha) -> EQ 25.69/9.75 new_lt21(xuu114, xuu116, ty_Double) -> new_lt12(xuu114, xuu116) 25.69/9.75 new_primEqInt(Pos(Zero), Neg(Succ(xuu600000))) -> False 25.69/9.75 new_primEqInt(Neg(Zero), Pos(Succ(xuu600000))) -> False 25.69/9.75 new_esEs5(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.75 new_esEs7(xuu3110001, xuu6001, ty_Ordering) -> new_esEs26(xuu3110001, xuu6001) 25.69/9.75 new_compare19(xuu154, xuu155, True, ehe) -> LT 25.69/9.75 new_lt23(xuu102, xuu105, ty_Ordering) -> new_lt6(xuu102, xuu105) 25.69/9.75 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, app(ty_Ratio, eaf)) -> new_esEs23(xuu31100000, xuu60000, eaf) 25.69/9.75 new_esEs4(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.75 new_esEs34(xuu31100000, xuu60000, app(ty_[], eca)) -> new_esEs12(xuu31100000, xuu60000, eca) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, app(ty_[], gg)) -> new_esEs12(xuu3110001, xuu6001, gg) 25.69/9.75 new_compare111(xuu188, xuu189, xuu190, xuu191, True, xuu193, ehf, ehg) -> new_compare112(xuu188, xuu189, xuu190, xuu191, True, ehf, ehg) 25.69/9.75 new_ltEs12(Left(xuu470), Left(xuu480), app(app(ty_Either, bdb), bdc), bdd) -> new_ltEs12(xuu470, xuu480, bdb, bdc) 25.69/9.75 new_ltEs15(Nothing, Nothing, dag) -> True 25.69/9.75 new_primCompAux00(xuu37, xuu38, EQ, ty_@0) -> new_compare31(xuu37, xuu38) 25.69/9.75 new_ltEs14(GT, EQ) -> False 25.69/9.75 new_lt22(xuu101, xuu104, app(app(app(ty_@3, dad), dae), daf)) -> new_lt11(xuu101, xuu104, dad, dae, daf) 25.69/9.75 new_ltEs15(Just(xuu470), Nothing, dag) -> False 25.69/9.75 new_esEs6(xuu3110000, xuu6000, app(ty_Maybe, fba)) -> new_esEs25(xuu3110000, xuu6000, fba) 25.69/9.75 new_lt22(xuu101, xuu104, ty_Bool) -> new_lt16(xuu101, xuu104) 25.69/9.75 new_ltEs12(Left(xuu470), Left(xuu480), ty_Integer, bdd) -> new_ltEs7(xuu470, xuu480) 25.69/9.75 new_esEs36(xuu31100002, xuu60002, ty_Float) -> new_esEs18(xuu31100002, xuu60002) 25.69/9.75 new_esEs8(xuu3110002, xuu6002, ty_Double) -> new_esEs22(xuu3110002, xuu6002) 25.69/9.75 new_esEs29(xuu470, xuu480, ty_Double) -> new_esEs22(xuu470, xuu480) 25.69/9.75 new_esEs13(xuu31100000, xuu60000, ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.75 new_esEs4(xuu3110000, xuu6000, app(app(ty_Either, ced), cee)) -> new_esEs21(xuu3110000, xuu6000, ced, cee) 25.69/9.75 new_ltEs12(Left(xuu470), Left(xuu480), ty_Ordering, bdd) -> new_ltEs14(xuu470, xuu480) 25.69/9.75 new_esEs9(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.75 new_esEs6(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.75 new_ltEs24(xuu103, xuu106, ty_Int) -> new_ltEs9(xuu103, xuu106) 25.69/9.75 new_esEs38(xuu101, xuu104, ty_Char) -> new_esEs15(xuu101, xuu104) 25.69/9.75 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.75 new_esEs31(xuu471, xuu481, app(ty_Maybe, cac)) -> new_esEs25(xuu471, xuu481, cac) 25.69/9.75 new_ltEs12(Right(xuu470), Right(xuu480), bee, app(app(ty_@2, bfe), bff)) -> new_ltEs10(xuu470, xuu480, bfe, bff) 25.69/9.75 new_ltEs21(xuu76, xuu77, app(ty_Maybe, chc)) -> new_ltEs15(xuu76, xuu77, chc) 25.69/9.75 new_esEs33(xuu31100001, xuu60001, ty_Integer) -> new_esEs24(xuu31100001, xuu60001) 25.69/9.75 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.75 new_lt19(xuu470, xuu480, app(app(ty_Either, bgc), bgd)) -> new_lt9(xuu470, xuu480, bgc, bgd) 25.69/9.75 new_ltEs19(xuu472, xuu482, ty_Char) -> new_ltEs17(xuu472, xuu482) 25.69/9.75 new_ltEs12(Left(xuu470), Left(xuu480), ty_Bool, bdd) -> new_ltEs16(xuu470, xuu480) 25.69/9.75 new_esEs28(xuu31100001, xuu60001, ty_Int) -> new_esEs19(xuu31100001, xuu60001) 25.69/9.75 new_esEs26(GT, GT) -> True 25.69/9.75 new_lt8(xuu470, xuu480, ty_Double) -> new_lt12(xuu470, xuu480) 25.69/9.75 new_lt23(xuu102, xuu105, ty_Integer) -> new_lt13(xuu102, xuu105) 25.69/9.75 new_esEs38(xuu101, xuu104, ty_Bool) -> new_esEs20(xuu101, xuu104) 25.69/9.75 new_esEs8(xuu3110002, xuu6002, app(ty_Maybe, fde)) -> new_esEs25(xuu3110002, xuu6002, fde) 25.69/9.75 new_compare17(xuu140, xuu141, True, dde, ddf) -> LT 25.69/9.75 new_compare5(xuu311000, xuu600, ty_@0) -> new_compare31(xuu311000, xuu600) 25.69/9.75 new_esEs31(xuu471, xuu481, app(app(ty_@2, cad), cae)) -> new_esEs16(xuu471, xuu481, cad, cae) 25.69/9.75 new_esEs6(xuu3110000, xuu6000, app(app(ty_Either, fae), faf)) -> new_esEs21(xuu3110000, xuu6000, fae, faf) 25.69/9.75 new_ltEs22(xuu47, xuu48, ty_Char) -> new_ltEs17(xuu47, xuu48) 25.69/9.75 new_esEs8(xuu3110002, xuu6002, ty_Integer) -> new_esEs24(xuu3110002, xuu6002) 25.69/9.75 new_compare18(Left(xuu3110000), Right(xuu6000), cde, cdf) -> LT 25.69/9.75 new_compare8(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ty_Int) -> new_compare15(new_sr(xuu3110000, xuu6001), new_sr(xuu6000, xuu3110001)) 25.69/9.75 new_lt8(xuu470, xuu480, app(ty_Maybe, bbd)) -> new_lt15(xuu470, xuu480, bbd) 25.69/9.75 new_esEs30(xuu470, xuu480, ty_@0) -> new_esEs14(xuu470, xuu480) 25.69/9.75 new_compare5(xuu311000, xuu600, ty_Bool) -> new_compare29(xuu311000, xuu600) 25.69/9.75 new_lt22(xuu101, xuu104, ty_Integer) -> new_lt13(xuu101, xuu104) 25.69/9.75 new_esEs12(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), be) -> new_asAs(new_esEs13(xuu31100000, xuu60000, be), new_esEs12(xuu31100001, xuu60001, be)) 25.69/9.75 new_esEs4(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.75 new_esEs31(xuu471, xuu481, ty_Double) -> new_esEs22(xuu471, xuu481) 25.69/9.75 new_esEs7(xuu3110001, xuu6001, ty_Integer) -> new_esEs24(xuu3110001, xuu6001) 25.69/9.75 new_esEs29(xuu470, xuu480, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs17(xuu470, xuu480, bah, bba, bbb) 25.69/9.75 new_esEs38(xuu101, xuu104, ty_Int) -> new_esEs19(xuu101, xuu104) 25.69/9.75 new_primMulInt(Neg(xuu60000), Neg(xuu31100010)) -> Pos(new_primMulNat0(xuu60000, xuu31100010)) 25.69/9.75 new_primCmpInt(Pos(Zero), Pos(Succ(xuu60000))) -> new_primCmpNat0(Zero, Succ(xuu60000)) 25.69/9.75 new_ltEs20(xuu54, xuu55, ty_Bool) -> new_ltEs16(xuu54, xuu55) 25.69/9.75 new_ltEs23(xuu115, xuu117, ty_@0) -> new_ltEs18(xuu115, xuu117) 25.69/9.75 new_ltEs23(xuu115, xuu117, app(ty_Ratio, ehd)) -> new_ltEs8(xuu115, xuu117, ehd) 25.69/9.75 new_ltEs19(xuu472, xuu482, app(ty_Maybe, cbe)) -> new_ltEs15(xuu472, xuu482, cbe) 25.69/9.75 new_fsEs(xuu205) -> new_not(new_esEs26(xuu205, GT)) 25.69/9.75 new_ltEs21(xuu76, xuu77, ty_Char) -> new_ltEs17(xuu76, xuu77) 25.69/9.75 new_esEs35(xuu31100001, xuu60001, ty_Float) -> new_esEs18(xuu31100001, xuu60001) 25.69/9.75 new_ltEs15(Just(xuu470), Just(xuu480), app(ty_Maybe, dbf)) -> new_ltEs15(xuu470, xuu480, dbf) 25.69/9.75 new_esEs7(xuu3110001, xuu6001, app(app(ty_@2, fbb), fbc)) -> new_esEs16(xuu3110001, xuu6001, fbb, fbc) 25.69/9.75 new_ltEs15(Just(xuu470), Just(xuu480), ty_Float) -> new_ltEs5(xuu470, xuu480) 25.69/9.75 new_ltEs19(xuu472, xuu482, ty_Float) -> new_ltEs5(xuu472, xuu482) 25.69/9.75 new_esEs32(xuu31100000, xuu60000, ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.75 new_ltEs14(GT, LT) -> False 25.69/9.75 new_ltEs24(xuu103, xuu106, ty_Integer) -> new_ltEs7(xuu103, xuu106) 25.69/9.75 new_esEs7(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) 25.69/9.75 new_esEs38(xuu101, xuu104, ty_Double) -> new_esEs22(xuu101, xuu104) 25.69/9.75 new_esEs35(xuu31100001, xuu60001, app(app(ty_@2, ecc), ecd)) -> new_esEs16(xuu31100001, xuu60001, ecc, ecd) 25.69/9.75 new_ltEs23(xuu115, xuu117, app(app(app(ty_@3, ege), egf), egg)) -> new_ltEs13(xuu115, xuu117, ege, egf, egg) 25.69/9.75 new_lt8(xuu470, xuu480, app(app(app(ty_@3, bah), bba), bbb)) -> new_lt11(xuu470, xuu480, bah, bba, bbb) 25.69/9.75 new_ltEs12(Right(xuu470), Right(xuu480), bee, app(app(ty_Either, bef), beg)) -> new_ltEs12(xuu470, xuu480, bef, beg) 25.69/9.75 new_primMulInt(Pos(xuu60000), Neg(xuu31100010)) -> Neg(new_primMulNat0(xuu60000, xuu31100010)) 25.69/9.75 new_primMulInt(Neg(xuu60000), Pos(xuu31100010)) -> Neg(new_primMulNat0(xuu60000, xuu31100010)) 25.69/9.75 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, app(ty_Maybe, eah)) -> new_esEs25(xuu31100000, xuu60000, eah) 25.69/9.75 new_ltEs12(Right(xuu470), Left(xuu480), bee, bdd) -> False 25.69/9.75 new_ltEs19(xuu472, xuu482, ty_Int) -> new_ltEs9(xuu472, xuu482) 25.69/9.75 new_esEs8(xuu3110002, xuu6002, ty_Bool) -> new_esEs20(xuu3110002, xuu6002) 25.69/9.75 new_esEs30(xuu470, xuu480, ty_Integer) -> new_esEs24(xuu470, xuu480) 25.69/9.75 new_lt18(xuu101, xuu104) -> new_esEs26(new_compare31(xuu101, xuu104), LT) 25.69/9.75 new_esEs8(xuu3110002, xuu6002, app(app(app(ty_@3, fcf), fcg), fch)) -> new_esEs17(xuu3110002, xuu6002, fcf, fcg, fch) 25.69/9.75 new_esEs13(xuu31100000, xuu60000, ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.75 new_sr0(Integer(xuu60000), Integer(xuu31100010)) -> Integer(new_primMulInt(xuu60000, xuu31100010)) 25.69/9.75 new_esEs25(Just(xuu31100000), Just(xuu60000), app(ty_Ratio, feg)) -> new_esEs23(xuu31100000, xuu60000, feg) 25.69/9.75 new_esEs8(xuu3110002, xuu6002, app(ty_Ratio, fdc)) -> new_esEs23(xuu3110002, xuu6002, fdc) 25.69/9.75 new_lt20(xuu471, xuu481, app(ty_[], cab)) -> new_lt7(xuu471, xuu481, cab) 25.69/9.75 new_esEs10(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.75 new_lt19(xuu470, xuu480, app(ty_Ratio, bhd)) -> new_lt4(xuu470, xuu480, bhd) 25.69/9.75 new_esEs4(xuu3110000, xuu6000, app(ty_Ratio, dd)) -> new_esEs23(xuu3110000, xuu6000, dd) 25.69/9.75 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Double, cee) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.75 new_compare10(Double(xuu3110000, Pos(xuu31100010)), Double(xuu6000, Pos(xuu60010))) -> new_compare15(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) 25.69/9.75 new_lt20(xuu471, xuu481, ty_Int) -> new_lt10(xuu471, xuu481) 25.69/9.75 new_ltEs21(xuu76, xuu77, app(app(ty_Either, cge), cgf)) -> new_ltEs12(xuu76, xuu77, cge, cgf) 25.69/9.75 new_lt22(xuu101, xuu104, ty_Double) -> new_lt12(xuu101, xuu104) 25.69/9.75 new_asAs(True, xuu149) -> xuu149 25.69/9.75 new_lt8(xuu470, xuu480, app(ty_Ratio, bbg)) -> new_lt4(xuu470, xuu480, bbg) 25.69/9.75 new_lt20(xuu471, xuu481, app(ty_Ratio, caf)) -> new_lt4(xuu471, xuu481, caf) 25.69/9.75 new_esEs4(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.75 new_ltEs22(xuu47, xuu48, ty_Ordering) -> new_ltEs14(xuu47, xuu48) 25.69/9.75 new_lt19(xuu470, xuu480, app(ty_[], bgh)) -> new_lt7(xuu470, xuu480, bgh) 25.69/9.75 new_esEs5(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.75 new_ltEs24(xuu103, xuu106, ty_Bool) -> new_ltEs16(xuu103, xuu106) 25.69/9.75 new_ltEs21(xuu76, xuu77, ty_Float) -> new_ltEs5(xuu76, xuu77) 25.69/9.75 new_esEs31(xuu471, xuu481, ty_Float) -> new_esEs18(xuu471, xuu481) 25.69/9.75 new_esEs10(xuu3110000, xuu6000, app(app(ty_@2, ed), ee)) -> new_esEs16(xuu3110000, xuu6000, ed, ee) 25.69/9.75 new_ltEs9(xuu47, xuu48) -> new_fsEs(new_compare15(xuu47, xuu48)) 25.69/9.75 new_compare16(Just(xuu3110000), Just(xuu6000), ha) -> new_compare25(xuu3110000, xuu6000, new_esEs9(xuu3110000, xuu6000, ha), ha) 25.69/9.75 new_primPlusNat1(xuu222, xuu311000100) -> new_primPlusNat0(xuu222, Succ(xuu311000100)) 25.69/9.75 new_lt19(xuu470, xuu480, ty_Int) -> new_lt10(xuu470, xuu480) 25.69/9.75 new_ltEs15(Just(xuu470), Just(xuu480), ty_Char) -> new_ltEs17(xuu470, xuu480) 25.69/9.75 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, app(app(ty_Either, ead), eae)) -> new_esEs21(xuu31100000, xuu60000, ead, eae) 25.69/9.75 new_ltEs22(xuu47, xuu48, app(ty_Ratio, ea)) -> new_ltEs8(xuu47, xuu48, ea) 25.69/9.75 new_sr(xuu6000, xuu3110001) -> new_primMulInt(xuu6000, xuu3110001) 25.69/9.75 new_esEs8(xuu3110002, xuu6002, ty_Char) -> new_esEs15(xuu3110002, xuu6002) 25.69/9.75 new_esEs29(xuu470, xuu480, ty_Integer) -> new_esEs24(xuu470, xuu480) 25.69/9.75 new_ltEs11(xuu471, xuu481, app(ty_[], bce)) -> new_ltEs4(xuu471, xuu481, bce) 25.69/9.75 new_primMulNat0(Zero, Zero) -> Zero 25.69/9.75 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, app(ty_[], eag)) -> new_esEs12(xuu31100000, xuu60000, eag) 25.69/9.75 new_esEs21(Left(xuu31100000), Left(xuu60000), app(app(ty_Either, dhb), dhc), cee) -> new_esEs21(xuu31100000, xuu60000, dhb, dhc) 25.69/9.75 new_ltEs20(xuu54, xuu55, ty_Integer) -> new_ltEs7(xuu54, xuu55) 25.69/9.75 new_lt10(xuu101, xuu104) -> new_esEs26(new_compare15(xuu101, xuu104), LT) 25.69/9.75 new_ltEs21(xuu76, xuu77, app(ty_Ratio, chf)) -> new_ltEs8(xuu76, xuu77, chf) 25.69/9.75 new_esEs4(xuu3110000, xuu6000, app(app(ty_@2, cdg), cdh)) -> new_esEs16(xuu3110000, xuu6000, cdg, cdh) 25.69/9.75 new_esEs7(xuu3110001, xuu6001, ty_Char) -> new_esEs15(xuu3110001, xuu6001) 25.69/9.75 new_esEs33(xuu31100001, xuu60001, ty_Double) -> new_esEs22(xuu31100001, xuu60001) 25.69/9.75 new_ltEs22(xuu47, xuu48, ty_Float) -> new_ltEs5(xuu47, xuu48) 25.69/9.75 new_ltEs15(Just(xuu470), Just(xuu480), app(app(ty_@2, dbg), dbh)) -> new_ltEs10(xuu470, xuu480, dbg, dbh) 25.69/9.75 new_ltEs21(xuu76, xuu77, ty_Ordering) -> new_ltEs14(xuu76, xuu77) 25.69/9.75 new_esEs21(Left(xuu31100000), Left(xuu60000), app(ty_[], dhe), cee) -> new_esEs12(xuu31100000, xuu60000, dhe) 25.69/9.75 new_esEs28(xuu31100001, xuu60001, ty_Integer) -> new_esEs24(xuu31100001, xuu60001) 25.69/9.75 new_esEs39(xuu102, xuu105, app(app(ty_@2, fgd), fge)) -> new_esEs16(xuu102, xuu105, fgd, fge) 25.69/9.75 new_esEs25(Just(xuu31100000), Just(xuu60000), app(app(ty_@2, fdh), fea)) -> new_esEs16(xuu31100000, xuu60000, fdh, fea) 25.69/9.75 new_esEs39(xuu102, xuu105, app(ty_Ratio, fgf)) -> new_esEs23(xuu102, xuu105, fgf) 25.69/9.75 new_ltEs23(xuu115, xuu117, app(ty_Maybe, eha)) -> new_ltEs15(xuu115, xuu117, eha) 25.69/9.75 new_ltEs19(xuu472, xuu482, app(app(ty_Either, cag), cah)) -> new_ltEs12(xuu472, xuu482, cag, cah) 25.69/9.75 new_esEs7(xuu3110001, xuu6001, app(app(ty_Either, fbg), fbh)) -> new_esEs21(xuu3110001, xuu6001, fbg, fbh) 25.69/9.75 new_lt21(xuu114, xuu116, app(ty_Ratio, egb)) -> new_lt4(xuu114, xuu116, egb) 25.69/9.75 new_compare5(xuu311000, xuu600, ty_Double) -> new_compare10(xuu311000, xuu600) 25.69/9.75 new_esEs9(xuu3110000, xuu6000, app(app(app(ty_@3, hd), he), hf)) -> new_esEs17(xuu3110000, xuu6000, hd, he, hf) 25.69/9.75 new_lt17(xuu101, xuu104) -> new_esEs26(new_compare30(xuu101, xuu104), LT) 25.69/9.75 new_ltEs22(xuu47, xuu48, app(ty_Maybe, dag)) -> new_ltEs15(xuu47, xuu48, dag) 25.69/9.75 new_primCompAux00(xuu37, xuu38, EQ, app(app(app(ty_@3, dce), dcf), dcg)) -> new_compare28(xuu37, xuu38, dce, dcf, dcg) 25.69/9.75 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.75 new_primEqInt(Neg(Succ(xuu311000000)), Neg(Zero)) -> False 25.69/9.75 new_primEqInt(Neg(Zero), Neg(Succ(xuu600000))) -> False 25.69/9.75 new_esEs9(xuu3110000, xuu6000, app(ty_Ratio, baa)) -> new_esEs23(xuu3110000, xuu6000, baa) 25.69/9.75 new_ltEs20(xuu54, xuu55, app(app(ty_Either, ccc), ccd)) -> new_ltEs12(xuu54, xuu55, ccc, ccd) 25.69/9.75 new_esEs33(xuu31100001, xuu60001, app(ty_[], dgc)) -> new_esEs12(xuu31100001, xuu60001, dgc) 25.69/9.75 new_primEqInt(Pos(Succ(xuu311000000)), Pos(Succ(xuu600000))) -> new_primEqNat0(xuu311000000, xuu600000) 25.69/9.75 new_lt8(xuu470, xuu480, ty_Int) -> new_lt10(xuu470, xuu480) 25.69/9.75 new_primCompAux00(xuu37, xuu38, EQ, ty_Bool) -> new_compare29(xuu37, xuu38) 25.69/9.75 new_compare19(xuu154, xuu155, False, ehe) -> GT 25.69/9.75 new_esEs8(xuu3110002, xuu6002, app(app(ty_Either, fda), fdb)) -> new_esEs21(xuu3110002, xuu6002, fda, fdb) 25.69/9.75 new_esEs34(xuu31100000, xuu60000, app(app(ty_@2, eba), ebb)) -> new_esEs16(xuu31100000, xuu60000, eba, ebb) 25.69/9.75 new_primEqInt(Pos(Succ(xuu311000000)), Neg(xuu60000)) -> False 25.69/9.75 new_primEqInt(Neg(Succ(xuu311000000)), Pos(xuu60000)) -> False 25.69/9.75 new_esEs34(xuu31100000, xuu60000, ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.75 new_primCmpInt(Neg(Zero), Neg(Succ(xuu60000))) -> new_primCmpNat0(Succ(xuu60000), Zero) 25.69/9.75 new_lt8(xuu470, xuu480, app(ty_[], bbc)) -> new_lt7(xuu470, xuu480, bbc) 25.69/9.75 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.69/9.75 new_esEs6(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.75 new_esEs16(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), cdg, cdh) -> new_asAs(new_esEs32(xuu31100000, xuu60000, cdg), new_esEs33(xuu31100001, xuu60001, cdh)) 25.69/9.75 new_ltEs15(Just(xuu470), Just(xuu480), ty_@0) -> new_ltEs18(xuu470, xuu480) 25.69/9.75 new_primCompAux00(xuu37, xuu38, LT, dcb) -> LT 25.69/9.75 new_esEs7(xuu3110001, xuu6001, ty_Bool) -> new_esEs20(xuu3110001, xuu6001) 25.69/9.75 new_esEs39(xuu102, xuu105, ty_Double) -> new_esEs22(xuu102, xuu105) 25.69/9.75 new_ltEs24(xuu103, xuu106, app(app(ty_Either, fgg), fgh)) -> new_ltEs12(xuu103, xuu106, fgg, fgh) 25.69/9.75 new_esEs7(xuu3110001, xuu6001, app(ty_Ratio, fca)) -> new_esEs23(xuu3110001, xuu6001, fca) 25.69/9.75 new_esEs37(xuu114, xuu116, ty_Double) -> new_esEs22(xuu114, xuu116) 25.69/9.75 new_ltEs19(xuu472, xuu482, app(ty_Ratio, cbh)) -> new_ltEs8(xuu472, xuu482, cbh) 25.69/9.75 new_esEs13(xuu31100000, xuu60000, app(app(ty_@2, bf), bg)) -> new_esEs16(xuu31100000, xuu60000, bf, bg) 25.69/9.75 new_not(False) -> True 25.69/9.75 new_ltEs22(xuu47, xuu48, app(app(ty_Either, bee), bdd)) -> new_ltEs12(xuu47, xuu48, bee, bdd) 25.69/9.75 new_ltEs24(xuu103, xuu106, app(app(app(ty_@3, fha), fhb), fhc)) -> new_ltEs13(xuu103, xuu106, fha, fhb, fhc) 25.69/9.75 new_esEs36(xuu31100002, xuu60002, app(app(ty_@2, ede), edf)) -> new_esEs16(xuu31100002, xuu60002, ede, edf) 25.69/9.75 new_esEs8(xuu3110002, xuu6002, ty_@0) -> new_esEs14(xuu3110002, xuu6002) 25.69/9.75 new_ltEs23(xuu115, xuu117, ty_Bool) -> new_ltEs16(xuu115, xuu117) 25.69/9.75 new_lt20(xuu471, xuu481, app(app(ty_@2, cad), cae)) -> new_lt5(xuu471, xuu481, cad, cae) 25.69/9.75 new_esEs9(xuu3110000, xuu6000, app(app(ty_Either, hg), hh)) -> new_esEs21(xuu3110000, xuu6000, hg, hh) 25.69/9.75 new_esEs38(xuu101, xuu104, app(app(ty_@2, db), dc)) -> new_esEs16(xuu101, xuu104, db, dc) 25.69/9.75 new_ltEs12(Right(xuu470), Right(xuu480), bee, ty_Double) -> new_ltEs6(xuu470, xuu480) 25.69/9.75 new_esEs5(xuu3110000, xuu6000, app(ty_Ratio, cff)) -> new_esEs23(xuu3110000, xuu6000, cff) 25.69/9.75 new_esEs35(xuu31100001, xuu60001, ty_Double) -> new_esEs22(xuu31100001, xuu60001) 25.69/9.75 new_ltEs12(Left(xuu470), Left(xuu480), app(ty_Maybe, bea), bdd) -> new_ltEs15(xuu470, xuu480, bea) 25.69/9.75 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.69/9.75 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.69/9.75 new_esEs24(Integer(xuu31100000), Integer(xuu60000)) -> new_primEqInt(xuu31100000, xuu60000) 25.69/9.75 new_ltEs14(LT, EQ) -> True 25.69/9.75 new_ltEs22(xuu47, xuu48, app(app(app(ty_@3, bfh), bga), bgb)) -> new_ltEs13(xuu47, xuu48, bfh, bga, bgb) 25.69/9.75 new_lt8(xuu470, xuu480, app(app(ty_@2, bbe), bbf)) -> new_lt5(xuu470, xuu480, bbe, bbf) 25.69/9.75 new_esEs27(xuu31100000, xuu60000, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.75 new_esEs32(xuu31100000, xuu60000, app(ty_[], dfa)) -> new_esEs12(xuu31100000, xuu60000, dfa) 25.69/9.75 new_esEs31(xuu471, xuu481, app(ty_[], cab)) -> new_esEs12(xuu471, xuu481, cab) 25.69/9.75 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.69/9.75 new_esEs26(EQ, EQ) -> True 25.69/9.75 new_esEs30(xuu470, xuu480, ty_Float) -> new_esEs18(xuu470, xuu480) 25.69/9.75 new_esEs9(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.75 new_ltEs24(xuu103, xuu106, app(ty_Maybe, fhe)) -> new_ltEs15(xuu103, xuu106, fhe) 25.69/9.75 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs17(xuu31100000, xuu60000, eaa, eab, eac) 25.69/9.75 new_lt22(xuu101, xuu104, ty_Int) -> new_lt10(xuu101, xuu104) 25.69/9.75 new_primCompAux00(xuu37, xuu38, EQ, ty_Double) -> new_compare10(xuu37, xuu38) 25.69/9.75 new_lt23(xuu102, xuu105, app(app(ty_@2, fgd), fge)) -> new_lt5(xuu102, xuu105, fgd, fge) 25.69/9.75 new_compare31(@0, @0) -> EQ 25.69/9.75 new_esEs26(LT, LT) -> True 25.69/9.75 new_esEs9(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.75 new_compare30(Char(xuu3110000), Char(xuu6000)) -> new_primCmpNat0(xuu3110000, xuu6000) 25.69/9.75 new_esEs30(xuu470, xuu480, app(ty_[], bgh)) -> new_esEs12(xuu470, xuu480, bgh) 25.69/9.75 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.75 new_compare5(xuu311000, xuu600, app(ty_[], dab)) -> new_compare6(xuu311000, xuu600, dab) 25.69/9.75 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.75 new_ltEs12(Left(xuu470), Left(xuu480), ty_@0, bdd) -> new_ltEs18(xuu470, xuu480) 25.69/9.75 new_esEs12([], [], be) -> True 25.69/9.75 new_ltEs21(xuu76, xuu77, ty_Int) -> new_ltEs9(xuu76, xuu77) 25.69/9.75 new_ltEs6(xuu47, xuu48) -> new_fsEs(new_compare10(xuu47, xuu48)) 25.69/9.75 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.69/9.75 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.69/9.75 new_esEs8(xuu3110002, xuu6002, ty_Int) -> new_esEs19(xuu3110002, xuu6002) 25.69/9.75 new_compare110(xuu133, xuu134, False, fdf, fdg) -> GT 25.69/9.75 new_esEs9(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.75 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.75 new_esEs25(Nothing, Nothing, cef) -> True 25.69/9.75 new_primEqNat0(Zero, Zero) -> True 25.69/9.75 new_ltEs11(xuu471, xuu481, app(app(ty_@2, bcg), bch)) -> new_ltEs10(xuu471, xuu481, bcg, bch) 25.69/9.75 new_ltEs20(xuu54, xuu55, ty_Int) -> new_ltEs9(xuu54, xuu55) 25.69/9.75 new_lt11(xuu101, xuu104, dad, dae, daf) -> new_esEs26(new_compare28(xuu101, xuu104, dad, dae, daf), LT) 25.69/9.75 new_esEs25(Nothing, Just(xuu60000), cef) -> False 25.69/9.75 new_esEs25(Just(xuu31100000), Nothing, cef) -> False 25.69/9.75 new_compare16(Nothing, Just(xuu6000), ha) -> LT 25.69/9.75 new_esEs37(xuu114, xuu116, app(app(ty_@2, efh), ega)) -> new_esEs16(xuu114, xuu116, efh, ega) 25.69/9.75 new_lt21(xuu114, xuu116, app(ty_[], eff)) -> new_lt7(xuu114, xuu116, eff) 25.69/9.75 new_ltEs15(Just(xuu470), Just(xuu480), app(ty_[], dbe)) -> new_ltEs4(xuu470, xuu480, dbe) 25.69/9.75 new_asAs(False, xuu149) -> False 25.69/9.75 new_lt22(xuu101, xuu104, app(app(ty_@2, db), dc)) -> new_lt5(xuu101, xuu104, db, dc) 25.69/9.75 new_ltEs12(Right(xuu470), Right(xuu480), bee, app(ty_Ratio, bfg)) -> new_ltEs8(xuu470, xuu480, bfg) 25.69/9.75 new_ltEs23(xuu115, xuu117, ty_Integer) -> new_ltEs7(xuu115, xuu117) 25.69/9.75 new_lt21(xuu114, xuu116, ty_Int) -> new_lt10(xuu114, xuu116) 25.69/9.75 new_esEs29(xuu470, xuu480, ty_Float) -> new_esEs18(xuu470, xuu480) 25.69/9.75 new_ltEs23(xuu115, xuu117, ty_Ordering) -> new_ltEs14(xuu115, xuu117) 25.69/9.75 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.75 new_esEs6(xuu3110000, xuu6000, app(ty_Ratio, fag)) -> new_esEs23(xuu3110000, xuu6000, fag) 25.69/9.75 25.69/9.75 The set Q consists of the following terms: 25.69/9.75 25.69/9.75 new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.69/9.75 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 25.69/9.75 new_esEs32(x0, x1, ty_Char) 25.69/9.75 new_lt21(x0, x1, ty_Bool) 25.69/9.75 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_lt19(x0, x1, ty_Ordering) 25.69/9.75 new_esEs25(Just(x0), Nothing, x1) 25.69/9.75 new_primCmpNat0(Succ(x0), Succ(x1)) 25.69/9.75 new_esEs36(x0, x1, ty_@0) 25.69/9.75 new_compare25(x0, x1, False, x2) 25.69/9.75 new_esEs36(x0, x1, ty_Bool) 25.69/9.75 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_lt20(x0, x1, ty_Integer) 25.69/9.75 new_lt22(x0, x1, ty_Char) 25.69/9.75 new_lt21(x0, x1, ty_@0) 25.69/9.75 new_esEs4(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_lt19(x0, x1, ty_Double) 25.69/9.75 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 25.69/9.75 new_esEs33(x0, x1, ty_@0) 25.69/9.75 new_esEs5(x0, x1, ty_Int) 25.69/9.75 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_ltEs23(x0, x1, ty_Double) 25.69/9.75 new_compare18(Right(x0), Right(x1), x2, x3) 25.69/9.75 new_esEs37(x0, x1, ty_Ordering) 25.69/9.75 new_lt23(x0, x1, ty_Bool) 25.69/9.75 new_lt23(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_compare5(x0, x1, ty_Integer) 25.69/9.75 new_lt21(x0, x1, ty_Integer) 25.69/9.75 new_primEqInt(Pos(Zero), Pos(Zero)) 25.69/9.75 new_primCompAux00(x0, x1, EQ, ty_Bool) 25.69/9.75 new_esEs33(x0, x1, ty_Bool) 25.69/9.75 new_compare110(x0, x1, True, x2, x3) 25.69/9.75 new_ltEs24(x0, x1, ty_Float) 25.69/9.75 new_esEs6(x0, x1, ty_Float) 25.69/9.75 new_esEs20(False, True) 25.69/9.75 new_esEs20(True, False) 25.69/9.75 new_compare27(x0, x1, True, x2, x3) 25.69/9.75 new_esEs9(x0, x1, ty_Int) 25.69/9.75 new_asAs(False, x0) 25.69/9.75 new_esEs5(x0, x1, app(ty_[], x2)) 25.69/9.75 new_esEs10(x0, x1, ty_Float) 25.69/9.75 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_primEqInt(Neg(Zero), Neg(Zero)) 25.69/9.75 new_ltEs23(x0, x1, ty_Ordering) 25.69/9.75 new_esEs36(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_lt20(x0, x1, ty_@0) 25.69/9.75 new_esEs32(x0, x1, ty_Double) 25.69/9.75 new_compare26(x0, x1, False, x2, x3) 25.69/9.75 new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 25.69/9.75 new_lt23(x0, x1, ty_Integer) 25.69/9.75 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 25.69/9.75 new_ltEs15(Nothing, Nothing, x0) 25.69/9.75 new_esEs33(x0, x1, ty_Integer) 25.69/9.75 new_ltEs11(x0, x1, ty_Double) 25.69/9.75 new_lt20(x0, x1, ty_Float) 25.69/9.75 new_lt22(x0, x1, ty_Double) 25.69/9.75 new_esEs31(x0, x1, ty_Float) 25.69/9.75 new_ltEs20(x0, x1, ty_Char) 25.69/9.75 new_esEs25(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.69/9.75 new_esEs36(x0, x1, ty_Integer) 25.69/9.75 new_lt19(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_lt19(x0, x1, ty_Char) 25.69/9.75 new_esEs5(x0, x1, ty_@0) 25.69/9.75 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.69/9.75 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.69/9.75 new_primCompAux00(x0, x1, EQ, ty_Integer) 25.69/9.75 new_ltEs11(x0, x1, app(ty_[], x2)) 25.69/9.75 new_ltEs6(x0, x1) 25.69/9.75 new_ltEs23(x0, x1, ty_Char) 25.69/9.75 new_compare29(False, False) 25.69/9.75 new_primEqInt(Pos(Zero), Neg(Zero)) 25.69/9.75 new_primEqInt(Neg(Zero), Pos(Zero)) 25.69/9.75 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 25.69/9.75 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_esEs39(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_esEs9(x0, x1, app(ty_[], x2)) 25.69/9.75 new_compare112(x0, x1, x2, x3, False, x4, x5) 25.69/9.75 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_ltEs21(x0, x1, ty_Double) 25.69/9.75 new_esEs35(x0, x1, ty_Double) 25.69/9.75 new_lt8(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_ltEs21(x0, x1, ty_Char) 25.69/9.75 new_esEs35(x0, x1, ty_Char) 25.69/9.75 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_esEs21(Left(x0), Left(x1), ty_Float, x2) 25.69/9.75 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.69/9.75 new_primEqNat0(Succ(x0), Succ(x1)) 25.69/9.75 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_esEs11(x0, x1, app(ty_[], x2)) 25.69/9.75 new_esEs34(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.69/9.75 new_primMulInt(Neg(x0), Neg(x1)) 25.69/9.75 new_esEs39(x0, x1, ty_Ordering) 25.69/9.75 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_ltEs23(x0, x1, app(ty_[], x2)) 25.69/9.75 new_primPlusNat0(Succ(x0), Succ(x1)) 25.69/9.75 new_ltEs11(x0, x1, ty_Char) 25.69/9.75 new_lt9(x0, x1, x2, x3) 25.69/9.75 new_esEs29(x0, x1, ty_Float) 25.69/9.75 new_esEs21(Right(x0), Right(x1), x2, ty_Bool) 25.69/9.75 new_esEs8(x0, x1, ty_Double) 25.69/9.75 new_compare17(x0, x1, True, x2, x3) 25.69/9.75 new_esEs9(x0, x1, ty_Integer) 25.69/9.75 new_esEs29(x0, x1, ty_Ordering) 25.69/9.75 new_ltEs15(Just(x0), Just(x1), ty_Float) 25.69/9.75 new_lt23(x0, x1, ty_Float) 25.69/9.75 new_esEs34(x0, x1, app(ty_[], x2)) 25.69/9.75 new_esEs34(x0, x1, ty_Integer) 25.69/9.75 new_lt12(x0, x1) 25.69/9.75 new_lt21(x0, x1, ty_Int) 25.69/9.75 new_ltEs19(x0, x1, ty_Char) 25.69/9.75 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_esEs6(x0, x1, app(ty_[], x2)) 25.69/9.75 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_compare19(x0, x1, False, x2) 25.69/9.75 new_esEs26(LT, EQ) 25.69/9.75 new_esEs26(EQ, LT) 25.69/9.75 new_esEs13(x0, x1, ty_Ordering) 25.69/9.75 new_ltEs19(x0, x1, app(ty_[], x2)) 25.69/9.75 new_esEs9(x0, x1, ty_@0) 25.69/9.75 new_esEs39(x0, x1, app(ty_[], x2)) 25.69/9.75 new_ltEs21(x0, x1, ty_Ordering) 25.69/9.75 new_esEs25(Just(x0), Just(x1), ty_Double) 25.69/9.75 new_esEs37(x0, x1, app(ty_[], x2)) 25.69/9.75 new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) 25.69/9.75 new_primMulNat0(Succ(x0), Zero) 25.69/9.75 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_esEs8(x0, x1, ty_Ordering) 25.69/9.75 new_esEs21(Left(x0), Right(x1), x2, x3) 25.69/9.75 new_esEs21(Right(x0), Left(x1), x2, x3) 25.69/9.75 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_lt20(x0, x1, ty_Int) 25.69/9.75 new_esEs27(x0, x1, ty_Int) 25.69/9.75 new_esEs30(x0, x1, app(ty_[], x2)) 25.69/9.75 new_compare28(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.69/9.75 new_esEs37(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_ltEs24(x0, x1, ty_Int) 25.69/9.75 new_lt21(x0, x1, ty_Float) 25.69/9.75 new_lt19(x0, x1, app(ty_[], x2)) 25.69/9.75 new_ltEs16(True, False) 25.69/9.75 new_ltEs16(False, True) 25.69/9.75 new_esEs29(x0, x1, ty_Char) 25.69/9.75 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 25.69/9.75 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) 25.69/9.75 new_compare5(x0, x1, ty_Float) 25.69/9.75 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 25.69/9.75 new_lt22(x0, x1, ty_Ordering) 25.69/9.75 new_primMulInt(Pos(x0), Neg(x1)) 25.69/9.75 new_primMulInt(Neg(x0), Pos(x1)) 25.69/9.75 new_compare5(x0, x1, ty_Bool) 25.69/9.75 new_esEs30(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_esEs34(x0, x1, ty_Float) 25.69/9.75 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_ltEs24(x0, x1, ty_Integer) 25.69/9.75 new_esEs27(x0, x1, ty_Integer) 25.69/9.75 new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.69/9.75 new_esEs30(x0, x1, ty_Char) 25.69/9.75 new_primMulInt(Pos(x0), Pos(x1)) 25.69/9.75 new_esEs10(x0, x1, ty_@0) 25.69/9.75 new_esEs39(x0, x1, ty_Double) 25.69/9.75 new_esEs34(x0, x1, ty_Bool) 25.69/9.75 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_lt22(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_esEs21(Left(x0), Left(x1), ty_Integer, x2) 25.69/9.75 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.69/9.75 new_ltEs19(x0, x1, ty_Ordering) 25.69/9.75 new_primCompAux00(x0, x1, EQ, ty_Float) 25.69/9.75 new_compare111(x0, x1, x2, x3, False, x4, x5, x6) 25.69/9.75 new_compare5(x0, x1, ty_Int) 25.69/9.75 new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.69/9.75 new_esEs12(:(x0, x1), [], x2) 25.69/9.75 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 25.69/9.75 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.69/9.75 new_ltEs11(x0, x1, ty_Ordering) 25.69/9.75 new_esEs29(x0, x1, ty_Integer) 25.69/9.75 new_primCmpNat0(Zero, Succ(x0)) 25.69/9.75 new_ltEs24(x0, x1, ty_Bool) 25.69/9.75 new_ltEs18(x0, x1) 25.69/9.75 new_compare18(Left(x0), Left(x1), x2, x3) 25.69/9.75 new_esEs13(x0, x1, ty_Char) 25.69/9.75 new_lt20(x0, x1, ty_Bool) 25.69/9.75 new_esEs29(x0, x1, app(ty_[], x2)) 25.69/9.75 new_esEs21(Right(x0), Right(x1), x2, ty_Int) 25.69/9.75 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_esEs10(x0, x1, ty_Double) 25.69/9.75 new_esEs15(Char(x0), Char(x1)) 25.69/9.75 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_compare18(Right(x0), Left(x1), x2, x3) 25.69/9.75 new_esEs34(x0, x1, ty_Int) 25.69/9.75 new_compare18(Left(x0), Right(x1), x2, x3) 25.69/9.75 new_esEs26(EQ, EQ) 25.69/9.75 new_esEs37(x0, x1, ty_Double) 25.69/9.75 new_lt23(x0, x1, ty_Int) 25.69/9.75 new_primCompAux00(x0, x1, EQ, ty_Int) 25.69/9.75 new_esEs25(Just(x0), Just(x1), app(ty_[], x2)) 25.69/9.75 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.69/9.75 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.69/9.75 new_esEs8(x0, x1, ty_@0) 25.69/9.75 new_ltEs15(Just(x0), Just(x1), ty_Bool) 25.69/9.75 new_lt21(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_compare6(:(x0, x1), [], x2) 25.69/9.75 new_esEs30(x0, x1, ty_Double) 25.69/9.75 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_esEs29(x0, x1, ty_Bool) 25.69/9.75 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_compare16(Just(x0), Nothing, x1) 25.69/9.75 new_esEs37(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_ltEs15(Just(x0), Nothing, x1) 25.69/9.75 new_ltEs15(Just(x0), Just(x1), ty_Integer) 25.69/9.75 new_ltEs22(x0, x1, ty_@0) 25.69/9.75 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_compare13(GT, GT) 25.69/9.75 new_compare13(EQ, LT) 25.69/9.75 new_compare13(LT, EQ) 25.69/9.75 new_lt8(x0, x1, ty_Ordering) 25.69/9.75 new_primCmpNat0(Succ(x0), Zero) 25.69/9.75 new_esEs31(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_compare12(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 25.69/9.75 new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) 25.69/9.75 new_primCompAux00(x0, x1, LT, x2) 25.69/9.75 new_ltEs15(Just(x0), Just(x1), ty_@0) 25.69/9.75 new_ltEs20(x0, x1, app(ty_[], x2)) 25.69/9.75 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.69/9.75 new_ltEs8(x0, x1, x2) 25.69/9.75 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_ltEs24(x0, x1, ty_Ordering) 25.69/9.75 new_primPlusNat0(Zero, Zero) 25.69/9.75 new_esEs6(x0, x1, ty_Ordering) 25.69/9.75 new_esEs7(x0, x1, ty_Ordering) 25.69/9.75 new_not(True) 25.69/9.75 new_esEs38(x0, x1, app(ty_[], x2)) 25.69/9.75 new_esEs21(Right(x0), Right(x1), x2, ty_Integer) 25.69/9.75 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_lt8(x0, x1, ty_Double) 25.69/9.75 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 25.69/9.75 new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.69/9.75 new_esEs32(x0, x1, ty_Float) 25.69/9.75 new_ltEs11(x0, x1, ty_@0) 25.69/9.75 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_ltEs17(x0, x1) 25.69/9.75 new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 25.69/9.75 new_ltEs15(Just(x0), Just(x1), ty_Char) 25.69/9.75 new_esEs5(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_compare16(Nothing, Nothing, x0) 25.69/9.75 new_esEs25(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.69/9.75 new_esEs6(x0, x1, ty_Double) 25.69/9.75 new_esEs31(x0, x1, ty_Double) 25.69/9.75 new_esEs10(x0, x1, ty_Ordering) 25.69/9.75 new_esEs11(x0, x1, ty_@0) 25.69/9.75 new_esEs35(x0, x1, ty_Float) 25.69/9.75 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 25.69/9.75 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_esEs4(x0, x1, ty_Ordering) 25.69/9.75 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 25.69/9.75 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_esEs10(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_esEs6(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_esEs12([], :(x0, x1), x2) 25.69/9.75 new_lt19(x0, x1, ty_Float) 25.69/9.75 new_esEs5(x0, x1, ty_Float) 25.69/9.75 new_esEs21(Left(x0), Left(x1), ty_@0, x2) 25.69/9.75 new_esEs35(x0, x1, app(ty_[], x2)) 25.69/9.75 new_esEs30(x0, x1, ty_Ordering) 25.69/9.75 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_esEs5(x0, x1, ty_Integer) 25.69/9.75 new_ltEs11(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 25.69/9.75 new_esEs36(x0, x1, ty_Float) 25.69/9.75 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_esEs21(Right(x0), Right(x1), x2, ty_@0) 25.69/9.75 new_lt10(x0, x1) 25.69/9.75 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 25.69/9.75 new_sr(x0, x1) 25.69/9.75 new_esEs12([], [], x0) 25.69/9.75 new_ltEs14(GT, GT) 25.69/9.75 new_esEs20(True, True) 25.69/9.75 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_esEs9(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_esEs11(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_esEs7(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_ltEs4(x0, x1, x2) 25.69/9.75 new_esEs26(EQ, GT) 25.69/9.75 new_esEs26(GT, EQ) 25.69/9.75 new_esEs8(x0, x1, app(ty_[], x2)) 25.69/9.75 new_lt17(x0, x1) 25.69/9.75 new_compare31(@0, @0) 25.69/9.75 new_ltEs21(x0, x1, ty_Float) 25.69/9.75 new_esEs9(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 25.69/9.75 new_esEs5(x0, x1, ty_Bool) 25.69/9.75 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_ltEs12(Left(x0), Right(x1), x2, x3) 25.69/9.75 new_ltEs12(Right(x0), Left(x1), x2, x3) 25.69/9.75 new_compare14(Integer(x0), Integer(x1)) 25.69/9.75 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.69/9.75 new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 25.69/9.75 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_esEs25(Just(x0), Just(x1), ty_Ordering) 25.69/9.75 new_lt5(x0, x1, x2, x3) 25.69/9.75 new_ltEs24(x0, x1, app(ty_[], x2)) 25.69/9.75 new_lt19(x0, x1, ty_Bool) 25.69/9.75 new_esEs29(x0, x1, ty_Double) 25.69/9.75 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_compare111(x0, x1, x2, x3, True, x4, x5, x6) 25.69/9.75 new_lt11(x0, x1, x2, x3, x4) 25.69/9.75 new_primEqNat0(Zero, Zero) 25.69/9.75 new_primCompAux00(x0, x1, GT, x2) 25.69/9.75 new_esEs36(x0, x1, ty_Char) 25.69/9.75 new_esEs31(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_not(False) 25.69/9.75 new_esEs32(x0, x1, ty_Bool) 25.69/9.75 new_esEs34(x0, x1, ty_@0) 25.69/9.75 new_compare5(x0, x1, app(ty_[], x2)) 25.69/9.75 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 25.69/9.75 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_esEs33(x0, x1, ty_Int) 25.69/9.75 new_esEs13(x0, x1, ty_@0) 25.69/9.75 new_compare5(x0, x1, ty_@0) 25.69/9.75 new_compare27(x0, x1, False, x2, x3) 25.69/9.75 new_lt7(x0, x1, x2) 25.69/9.75 new_esEs11(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.69/9.75 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_compare9(@2(x0, x1), @2(x2, x3), x4, x5) 25.69/9.75 new_ltEs24(x0, x1, ty_Double) 25.69/9.75 new_compare6(:(x0, x1), :(x2, x3), x4) 25.69/9.75 new_lt15(x0, x1, x2) 25.69/9.75 new_lt8(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_lt23(x0, x1, app(ty_[], x2)) 25.69/9.75 new_esEs35(x0, x1, ty_Integer) 25.69/9.75 new_esEs7(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_lt19(x0, x1, ty_Integer) 25.69/9.75 new_compare5(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_esEs33(x0, x1, ty_Float) 25.69/9.75 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_compare29(True, True) 25.69/9.75 new_primPlusNat0(Zero, Succ(x0)) 25.69/9.75 new_esEs32(x0, x1, ty_Integer) 25.69/9.75 new_esEs32(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.69/9.75 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.69/9.75 new_ltEs14(EQ, LT) 25.69/9.75 new_primCompAux00(x0, x1, EQ, ty_@0) 25.69/9.75 new_ltEs14(LT, EQ) 25.69/9.75 new_lt23(x0, x1, ty_@0) 25.69/9.75 new_primMulNat0(Zero, Succ(x0)) 25.69/9.75 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_esEs13(x0, x1, app(ty_[], x2)) 25.69/9.75 new_esEs38(x0, x1, ty_Ordering) 25.69/9.75 new_esEs31(x0, x1, ty_Ordering) 25.69/9.75 new_esEs36(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_compare6([], [], x0) 25.69/9.75 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.69/9.75 new_esEs36(x0, x1, ty_Int) 25.69/9.75 new_esEs33(x0, x1, app(ty_[], x2)) 25.69/9.75 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.69/9.75 new_esEs18(Float(x0, x1), Float(x2, x3)) 25.69/9.75 new_esEs34(x0, x1, ty_Char) 25.69/9.75 new_esEs9(x0, x1, ty_Ordering) 25.69/9.75 new_esEs25(Nothing, Nothing, x0) 25.69/9.75 new_ltEs20(x0, x1, ty_@0) 25.69/9.75 new_ltEs19(x0, x1, ty_Integer) 25.69/9.75 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_esEs30(x0, x1, ty_Float) 25.69/9.75 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 25.69/9.75 new_ltEs20(x0, x1, ty_Bool) 25.69/9.75 new_ltEs21(x0, x1, ty_@0) 25.69/9.75 new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) 25.69/9.75 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_esEs35(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_esEs33(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_fsEs(x0) 25.69/9.75 new_lt22(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.69/9.75 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_compare13(GT, LT) 25.69/9.75 new_compare13(LT, GT) 25.69/9.75 new_esEs9(x0, x1, ty_Double) 25.69/9.75 new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.69/9.75 new_esEs32(x0, x1, ty_Int) 25.69/9.75 new_esEs9(x0, x1, ty_Char) 25.69/9.75 new_esEs16(@2(x0, x1), @2(x2, x3), x4, x5) 25.69/9.75 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.69/9.75 new_ltEs14(LT, LT) 25.69/9.75 new_esEs26(LT, GT) 25.69/9.75 new_esEs26(GT, LT) 25.69/9.75 new_ltEs23(x0, x1, ty_Int) 25.69/9.75 new_esEs30(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_esEs5(x0, x1, ty_Char) 25.69/9.75 new_esEs5(x0, x1, ty_Double) 25.69/9.75 new_ltEs19(x0, x1, ty_Bool) 25.69/9.75 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_esEs33(x0, x1, ty_Char) 25.69/9.75 new_esEs13(x0, x1, ty_Integer) 25.69/9.75 new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.69/9.75 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_ltEs21(x0, x1, ty_Int) 25.69/9.75 new_esEs5(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.69/9.75 new_lt22(x0, x1, ty_Bool) 25.69/9.75 new_ltEs16(False, False) 25.69/9.75 new_esEs7(x0, x1, ty_Float) 25.69/9.75 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_ltEs21(x0, x1, app(ty_[], x2)) 25.69/9.75 new_lt22(x0, x1, ty_@0) 25.69/9.75 new_esEs22(Double(x0, x1), Double(x2, x3)) 25.69/9.75 new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.69/9.75 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.69/9.75 new_esEs28(x0, x1, ty_Integer) 25.69/9.75 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_asAs(True, x0) 25.69/9.75 new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_esEs35(x0, x1, ty_Bool) 25.69/9.75 new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.69/9.75 new_esEs33(x0, x1, ty_Ordering) 25.69/9.75 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_ltEs20(x0, x1, ty_Integer) 25.69/9.75 new_esEs32(x0, x1, ty_@0) 25.69/9.75 new_ltEs21(x0, x1, ty_Bool) 25.69/9.75 new_lt22(x0, x1, ty_Int) 25.69/9.75 new_esEs35(x0, x1, ty_@0) 25.69/9.75 new_esEs38(x0, x1, ty_Double) 25.69/9.75 new_lt23(x0, x1, ty_Ordering) 25.69/9.75 new_primCompAux00(x0, x1, EQ, ty_Ordering) 25.69/9.75 new_lt19(x0, x1, ty_Int) 25.69/9.75 new_compare10(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.69/9.75 new_esEs30(x0, x1, ty_Integer) 25.69/9.75 new_ltEs19(x0, x1, ty_Float) 25.69/9.75 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.69/9.75 new_esEs34(x0, x1, ty_Ordering) 25.69/9.75 new_compare6([], :(x0, x1), x2) 25.69/9.75 new_esEs36(x0, x1, ty_Ordering) 25.69/9.75 new_lt19(x0, x1, ty_@0) 25.69/9.75 new_ltEs11(x0, x1, ty_Int) 25.69/9.75 new_esEs20(False, False) 25.69/9.75 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_ltEs19(x0, x1, ty_@0) 25.69/9.75 new_esEs35(x0, x1, ty_Int) 25.69/9.75 new_lt8(x0, x1, app(ty_[], x2)) 25.69/9.75 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_ltEs11(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.69/9.75 new_lt21(x0, x1, ty_Ordering) 25.69/9.75 new_esEs36(x0, x1, ty_Double) 25.69/9.75 new_esEs30(x0, x1, ty_Bool) 25.69/9.75 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_ltEs19(x0, x1, ty_Int) 25.69/9.75 new_esEs39(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_esEs23(:%(x0, x1), :%(x2, x3), x4) 25.69/9.75 new_lt14(x0, x1) 25.69/9.75 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_esEs37(x0, x1, ty_@0) 25.69/9.75 new_compare10(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.69/9.75 new_esEs24(Integer(x0), Integer(x1)) 25.69/9.75 new_compare24(x0, x1, x2, x3, False, x4, x5) 25.69/9.75 new_ltEs22(x0, x1, ty_Double) 25.69/9.75 new_esEs19(x0, x1) 25.69/9.75 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_lt20(x0, x1, ty_Char) 25.69/9.75 new_ltEs20(x0, x1, ty_Float) 25.69/9.75 new_esEs13(x0, x1, ty_Int) 25.69/9.75 new_lt22(x0, x1, ty_Integer) 25.69/9.75 new_ltEs24(x0, x1, ty_Char) 25.69/9.75 new_ltEs14(LT, GT) 25.69/9.75 new_ltEs14(GT, LT) 25.69/9.75 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_compare29(True, False) 25.69/9.75 new_compare29(False, True) 25.69/9.75 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_esEs26(GT, GT) 25.69/9.75 new_lt18(x0, x1) 25.69/9.75 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.69/9.75 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.69/9.75 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.69/9.75 new_esEs29(x0, x1, ty_Int) 25.69/9.75 new_esEs11(x0, x1, ty_Integer) 25.69/9.75 new_primMulNat0(Succ(x0), Succ(x1)) 25.69/9.75 new_primEqNat0(Succ(x0), Zero) 25.69/9.75 new_esEs4(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_lt6(x0, x1) 25.69/9.75 new_ltEs15(Just(x0), Just(x1), ty_Int) 25.69/9.75 new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 25.69/9.75 new_ltEs22(x0, x1, ty_Ordering) 25.69/9.75 new_ltEs23(x0, x1, ty_@0) 25.69/9.75 new_ltEs21(x0, x1, ty_Integer) 25.69/9.75 new_esEs33(x0, x1, ty_Double) 25.69/9.75 new_compare112(x0, x1, x2, x3, True, x4, x5) 25.69/9.75 new_ltEs20(x0, x1, ty_Int) 25.69/9.75 new_lt20(x0, x1, ty_Ordering) 25.69/9.75 new_esEs13(x0, x1, ty_Float) 25.69/9.75 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 25.69/9.75 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.69/9.75 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 25.69/9.75 new_sr0(Integer(x0), Integer(x1)) 25.69/9.75 new_ltEs14(EQ, GT) 25.69/9.75 new_ltEs14(GT, EQ) 25.69/9.75 new_esEs4(x0, x1, ty_@0) 25.69/9.75 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.69/9.75 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.69/9.75 new_esEs34(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_esEs4(x0, x1, ty_Double) 25.69/9.75 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_primPlusNat1(x0, x1) 25.69/9.75 new_esEs7(x0, x1, ty_Double) 25.69/9.75 new_lt23(x0, x1, ty_Char) 25.69/9.75 new_compare13(GT, EQ) 25.69/9.75 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.69/9.75 new_compare13(EQ, GT) 25.69/9.75 new_compare5(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_esEs25(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.69/9.75 new_esEs11(x0, x1, ty_Ordering) 25.69/9.75 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_lt8(x0, x1, ty_Float) 25.69/9.75 new_compare16(Just(x0), Just(x1), x2) 25.69/9.75 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_compare30(Char(x0), Char(x1)) 25.69/9.75 new_lt4(x0, x1, x2) 25.69/9.75 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) 25.69/9.75 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_esEs13(x0, x1, ty_Bool) 25.69/9.75 new_primCompAux00(x0, x1, EQ, ty_Char) 25.69/9.75 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.69/9.75 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.69/9.75 new_lt20(x0, x1, app(ty_[], x2)) 25.69/9.75 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.69/9.75 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.69/9.75 new_lt21(x0, x1, ty_Char) 25.69/9.75 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.69/9.75 new_compare110(x0, x1, False, x2, x3) 25.69/9.75 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_lt13(x0, x1) 25.69/9.75 new_esEs30(x0, x1, ty_Int) 25.69/9.75 new_compare5(x0, x1, ty_Char) 25.69/9.75 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_primPlusNat0(Succ(x0), Zero) 25.69/9.75 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_esEs21(Right(x0), Right(x1), x2, ty_Char) 25.69/9.75 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_esEs39(x0, x1, ty_@0) 25.69/9.75 new_ltEs11(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_lt8(x0, x1, ty_Char) 25.69/9.75 new_lt23(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_esEs6(x0, x1, ty_Int) 25.69/9.75 new_esEs26(LT, LT) 25.69/9.75 new_esEs35(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_esEs4(x0, x1, ty_Char) 25.69/9.75 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_esEs9(x0, x1, ty_Float) 25.69/9.75 new_primMulNat0(Zero, Zero) 25.69/9.75 new_ltEs15(Nothing, Just(x0), x1) 25.69/9.75 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_esEs21(Left(x0), Left(x1), ty_Char, x2) 25.69/9.75 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.69/9.75 new_esEs21(Right(x0), Right(x1), x2, ty_Float) 25.69/9.75 new_esEs10(x0, x1, ty_Int) 25.69/9.75 new_esEs38(x0, x1, ty_Integer) 25.69/9.75 new_compare17(x0, x1, False, x2, x3) 25.69/9.75 new_ltEs14(EQ, EQ) 25.69/9.75 new_ltEs11(x0, x1, ty_Integer) 25.69/9.75 new_esEs29(x0, x1, ty_@0) 25.69/9.75 new_esEs31(x0, x1, ty_Char) 25.69/9.75 new_esEs6(x0, x1, ty_Char) 25.69/9.75 new_esEs7(x0, x1, ty_Char) 25.69/9.75 new_esEs10(x0, x1, app(ty_[], x2)) 25.69/9.75 new_esEs38(x0, x1, ty_Bool) 25.69/9.75 new_ltEs5(x0, x1) 25.69/9.75 new_esEs28(x0, x1, ty_Int) 25.69/9.75 new_esEs37(x0, x1, ty_Float) 25.69/9.75 new_esEs7(x0, x1, ty_Int) 25.69/9.75 new_ltEs22(x0, x1, ty_Integer) 25.69/9.75 new_esEs25(Just(x0), Just(x1), ty_Char) 25.69/9.75 new_ltEs23(x0, x1, ty_Float) 25.69/9.75 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_lt19(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_compare24(x0, x1, x2, x3, True, x4, x5) 25.69/9.75 new_esEs7(x0, x1, ty_@0) 25.69/9.75 new_esEs25(Just(x0), Just(x1), ty_@0) 25.69/9.75 new_ltEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_lt8(x0, x1, ty_Int) 25.69/9.75 new_esEs21(Left(x0), Left(x1), ty_Bool, x2) 25.69/9.75 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_esEs25(Just(x0), Just(x1), ty_Int) 25.69/9.75 new_esEs25(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.69/9.75 new_lt22(x0, x1, ty_Float) 25.69/9.75 new_esEs10(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_esEs37(x0, x1, ty_Integer) 25.69/9.75 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_esEs31(x0, x1, ty_@0) 25.69/9.75 new_esEs13(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_esEs8(x0, x1, ty_Integer) 25.69/9.75 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_ltEs9(x0, x1) 25.69/9.75 new_primEqNat0(Zero, Succ(x0)) 25.69/9.75 new_ltEs23(x0, x1, ty_Integer) 25.69/9.75 new_esEs21(Left(x0), Left(x1), ty_Double, x2) 25.69/9.75 new_ltEs19(x0, x1, ty_Double) 25.69/9.75 new_esEs11(x0, x1, ty_Bool) 25.69/9.75 new_esEs8(x0, x1, ty_Int) 25.69/9.75 new_pePe(False, x0) 25.69/9.75 new_ltEs11(x0, x1, ty_Float) 25.69/9.75 new_esEs11(x0, x1, ty_Int) 25.69/9.75 new_pePe(True, x0) 25.69/9.75 new_esEs8(x0, x1, ty_Char) 25.69/9.75 new_esEs12(:(x0, x1), :(x2, x3), x4) 25.69/9.75 new_lt8(x0, x1, ty_Bool) 25.69/9.75 new_ltEs11(x0, x1, ty_Bool) 25.69/9.75 new_compare5(x0, x1, ty_Ordering) 25.69/9.75 new_compare13(LT, LT) 25.69/9.75 new_esEs6(x0, x1, ty_Bool) 25.69/9.75 new_esEs39(x0, x1, ty_Integer) 25.69/9.75 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_esEs33(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_esEs25(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.69/9.75 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_lt22(x0, x1, app(ty_[], x2)) 25.69/9.75 new_esEs38(x0, x1, ty_Float) 25.69/9.75 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_esEs21(Left(x0), Left(x1), ty_Int, x2) 25.69/9.75 new_esEs31(x0, x1, ty_Int) 25.69/9.75 new_ltEs22(x0, x1, ty_Bool) 25.69/9.75 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_esEs38(x0, x1, ty_@0) 25.69/9.75 new_compare12(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 25.69/9.75 new_ltEs23(x0, x1, ty_Bool) 25.69/9.75 new_ltEs22(x0, x1, app(ty_[], x2)) 25.69/9.75 new_esEs8(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_esEs8(x0, x1, ty_Bool) 25.69/9.75 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.69/9.75 new_esEs11(x0, x1, ty_Char) 25.69/9.75 new_esEs11(x0, x1, ty_Double) 25.69/9.75 new_compare13(EQ, EQ) 25.69/9.75 new_esEs38(x0, x1, ty_Int) 25.69/9.75 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 25.69/9.75 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.69/9.75 new_esEs10(x0, x1, ty_Integer) 25.69/9.75 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_esEs14(@0, @0) 25.69/9.75 new_ltEs15(Just(x0), Just(x1), ty_Ordering) 25.69/9.75 new_esEs31(x0, x1, ty_Integer) 25.69/9.75 new_esEs6(x0, x1, ty_Integer) 25.69/9.75 new_esEs39(x0, x1, ty_Char) 25.69/9.75 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_ltEs20(x0, x1, ty_Double) 25.69/9.75 new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.69/9.75 new_esEs9(x0, x1, ty_Bool) 25.69/9.75 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.69/9.75 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.69/9.75 new_lt8(x0, x1, ty_Integer) 25.69/9.75 new_ltEs15(Just(x0), Just(x1), ty_Double) 25.69/9.75 new_esEs38(x0, x1, ty_Char) 25.69/9.75 new_ltEs22(x0, x1, ty_Float) 25.69/9.75 new_lt23(x0, x1, ty_Double) 25.69/9.75 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.69/9.75 new_lt21(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_compare10(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.69/9.75 new_compare10(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.69/9.75 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 25.69/9.75 new_esEs32(x0, x1, app(ty_[], x2)) 25.69/9.75 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.69/9.75 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 25.69/9.75 new_ltEs11(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_compare16(Nothing, Just(x0), x1) 25.69/9.75 new_esEs4(x0, x1, ty_Integer) 25.69/9.75 new_esEs7(x0, x1, ty_Integer) 25.69/9.75 new_ltEs24(x0, x1, ty_@0) 25.69/9.75 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.75 new_esEs25(Just(x0), Just(x1), ty_Float) 25.69/9.75 new_ltEs20(x0, x1, ty_Ordering) 25.69/9.75 new_ltEs22(x0, x1, ty_Char) 25.69/9.75 new_esEs31(x0, x1, app(ty_[], x2)) 25.69/9.75 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.69/9.75 new_esEs11(x0, x1, ty_Float) 25.69/9.75 new_esEs8(x0, x1, ty_Float) 25.69/9.75 new_esEs31(x0, x1, ty_Bool) 25.69/9.75 new_ltEs22(x0, x1, ty_Int) 25.69/9.75 new_esEs7(x0, x1, app(ty_[], x2)) 25.69/9.75 new_esEs8(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_esEs32(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_esEs6(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_compare25(x0, x1, True, x2) 25.69/9.75 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.69/9.75 new_esEs6(x0, x1, ty_@0) 25.69/9.75 new_compare26(x0, x1, True, x2, x3) 25.69/9.75 new_lt8(x0, x1, ty_@0) 25.69/9.75 new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.69/9.75 new_esEs37(x0, x1, ty_Int) 25.69/9.75 new_esEs25(Nothing, Just(x0), x1) 25.69/9.75 new_esEs39(x0, x1, ty_Float) 25.69/9.75 new_esEs39(x0, x1, ty_Bool) 25.69/9.75 new_esEs35(x0, x1, ty_Ordering) 25.69/9.75 new_esEs34(x0, x1, ty_Double) 25.69/9.75 new_lt21(x0, x1, app(ty_[], x2)) 25.69/9.75 new_ltEs16(True, True) 25.69/9.75 new_esEs4(x0, x1, ty_Float) 25.69/9.75 new_compare15(x0, x1) 25.69/9.75 new_esEs4(x0, x1, ty_Bool) 25.69/9.75 new_esEs38(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_esEs25(Just(x0), Just(x1), ty_Integer) 25.69/9.75 new_esEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.69/9.75 new_lt20(x0, x1, ty_Double) 25.69/9.75 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 25.69/9.75 new_esEs36(x0, x1, app(ty_[], x2)) 25.69/9.75 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 25.69/9.75 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.75 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 25.69/9.75 new_esEs32(x0, x1, ty_Ordering) 25.69/9.75 new_compare19(x0, x1, True, x2) 25.69/9.75 new_esEs5(x0, x1, ty_Ordering) 25.69/9.75 new_lt16(x0, x1) 25.69/9.75 new_primCompAux00(x0, x1, EQ, ty_Double) 25.69/9.75 new_esEs39(x0, x1, ty_Int) 25.69/9.75 new_esEs38(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_esEs13(x0, x1, app(ty_Ratio, x2)) 25.69/9.75 new_esEs25(Just(x0), Just(x1), ty_Bool) 25.69/9.75 new_esEs37(x0, x1, ty_Bool) 25.69/9.75 new_esEs13(x0, x1, ty_Double) 25.69/9.75 new_esEs10(x0, x1, ty_Bool) 25.69/9.75 new_ltEs7(x0, x1) 25.69/9.75 new_esEs37(x0, x1, ty_Char) 25.69/9.75 new_esEs4(x0, x1, ty_Int) 25.69/9.75 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 25.69/9.75 new_esEs4(x0, x1, app(ty_[], x2)) 25.69/9.75 new_lt21(x0, x1, ty_Double) 25.69/9.75 new_esEs10(x0, x1, ty_Char) 25.69/9.75 new_esEs21(Right(x0), Right(x1), x2, ty_Double) 25.69/9.75 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.75 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 25.69/9.75 new_esEs30(x0, x1, ty_@0) 25.69/9.75 new_esEs7(x0, x1, ty_Bool) 25.69/9.75 new_compare5(x0, x1, ty_Double) 25.69/9.75 new_primCmpNat0(Zero, Zero) 25.69/9.75 new_primCompAux1(x0, x1, x2, x3, x4) 25.69/9.75 25.69/9.75 We have to consider all minimal (P,Q,R)-chains. 25.69/9.75 ---------------------------------------- 25.69/9.75 25.69/9.75 (21) DependencyGraphProof (EQUIVALENT) 25.69/9.75 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs with 2 less nodes. 25.69/9.75 ---------------------------------------- 25.69/9.75 25.69/9.75 (22) 25.69/9.75 Complex Obligation (AND) 25.69/9.75 25.69/9.75 ---------------------------------------- 25.69/9.75 25.69/9.75 (23) 25.69/9.75 Obligation: 25.69/9.75 Q DP problem: 25.69/9.75 The TRS P consists of the following rules: 25.69/9.75 25.69/9.75 new_addToFM_C(Branch(:(xuu600, xuu601), xuu61, xuu62, xuu63, xuu64), [], xuu31101, bb, bc) -> new_addToFM_C(xuu63, [], xuu31101, bb, bc) 25.69/9.75 25.69/9.75 The TRS R consists of the following rules: 25.69/9.75 25.69/9.75 new_lt20(xuu471, xuu481, ty_Double) -> new_lt12(xuu471, xuu481) 25.69/9.75 new_compare5(xuu311000, xuu600, ty_Integer) -> new_compare14(xuu311000, xuu600) 25.69/9.75 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.69/9.75 new_esEs33(xuu31100001, xuu60001, app(ty_Ratio, dgb)) -> new_esEs23(xuu31100001, xuu60001, dgb) 25.69/9.75 new_primPlusNat0(Zero, Zero) -> Zero 25.69/9.75 new_esEs30(xuu470, xuu480, app(ty_Maybe, bha)) -> new_esEs25(xuu470, xuu480, bha) 25.69/9.75 new_pePe(True, xuu210) -> True 25.69/9.75 new_ltEs20(xuu54, xuu55, app(ty_Maybe, cda)) -> new_ltEs15(xuu54, xuu55, cda) 25.69/9.75 new_compare7(Float(xuu3110000, Pos(xuu31100010)), Float(xuu6000, Neg(xuu60010))) -> new_compare15(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) 25.69/9.75 new_compare7(Float(xuu3110000, Neg(xuu31100010)), Float(xuu6000, Pos(xuu60010))) -> new_compare15(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) 25.69/9.75 new_esEs32(xuu31100000, xuu60000, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.75 new_esEs33(xuu31100001, xuu60001, app(app(app(ty_@3, dfe), dff), dfg)) -> new_esEs17(xuu31100001, xuu60001, dfe, dff, dfg) 25.69/9.75 new_esEs6(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.75 new_ltEs24(xuu103, xuu106, app(app(ty_@2, fhf), fhg)) -> new_ltEs10(xuu103, xuu106, fhf, fhg) 25.69/9.75 new_ltEs24(xuu103, xuu106, ty_Ordering) -> new_ltEs14(xuu103, xuu106) 25.69/9.75 new_ltEs4(xuu47, xuu48, bd) -> new_fsEs(new_compare6(xuu47, xuu48, bd)) 25.69/9.75 new_esEs26(LT, GT) -> False 25.69/9.75 new_esEs26(GT, LT) -> False 25.69/9.75 new_esEs35(xuu31100001, xuu60001, app(ty_[], edc)) -> new_esEs12(xuu31100001, xuu60001, edc) 25.69/9.75 new_esEs8(xuu3110002, xuu6002, ty_Ordering) -> new_esEs26(xuu3110002, xuu6002) 25.69/9.75 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.69/9.75 new_compare24(xuu114, xuu115, xuu116, xuu117, True, eeg, eeh) -> EQ 25.69/9.75 new_esEs26(LT, EQ) -> False 25.69/9.75 new_esEs26(EQ, LT) -> False 25.69/9.75 new_lt8(xuu470, xuu480, ty_Bool) -> new_lt16(xuu470, xuu480) 25.69/9.75 new_ltEs24(xuu103, xuu106, app(ty_[], fhd)) -> new_ltEs4(xuu103, xuu106, fhd) 25.69/9.75 new_compare26(xuu54, xuu55, True, cca, ccb) -> EQ 25.69/9.75 new_esEs39(xuu102, xuu105, ty_Int) -> new_esEs19(xuu102, xuu105) 25.69/9.75 new_lt14(xuu101, xuu104) -> new_esEs26(new_compare7(xuu101, xuu104), LT) 25.69/9.75 new_esEs6(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.75 new_ltEs7(xuu47, xuu48) -> new_fsEs(new_compare14(xuu47, xuu48)) 25.69/9.75 new_ltEs12(Left(xuu470), Right(xuu480), bee, bdd) -> True 25.69/9.75 new_lt23(xuu102, xuu105, app(ty_Maybe, fgc)) -> new_lt15(xuu102, xuu105, fgc) 25.69/9.75 new_compare27(xuu47, xuu48, False, ddg, ddh) -> new_compare110(xuu47, xuu48, new_ltEs22(xuu47, xuu48, ddg), ddg, ddh) 25.69/9.75 new_ltEs24(xuu103, xuu106, app(ty_Ratio, fhh)) -> new_ltEs8(xuu103, xuu106, fhh) 25.69/9.75 new_primMulNat0(Succ(xuu600000), Succ(xuu311000100)) -> new_primPlusNat1(new_primMulNat0(xuu600000, Succ(xuu311000100)), xuu311000100) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) 25.69/9.75 new_lt6(xuu101, xuu104) -> new_esEs26(new_compare13(xuu101, xuu104), LT) 25.69/9.75 new_lt19(xuu470, xuu480, ty_Bool) -> new_lt16(xuu470, xuu480) 25.69/9.75 new_esEs6(xuu3110000, xuu6000, app(app(ty_@2, ehh), faa)) -> new_esEs16(xuu3110000, xuu6000, ehh, faa) 25.69/9.75 new_esEs36(xuu31100002, xuu60002, ty_@0) -> new_esEs14(xuu31100002, xuu60002) 25.69/9.75 new_esEs32(xuu31100000, xuu60000, ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.75 new_esEs21(Left(xuu31100000), Right(xuu60000), ced, cee) -> False 25.69/9.75 new_esEs21(Right(xuu31100000), Left(xuu60000), ced, cee) -> False 25.69/9.75 new_primCompAux00(xuu37, xuu38, EQ, ty_Integer) -> new_compare14(xuu37, xuu38) 25.69/9.75 new_esEs37(xuu114, xuu116, ty_Bool) -> new_esEs20(xuu114, xuu116) 25.69/9.75 new_primEqNat0(Succ(xuu311000000), Succ(xuu600000)) -> new_primEqNat0(xuu311000000, xuu600000) 25.69/9.75 new_ltEs22(xuu47, xuu48, ty_Double) -> new_ltEs6(xuu47, xuu48) 25.69/9.75 new_not(True) -> False 25.69/9.75 new_lt22(xuu101, xuu104, app(ty_[], dh)) -> new_lt7(xuu101, xuu104, dh) 25.69/9.75 new_ltEs19(xuu472, xuu482, ty_@0) -> new_ltEs18(xuu472, xuu482) 25.69/9.75 new_esEs35(xuu31100001, xuu60001, app(ty_Maybe, edd)) -> new_esEs25(xuu31100001, xuu60001, edd) 25.69/9.75 new_lt7(xuu101, xuu104, dh) -> new_esEs26(new_compare6(xuu101, xuu104, dh), LT) 25.69/9.75 new_esEs9(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.75 new_esEs10(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.75 new_compare17(xuu140, xuu141, False, dde, ddf) -> GT 25.69/9.75 new_esEs39(xuu102, xuu105, ty_Ordering) -> new_esEs26(xuu102, xuu105) 25.69/9.75 new_esEs38(xuu101, xuu104, app(ty_Ratio, da)) -> new_esEs23(xuu101, xuu104, da) 25.69/9.75 new_esEs38(xuu101, xuu104, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs17(xuu101, xuu104, dad, dae, daf) 25.69/9.75 new_esEs4(xuu3110000, xuu6000, app(ty_[], be)) -> new_esEs12(xuu3110000, xuu6000, be) 25.69/9.75 new_esEs33(xuu31100001, xuu60001, app(app(ty_Either, dfh), dga)) -> new_esEs21(xuu31100001, xuu60001, dfh, dga) 25.69/9.75 new_compare11(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, False, xuu180, de, df, dg) -> new_compare12(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, xuu180, de, df, dg) 25.69/9.75 new_lt22(xuu101, xuu104, app(app(ty_Either, cga), cgb)) -> new_lt9(xuu101, xuu104, cga, cgb) 25.69/9.75 new_lt22(xuu101, xuu104, app(ty_Ratio, da)) -> new_lt4(xuu101, xuu104, da) 25.69/9.75 new_compare6([], :(xuu6000, xuu6001), dab) -> LT 25.69/9.75 new_compare10(Double(xuu3110000, Pos(xuu31100010)), Double(xuu6000, Neg(xuu60010))) -> new_compare15(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) 25.69/9.75 new_compare10(Double(xuu3110000, Neg(xuu31100010)), Double(xuu6000, Pos(xuu60010))) -> new_compare15(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) 25.69/9.75 new_primEqNat0(Succ(xuu311000000), Zero) -> False 25.69/9.75 new_primEqNat0(Zero, Succ(xuu600000)) -> False 25.69/9.75 new_esEs14(@0, @0) -> True 25.69/9.75 new_lt23(xuu102, xuu105, ty_Char) -> new_lt17(xuu102, xuu105) 25.69/9.75 new_lt23(xuu102, xuu105, ty_Int) -> new_lt10(xuu102, xuu105) 25.69/9.75 new_ltEs21(xuu76, xuu77, ty_Integer) -> new_ltEs7(xuu76, xuu77) 25.69/9.75 new_esEs29(xuu470, xuu480, ty_Int) -> new_esEs19(xuu470, xuu480) 25.69/9.75 new_esEs37(xuu114, xuu116, ty_Float) -> new_esEs18(xuu114, xuu116) 25.69/9.75 new_ltEs23(xuu115, xuu117, ty_Char) -> new_ltEs17(xuu115, xuu117) 25.69/9.75 new_lt5(xuu101, xuu104, db, dc) -> new_esEs26(new_compare9(xuu101, xuu104, db, dc), LT) 25.69/9.75 new_esEs6(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.75 new_ltEs23(xuu115, xuu117, ty_Float) -> new_ltEs5(xuu115, xuu117) 25.69/9.75 new_esEs32(xuu31100000, xuu60000, ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.75 new_esEs9(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.75 new_ltEs14(EQ, EQ) -> True 25.69/9.75 new_esEs37(xuu114, xuu116, ty_Char) -> new_esEs15(xuu114, xuu116) 25.69/9.75 new_esEs4(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.75 new_lt21(xuu114, xuu116, ty_Bool) -> new_lt16(xuu114, xuu116) 25.69/9.75 new_compare210(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, True, ffb, ffc, ffd) -> EQ 25.69/9.75 new_ltEs20(xuu54, xuu55, app(app(app(ty_@3, cce), ccf), ccg)) -> new_ltEs13(xuu54, xuu55, cce, ccf, ccg) 25.69/9.75 new_compare13(LT, LT) -> EQ 25.69/9.75 new_primCmpInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> GT 25.69/9.75 new_lt13(xuu101, xuu104) -> new_esEs26(new_compare14(xuu101, xuu104), LT) 25.69/9.75 new_esEs21(Left(xuu31100000), Left(xuu60000), app(ty_Ratio, dhd), cee) -> new_esEs23(xuu31100000, xuu60000, dhd) 25.69/9.75 new_compare112(xuu188, xuu189, xuu190, xuu191, True, ehf, ehg) -> LT 25.69/9.75 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.75 new_esEs10(xuu3110000, xuu6000, app(ty_[], fd)) -> new_esEs12(xuu3110000, xuu6000, fd) 25.69/9.75 new_esEs29(xuu470, xuu480, ty_Ordering) -> new_esEs26(xuu470, xuu480) 25.69/9.75 new_compare13(GT, EQ) -> GT 25.69/9.75 new_primCompAux00(xuu37, xuu38, GT, dcb) -> GT 25.69/9.75 new_lt19(xuu470, xuu480, ty_Integer) -> new_lt13(xuu470, xuu480) 25.69/9.75 new_primCmpNat0(Zero, Succ(xuu60000)) -> LT 25.69/9.75 new_ltEs11(xuu471, xuu481, ty_Bool) -> new_ltEs16(xuu471, xuu481) 25.69/9.75 new_lt23(xuu102, xuu105, app(app(app(ty_@3, ffg), ffh), fga)) -> new_lt11(xuu102, xuu105, ffg, ffh, fga) 25.69/9.75 new_ltEs23(xuu115, xuu117, ty_Int) -> new_ltEs9(xuu115, xuu117) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, ty_Ordering) -> new_esEs26(xuu3110001, xuu6001) 25.69/9.75 new_ltEs12(Left(xuu470), Left(xuu480), ty_Float, bdd) -> new_ltEs5(xuu470, xuu480) 25.69/9.75 new_compare26(xuu54, xuu55, False, cca, ccb) -> new_compare17(xuu54, xuu55, new_ltEs20(xuu54, xuu55, ccb), cca, ccb) 25.69/9.75 new_esEs9(xuu3110000, xuu6000, app(ty_[], bab)) -> new_esEs12(xuu3110000, xuu6000, bab) 25.69/9.75 new_esEs34(xuu31100000, xuu60000, ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.75 new_esEs38(xuu101, xuu104, app(app(ty_Either, cga), cgb)) -> new_esEs21(xuu101, xuu104, cga, cgb) 25.69/9.75 new_ltEs12(Left(xuu470), Left(xuu480), ty_Char, bdd) -> new_ltEs17(xuu470, xuu480) 25.69/9.75 new_ltEs21(xuu76, xuu77, ty_@0) -> new_ltEs18(xuu76, xuu77) 25.69/9.75 new_lt8(xuu470, xuu480, ty_Ordering) -> new_lt6(xuu470, xuu480) 25.69/9.75 new_ltEs19(xuu472, xuu482, app(app(ty_@2, cbf), cbg)) -> new_ltEs10(xuu472, xuu482, cbf, cbg) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, app(ty_Ratio, gf)) -> new_esEs23(xuu3110001, xuu6001, gf) 25.69/9.75 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.75 new_esEs5(xuu3110000, xuu6000, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_esEs17(xuu3110000, xuu6000, cfa, cfb, cfc) 25.69/9.75 new_esEs9(xuu3110000, xuu6000, app(app(ty_@2, hb), hc)) -> new_esEs16(xuu3110000, xuu6000, hb, hc) 25.69/9.75 new_ltEs19(xuu472, xuu482, ty_Ordering) -> new_ltEs14(xuu472, xuu482) 25.69/9.75 new_ltEs12(Left(xuu470), Left(xuu480), ty_Double, bdd) -> new_ltEs6(xuu470, xuu480) 25.69/9.75 new_compare5(xuu311000, xuu600, ty_Float) -> new_compare7(xuu311000, xuu600) 25.69/9.75 new_esEs34(xuu31100000, xuu60000, ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.75 new_esEs38(xuu101, xuu104, app(ty_[], dh)) -> new_esEs12(xuu101, xuu104, dh) 25.69/9.75 new_esEs10(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.75 new_ltEs14(EQ, GT) -> True 25.69/9.75 new_esEs31(xuu471, xuu481, app(app(ty_Either, bhe), bhf)) -> new_esEs21(xuu471, xuu481, bhe, bhf) 25.69/9.75 new_ltEs12(Right(xuu470), Right(xuu480), bee, app(ty_Maybe, bfd)) -> new_ltEs15(xuu470, xuu480, bfd) 25.69/9.75 new_compare5(xuu311000, xuu600, app(app(ty_@2, eb), ec)) -> new_compare9(xuu311000, xuu600, eb, ec) 25.69/9.75 new_ltEs15(Just(xuu470), Just(xuu480), ty_Integer) -> new_ltEs7(xuu470, xuu480) 25.69/9.75 new_ltEs19(xuu472, xuu482, ty_Integer) -> new_ltEs7(xuu472, xuu482) 25.69/9.75 new_primEqInt(Neg(Succ(xuu311000000)), Neg(Succ(xuu600000))) -> new_primEqNat0(xuu311000000, xuu600000) 25.69/9.75 new_esEs33(xuu31100001, xuu60001, app(ty_Maybe, dgd)) -> new_esEs25(xuu31100001, xuu60001, dgd) 25.69/9.75 new_esEs31(xuu471, xuu481, ty_@0) -> new_esEs14(xuu471, xuu481) 25.69/9.75 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.75 new_ltEs12(Left(xuu470), Left(xuu480), app(ty_[], bdh), bdd) -> new_ltEs4(xuu470, xuu480, bdh) 25.69/9.75 new_primCmpInt(Neg(Zero), Pos(Succ(xuu60000))) -> LT 25.69/9.75 new_compare15(xuu311000, xuu600) -> new_primCmpInt(xuu311000, xuu600) 25.69/9.75 new_ltEs20(xuu54, xuu55, ty_Char) -> new_ltEs17(xuu54, xuu55) 25.69/9.75 new_primMulInt(Pos(xuu60000), Pos(xuu31100010)) -> Pos(new_primMulNat0(xuu60000, xuu31100010)) 25.69/9.75 new_compare13(EQ, LT) -> GT 25.69/9.75 new_ltEs14(LT, GT) -> True 25.69/9.75 new_ltEs14(GT, GT) -> True 25.69/9.75 new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_@2, ddb), ddc)) -> new_compare9(xuu37, xuu38, ddb, ddc) 25.69/9.75 new_ltEs21(xuu76, xuu77, ty_Bool) -> new_ltEs16(xuu76, xuu77) 25.69/9.75 new_esEs30(xuu470, xuu480, ty_Double) -> new_esEs22(xuu470, xuu480) 25.69/9.75 new_primCompAux00(xuu37, xuu38, EQ, ty_Float) -> new_compare7(xuu37, xuu38) 25.69/9.75 new_esEs9(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.75 new_primMulNat0(Succ(xuu600000), Zero) -> Zero 25.69/9.75 new_primMulNat0(Zero, Succ(xuu311000100)) -> Zero 25.69/9.75 new_esEs9(xuu3110000, xuu6000, app(ty_Maybe, bac)) -> new_esEs25(xuu3110000, xuu6000, bac) 25.69/9.75 new_lt21(xuu114, xuu116, ty_Integer) -> new_lt13(xuu114, xuu116) 25.69/9.75 new_esEs6(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.75 new_esEs7(xuu3110001, xuu6001, app(app(app(ty_@3, fbd), fbe), fbf)) -> new_esEs17(xuu3110001, xuu6001, fbd, fbe, fbf) 25.69/9.75 new_compare13(GT, LT) -> GT 25.69/9.75 new_esEs22(Double(xuu31100000, xuu31100001), Double(xuu60000, xuu60001)) -> new_esEs19(new_sr(xuu31100000, xuu60001), new_sr(xuu31100001, xuu60000)) 25.69/9.75 new_lt20(xuu471, xuu481, app(app(app(ty_@3, bhg), bhh), caa)) -> new_lt11(xuu471, xuu481, bhg, bhh, caa) 25.69/9.75 new_primPlusNat0(Succ(xuu21200), Zero) -> Succ(xuu21200) 25.69/9.75 new_primPlusNat0(Zero, Succ(xuu21100)) -> Succ(xuu21100) 25.69/9.75 new_compare7(Float(xuu3110000, Pos(xuu31100010)), Float(xuu6000, Pos(xuu60010))) -> new_compare15(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) 25.69/9.75 new_esEs26(EQ, GT) -> False 25.69/9.75 new_esEs26(GT, EQ) -> False 25.69/9.75 new_ltEs12(Left(xuu470), Left(xuu480), app(ty_Ratio, bed), bdd) -> new_ltEs8(xuu470, xuu480, bed) 25.69/9.75 new_esEs6(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.75 new_compare13(EQ, EQ) -> EQ 25.69/9.75 new_compare5(xuu311000, xuu600, app(app(app(ty_@3, chg), chh), daa)) -> new_compare28(xuu311000, xuu600, chg, chh, daa) 25.69/9.75 new_esEs39(xuu102, xuu105, ty_@0) -> new_esEs14(xuu102, xuu105) 25.69/9.75 new_compare29(False, False) -> EQ 25.69/9.75 new_esEs7(xuu3110001, xuu6001, app(ty_Maybe, fcc)) -> new_esEs25(xuu3110001, xuu6001, fcc) 25.69/9.75 new_esEs31(xuu471, xuu481, ty_Ordering) -> new_esEs26(xuu471, xuu481) 25.69/9.75 new_lt21(xuu114, xuu116, app(app(app(ty_@3, efc), efd), efe)) -> new_lt11(xuu114, xuu116, efc, efd, efe) 25.69/9.75 new_ltEs11(xuu471, xuu481, ty_@0) -> new_ltEs18(xuu471, xuu481) 25.69/9.75 new_esEs32(xuu31100000, xuu60000, app(app(ty_@2, dea), deb)) -> new_esEs16(xuu31100000, xuu60000, dea, deb) 25.69/9.75 new_esEs39(xuu102, xuu105, ty_Bool) -> new_esEs20(xuu102, xuu105) 25.69/9.75 new_lt8(xuu470, xuu480, ty_Integer) -> new_lt13(xuu470, xuu480) 25.69/9.75 new_esEs10(xuu3110000, xuu6000, app(ty_Maybe, ff)) -> new_esEs25(xuu3110000, xuu6000, ff) 25.69/9.75 new_esEs32(xuu31100000, xuu60000, ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.75 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Char, cee) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.75 new_ltEs20(xuu54, xuu55, ty_Float) -> new_ltEs5(xuu54, xuu55) 25.69/9.75 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Bool, cee) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.75 new_ltEs24(xuu103, xuu106, ty_@0) -> new_ltEs18(xuu103, xuu106) 25.69/9.75 new_esEs29(xuu470, xuu480, app(app(ty_Either, baf), bag)) -> new_esEs21(xuu470, xuu480, baf, bag) 25.69/9.75 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.75 new_esEs5(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.75 new_esEs25(Just(xuu31100000), Just(xuu60000), app(app(app(ty_@3, feb), fec), fed)) -> new_esEs17(xuu31100000, xuu60000, feb, fec, fed) 25.69/9.75 new_esEs25(Just(xuu31100000), Just(xuu60000), app(app(ty_Either, fee), fef)) -> new_esEs21(xuu31100000, xuu60000, fee, fef) 25.69/9.75 new_compare9(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), eb, ec) -> new_compare24(xuu3110000, xuu3110001, xuu6000, xuu6001, new_asAs(new_esEs10(xuu3110000, xuu6000, eb), new_esEs11(xuu3110001, xuu6001, ec)), eb, ec) 25.69/9.75 new_esEs29(xuu470, xuu480, ty_@0) -> new_esEs14(xuu470, xuu480) 25.69/9.75 new_esEs32(xuu31100000, xuu60000, app(ty_Maybe, dfb)) -> new_esEs25(xuu31100000, xuu60000, dfb) 25.69/9.75 new_compare25(xuu76, xuu77, True, cgd) -> EQ 25.69/9.75 new_esEs36(xuu31100002, xuu60002, app(ty_Ratio, eed)) -> new_esEs23(xuu31100002, xuu60002, eed) 25.69/9.75 new_esEs13(xuu31100000, xuu60000, app(ty_Ratio, ce)) -> new_esEs23(xuu31100000, xuu60000, ce) 25.69/9.75 new_ltEs5(xuu47, xuu48) -> new_fsEs(new_compare7(xuu47, xuu48)) 25.69/9.75 new_esEs27(xuu31100000, xuu60000, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.75 new_esEs30(xuu470, xuu480, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs17(xuu470, xuu480, bge, bgf, bgg) 25.69/9.75 new_lt23(xuu102, xuu105, ty_Double) -> new_lt12(xuu102, xuu105) 25.69/9.75 new_esEs13(xuu31100000, xuu60000, app(ty_[], cf)) -> new_esEs12(xuu31100000, xuu60000, cf) 25.69/9.75 new_esEs5(xuu3110000, xuu6000, app(app(ty_Either, cfd), cfe)) -> new_esEs21(xuu3110000, xuu6000, cfd, cfe) 25.69/9.75 new_compare29(True, False) -> GT 25.69/9.75 new_esEs7(xuu3110001, xuu6001, ty_Double) -> new_esEs22(xuu3110001, xuu6001) 25.69/9.75 new_ltEs15(Just(xuu470), Just(xuu480), ty_Bool) -> new_ltEs16(xuu470, xuu480) 25.69/9.75 new_ltEs19(xuu472, xuu482, ty_Bool) -> new_ltEs16(xuu472, xuu482) 25.69/9.75 new_esEs4(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.75 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Int, cee) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.75 new_esEs30(xuu470, xuu480, ty_Char) -> new_esEs15(xuu470, xuu480) 25.69/9.75 new_esEs10(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.75 new_ltEs11(xuu471, xuu481, ty_Char) -> new_ltEs17(xuu471, xuu481) 25.69/9.75 new_esEs21(Left(xuu31100000), Left(xuu60000), app(ty_Maybe, dhf), cee) -> new_esEs25(xuu31100000, xuu60000, dhf) 25.69/9.75 new_esEs10(xuu3110000, xuu6000, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs17(xuu3110000, xuu6000, ef, eg, eh) 25.69/9.75 new_lt20(xuu471, xuu481, ty_Char) -> new_lt17(xuu471, xuu481) 25.69/9.75 new_esEs34(xuu31100000, xuu60000, ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.75 new_esEs8(xuu3110002, xuu6002, ty_Float) -> new_esEs18(xuu3110002, xuu6002) 25.69/9.75 new_ltEs11(xuu471, xuu481, ty_Float) -> new_ltEs5(xuu471, xuu481) 25.69/9.75 new_esEs39(xuu102, xuu105, ty_Char) -> new_esEs15(xuu102, xuu105) 25.69/9.75 new_esEs10(xuu3110000, xuu6000, app(ty_Ratio, fc)) -> new_esEs23(xuu3110000, xuu6000, fc) 25.69/9.75 new_ltEs12(Left(xuu470), Left(xuu480), ty_Int, bdd) -> new_ltEs9(xuu470, xuu480) 25.69/9.75 new_esEs8(xuu3110002, xuu6002, app(app(ty_@2, fcd), fce)) -> new_esEs16(xuu3110002, xuu6002, fcd, fce) 25.69/9.75 new_compare25(xuu76, xuu77, False, cgd) -> new_compare19(xuu76, xuu77, new_ltEs21(xuu76, xuu77, cgd), cgd) 25.69/9.75 new_esEs37(xuu114, xuu116, app(ty_[], eff)) -> new_esEs12(xuu114, xuu116, eff) 25.69/9.75 new_esEs30(xuu470, xuu480, app(app(ty_Either, bgc), bgd)) -> new_esEs21(xuu470, xuu480, bgc, bgd) 25.69/9.75 new_esEs29(xuu470, xuu480, app(app(ty_@2, bbe), bbf)) -> new_esEs16(xuu470, xuu480, bbe, bbf) 25.69/9.75 new_primCompAux00(xuu37, xuu38, EQ, ty_Char) -> new_compare30(xuu37, xuu38) 25.69/9.75 new_lt23(xuu102, xuu105, ty_Bool) -> new_lt16(xuu102, xuu105) 25.69/9.75 new_esEs35(xuu31100001, xuu60001, app(app(app(ty_@3, ece), ecf), ecg)) -> new_esEs17(xuu31100001, xuu60001, ece, ecf, ecg) 25.69/9.75 new_esEs35(xuu31100001, xuu60001, ty_Bool) -> new_esEs20(xuu31100001, xuu60001) 25.69/9.75 new_ltEs24(xuu103, xuu106, ty_Double) -> new_ltEs6(xuu103, xuu106) 25.69/9.75 new_lt19(xuu470, xuu480, app(app(app(ty_@3, bge), bgf), bgg)) -> new_lt11(xuu470, xuu480, bge, bgf, bgg) 25.69/9.75 new_esEs31(xuu471, xuu481, app(ty_Ratio, caf)) -> new_esEs23(xuu471, xuu481, caf) 25.69/9.75 new_ltEs12(Left(xuu470), Left(xuu480), app(app(ty_@2, beb), bec), bdd) -> new_ltEs10(xuu470, xuu480, beb, bec) 25.69/9.75 new_ltEs15(Just(xuu470), Just(xuu480), app(app(ty_Either, dah), dba)) -> new_ltEs12(xuu470, xuu480, dah, dba) 25.69/9.75 new_ltEs12(Right(xuu470), Right(xuu480), bee, ty_@0) -> new_ltEs18(xuu470, xuu480) 25.69/9.75 new_esEs31(xuu471, xuu481, app(app(app(ty_@3, bhg), bhh), caa)) -> new_esEs17(xuu471, xuu481, bhg, bhh, caa) 25.69/9.75 new_ltEs11(xuu471, xuu481, app(ty_Ratio, bda)) -> new_ltEs8(xuu471, xuu481, bda) 25.69/9.75 new_esEs31(xuu471, xuu481, ty_Bool) -> new_esEs20(xuu471, xuu481) 25.69/9.75 new_esEs35(xuu31100001, xuu60001, app(ty_Ratio, edb)) -> new_esEs23(xuu31100001, xuu60001, edb) 25.69/9.75 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_@0, cee) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.75 new_lt15(xuu101, xuu104, cgc) -> new_esEs26(new_compare16(xuu101, xuu104, cgc), LT) 25.69/9.75 new_lt21(xuu114, xuu116, ty_@0) -> new_lt18(xuu114, xuu116) 25.69/9.75 new_esEs6(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.75 new_compare18(Right(xuu3110000), Right(xuu6000), cde, cdf) -> new_compare26(xuu3110000, xuu6000, new_esEs5(xuu3110000, xuu6000, cdf), cde, cdf) 25.69/9.75 new_ltEs22(xuu47, xuu48, app(app(ty_@2, bad), bae)) -> new_ltEs10(xuu47, xuu48, bad, bae) 25.69/9.75 new_esEs39(xuu102, xuu105, ty_Integer) -> new_esEs24(xuu102, xuu105) 25.69/9.75 new_lt8(xuu470, xuu480, ty_@0) -> new_lt18(xuu470, xuu480) 25.69/9.75 new_esEs4(xuu3110000, xuu6000, app(app(app(ty_@3, cea), ceb), cec)) -> new_esEs17(xuu3110000, xuu6000, cea, ceb, cec) 25.69/9.75 new_esEs32(xuu31100000, xuu60000, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.75 new_esEs23(:%(xuu31100000, xuu31100001), :%(xuu60000, xuu60001), dd) -> new_asAs(new_esEs27(xuu31100000, xuu60000, dd), new_esEs28(xuu31100001, xuu60001, dd)) 25.69/9.75 new_ltEs12(Right(xuu470), Right(xuu480), bee, app(app(app(ty_@3, beh), bfa), bfb)) -> new_ltEs13(xuu470, xuu480, beh, bfa, bfb) 25.69/9.75 new_esEs33(xuu31100001, xuu60001, ty_Ordering) -> new_esEs26(xuu31100001, xuu60001) 25.69/9.75 new_esEs4(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.75 new_ltEs16(True, False) -> False 25.69/9.75 new_compare5(xuu311000, xuu600, app(ty_Ratio, dac)) -> new_compare8(xuu311000, xuu600, dac) 25.69/9.75 new_esEs39(xuu102, xuu105, app(app(ty_Either, ffe), fff)) -> new_esEs21(xuu102, xuu105, ffe, fff) 25.69/9.75 new_esEs21(Left(xuu31100000), Left(xuu60000), app(app(ty_@2, dge), dgf), cee) -> new_esEs16(xuu31100000, xuu60000, dge, dgf) 25.69/9.75 new_esEs30(xuu470, xuu480, app(app(ty_@2, bhb), bhc)) -> new_esEs16(xuu470, xuu480, bhb, bhc) 25.69/9.75 new_ltEs22(xuu47, xuu48, ty_@0) -> new_ltEs18(xuu47, xuu48) 25.69/9.75 new_esEs37(xuu114, xuu116, ty_Int) -> new_esEs19(xuu114, xuu116) 25.69/9.75 new_primCmpInt(Pos(Succ(xuu31100000)), Pos(xuu6000)) -> new_primCmpNat0(Succ(xuu31100000), xuu6000) 25.69/9.75 new_esEs29(xuu470, xuu480, ty_Char) -> new_esEs15(xuu470, xuu480) 25.69/9.75 new_lt19(xuu470, xuu480, app(ty_Maybe, bha)) -> new_lt15(xuu470, xuu480, bha) 25.69/9.75 new_esEs13(xuu31100000, xuu60000, ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.75 new_esEs10(xuu3110000, xuu6000, app(app(ty_Either, fa), fb)) -> new_esEs21(xuu3110000, xuu6000, fa, fb) 25.69/9.75 new_lt8(xuu470, xuu480, ty_Char) -> new_lt17(xuu470, xuu480) 25.69/9.75 new_ltEs15(Just(xuu470), Just(xuu480), app(ty_Ratio, dca)) -> new_ltEs8(xuu470, xuu480, dca) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, app(ty_Maybe, gh)) -> new_esEs25(xuu3110001, xuu6001, gh) 25.69/9.75 new_compare13(GT, GT) -> EQ 25.69/9.75 new_ltEs20(xuu54, xuu55, ty_Double) -> new_ltEs6(xuu54, xuu55) 25.69/9.75 new_lt20(xuu471, xuu481, app(app(ty_Either, bhe), bhf)) -> new_lt9(xuu471, xuu481, bhe, bhf) 25.69/9.75 new_lt16(xuu101, xuu104) -> new_esEs26(new_compare29(xuu101, xuu104), LT) 25.69/9.75 new_ltEs21(xuu76, xuu77, app(app(ty_@2, chd), che)) -> new_ltEs10(xuu76, xuu77, chd, che) 25.69/9.75 new_ltEs15(Just(xuu470), Just(xuu480), ty_Ordering) -> new_ltEs14(xuu470, xuu480) 25.69/9.75 new_esEs39(xuu102, xuu105, app(app(app(ty_@3, ffg), ffh), fga)) -> new_esEs17(xuu102, xuu105, ffg, ffh, fga) 25.69/9.75 new_compare7(Float(xuu3110000, Neg(xuu31100010)), Float(xuu6000, Neg(xuu60010))) -> new_compare15(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) 25.69/9.75 new_esEs35(xuu31100001, xuu60001, ty_Integer) -> new_esEs24(xuu31100001, xuu60001) 25.69/9.75 new_lt20(xuu471, xuu481, ty_@0) -> new_lt18(xuu471, xuu481) 25.69/9.75 new_esEs13(xuu31100000, xuu60000, ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.75 new_esEs38(xuu101, xuu104, ty_@0) -> new_esEs14(xuu101, xuu104) 25.69/9.75 new_compare29(False, True) -> LT 25.69/9.75 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, app(app(ty_@2, dhg), dhh)) -> new_esEs16(xuu31100000, xuu60000, dhg, dhh) 25.69/9.75 new_primCompAux00(xuu37, xuu38, EQ, app(ty_Ratio, ddd)) -> new_compare8(xuu37, xuu38, ddd) 25.69/9.75 new_esEs29(xuu470, xuu480, ty_Bool) -> new_esEs20(xuu470, xuu480) 25.69/9.75 new_esEs34(xuu31100000, xuu60000, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.75 new_esEs36(xuu31100002, xuu60002, ty_Bool) -> new_esEs20(xuu31100002, xuu60002) 25.69/9.75 new_ltEs11(xuu471, xuu481, app(ty_Maybe, bcf)) -> new_ltEs15(xuu471, xuu481, bcf) 25.69/9.75 new_lt22(xuu101, xuu104, ty_Ordering) -> new_lt6(xuu101, xuu104) 25.69/9.75 new_primCompAux00(xuu37, xuu38, EQ, app(ty_Maybe, dda)) -> new_compare16(xuu37, xuu38, dda) 25.69/9.75 new_esEs30(xuu470, xuu480, ty_Bool) -> new_esEs20(xuu470, xuu480) 25.69/9.75 new_esEs5(xuu3110000, xuu6000, app(ty_Maybe, cfh)) -> new_esEs25(xuu3110000, xuu6000, cfh) 25.69/9.75 new_esEs36(xuu31100002, xuu60002, ty_Int) -> new_esEs19(xuu31100002, xuu60002) 25.69/9.75 new_lt21(xuu114, xuu116, app(ty_Maybe, efg)) -> new_lt15(xuu114, xuu116, efg) 25.69/9.75 new_lt19(xuu470, xuu480, ty_@0) -> new_lt18(xuu470, xuu480) 25.69/9.75 new_esEs5(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.75 new_esEs31(xuu471, xuu481, ty_Char) -> new_esEs15(xuu471, xuu481) 25.69/9.75 new_ltEs22(xuu47, xuu48, app(ty_[], bd)) -> new_ltEs4(xuu47, xuu48, bd) 25.69/9.75 new_compare18(Right(xuu3110000), Left(xuu6000), cde, cdf) -> GT 25.69/9.75 new_compare5(xuu311000, xuu600, ty_Char) -> new_compare30(xuu311000, xuu600) 25.69/9.75 new_compare6([], [], dab) -> EQ 25.69/9.75 new_ltEs18(xuu47, xuu48) -> new_fsEs(new_compare31(xuu47, xuu48)) 25.69/9.75 new_ltEs11(xuu471, xuu481, ty_Int) -> new_ltEs9(xuu471, xuu481) 25.69/9.75 new_lt8(xuu470, xuu480, ty_Float) -> new_lt14(xuu470, xuu480) 25.69/9.75 new_esEs34(xuu31100000, xuu60000, ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.75 new_esEs7(xuu3110001, xuu6001, ty_Float) -> new_esEs18(xuu3110001, xuu6001) 25.69/9.75 new_compare10(Double(xuu3110000, Neg(xuu31100010)), Double(xuu6000, Neg(xuu60010))) -> new_compare15(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) 25.69/9.75 new_esEs4(xuu3110000, xuu6000, app(ty_Maybe, cef)) -> new_esEs25(xuu3110000, xuu6000, cef) 25.69/9.75 new_lt9(xuu101, xuu104, cga, cgb) -> new_esEs26(new_compare18(xuu101, xuu104, cga, cgb), LT) 25.69/9.75 new_esEs10(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.75 new_lt8(xuu470, xuu480, app(app(ty_Either, baf), bag)) -> new_lt9(xuu470, xuu480, baf, bag) 25.69/9.75 new_ltEs12(Right(xuu470), Right(xuu480), bee, ty_Char) -> new_ltEs17(xuu470, xuu480) 25.69/9.75 new_compare112(xuu188, xuu189, xuu190, xuu191, False, ehf, ehg) -> GT 25.69/9.75 new_esEs35(xuu31100001, xuu60001, ty_@0) -> new_esEs14(xuu31100001, xuu60001) 25.69/9.75 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Float, cee) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.75 new_lt19(xuu470, xuu480, ty_Float) -> new_lt14(xuu470, xuu480) 25.69/9.75 new_esEs32(xuu31100000, xuu60000, ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.75 new_ltEs15(Nothing, Just(xuu480), dag) -> True 25.69/9.75 new_esEs31(xuu471, xuu481, ty_Int) -> new_esEs19(xuu471, xuu481) 25.69/9.75 new_esEs4(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.75 new_primPlusNat0(Succ(xuu21200), Succ(xuu21100)) -> Succ(Succ(new_primPlusNat0(xuu21200, xuu21100))) 25.69/9.75 new_compare18(Left(xuu3110000), Left(xuu6000), cde, cdf) -> new_compare27(xuu3110000, xuu6000, new_esEs4(xuu3110000, xuu6000, cde), cde, cdf) 25.69/9.75 new_esEs7(xuu3110001, xuu6001, app(ty_[], fcb)) -> new_esEs12(xuu3110001, xuu6001, fcb) 25.69/9.75 new_compare27(xuu47, xuu48, True, ddg, ddh) -> EQ 25.69/9.75 new_primCompAux00(xuu37, xuu38, EQ, ty_Ordering) -> new_compare13(xuu37, xuu38) 25.69/9.75 new_esEs38(xuu101, xuu104, ty_Integer) -> new_esEs24(xuu101, xuu104) 25.69/9.75 new_lt4(xuu101, xuu104, da) -> new_esEs26(new_compare8(xuu101, xuu104, da), LT) 25.69/9.75 new_esEs13(xuu31100000, xuu60000, ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.75 new_lt23(xuu102, xuu105, ty_Float) -> new_lt14(xuu102, xuu105) 25.69/9.75 new_esEs36(xuu31100002, xuu60002, app(app(ty_Either, eeb), eec)) -> new_esEs21(xuu31100002, xuu60002, eeb, eec) 25.69/9.75 new_esEs13(xuu31100000, xuu60000, app(app(ty_Either, cc), cd)) -> new_esEs21(xuu31100000, xuu60000, cc, cd) 25.69/9.75 new_ltEs16(False, False) -> True 25.69/9.75 new_ltEs21(xuu76, xuu77, app(ty_[], chb)) -> new_ltEs4(xuu76, xuu77, chb) 25.69/9.75 new_esEs13(xuu31100000, xuu60000, app(ty_Maybe, cg)) -> new_esEs25(xuu31100000, xuu60000, cg) 25.69/9.75 new_lt20(xuu471, xuu481, app(ty_Maybe, cac)) -> new_lt15(xuu471, xuu481, cac) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs17(xuu3110001, xuu6001, ga, gb, gc) 25.69/9.75 new_esEs32(xuu31100000, xuu60000, app(ty_Ratio, deh)) -> new_esEs23(xuu31100000, xuu60000, deh) 25.69/9.75 new_lt21(xuu114, xuu116, ty_Char) -> new_lt17(xuu114, xuu116) 25.69/9.75 new_esEs36(xuu31100002, xuu60002, app(ty_Maybe, eef)) -> new_esEs25(xuu31100002, xuu60002, eef) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, ty_Bool) -> new_esEs20(xuu3110001, xuu6001) 25.69/9.75 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Ordering, cee) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.75 new_esEs33(xuu31100001, xuu60001, ty_@0) -> new_esEs14(xuu31100001, xuu60001) 25.69/9.75 new_lt20(xuu471, xuu481, ty_Bool) -> new_lt16(xuu471, xuu481) 25.69/9.75 new_ltEs12(Right(xuu470), Right(xuu480), bee, ty_Ordering) -> new_ltEs14(xuu470, xuu480) 25.69/9.75 new_esEs34(xuu31100000, xuu60000, app(app(app(ty_@3, ebc), ebd), ebe)) -> new_esEs17(xuu31100000, xuu60000, ebc, ebd, ebe) 25.69/9.75 new_esEs13(xuu31100000, xuu60000, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.75 new_compare12(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, de, df, dg) -> LT 25.69/9.75 new_esEs18(Float(xuu31100000, xuu31100001), Float(xuu60000, xuu60001)) -> new_esEs19(new_sr(xuu31100000, xuu60001), new_sr(xuu31100001, xuu60000)) 25.69/9.75 new_lt20(xuu471, xuu481, ty_Float) -> new_lt14(xuu471, xuu481) 25.69/9.75 new_esEs36(xuu31100002, xuu60002, ty_Ordering) -> new_esEs26(xuu31100002, xuu60002) 25.69/9.75 new_lt21(xuu114, xuu116, ty_Ordering) -> new_lt6(xuu114, xuu116) 25.69/9.75 new_ltEs12(Right(xuu470), Right(xuu480), bee, app(ty_[], bfc)) -> new_ltEs4(xuu470, xuu480, bfc) 25.69/9.75 new_ltEs16(True, True) -> True 25.69/9.75 new_esEs39(xuu102, xuu105, ty_Float) -> new_esEs18(xuu102, xuu105) 25.69/9.75 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Integer, cee) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.75 new_ltEs11(xuu471, xuu481, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs13(xuu471, xuu481, bcb, bcc, bcd) 25.69/9.75 new_ltEs11(xuu471, xuu481, app(app(ty_Either, bbh), bca)) -> new_ltEs12(xuu471, xuu481, bbh, bca) 25.69/9.75 new_esEs35(xuu31100001, xuu60001, ty_Char) -> new_esEs15(xuu31100001, xuu60001) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, ty_Char) -> new_esEs15(xuu3110001, xuu6001) 25.69/9.75 new_esEs5(xuu3110000, xuu6000, app(ty_[], cfg)) -> new_esEs12(xuu3110000, xuu6000, cfg) 25.69/9.75 new_esEs36(xuu31100002, xuu60002, ty_Integer) -> new_esEs24(xuu31100002, xuu60002) 25.69/9.75 new_esEs17(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), cea, ceb, cec) -> new_asAs(new_esEs34(xuu31100000, xuu60000, cea), new_asAs(new_esEs35(xuu31100001, xuu60001, ceb), new_esEs36(xuu31100002, xuu60002, cec))) 25.69/9.75 new_esEs20(True, True) -> True 25.69/9.75 new_lt21(xuu114, xuu116, ty_Float) -> new_lt14(xuu114, xuu116) 25.69/9.75 new_esEs34(xuu31100000, xuu60000, ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.75 new_primCmpNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primCmpNat0(xuu31100000, xuu60000) 25.69/9.75 new_esEs25(Just(xuu31100000), Just(xuu60000), app(ty_[], feh)) -> new_esEs12(xuu31100000, xuu60000, feh) 25.69/9.75 new_esEs38(xuu101, xuu104, ty_Ordering) -> new_esEs26(xuu101, xuu104) 25.69/9.75 new_ltEs15(Just(xuu470), Just(xuu480), ty_Int) -> new_ltEs9(xuu470, xuu480) 25.69/9.75 new_compare5(xuu311000, xuu600, app(ty_Maybe, ha)) -> new_compare16(xuu311000, xuu600, ha) 25.69/9.75 new_esEs34(xuu31100000, xuu60000, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.75 new_lt22(xuu101, xuu104, ty_Float) -> new_lt14(xuu101, xuu104) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, app(app(ty_Either, gd), ge)) -> new_esEs21(xuu3110001, xuu6001, gd, ge) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, ty_Int) -> new_esEs19(xuu3110001, xuu6001) 25.69/9.75 new_esEs10(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.75 new_ltEs11(xuu471, xuu481, ty_Ordering) -> new_ltEs14(xuu471, xuu481) 25.69/9.75 new_esEs29(xuu470, xuu480, app(ty_Ratio, bbg)) -> new_esEs23(xuu470, xuu480, bbg) 25.69/9.75 new_esEs34(xuu31100000, xuu60000, app(app(ty_Either, ebf), ebg)) -> new_esEs21(xuu31100000, xuu60000, ebf, ebg) 25.69/9.75 new_esEs33(xuu31100001, xuu60001, ty_Char) -> new_esEs15(xuu31100001, xuu60001) 25.69/9.75 new_lt23(xuu102, xuu105, app(app(ty_Either, ffe), fff)) -> new_lt9(xuu102, xuu105, ffe, fff) 25.69/9.75 new_compare12(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, False, de, df, dg) -> GT 25.69/9.75 new_ltEs11(xuu471, xuu481, ty_Integer) -> new_ltEs7(xuu471, xuu481) 25.69/9.75 new_ltEs20(xuu54, xuu55, app(ty_[], cch)) -> new_ltEs4(xuu54, xuu55, cch) 25.69/9.75 new_compare13(LT, GT) -> LT 25.69/9.75 new_esEs37(xuu114, xuu116, ty_Ordering) -> new_esEs26(xuu114, xuu116) 25.69/9.75 new_esEs33(xuu31100001, xuu60001, ty_Int) -> new_esEs19(xuu31100001, xuu60001) 25.69/9.75 new_lt19(xuu470, xuu480, ty_Ordering) -> new_lt6(xuu470, xuu480) 25.69/9.75 new_esEs37(xuu114, xuu116, app(ty_Maybe, efg)) -> new_esEs25(xuu114, xuu116, efg) 25.69/9.75 new_esEs5(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.75 new_esEs15(Char(xuu31100000), Char(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 25.69/9.75 new_esEs36(xuu31100002, xuu60002, app(app(app(ty_@3, edg), edh), eea)) -> new_esEs17(xuu31100002, xuu60002, edg, edh, eea) 25.69/9.75 new_ltEs23(xuu115, xuu117, ty_Double) -> new_ltEs6(xuu115, xuu117) 25.69/9.75 new_ltEs12(Right(xuu470), Right(xuu480), bee, ty_Bool) -> new_ltEs16(xuu470, xuu480) 25.69/9.75 new_esEs30(xuu470, xuu480, app(ty_Ratio, bhd)) -> new_esEs23(xuu470, xuu480, bhd) 25.69/9.75 new_esEs38(xuu101, xuu104, app(ty_Maybe, cgc)) -> new_esEs25(xuu101, xuu104, cgc) 25.69/9.75 new_esEs13(xuu31100000, xuu60000, app(app(app(ty_@3, bh), ca), cb)) -> new_esEs17(xuu31100000, xuu60000, bh, ca, cb) 25.69/9.75 new_ltEs12(Right(xuu470), Right(xuu480), bee, ty_Float) -> new_ltEs5(xuu470, xuu480) 25.69/9.75 new_ltEs19(xuu472, xuu482, app(ty_[], cbd)) -> new_ltEs4(xuu472, xuu482, cbd) 25.69/9.75 new_ltEs14(LT, LT) -> True 25.69/9.75 new_lt22(xuu101, xuu104, ty_@0) -> new_lt18(xuu101, xuu104) 25.69/9.75 new_lt20(xuu471, xuu481, ty_Ordering) -> new_lt6(xuu471, xuu481) 25.69/9.75 new_compare210(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, ffb, ffc, ffd) -> new_compare11(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, new_lt22(xuu101, xuu104, ffb), new_asAs(new_esEs38(xuu101, xuu104, ffb), new_pePe(new_lt23(xuu102, xuu105, ffc), new_asAs(new_esEs39(xuu102, xuu105, ffc), new_ltEs24(xuu103, xuu106, ffd)))), ffb, ffc, ffd) 25.69/9.75 new_esEs35(xuu31100001, xuu60001, app(app(ty_Either, ech), eda)) -> new_esEs21(xuu31100001, xuu60001, ech, eda) 25.69/9.75 new_esEs6(xuu3110000, xuu6000, app(ty_[], fah)) -> new_esEs12(xuu3110000, xuu6000, fah) 25.69/9.75 new_esEs37(xuu114, xuu116, ty_Integer) -> new_esEs24(xuu114, xuu116) 25.69/9.75 new_ltEs12(Left(xuu470), Left(xuu480), app(app(app(ty_@3, bde), bdf), bdg), bdd) -> new_ltEs13(xuu470, xuu480, bde, bdf, bdg) 25.69/9.75 new_esEs10(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.75 new_lt19(xuu470, xuu480, ty_Char) -> new_lt17(xuu470, xuu480) 25.69/9.75 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.75 new_ltEs16(False, True) -> True 25.69/9.75 new_primCompAux1(xuu311000, xuu600, xuu311001, xuu601, bb) -> new_primCompAux00(xuu311001, xuu601, new_compare5(xuu311000, xuu600, bb), app(ty_[], bb)) 25.69/9.75 new_ltEs23(xuu115, xuu117, app(app(ty_@2, ehb), ehc)) -> new_ltEs10(xuu115, xuu117, ehb, ehc) 25.69/9.75 new_compare14(Integer(xuu3110000), Integer(xuu6000)) -> new_primCmpInt(xuu3110000, xuu6000) 25.69/9.75 new_ltEs23(xuu115, xuu117, app(app(ty_Either, egc), egd)) -> new_ltEs12(xuu115, xuu117, egc, egd) 25.69/9.75 new_lt23(xuu102, xuu105, ty_@0) -> new_lt18(xuu102, xuu105) 25.69/9.75 new_primCmpInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> LT 25.69/9.75 new_esEs29(xuu470, xuu480, app(ty_[], bbc)) -> new_esEs12(xuu470, xuu480, bbc) 25.69/9.75 new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_Either, dcc), dcd)) -> new_compare18(xuu37, xuu38, dcc, dcd) 25.69/9.75 new_esEs33(xuu31100001, xuu60001, ty_Bool) -> new_esEs20(xuu31100001, xuu60001) 25.69/9.75 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.75 new_esEs5(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.75 new_esEs6(xuu3110000, xuu6000, app(app(app(ty_@3, fab), fac), fad)) -> new_esEs17(xuu3110000, xuu6000, fab, fac, fad) 25.69/9.75 new_esEs30(xuu470, xuu480, ty_Int) -> new_esEs19(xuu470, xuu480) 25.69/9.75 new_compare13(EQ, GT) -> LT 25.69/9.75 new_compare24(xuu114, xuu115, xuu116, xuu117, False, eeg, eeh) -> new_compare111(xuu114, xuu115, xuu116, xuu117, new_lt21(xuu114, xuu116, eeg), new_asAs(new_esEs37(xuu114, xuu116, eeg), new_ltEs23(xuu115, xuu117, eeh)), eeg, eeh) 25.69/9.75 new_ltEs22(xuu47, xuu48, ty_Bool) -> new_ltEs16(xuu47, xuu48) 25.69/9.75 new_esEs35(xuu31100001, xuu60001, ty_Ordering) -> new_esEs26(xuu31100001, xuu60001) 25.69/9.75 new_ltEs12(Right(xuu470), Right(xuu480), bee, ty_Int) -> new_ltEs9(xuu470, xuu480) 25.69/9.75 new_esEs8(xuu3110002, xuu6002, app(ty_[], fdd)) -> new_esEs12(xuu3110002, xuu6002, fdd) 25.69/9.75 new_esEs12(:(xuu31100000, xuu31100001), [], be) -> False 25.69/9.75 new_esEs12([], :(xuu60000, xuu60001), be) -> False 25.69/9.75 new_primCmpInt(Pos(Zero), Neg(Succ(xuu60000))) -> GT 25.69/9.75 new_ltEs15(Just(xuu470), Just(xuu480), app(app(app(ty_@3, dbb), dbc), dbd)) -> new_ltEs13(xuu470, xuu480, dbb, dbc, dbd) 25.69/9.75 new_esEs10(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.75 new_compare5(xuu311000, xuu600, ty_Int) -> new_compare15(xuu311000, xuu600) 25.69/9.75 new_compare111(xuu188, xuu189, xuu190, xuu191, False, xuu193, ehf, ehg) -> new_compare112(xuu188, xuu189, xuu190, xuu191, xuu193, ehf, ehg) 25.69/9.75 new_compare29(True, True) -> EQ 25.69/9.75 new_esEs33(xuu31100001, xuu60001, ty_Float) -> new_esEs18(xuu31100001, xuu60001) 25.69/9.75 new_ltEs21(xuu76, xuu77, app(app(app(ty_@3, cgg), cgh), cha)) -> new_ltEs13(xuu76, xuu77, cgg, cgh, cha) 25.69/9.75 new_esEs37(xuu114, xuu116, app(app(ty_Either, efa), efb)) -> new_esEs21(xuu114, xuu116, efa, efb) 25.69/9.75 new_primCmpInt(Neg(Succ(xuu31100000)), Neg(xuu6000)) -> new_primCmpNat0(xuu6000, Succ(xuu31100000)) 25.69/9.75 new_esEs36(xuu31100002, xuu60002, ty_Double) -> new_esEs22(xuu31100002, xuu60002) 25.69/9.75 new_ltEs20(xuu54, xuu55, ty_@0) -> new_ltEs18(xuu54, xuu55) 25.69/9.75 new_esEs33(xuu31100001, xuu60001, app(app(ty_@2, dfc), dfd)) -> new_esEs16(xuu31100001, xuu60001, dfc, dfd) 25.69/9.75 new_ltEs22(xuu47, xuu48, ty_Integer) -> new_ltEs7(xuu47, xuu48) 25.69/9.75 new_esEs9(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.75 new_esEs5(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.75 new_primEqInt(Pos(Succ(xuu311000000)), Pos(Zero)) -> False 25.69/9.75 new_primEqInt(Pos(Zero), Pos(Succ(xuu600000))) -> False 25.69/9.75 new_esEs7(xuu3110001, xuu6001, ty_Int) -> new_esEs19(xuu3110001, xuu6001) 25.69/9.75 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.75 new_ltEs11(xuu471, xuu481, ty_Double) -> new_ltEs6(xuu471, xuu481) 25.69/9.75 new_lt21(xuu114, xuu116, app(app(ty_@2, efh), ega)) -> new_lt5(xuu114, xuu116, efh, ega) 25.69/9.75 new_ltEs17(xuu47, xuu48) -> new_fsEs(new_compare30(xuu47, xuu48)) 25.69/9.75 new_ltEs24(xuu103, xuu106, ty_Float) -> new_ltEs5(xuu103, xuu106) 25.69/9.75 new_primCompAux00(xuu37, xuu38, EQ, app(ty_[], dch)) -> new_compare6(xuu37, xuu38, dch) 25.69/9.75 new_lt23(xuu102, xuu105, app(ty_Ratio, fgf)) -> new_lt4(xuu102, xuu105, fgf) 25.69/9.75 new_esEs37(xuu114, xuu116, app(ty_Ratio, egb)) -> new_esEs23(xuu114, xuu116, egb) 25.69/9.75 new_compare6(:(xuu3110000, xuu3110001), [], dab) -> GT 25.69/9.75 new_esEs37(xuu114, xuu116, app(app(app(ty_@3, efc), efd), efe)) -> new_esEs17(xuu114, xuu116, efc, efd, efe) 25.69/9.75 new_esEs39(xuu102, xuu105, app(ty_Maybe, fgc)) -> new_esEs25(xuu102, xuu105, fgc) 25.69/9.75 new_ltEs8(xuu47, xuu48, ea) -> new_fsEs(new_compare8(xuu47, xuu48, ea)) 25.69/9.75 new_lt21(xuu114, xuu116, app(app(ty_Either, efa), efb)) -> new_lt9(xuu114, xuu116, efa, efb) 25.69/9.75 new_ltEs20(xuu54, xuu55, ty_Ordering) -> new_ltEs14(xuu54, xuu55) 25.69/9.75 new_ltEs20(xuu54, xuu55, app(app(ty_@2, cdb), cdc)) -> new_ltEs10(xuu54, xuu55, cdb, cdc) 25.69/9.75 new_esEs30(xuu470, xuu480, ty_Ordering) -> new_esEs26(xuu470, xuu480) 25.69/9.75 new_primCmpNat0(Zero, Zero) -> EQ 25.69/9.75 new_esEs35(xuu31100001, xuu60001, ty_Int) -> new_esEs19(xuu31100001, xuu60001) 25.69/9.75 new_ltEs15(Just(xuu470), Just(xuu480), ty_Double) -> new_ltEs6(xuu470, xuu480) 25.69/9.75 new_ltEs12(Right(xuu470), Right(xuu480), bee, ty_Integer) -> new_ltEs7(xuu470, xuu480) 25.69/9.75 new_ltEs22(xuu47, xuu48, ty_Int) -> new_ltEs9(xuu47, xuu48) 25.69/9.75 new_esEs21(Left(xuu31100000), Left(xuu60000), app(app(app(ty_@3, dgg), dgh), dha), cee) -> new_esEs17(xuu31100000, xuu60000, dgg, dgh, dha) 25.69/9.75 new_ltEs21(xuu76, xuu77, ty_Double) -> new_ltEs6(xuu76, xuu77) 25.69/9.75 new_lt23(xuu102, xuu105, app(ty_[], fgb)) -> new_lt7(xuu102, xuu105, fgb) 25.69/9.75 new_compare13(LT, EQ) -> LT 25.69/9.75 new_ltEs19(xuu472, xuu482, app(app(app(ty_@3, cba), cbb), cbc)) -> new_ltEs13(xuu472, xuu482, cba, cbb, cbc) 25.69/9.75 new_esEs5(xuu3110000, xuu6000, app(app(ty_@2, ceg), ceh)) -> new_esEs16(xuu3110000, xuu6000, ceg, ceh) 25.69/9.75 new_esEs36(xuu31100002, xuu60002, ty_Char) -> new_esEs15(xuu31100002, xuu60002) 25.69/9.75 new_esEs38(xuu101, xuu104, ty_Float) -> new_esEs18(xuu101, xuu104) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, ty_Integer) -> new_esEs24(xuu3110001, xuu6001) 25.69/9.75 new_lt19(xuu470, xuu480, ty_Double) -> new_lt12(xuu470, xuu480) 25.69/9.75 new_esEs4(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.75 new_esEs34(xuu31100000, xuu60000, app(ty_Maybe, ecb)) -> new_esEs25(xuu31100000, xuu60000, ecb) 25.69/9.75 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.75 new_esEs5(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.75 new_lt12(xuu101, xuu104) -> new_esEs26(new_compare10(xuu101, xuu104), LT) 25.69/9.75 new_ltEs20(xuu54, xuu55, app(ty_Ratio, cdd)) -> new_ltEs8(xuu54, xuu55, cdd) 25.69/9.75 new_lt22(xuu101, xuu104, ty_Char) -> new_lt17(xuu101, xuu104) 25.69/9.75 new_esEs20(False, True) -> False 25.69/9.75 new_esEs20(True, False) -> False 25.69/9.75 new_ltEs13(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), bfh, bga, bgb) -> new_pePe(new_lt19(xuu470, xuu480, bfh), new_asAs(new_esEs30(xuu470, xuu480, bfh), new_pePe(new_lt20(xuu471, xuu481, bga), new_asAs(new_esEs31(xuu471, xuu481, bga), new_ltEs19(xuu472, xuu482, bgb))))) 25.69/9.75 new_primCompAux00(xuu37, xuu38, EQ, ty_Int) -> new_compare15(xuu37, xuu38) 25.69/9.75 new_lt20(xuu471, xuu481, ty_Integer) -> new_lt13(xuu471, xuu481) 25.69/9.75 new_esEs32(xuu31100000, xuu60000, ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.75 new_lt19(xuu470, xuu480, app(app(ty_@2, bhb), bhc)) -> new_lt5(xuu470, xuu480, bhb, bhc) 25.69/9.75 new_esEs13(xuu31100000, xuu60000, ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.75 new_esEs37(xuu114, xuu116, ty_@0) -> new_esEs14(xuu114, xuu116) 25.69/9.75 new_ltEs14(EQ, LT) -> False 25.69/9.75 new_compare110(xuu133, xuu134, True, fdf, fdg) -> LT 25.69/9.75 new_esEs39(xuu102, xuu105, app(ty_[], fgb)) -> new_esEs12(xuu102, xuu105, fgb) 25.69/9.75 new_ltEs24(xuu103, xuu106, ty_Char) -> new_ltEs17(xuu103, xuu106) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, ty_Double) -> new_esEs22(xuu3110001, xuu6001) 25.69/9.75 new_esEs29(xuu470, xuu480, app(ty_Maybe, bbd)) -> new_esEs25(xuu470, xuu480, bbd) 25.69/9.75 new_esEs25(Just(xuu31100000), Just(xuu60000), app(ty_Maybe, ffa)) -> new_esEs25(xuu31100000, xuu60000, ffa) 25.69/9.75 new_compare5(xuu311000, xuu600, app(app(ty_Either, cde), cdf)) -> new_compare18(xuu311000, xuu600, cde, cdf) 25.69/9.75 new_esEs13(xuu31100000, xuu60000, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.75 new_esEs19(xuu3110000, xuu6000) -> new_primEqInt(xuu3110000, xuu6000) 25.69/9.75 new_compare8(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ty_Integer) -> new_compare14(new_sr0(xuu3110000, xuu6001), new_sr0(xuu6000, xuu3110001)) 25.69/9.75 new_esEs32(xuu31100000, xuu60000, app(app(ty_Either, def), deg)) -> new_esEs21(xuu31100000, xuu60000, def, deg) 25.69/9.75 new_esEs36(xuu31100002, xuu60002, app(ty_[], eee)) -> new_esEs12(xuu31100002, xuu60002, eee) 25.69/9.75 new_ltEs23(xuu115, xuu117, app(ty_[], egh)) -> new_ltEs4(xuu115, xuu117, egh) 25.69/9.75 new_primCmpNat0(Succ(xuu31100000), Zero) -> GT 25.69/9.75 new_ltEs19(xuu472, xuu482, ty_Double) -> new_ltEs6(xuu472, xuu482) 25.69/9.75 new_compare16(Just(xuu3110000), Nothing, ha) -> GT 25.69/9.75 new_esEs31(xuu471, xuu481, ty_Integer) -> new_esEs24(xuu471, xuu481) 25.69/9.75 new_pePe(False, xuu210) -> xuu210 25.69/9.75 new_esEs20(False, False) -> True 25.69/9.75 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.75 new_ltEs10(@2(xuu470, xuu471), @2(xuu480, xuu481), bad, bae) -> new_pePe(new_lt8(xuu470, xuu480, bad), new_asAs(new_esEs29(xuu470, xuu480, bad), new_ltEs11(xuu471, xuu481, bae))) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, app(app(ty_@2, fg), fh)) -> new_esEs16(xuu3110001, xuu6001, fg, fh) 25.69/9.75 new_compare28(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), chg, chh, daa) -> new_compare210(xuu3110000, xuu3110001, xuu3110002, xuu6000, xuu6001, xuu6002, new_asAs(new_esEs6(xuu3110000, xuu6000, chg), new_asAs(new_esEs7(xuu3110001, xuu6001, chh), new_esEs8(xuu3110002, xuu6002, daa))), chg, chh, daa) 25.69/9.75 new_compare5(xuu311000, xuu600, ty_Ordering) -> new_compare13(xuu311000, xuu600) 25.69/9.75 new_lt22(xuu101, xuu104, app(ty_Maybe, cgc)) -> new_lt15(xuu101, xuu104, cgc) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, ty_Float) -> new_esEs18(xuu3110001, xuu6001) 25.69/9.75 new_compare11(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, xuu180, de, df, dg) -> new_compare12(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, de, df, dg) 25.69/9.75 new_esEs34(xuu31100000, xuu60000, app(ty_Ratio, ebh)) -> new_esEs23(xuu31100000, xuu60000, ebh) 25.69/9.75 new_compare6(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), dab) -> new_primCompAux1(xuu3110000, xuu6000, xuu3110001, xuu6001, dab) 25.69/9.75 new_esEs32(xuu31100000, xuu60000, app(app(app(ty_@3, dec), ded), dee)) -> new_esEs17(xuu31100000, xuu60000, dec, ded, dee) 25.69/9.75 new_compare16(Nothing, Nothing, ha) -> EQ 25.69/9.75 new_lt21(xuu114, xuu116, ty_Double) -> new_lt12(xuu114, xuu116) 25.69/9.75 new_primEqInt(Pos(Zero), Neg(Succ(xuu600000))) -> False 25.69/9.75 new_primEqInt(Neg(Zero), Pos(Succ(xuu600000))) -> False 25.69/9.75 new_esEs5(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.75 new_esEs7(xuu3110001, xuu6001, ty_Ordering) -> new_esEs26(xuu3110001, xuu6001) 25.69/9.75 new_compare19(xuu154, xuu155, True, ehe) -> LT 25.69/9.75 new_lt23(xuu102, xuu105, ty_Ordering) -> new_lt6(xuu102, xuu105) 25.69/9.75 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, app(ty_Ratio, eaf)) -> new_esEs23(xuu31100000, xuu60000, eaf) 25.69/9.75 new_esEs4(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.75 new_esEs34(xuu31100000, xuu60000, app(ty_[], eca)) -> new_esEs12(xuu31100000, xuu60000, eca) 25.69/9.75 new_esEs11(xuu3110001, xuu6001, app(ty_[], gg)) -> new_esEs12(xuu3110001, xuu6001, gg) 25.69/9.76 new_compare111(xuu188, xuu189, xuu190, xuu191, True, xuu193, ehf, ehg) -> new_compare112(xuu188, xuu189, xuu190, xuu191, True, ehf, ehg) 25.69/9.76 new_ltEs12(Left(xuu470), Left(xuu480), app(app(ty_Either, bdb), bdc), bdd) -> new_ltEs12(xuu470, xuu480, bdb, bdc) 25.69/9.76 new_ltEs15(Nothing, Nothing, dag) -> True 25.69/9.76 new_primCompAux00(xuu37, xuu38, EQ, ty_@0) -> new_compare31(xuu37, xuu38) 25.69/9.76 new_ltEs14(GT, EQ) -> False 25.69/9.76 new_lt22(xuu101, xuu104, app(app(app(ty_@3, dad), dae), daf)) -> new_lt11(xuu101, xuu104, dad, dae, daf) 25.69/9.76 new_ltEs15(Just(xuu470), Nothing, dag) -> False 25.69/9.76 new_esEs6(xuu3110000, xuu6000, app(ty_Maybe, fba)) -> new_esEs25(xuu3110000, xuu6000, fba) 25.69/9.76 new_lt22(xuu101, xuu104, ty_Bool) -> new_lt16(xuu101, xuu104) 25.69/9.76 new_ltEs12(Left(xuu470), Left(xuu480), ty_Integer, bdd) -> new_ltEs7(xuu470, xuu480) 25.69/9.76 new_esEs36(xuu31100002, xuu60002, ty_Float) -> new_esEs18(xuu31100002, xuu60002) 25.69/9.76 new_esEs8(xuu3110002, xuu6002, ty_Double) -> new_esEs22(xuu3110002, xuu6002) 25.69/9.76 new_esEs29(xuu470, xuu480, ty_Double) -> new_esEs22(xuu470, xuu480) 25.69/9.76 new_esEs13(xuu31100000, xuu60000, ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.76 new_esEs4(xuu3110000, xuu6000, app(app(ty_Either, ced), cee)) -> new_esEs21(xuu3110000, xuu6000, ced, cee) 25.69/9.76 new_ltEs12(Left(xuu470), Left(xuu480), ty_Ordering, bdd) -> new_ltEs14(xuu470, xuu480) 25.69/9.76 new_esEs9(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.76 new_esEs6(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.76 new_ltEs24(xuu103, xuu106, ty_Int) -> new_ltEs9(xuu103, xuu106) 25.69/9.76 new_esEs38(xuu101, xuu104, ty_Char) -> new_esEs15(xuu101, xuu104) 25.69/9.76 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.76 new_esEs31(xuu471, xuu481, app(ty_Maybe, cac)) -> new_esEs25(xuu471, xuu481, cac) 25.69/9.76 new_ltEs12(Right(xuu470), Right(xuu480), bee, app(app(ty_@2, bfe), bff)) -> new_ltEs10(xuu470, xuu480, bfe, bff) 25.69/9.76 new_ltEs21(xuu76, xuu77, app(ty_Maybe, chc)) -> new_ltEs15(xuu76, xuu77, chc) 25.69/9.76 new_esEs33(xuu31100001, xuu60001, ty_Integer) -> new_esEs24(xuu31100001, xuu60001) 25.69/9.76 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.76 new_lt19(xuu470, xuu480, app(app(ty_Either, bgc), bgd)) -> new_lt9(xuu470, xuu480, bgc, bgd) 25.69/9.76 new_ltEs19(xuu472, xuu482, ty_Char) -> new_ltEs17(xuu472, xuu482) 25.69/9.76 new_ltEs12(Left(xuu470), Left(xuu480), ty_Bool, bdd) -> new_ltEs16(xuu470, xuu480) 25.69/9.76 new_esEs28(xuu31100001, xuu60001, ty_Int) -> new_esEs19(xuu31100001, xuu60001) 25.69/9.76 new_esEs26(GT, GT) -> True 25.69/9.76 new_lt8(xuu470, xuu480, ty_Double) -> new_lt12(xuu470, xuu480) 25.69/9.76 new_lt23(xuu102, xuu105, ty_Integer) -> new_lt13(xuu102, xuu105) 25.69/9.76 new_esEs38(xuu101, xuu104, ty_Bool) -> new_esEs20(xuu101, xuu104) 25.69/9.76 new_esEs8(xuu3110002, xuu6002, app(ty_Maybe, fde)) -> new_esEs25(xuu3110002, xuu6002, fde) 25.69/9.76 new_compare17(xuu140, xuu141, True, dde, ddf) -> LT 25.69/9.76 new_compare5(xuu311000, xuu600, ty_@0) -> new_compare31(xuu311000, xuu600) 25.69/9.76 new_esEs31(xuu471, xuu481, app(app(ty_@2, cad), cae)) -> new_esEs16(xuu471, xuu481, cad, cae) 25.69/9.76 new_esEs6(xuu3110000, xuu6000, app(app(ty_Either, fae), faf)) -> new_esEs21(xuu3110000, xuu6000, fae, faf) 25.69/9.76 new_ltEs22(xuu47, xuu48, ty_Char) -> new_ltEs17(xuu47, xuu48) 25.69/9.76 new_esEs8(xuu3110002, xuu6002, ty_Integer) -> new_esEs24(xuu3110002, xuu6002) 25.69/9.76 new_compare18(Left(xuu3110000), Right(xuu6000), cde, cdf) -> LT 25.69/9.76 new_compare8(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ty_Int) -> new_compare15(new_sr(xuu3110000, xuu6001), new_sr(xuu6000, xuu3110001)) 25.69/9.76 new_lt8(xuu470, xuu480, app(ty_Maybe, bbd)) -> new_lt15(xuu470, xuu480, bbd) 25.69/9.76 new_esEs30(xuu470, xuu480, ty_@0) -> new_esEs14(xuu470, xuu480) 25.69/9.76 new_compare5(xuu311000, xuu600, ty_Bool) -> new_compare29(xuu311000, xuu600) 25.69/9.76 new_lt22(xuu101, xuu104, ty_Integer) -> new_lt13(xuu101, xuu104) 25.69/9.76 new_esEs12(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), be) -> new_asAs(new_esEs13(xuu31100000, xuu60000, be), new_esEs12(xuu31100001, xuu60001, be)) 25.69/9.76 new_esEs4(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.76 new_esEs31(xuu471, xuu481, ty_Double) -> new_esEs22(xuu471, xuu481) 25.69/9.76 new_esEs7(xuu3110001, xuu6001, ty_Integer) -> new_esEs24(xuu3110001, xuu6001) 25.69/9.76 new_esEs29(xuu470, xuu480, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs17(xuu470, xuu480, bah, bba, bbb) 25.69/9.76 new_esEs38(xuu101, xuu104, ty_Int) -> new_esEs19(xuu101, xuu104) 25.69/9.76 new_primMulInt(Neg(xuu60000), Neg(xuu31100010)) -> Pos(new_primMulNat0(xuu60000, xuu31100010)) 25.69/9.76 new_primCmpInt(Pos(Zero), Pos(Succ(xuu60000))) -> new_primCmpNat0(Zero, Succ(xuu60000)) 25.69/9.76 new_ltEs20(xuu54, xuu55, ty_Bool) -> new_ltEs16(xuu54, xuu55) 25.69/9.76 new_ltEs23(xuu115, xuu117, ty_@0) -> new_ltEs18(xuu115, xuu117) 25.69/9.76 new_ltEs23(xuu115, xuu117, app(ty_Ratio, ehd)) -> new_ltEs8(xuu115, xuu117, ehd) 25.69/9.76 new_ltEs19(xuu472, xuu482, app(ty_Maybe, cbe)) -> new_ltEs15(xuu472, xuu482, cbe) 25.69/9.76 new_fsEs(xuu205) -> new_not(new_esEs26(xuu205, GT)) 25.69/9.76 new_ltEs21(xuu76, xuu77, ty_Char) -> new_ltEs17(xuu76, xuu77) 25.69/9.76 new_esEs35(xuu31100001, xuu60001, ty_Float) -> new_esEs18(xuu31100001, xuu60001) 25.69/9.76 new_ltEs15(Just(xuu470), Just(xuu480), app(ty_Maybe, dbf)) -> new_ltEs15(xuu470, xuu480, dbf) 25.69/9.76 new_esEs7(xuu3110001, xuu6001, app(app(ty_@2, fbb), fbc)) -> new_esEs16(xuu3110001, xuu6001, fbb, fbc) 25.69/9.76 new_ltEs15(Just(xuu470), Just(xuu480), ty_Float) -> new_ltEs5(xuu470, xuu480) 25.69/9.76 new_ltEs19(xuu472, xuu482, ty_Float) -> new_ltEs5(xuu472, xuu482) 25.69/9.76 new_esEs32(xuu31100000, xuu60000, ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.76 new_ltEs14(GT, LT) -> False 25.69/9.76 new_ltEs24(xuu103, xuu106, ty_Integer) -> new_ltEs7(xuu103, xuu106) 25.69/9.76 new_esEs7(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) 25.69/9.76 new_esEs38(xuu101, xuu104, ty_Double) -> new_esEs22(xuu101, xuu104) 25.69/9.76 new_esEs35(xuu31100001, xuu60001, app(app(ty_@2, ecc), ecd)) -> new_esEs16(xuu31100001, xuu60001, ecc, ecd) 25.69/9.76 new_ltEs23(xuu115, xuu117, app(app(app(ty_@3, ege), egf), egg)) -> new_ltEs13(xuu115, xuu117, ege, egf, egg) 25.69/9.76 new_lt8(xuu470, xuu480, app(app(app(ty_@3, bah), bba), bbb)) -> new_lt11(xuu470, xuu480, bah, bba, bbb) 25.69/9.76 new_ltEs12(Right(xuu470), Right(xuu480), bee, app(app(ty_Either, bef), beg)) -> new_ltEs12(xuu470, xuu480, bef, beg) 25.69/9.76 new_primMulInt(Pos(xuu60000), Neg(xuu31100010)) -> Neg(new_primMulNat0(xuu60000, xuu31100010)) 25.69/9.76 new_primMulInt(Neg(xuu60000), Pos(xuu31100010)) -> Neg(new_primMulNat0(xuu60000, xuu31100010)) 25.69/9.76 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, app(ty_Maybe, eah)) -> new_esEs25(xuu31100000, xuu60000, eah) 25.69/9.76 new_ltEs12(Right(xuu470), Left(xuu480), bee, bdd) -> False 25.69/9.76 new_ltEs19(xuu472, xuu482, ty_Int) -> new_ltEs9(xuu472, xuu482) 25.69/9.76 new_esEs8(xuu3110002, xuu6002, ty_Bool) -> new_esEs20(xuu3110002, xuu6002) 25.69/9.76 new_esEs30(xuu470, xuu480, ty_Integer) -> new_esEs24(xuu470, xuu480) 25.69/9.76 new_lt18(xuu101, xuu104) -> new_esEs26(new_compare31(xuu101, xuu104), LT) 25.69/9.76 new_esEs8(xuu3110002, xuu6002, app(app(app(ty_@3, fcf), fcg), fch)) -> new_esEs17(xuu3110002, xuu6002, fcf, fcg, fch) 25.69/9.76 new_esEs13(xuu31100000, xuu60000, ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.76 new_sr0(Integer(xuu60000), Integer(xuu31100010)) -> Integer(new_primMulInt(xuu60000, xuu31100010)) 25.69/9.76 new_esEs25(Just(xuu31100000), Just(xuu60000), app(ty_Ratio, feg)) -> new_esEs23(xuu31100000, xuu60000, feg) 25.69/9.76 new_esEs8(xuu3110002, xuu6002, app(ty_Ratio, fdc)) -> new_esEs23(xuu3110002, xuu6002, fdc) 25.69/9.76 new_lt20(xuu471, xuu481, app(ty_[], cab)) -> new_lt7(xuu471, xuu481, cab) 25.69/9.76 new_esEs10(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.76 new_lt19(xuu470, xuu480, app(ty_Ratio, bhd)) -> new_lt4(xuu470, xuu480, bhd) 25.69/9.76 new_esEs4(xuu3110000, xuu6000, app(ty_Ratio, dd)) -> new_esEs23(xuu3110000, xuu6000, dd) 25.69/9.76 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Double, cee) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.76 new_compare10(Double(xuu3110000, Pos(xuu31100010)), Double(xuu6000, Pos(xuu60010))) -> new_compare15(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) 25.69/9.76 new_lt20(xuu471, xuu481, ty_Int) -> new_lt10(xuu471, xuu481) 25.69/9.76 new_ltEs21(xuu76, xuu77, app(app(ty_Either, cge), cgf)) -> new_ltEs12(xuu76, xuu77, cge, cgf) 25.69/9.76 new_lt22(xuu101, xuu104, ty_Double) -> new_lt12(xuu101, xuu104) 25.69/9.76 new_asAs(True, xuu149) -> xuu149 25.69/9.76 new_lt8(xuu470, xuu480, app(ty_Ratio, bbg)) -> new_lt4(xuu470, xuu480, bbg) 25.69/9.76 new_lt20(xuu471, xuu481, app(ty_Ratio, caf)) -> new_lt4(xuu471, xuu481, caf) 25.69/9.76 new_esEs4(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.76 new_ltEs22(xuu47, xuu48, ty_Ordering) -> new_ltEs14(xuu47, xuu48) 25.69/9.76 new_lt19(xuu470, xuu480, app(ty_[], bgh)) -> new_lt7(xuu470, xuu480, bgh) 25.69/9.76 new_esEs5(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.76 new_ltEs24(xuu103, xuu106, ty_Bool) -> new_ltEs16(xuu103, xuu106) 25.69/9.76 new_ltEs21(xuu76, xuu77, ty_Float) -> new_ltEs5(xuu76, xuu77) 25.69/9.76 new_esEs31(xuu471, xuu481, ty_Float) -> new_esEs18(xuu471, xuu481) 25.69/9.76 new_esEs10(xuu3110000, xuu6000, app(app(ty_@2, ed), ee)) -> new_esEs16(xuu3110000, xuu6000, ed, ee) 25.69/9.76 new_ltEs9(xuu47, xuu48) -> new_fsEs(new_compare15(xuu47, xuu48)) 25.69/9.76 new_compare16(Just(xuu3110000), Just(xuu6000), ha) -> new_compare25(xuu3110000, xuu6000, new_esEs9(xuu3110000, xuu6000, ha), ha) 25.69/9.76 new_primPlusNat1(xuu222, xuu311000100) -> new_primPlusNat0(xuu222, Succ(xuu311000100)) 25.69/9.76 new_lt19(xuu470, xuu480, ty_Int) -> new_lt10(xuu470, xuu480) 25.69/9.76 new_ltEs15(Just(xuu470), Just(xuu480), ty_Char) -> new_ltEs17(xuu470, xuu480) 25.69/9.76 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, app(app(ty_Either, ead), eae)) -> new_esEs21(xuu31100000, xuu60000, ead, eae) 25.69/9.76 new_ltEs22(xuu47, xuu48, app(ty_Ratio, ea)) -> new_ltEs8(xuu47, xuu48, ea) 25.69/9.76 new_sr(xuu6000, xuu3110001) -> new_primMulInt(xuu6000, xuu3110001) 25.69/9.76 new_esEs8(xuu3110002, xuu6002, ty_Char) -> new_esEs15(xuu3110002, xuu6002) 25.69/9.76 new_esEs29(xuu470, xuu480, ty_Integer) -> new_esEs24(xuu470, xuu480) 25.69/9.76 new_ltEs11(xuu471, xuu481, app(ty_[], bce)) -> new_ltEs4(xuu471, xuu481, bce) 25.69/9.76 new_primMulNat0(Zero, Zero) -> Zero 25.69/9.76 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, app(ty_[], eag)) -> new_esEs12(xuu31100000, xuu60000, eag) 25.69/9.76 new_esEs21(Left(xuu31100000), Left(xuu60000), app(app(ty_Either, dhb), dhc), cee) -> new_esEs21(xuu31100000, xuu60000, dhb, dhc) 25.69/9.76 new_ltEs20(xuu54, xuu55, ty_Integer) -> new_ltEs7(xuu54, xuu55) 25.69/9.76 new_lt10(xuu101, xuu104) -> new_esEs26(new_compare15(xuu101, xuu104), LT) 25.69/9.76 new_ltEs21(xuu76, xuu77, app(ty_Ratio, chf)) -> new_ltEs8(xuu76, xuu77, chf) 25.69/9.76 new_esEs4(xuu3110000, xuu6000, app(app(ty_@2, cdg), cdh)) -> new_esEs16(xuu3110000, xuu6000, cdg, cdh) 25.69/9.76 new_esEs7(xuu3110001, xuu6001, ty_Char) -> new_esEs15(xuu3110001, xuu6001) 25.69/9.76 new_esEs33(xuu31100001, xuu60001, ty_Double) -> new_esEs22(xuu31100001, xuu60001) 25.69/9.76 new_ltEs22(xuu47, xuu48, ty_Float) -> new_ltEs5(xuu47, xuu48) 25.69/9.76 new_ltEs15(Just(xuu470), Just(xuu480), app(app(ty_@2, dbg), dbh)) -> new_ltEs10(xuu470, xuu480, dbg, dbh) 25.69/9.76 new_ltEs21(xuu76, xuu77, ty_Ordering) -> new_ltEs14(xuu76, xuu77) 25.69/9.76 new_esEs21(Left(xuu31100000), Left(xuu60000), app(ty_[], dhe), cee) -> new_esEs12(xuu31100000, xuu60000, dhe) 25.69/9.76 new_esEs28(xuu31100001, xuu60001, ty_Integer) -> new_esEs24(xuu31100001, xuu60001) 25.69/9.76 new_esEs39(xuu102, xuu105, app(app(ty_@2, fgd), fge)) -> new_esEs16(xuu102, xuu105, fgd, fge) 25.69/9.76 new_esEs25(Just(xuu31100000), Just(xuu60000), app(app(ty_@2, fdh), fea)) -> new_esEs16(xuu31100000, xuu60000, fdh, fea) 25.69/9.76 new_esEs39(xuu102, xuu105, app(ty_Ratio, fgf)) -> new_esEs23(xuu102, xuu105, fgf) 25.69/9.76 new_ltEs23(xuu115, xuu117, app(ty_Maybe, eha)) -> new_ltEs15(xuu115, xuu117, eha) 25.69/9.76 new_ltEs19(xuu472, xuu482, app(app(ty_Either, cag), cah)) -> new_ltEs12(xuu472, xuu482, cag, cah) 25.69/9.76 new_esEs7(xuu3110001, xuu6001, app(app(ty_Either, fbg), fbh)) -> new_esEs21(xuu3110001, xuu6001, fbg, fbh) 25.69/9.76 new_lt21(xuu114, xuu116, app(ty_Ratio, egb)) -> new_lt4(xuu114, xuu116, egb) 25.69/9.76 new_compare5(xuu311000, xuu600, ty_Double) -> new_compare10(xuu311000, xuu600) 25.69/9.76 new_esEs9(xuu3110000, xuu6000, app(app(app(ty_@3, hd), he), hf)) -> new_esEs17(xuu3110000, xuu6000, hd, he, hf) 25.69/9.76 new_lt17(xuu101, xuu104) -> new_esEs26(new_compare30(xuu101, xuu104), LT) 25.69/9.76 new_ltEs22(xuu47, xuu48, app(ty_Maybe, dag)) -> new_ltEs15(xuu47, xuu48, dag) 25.69/9.76 new_primCompAux00(xuu37, xuu38, EQ, app(app(app(ty_@3, dce), dcf), dcg)) -> new_compare28(xuu37, xuu38, dce, dcf, dcg) 25.69/9.76 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.76 new_primEqInt(Neg(Succ(xuu311000000)), Neg(Zero)) -> False 25.69/9.76 new_primEqInt(Neg(Zero), Neg(Succ(xuu600000))) -> False 25.69/9.76 new_esEs9(xuu3110000, xuu6000, app(ty_Ratio, baa)) -> new_esEs23(xuu3110000, xuu6000, baa) 25.69/9.76 new_ltEs20(xuu54, xuu55, app(app(ty_Either, ccc), ccd)) -> new_ltEs12(xuu54, xuu55, ccc, ccd) 25.69/9.76 new_esEs33(xuu31100001, xuu60001, app(ty_[], dgc)) -> new_esEs12(xuu31100001, xuu60001, dgc) 25.69/9.76 new_primEqInt(Pos(Succ(xuu311000000)), Pos(Succ(xuu600000))) -> new_primEqNat0(xuu311000000, xuu600000) 25.69/9.76 new_lt8(xuu470, xuu480, ty_Int) -> new_lt10(xuu470, xuu480) 25.69/9.76 new_primCompAux00(xuu37, xuu38, EQ, ty_Bool) -> new_compare29(xuu37, xuu38) 25.69/9.76 new_compare19(xuu154, xuu155, False, ehe) -> GT 25.69/9.76 new_esEs8(xuu3110002, xuu6002, app(app(ty_Either, fda), fdb)) -> new_esEs21(xuu3110002, xuu6002, fda, fdb) 25.69/9.76 new_esEs34(xuu31100000, xuu60000, app(app(ty_@2, eba), ebb)) -> new_esEs16(xuu31100000, xuu60000, eba, ebb) 25.69/9.76 new_primEqInt(Pos(Succ(xuu311000000)), Neg(xuu60000)) -> False 25.69/9.76 new_primEqInt(Neg(Succ(xuu311000000)), Pos(xuu60000)) -> False 25.69/9.76 new_esEs34(xuu31100000, xuu60000, ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.76 new_primCmpInt(Neg(Zero), Neg(Succ(xuu60000))) -> new_primCmpNat0(Succ(xuu60000), Zero) 25.69/9.76 new_lt8(xuu470, xuu480, app(ty_[], bbc)) -> new_lt7(xuu470, xuu480, bbc) 25.69/9.76 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.69/9.76 new_esEs6(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.76 new_esEs16(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), cdg, cdh) -> new_asAs(new_esEs32(xuu31100000, xuu60000, cdg), new_esEs33(xuu31100001, xuu60001, cdh)) 25.69/9.76 new_ltEs15(Just(xuu470), Just(xuu480), ty_@0) -> new_ltEs18(xuu470, xuu480) 25.69/9.76 new_primCompAux00(xuu37, xuu38, LT, dcb) -> LT 25.69/9.76 new_esEs7(xuu3110001, xuu6001, ty_Bool) -> new_esEs20(xuu3110001, xuu6001) 25.69/9.76 new_esEs39(xuu102, xuu105, ty_Double) -> new_esEs22(xuu102, xuu105) 25.69/9.76 new_ltEs24(xuu103, xuu106, app(app(ty_Either, fgg), fgh)) -> new_ltEs12(xuu103, xuu106, fgg, fgh) 25.69/9.76 new_esEs7(xuu3110001, xuu6001, app(ty_Ratio, fca)) -> new_esEs23(xuu3110001, xuu6001, fca) 25.69/9.76 new_esEs37(xuu114, xuu116, ty_Double) -> new_esEs22(xuu114, xuu116) 25.69/9.76 new_ltEs19(xuu472, xuu482, app(ty_Ratio, cbh)) -> new_ltEs8(xuu472, xuu482, cbh) 25.69/9.76 new_esEs13(xuu31100000, xuu60000, app(app(ty_@2, bf), bg)) -> new_esEs16(xuu31100000, xuu60000, bf, bg) 25.69/9.76 new_not(False) -> True 25.69/9.76 new_ltEs22(xuu47, xuu48, app(app(ty_Either, bee), bdd)) -> new_ltEs12(xuu47, xuu48, bee, bdd) 25.69/9.76 new_ltEs24(xuu103, xuu106, app(app(app(ty_@3, fha), fhb), fhc)) -> new_ltEs13(xuu103, xuu106, fha, fhb, fhc) 25.69/9.76 new_esEs36(xuu31100002, xuu60002, app(app(ty_@2, ede), edf)) -> new_esEs16(xuu31100002, xuu60002, ede, edf) 25.69/9.76 new_esEs8(xuu3110002, xuu6002, ty_@0) -> new_esEs14(xuu3110002, xuu6002) 25.69/9.76 new_ltEs23(xuu115, xuu117, ty_Bool) -> new_ltEs16(xuu115, xuu117) 25.69/9.76 new_lt20(xuu471, xuu481, app(app(ty_@2, cad), cae)) -> new_lt5(xuu471, xuu481, cad, cae) 25.69/9.76 new_esEs9(xuu3110000, xuu6000, app(app(ty_Either, hg), hh)) -> new_esEs21(xuu3110000, xuu6000, hg, hh) 25.69/9.76 new_esEs38(xuu101, xuu104, app(app(ty_@2, db), dc)) -> new_esEs16(xuu101, xuu104, db, dc) 25.69/9.76 new_ltEs12(Right(xuu470), Right(xuu480), bee, ty_Double) -> new_ltEs6(xuu470, xuu480) 25.69/9.76 new_esEs5(xuu3110000, xuu6000, app(ty_Ratio, cff)) -> new_esEs23(xuu3110000, xuu6000, cff) 25.69/9.76 new_esEs35(xuu31100001, xuu60001, ty_Double) -> new_esEs22(xuu31100001, xuu60001) 25.69/9.76 new_ltEs12(Left(xuu470), Left(xuu480), app(ty_Maybe, bea), bdd) -> new_ltEs15(xuu470, xuu480, bea) 25.69/9.76 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.69/9.76 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.69/9.76 new_esEs24(Integer(xuu31100000), Integer(xuu60000)) -> new_primEqInt(xuu31100000, xuu60000) 25.69/9.76 new_ltEs14(LT, EQ) -> True 25.69/9.76 new_ltEs22(xuu47, xuu48, app(app(app(ty_@3, bfh), bga), bgb)) -> new_ltEs13(xuu47, xuu48, bfh, bga, bgb) 25.69/9.76 new_lt8(xuu470, xuu480, app(app(ty_@2, bbe), bbf)) -> new_lt5(xuu470, xuu480, bbe, bbf) 25.69/9.76 new_esEs27(xuu31100000, xuu60000, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.76 new_esEs32(xuu31100000, xuu60000, app(ty_[], dfa)) -> new_esEs12(xuu31100000, xuu60000, dfa) 25.69/9.76 new_esEs31(xuu471, xuu481, app(ty_[], cab)) -> new_esEs12(xuu471, xuu481, cab) 25.69/9.76 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.69/9.76 new_esEs26(EQ, EQ) -> True 25.69/9.76 new_esEs30(xuu470, xuu480, ty_Float) -> new_esEs18(xuu470, xuu480) 25.69/9.76 new_esEs9(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.76 new_ltEs24(xuu103, xuu106, app(ty_Maybe, fhe)) -> new_ltEs15(xuu103, xuu106, fhe) 25.69/9.76 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs17(xuu31100000, xuu60000, eaa, eab, eac) 25.69/9.76 new_lt22(xuu101, xuu104, ty_Int) -> new_lt10(xuu101, xuu104) 25.69/9.76 new_primCompAux00(xuu37, xuu38, EQ, ty_Double) -> new_compare10(xuu37, xuu38) 25.69/9.76 new_lt23(xuu102, xuu105, app(app(ty_@2, fgd), fge)) -> new_lt5(xuu102, xuu105, fgd, fge) 25.69/9.76 new_compare31(@0, @0) -> EQ 25.69/9.76 new_esEs26(LT, LT) -> True 25.69/9.76 new_esEs9(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.76 new_compare30(Char(xuu3110000), Char(xuu6000)) -> new_primCmpNat0(xuu3110000, xuu6000) 25.69/9.76 new_esEs30(xuu470, xuu480, app(ty_[], bgh)) -> new_esEs12(xuu470, xuu480, bgh) 25.69/9.76 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.76 new_compare5(xuu311000, xuu600, app(ty_[], dab)) -> new_compare6(xuu311000, xuu600, dab) 25.69/9.76 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.76 new_ltEs12(Left(xuu470), Left(xuu480), ty_@0, bdd) -> new_ltEs18(xuu470, xuu480) 25.69/9.76 new_esEs12([], [], be) -> True 25.69/9.76 new_ltEs21(xuu76, xuu77, ty_Int) -> new_ltEs9(xuu76, xuu77) 25.69/9.76 new_ltEs6(xuu47, xuu48) -> new_fsEs(new_compare10(xuu47, xuu48)) 25.69/9.76 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.69/9.76 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.69/9.76 new_esEs8(xuu3110002, xuu6002, ty_Int) -> new_esEs19(xuu3110002, xuu6002) 25.69/9.76 new_compare110(xuu133, xuu134, False, fdf, fdg) -> GT 25.69/9.76 new_esEs9(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.76 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.76 new_esEs25(Nothing, Nothing, cef) -> True 25.69/9.76 new_primEqNat0(Zero, Zero) -> True 25.69/9.76 new_ltEs11(xuu471, xuu481, app(app(ty_@2, bcg), bch)) -> new_ltEs10(xuu471, xuu481, bcg, bch) 25.69/9.76 new_ltEs20(xuu54, xuu55, ty_Int) -> new_ltEs9(xuu54, xuu55) 25.69/9.76 new_lt11(xuu101, xuu104, dad, dae, daf) -> new_esEs26(new_compare28(xuu101, xuu104, dad, dae, daf), LT) 25.69/9.76 new_esEs25(Nothing, Just(xuu60000), cef) -> False 25.69/9.76 new_esEs25(Just(xuu31100000), Nothing, cef) -> False 25.69/9.76 new_compare16(Nothing, Just(xuu6000), ha) -> LT 25.69/9.76 new_esEs37(xuu114, xuu116, app(app(ty_@2, efh), ega)) -> new_esEs16(xuu114, xuu116, efh, ega) 25.69/9.76 new_lt21(xuu114, xuu116, app(ty_[], eff)) -> new_lt7(xuu114, xuu116, eff) 25.69/9.76 new_ltEs15(Just(xuu470), Just(xuu480), app(ty_[], dbe)) -> new_ltEs4(xuu470, xuu480, dbe) 25.69/9.76 new_asAs(False, xuu149) -> False 25.69/9.76 new_lt22(xuu101, xuu104, app(app(ty_@2, db), dc)) -> new_lt5(xuu101, xuu104, db, dc) 25.69/9.76 new_ltEs12(Right(xuu470), Right(xuu480), bee, app(ty_Ratio, bfg)) -> new_ltEs8(xuu470, xuu480, bfg) 25.69/9.76 new_ltEs23(xuu115, xuu117, ty_Integer) -> new_ltEs7(xuu115, xuu117) 25.69/9.76 new_lt21(xuu114, xuu116, ty_Int) -> new_lt10(xuu114, xuu116) 25.69/9.76 new_esEs29(xuu470, xuu480, ty_Float) -> new_esEs18(xuu470, xuu480) 25.69/9.76 new_ltEs23(xuu115, xuu117, ty_Ordering) -> new_ltEs14(xuu115, xuu117) 25.69/9.76 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.76 new_esEs6(xuu3110000, xuu6000, app(ty_Ratio, fag)) -> new_esEs23(xuu3110000, xuu6000, fag) 25.69/9.76 25.69/9.76 The set Q consists of the following terms: 25.69/9.76 25.69/9.76 new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.69/9.76 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 25.69/9.76 new_esEs32(x0, x1, ty_Char) 25.69/9.76 new_lt21(x0, x1, ty_Bool) 25.69/9.76 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_lt19(x0, x1, ty_Ordering) 25.69/9.76 new_esEs25(Just(x0), Nothing, x1) 25.69/9.76 new_primCmpNat0(Succ(x0), Succ(x1)) 25.69/9.76 new_esEs36(x0, x1, ty_@0) 25.69/9.76 new_compare25(x0, x1, False, x2) 25.69/9.76 new_esEs36(x0, x1, ty_Bool) 25.69/9.76 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_lt20(x0, x1, ty_Integer) 25.69/9.76 new_lt22(x0, x1, ty_Char) 25.69/9.76 new_lt21(x0, x1, ty_@0) 25.69/9.76 new_esEs4(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_lt19(x0, x1, ty_Double) 25.69/9.76 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 25.69/9.76 new_esEs33(x0, x1, ty_@0) 25.69/9.76 new_esEs5(x0, x1, ty_Int) 25.69/9.76 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_ltEs23(x0, x1, ty_Double) 25.69/9.76 new_compare18(Right(x0), Right(x1), x2, x3) 25.69/9.76 new_esEs37(x0, x1, ty_Ordering) 25.69/9.76 new_lt23(x0, x1, ty_Bool) 25.69/9.76 new_lt23(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_compare5(x0, x1, ty_Integer) 25.69/9.76 new_lt21(x0, x1, ty_Integer) 25.69/9.76 new_primEqInt(Pos(Zero), Pos(Zero)) 25.69/9.76 new_primCompAux00(x0, x1, EQ, ty_Bool) 25.69/9.76 new_esEs33(x0, x1, ty_Bool) 25.69/9.76 new_compare110(x0, x1, True, x2, x3) 25.69/9.76 new_ltEs24(x0, x1, ty_Float) 25.69/9.76 new_esEs6(x0, x1, ty_Float) 25.69/9.76 new_esEs20(False, True) 25.69/9.76 new_esEs20(True, False) 25.69/9.76 new_compare27(x0, x1, True, x2, x3) 25.69/9.76 new_esEs9(x0, x1, ty_Int) 25.69/9.76 new_asAs(False, x0) 25.69/9.76 new_esEs5(x0, x1, app(ty_[], x2)) 25.69/9.76 new_esEs10(x0, x1, ty_Float) 25.69/9.76 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_primEqInt(Neg(Zero), Neg(Zero)) 25.69/9.76 new_ltEs23(x0, x1, ty_Ordering) 25.69/9.76 new_esEs36(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_lt20(x0, x1, ty_@0) 25.69/9.76 new_esEs32(x0, x1, ty_Double) 25.69/9.76 new_compare26(x0, x1, False, x2, x3) 25.69/9.76 new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 25.69/9.76 new_lt23(x0, x1, ty_Integer) 25.69/9.76 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 25.69/9.76 new_ltEs15(Nothing, Nothing, x0) 25.69/9.76 new_esEs33(x0, x1, ty_Integer) 25.69/9.76 new_ltEs11(x0, x1, ty_Double) 25.69/9.76 new_lt20(x0, x1, ty_Float) 25.69/9.76 new_lt22(x0, x1, ty_Double) 25.69/9.76 new_esEs31(x0, x1, ty_Float) 25.69/9.76 new_ltEs20(x0, x1, ty_Char) 25.69/9.76 new_esEs25(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.69/9.76 new_esEs36(x0, x1, ty_Integer) 25.69/9.76 new_lt19(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_lt19(x0, x1, ty_Char) 25.69/9.76 new_esEs5(x0, x1, ty_@0) 25.69/9.76 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.69/9.76 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.69/9.76 new_primCompAux00(x0, x1, EQ, ty_Integer) 25.69/9.76 new_ltEs11(x0, x1, app(ty_[], x2)) 25.69/9.76 new_ltEs6(x0, x1) 25.69/9.76 new_ltEs23(x0, x1, ty_Char) 25.69/9.76 new_compare29(False, False) 25.69/9.76 new_primEqInt(Pos(Zero), Neg(Zero)) 25.69/9.76 new_primEqInt(Neg(Zero), Pos(Zero)) 25.69/9.76 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 25.69/9.76 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_esEs39(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_esEs9(x0, x1, app(ty_[], x2)) 25.69/9.76 new_compare112(x0, x1, x2, x3, False, x4, x5) 25.69/9.76 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_ltEs21(x0, x1, ty_Double) 25.69/9.76 new_esEs35(x0, x1, ty_Double) 25.69/9.76 new_lt8(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_ltEs21(x0, x1, ty_Char) 25.69/9.76 new_esEs35(x0, x1, ty_Char) 25.69/9.76 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_esEs21(Left(x0), Left(x1), ty_Float, x2) 25.69/9.76 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.69/9.76 new_primEqNat0(Succ(x0), Succ(x1)) 25.69/9.76 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_esEs11(x0, x1, app(ty_[], x2)) 25.69/9.76 new_esEs34(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.69/9.76 new_primMulInt(Neg(x0), Neg(x1)) 25.69/9.76 new_esEs39(x0, x1, ty_Ordering) 25.69/9.76 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_ltEs23(x0, x1, app(ty_[], x2)) 25.69/9.76 new_primPlusNat0(Succ(x0), Succ(x1)) 25.69/9.76 new_ltEs11(x0, x1, ty_Char) 25.69/9.76 new_lt9(x0, x1, x2, x3) 25.69/9.76 new_esEs29(x0, x1, ty_Float) 25.69/9.76 new_esEs21(Right(x0), Right(x1), x2, ty_Bool) 25.69/9.76 new_esEs8(x0, x1, ty_Double) 25.69/9.76 new_compare17(x0, x1, True, x2, x3) 25.69/9.76 new_esEs9(x0, x1, ty_Integer) 25.69/9.76 new_esEs29(x0, x1, ty_Ordering) 25.69/9.76 new_ltEs15(Just(x0), Just(x1), ty_Float) 25.69/9.76 new_lt23(x0, x1, ty_Float) 25.69/9.76 new_esEs34(x0, x1, app(ty_[], x2)) 25.69/9.76 new_esEs34(x0, x1, ty_Integer) 25.69/9.76 new_lt12(x0, x1) 25.69/9.76 new_lt21(x0, x1, ty_Int) 25.69/9.76 new_ltEs19(x0, x1, ty_Char) 25.69/9.76 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_esEs6(x0, x1, app(ty_[], x2)) 25.69/9.76 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_compare19(x0, x1, False, x2) 25.69/9.76 new_esEs26(LT, EQ) 25.69/9.76 new_esEs26(EQ, LT) 25.69/9.76 new_esEs13(x0, x1, ty_Ordering) 25.69/9.76 new_ltEs19(x0, x1, app(ty_[], x2)) 25.69/9.76 new_esEs9(x0, x1, ty_@0) 25.69/9.76 new_esEs39(x0, x1, app(ty_[], x2)) 25.69/9.76 new_ltEs21(x0, x1, ty_Ordering) 25.69/9.76 new_esEs25(Just(x0), Just(x1), ty_Double) 25.69/9.76 new_esEs37(x0, x1, app(ty_[], x2)) 25.69/9.76 new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) 25.69/9.76 new_primMulNat0(Succ(x0), Zero) 25.69/9.76 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_esEs8(x0, x1, ty_Ordering) 25.69/9.76 new_esEs21(Left(x0), Right(x1), x2, x3) 25.69/9.76 new_esEs21(Right(x0), Left(x1), x2, x3) 25.69/9.76 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_lt20(x0, x1, ty_Int) 25.69/9.76 new_esEs27(x0, x1, ty_Int) 25.69/9.76 new_esEs30(x0, x1, app(ty_[], x2)) 25.69/9.76 new_compare28(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.69/9.76 new_esEs37(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_ltEs24(x0, x1, ty_Int) 25.69/9.76 new_lt21(x0, x1, ty_Float) 25.69/9.76 new_lt19(x0, x1, app(ty_[], x2)) 25.69/9.76 new_ltEs16(True, False) 25.69/9.76 new_ltEs16(False, True) 25.69/9.76 new_esEs29(x0, x1, ty_Char) 25.69/9.76 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 25.69/9.76 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) 25.69/9.76 new_compare5(x0, x1, ty_Float) 25.69/9.76 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 25.69/9.76 new_lt22(x0, x1, ty_Ordering) 25.69/9.76 new_primMulInt(Pos(x0), Neg(x1)) 25.69/9.76 new_primMulInt(Neg(x0), Pos(x1)) 25.69/9.76 new_compare5(x0, x1, ty_Bool) 25.69/9.76 new_esEs30(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_esEs34(x0, x1, ty_Float) 25.69/9.76 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_ltEs24(x0, x1, ty_Integer) 25.69/9.76 new_esEs27(x0, x1, ty_Integer) 25.69/9.76 new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.69/9.76 new_esEs30(x0, x1, ty_Char) 25.69/9.76 new_primMulInt(Pos(x0), Pos(x1)) 25.69/9.76 new_esEs10(x0, x1, ty_@0) 25.69/9.76 new_esEs39(x0, x1, ty_Double) 25.69/9.76 new_esEs34(x0, x1, ty_Bool) 25.69/9.76 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_lt22(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_esEs21(Left(x0), Left(x1), ty_Integer, x2) 25.69/9.76 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.69/9.76 new_ltEs19(x0, x1, ty_Ordering) 25.69/9.76 new_primCompAux00(x0, x1, EQ, ty_Float) 25.69/9.76 new_compare111(x0, x1, x2, x3, False, x4, x5, x6) 25.69/9.76 new_compare5(x0, x1, ty_Int) 25.69/9.76 new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.69/9.76 new_esEs12(:(x0, x1), [], x2) 25.69/9.76 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 25.69/9.76 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.69/9.76 new_ltEs11(x0, x1, ty_Ordering) 25.69/9.76 new_esEs29(x0, x1, ty_Integer) 25.69/9.76 new_primCmpNat0(Zero, Succ(x0)) 25.69/9.76 new_ltEs24(x0, x1, ty_Bool) 25.69/9.76 new_ltEs18(x0, x1) 25.69/9.76 new_compare18(Left(x0), Left(x1), x2, x3) 25.69/9.76 new_esEs13(x0, x1, ty_Char) 25.69/9.76 new_lt20(x0, x1, ty_Bool) 25.69/9.76 new_esEs29(x0, x1, app(ty_[], x2)) 25.69/9.76 new_esEs21(Right(x0), Right(x1), x2, ty_Int) 25.69/9.76 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_esEs10(x0, x1, ty_Double) 25.69/9.76 new_esEs15(Char(x0), Char(x1)) 25.69/9.76 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_compare18(Right(x0), Left(x1), x2, x3) 25.69/9.76 new_esEs34(x0, x1, ty_Int) 25.69/9.76 new_compare18(Left(x0), Right(x1), x2, x3) 25.69/9.76 new_esEs26(EQ, EQ) 25.69/9.76 new_esEs37(x0, x1, ty_Double) 25.69/9.76 new_lt23(x0, x1, ty_Int) 25.69/9.76 new_primCompAux00(x0, x1, EQ, ty_Int) 25.69/9.76 new_esEs25(Just(x0), Just(x1), app(ty_[], x2)) 25.69/9.76 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.69/9.76 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.69/9.76 new_esEs8(x0, x1, ty_@0) 25.69/9.76 new_ltEs15(Just(x0), Just(x1), ty_Bool) 25.69/9.76 new_lt21(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_compare6(:(x0, x1), [], x2) 25.69/9.76 new_esEs30(x0, x1, ty_Double) 25.69/9.76 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_esEs29(x0, x1, ty_Bool) 25.69/9.76 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_compare16(Just(x0), Nothing, x1) 25.69/9.76 new_esEs37(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_ltEs15(Just(x0), Nothing, x1) 25.69/9.76 new_ltEs15(Just(x0), Just(x1), ty_Integer) 25.69/9.76 new_ltEs22(x0, x1, ty_@0) 25.69/9.76 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_compare13(GT, GT) 25.69/9.76 new_compare13(EQ, LT) 25.69/9.76 new_compare13(LT, EQ) 25.69/9.76 new_lt8(x0, x1, ty_Ordering) 25.69/9.76 new_primCmpNat0(Succ(x0), Zero) 25.69/9.76 new_esEs31(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_compare12(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 25.69/9.76 new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) 25.69/9.76 new_primCompAux00(x0, x1, LT, x2) 25.69/9.76 new_ltEs15(Just(x0), Just(x1), ty_@0) 25.69/9.76 new_ltEs20(x0, x1, app(ty_[], x2)) 25.69/9.76 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.69/9.76 new_ltEs8(x0, x1, x2) 25.69/9.76 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_ltEs24(x0, x1, ty_Ordering) 25.69/9.76 new_primPlusNat0(Zero, Zero) 25.69/9.76 new_esEs6(x0, x1, ty_Ordering) 25.69/9.76 new_esEs7(x0, x1, ty_Ordering) 25.69/9.76 new_not(True) 25.69/9.76 new_esEs38(x0, x1, app(ty_[], x2)) 25.69/9.76 new_esEs21(Right(x0), Right(x1), x2, ty_Integer) 25.69/9.76 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_lt8(x0, x1, ty_Double) 25.69/9.76 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 25.69/9.76 new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.69/9.76 new_esEs32(x0, x1, ty_Float) 25.69/9.76 new_ltEs11(x0, x1, ty_@0) 25.69/9.76 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_ltEs17(x0, x1) 25.69/9.76 new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 25.69/9.76 new_ltEs15(Just(x0), Just(x1), ty_Char) 25.69/9.76 new_esEs5(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_compare16(Nothing, Nothing, x0) 25.69/9.76 new_esEs25(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.69/9.76 new_esEs6(x0, x1, ty_Double) 25.69/9.76 new_esEs31(x0, x1, ty_Double) 25.69/9.76 new_esEs10(x0, x1, ty_Ordering) 25.69/9.76 new_esEs11(x0, x1, ty_@0) 25.69/9.76 new_esEs35(x0, x1, ty_Float) 25.69/9.76 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 25.69/9.76 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_esEs4(x0, x1, ty_Ordering) 25.69/9.76 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 25.69/9.76 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_esEs10(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_esEs6(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_esEs12([], :(x0, x1), x2) 25.69/9.76 new_lt19(x0, x1, ty_Float) 25.69/9.76 new_esEs5(x0, x1, ty_Float) 25.69/9.76 new_esEs21(Left(x0), Left(x1), ty_@0, x2) 25.69/9.76 new_esEs35(x0, x1, app(ty_[], x2)) 25.69/9.76 new_esEs30(x0, x1, ty_Ordering) 25.69/9.76 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_esEs5(x0, x1, ty_Integer) 25.69/9.76 new_ltEs11(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 25.69/9.76 new_esEs36(x0, x1, ty_Float) 25.69/9.76 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_esEs21(Right(x0), Right(x1), x2, ty_@0) 25.69/9.76 new_lt10(x0, x1) 25.69/9.76 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 25.69/9.76 new_sr(x0, x1) 25.69/9.76 new_esEs12([], [], x0) 25.69/9.76 new_ltEs14(GT, GT) 25.69/9.76 new_esEs20(True, True) 25.69/9.76 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_esEs9(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_esEs11(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_esEs7(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_ltEs4(x0, x1, x2) 25.69/9.76 new_esEs26(EQ, GT) 25.69/9.76 new_esEs26(GT, EQ) 25.69/9.76 new_esEs8(x0, x1, app(ty_[], x2)) 25.69/9.76 new_lt17(x0, x1) 25.69/9.76 new_compare31(@0, @0) 25.69/9.76 new_ltEs21(x0, x1, ty_Float) 25.69/9.76 new_esEs9(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 25.69/9.76 new_esEs5(x0, x1, ty_Bool) 25.69/9.76 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_ltEs12(Left(x0), Right(x1), x2, x3) 25.69/9.76 new_ltEs12(Right(x0), Left(x1), x2, x3) 25.69/9.76 new_compare14(Integer(x0), Integer(x1)) 25.69/9.76 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.69/9.76 new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 25.69/9.76 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_esEs25(Just(x0), Just(x1), ty_Ordering) 25.69/9.76 new_lt5(x0, x1, x2, x3) 25.69/9.76 new_ltEs24(x0, x1, app(ty_[], x2)) 25.69/9.76 new_lt19(x0, x1, ty_Bool) 25.69/9.76 new_esEs29(x0, x1, ty_Double) 25.69/9.76 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_compare111(x0, x1, x2, x3, True, x4, x5, x6) 25.69/9.76 new_lt11(x0, x1, x2, x3, x4) 25.69/9.76 new_primEqNat0(Zero, Zero) 25.69/9.76 new_primCompAux00(x0, x1, GT, x2) 25.69/9.76 new_esEs36(x0, x1, ty_Char) 25.69/9.76 new_esEs31(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_not(False) 25.69/9.76 new_esEs32(x0, x1, ty_Bool) 25.69/9.76 new_esEs34(x0, x1, ty_@0) 25.69/9.76 new_compare5(x0, x1, app(ty_[], x2)) 25.69/9.76 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 25.69/9.76 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_esEs33(x0, x1, ty_Int) 25.69/9.76 new_esEs13(x0, x1, ty_@0) 25.69/9.76 new_compare5(x0, x1, ty_@0) 25.69/9.76 new_compare27(x0, x1, False, x2, x3) 25.69/9.76 new_lt7(x0, x1, x2) 25.69/9.76 new_esEs11(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.69/9.76 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_compare9(@2(x0, x1), @2(x2, x3), x4, x5) 25.69/9.76 new_ltEs24(x0, x1, ty_Double) 25.69/9.76 new_compare6(:(x0, x1), :(x2, x3), x4) 25.69/9.76 new_lt15(x0, x1, x2) 25.69/9.76 new_lt8(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_lt23(x0, x1, app(ty_[], x2)) 25.69/9.76 new_esEs35(x0, x1, ty_Integer) 25.69/9.76 new_esEs7(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_lt19(x0, x1, ty_Integer) 25.69/9.76 new_compare5(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_esEs33(x0, x1, ty_Float) 25.69/9.76 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_compare29(True, True) 25.69/9.76 new_primPlusNat0(Zero, Succ(x0)) 25.69/9.76 new_esEs32(x0, x1, ty_Integer) 25.69/9.76 new_esEs32(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.69/9.76 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.69/9.76 new_ltEs14(EQ, LT) 25.69/9.76 new_primCompAux00(x0, x1, EQ, ty_@0) 25.69/9.76 new_ltEs14(LT, EQ) 25.69/9.76 new_lt23(x0, x1, ty_@0) 25.69/9.76 new_primMulNat0(Zero, Succ(x0)) 25.69/9.76 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_esEs13(x0, x1, app(ty_[], x2)) 25.69/9.76 new_esEs38(x0, x1, ty_Ordering) 25.69/9.76 new_esEs31(x0, x1, ty_Ordering) 25.69/9.76 new_esEs36(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_compare6([], [], x0) 25.69/9.76 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.69/9.76 new_esEs36(x0, x1, ty_Int) 25.69/9.76 new_esEs33(x0, x1, app(ty_[], x2)) 25.69/9.76 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.69/9.76 new_esEs18(Float(x0, x1), Float(x2, x3)) 25.69/9.76 new_esEs34(x0, x1, ty_Char) 25.69/9.76 new_esEs9(x0, x1, ty_Ordering) 25.69/9.76 new_esEs25(Nothing, Nothing, x0) 25.69/9.76 new_ltEs20(x0, x1, ty_@0) 25.69/9.76 new_ltEs19(x0, x1, ty_Integer) 25.69/9.76 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_esEs30(x0, x1, ty_Float) 25.69/9.76 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 25.69/9.76 new_ltEs20(x0, x1, ty_Bool) 25.69/9.76 new_ltEs21(x0, x1, ty_@0) 25.69/9.76 new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) 25.69/9.76 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_esEs35(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_esEs33(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_fsEs(x0) 25.69/9.76 new_lt22(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.69/9.76 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_compare13(GT, LT) 25.69/9.76 new_compare13(LT, GT) 25.69/9.76 new_esEs9(x0, x1, ty_Double) 25.69/9.76 new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.69/9.76 new_esEs32(x0, x1, ty_Int) 25.69/9.76 new_esEs9(x0, x1, ty_Char) 25.69/9.76 new_esEs16(@2(x0, x1), @2(x2, x3), x4, x5) 25.69/9.76 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.69/9.76 new_ltEs14(LT, LT) 25.69/9.76 new_esEs26(LT, GT) 25.69/9.76 new_esEs26(GT, LT) 25.69/9.76 new_ltEs23(x0, x1, ty_Int) 25.69/9.76 new_esEs30(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_esEs5(x0, x1, ty_Char) 25.69/9.76 new_esEs5(x0, x1, ty_Double) 25.69/9.76 new_ltEs19(x0, x1, ty_Bool) 25.69/9.76 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_esEs33(x0, x1, ty_Char) 25.69/9.76 new_esEs13(x0, x1, ty_Integer) 25.69/9.76 new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.69/9.76 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_ltEs21(x0, x1, ty_Int) 25.69/9.76 new_esEs5(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.69/9.76 new_lt22(x0, x1, ty_Bool) 25.69/9.76 new_ltEs16(False, False) 25.69/9.76 new_esEs7(x0, x1, ty_Float) 25.69/9.76 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_ltEs21(x0, x1, app(ty_[], x2)) 25.69/9.76 new_lt22(x0, x1, ty_@0) 25.69/9.76 new_esEs22(Double(x0, x1), Double(x2, x3)) 25.69/9.76 new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.69/9.76 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.69/9.76 new_esEs28(x0, x1, ty_Integer) 25.69/9.76 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_asAs(True, x0) 25.69/9.76 new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_esEs35(x0, x1, ty_Bool) 25.69/9.76 new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.69/9.76 new_esEs33(x0, x1, ty_Ordering) 25.69/9.76 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_ltEs20(x0, x1, ty_Integer) 25.69/9.76 new_esEs32(x0, x1, ty_@0) 25.69/9.76 new_ltEs21(x0, x1, ty_Bool) 25.69/9.76 new_lt22(x0, x1, ty_Int) 25.69/9.76 new_esEs35(x0, x1, ty_@0) 25.69/9.76 new_esEs38(x0, x1, ty_Double) 25.69/9.76 new_lt23(x0, x1, ty_Ordering) 25.69/9.76 new_primCompAux00(x0, x1, EQ, ty_Ordering) 25.69/9.76 new_lt19(x0, x1, ty_Int) 25.69/9.76 new_compare10(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.69/9.76 new_esEs30(x0, x1, ty_Integer) 25.69/9.76 new_ltEs19(x0, x1, ty_Float) 25.69/9.76 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.69/9.76 new_esEs34(x0, x1, ty_Ordering) 25.69/9.76 new_compare6([], :(x0, x1), x2) 25.69/9.76 new_esEs36(x0, x1, ty_Ordering) 25.69/9.76 new_lt19(x0, x1, ty_@0) 25.69/9.76 new_ltEs11(x0, x1, ty_Int) 25.69/9.76 new_esEs20(False, False) 25.69/9.76 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_ltEs19(x0, x1, ty_@0) 25.69/9.76 new_esEs35(x0, x1, ty_Int) 25.69/9.76 new_lt8(x0, x1, app(ty_[], x2)) 25.69/9.76 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_ltEs11(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.69/9.76 new_lt21(x0, x1, ty_Ordering) 25.69/9.76 new_esEs36(x0, x1, ty_Double) 25.69/9.76 new_esEs30(x0, x1, ty_Bool) 25.69/9.76 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_ltEs19(x0, x1, ty_Int) 25.69/9.76 new_esEs39(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_esEs23(:%(x0, x1), :%(x2, x3), x4) 25.69/9.76 new_lt14(x0, x1) 25.69/9.76 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_esEs37(x0, x1, ty_@0) 25.69/9.76 new_compare10(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.69/9.76 new_esEs24(Integer(x0), Integer(x1)) 25.69/9.76 new_compare24(x0, x1, x2, x3, False, x4, x5) 25.69/9.76 new_ltEs22(x0, x1, ty_Double) 25.69/9.76 new_esEs19(x0, x1) 25.69/9.76 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_lt20(x0, x1, ty_Char) 25.69/9.76 new_ltEs20(x0, x1, ty_Float) 25.69/9.76 new_esEs13(x0, x1, ty_Int) 25.69/9.76 new_lt22(x0, x1, ty_Integer) 25.69/9.76 new_ltEs24(x0, x1, ty_Char) 25.69/9.76 new_ltEs14(LT, GT) 25.69/9.76 new_ltEs14(GT, LT) 25.69/9.76 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_compare29(True, False) 25.69/9.76 new_compare29(False, True) 25.69/9.76 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_esEs26(GT, GT) 25.69/9.76 new_lt18(x0, x1) 25.69/9.76 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.69/9.76 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.69/9.76 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.69/9.76 new_esEs29(x0, x1, ty_Int) 25.69/9.76 new_esEs11(x0, x1, ty_Integer) 25.69/9.76 new_primMulNat0(Succ(x0), Succ(x1)) 25.69/9.76 new_primEqNat0(Succ(x0), Zero) 25.69/9.76 new_esEs4(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_lt6(x0, x1) 25.69/9.76 new_ltEs15(Just(x0), Just(x1), ty_Int) 25.69/9.76 new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 25.69/9.76 new_ltEs22(x0, x1, ty_Ordering) 25.69/9.76 new_ltEs23(x0, x1, ty_@0) 25.69/9.76 new_ltEs21(x0, x1, ty_Integer) 25.69/9.76 new_esEs33(x0, x1, ty_Double) 25.69/9.76 new_compare112(x0, x1, x2, x3, True, x4, x5) 25.69/9.76 new_ltEs20(x0, x1, ty_Int) 25.69/9.76 new_lt20(x0, x1, ty_Ordering) 25.69/9.76 new_esEs13(x0, x1, ty_Float) 25.69/9.76 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 25.69/9.76 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.69/9.76 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 25.69/9.76 new_sr0(Integer(x0), Integer(x1)) 25.69/9.76 new_ltEs14(EQ, GT) 25.69/9.76 new_ltEs14(GT, EQ) 25.69/9.76 new_esEs4(x0, x1, ty_@0) 25.69/9.76 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.69/9.76 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.69/9.76 new_esEs34(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_esEs4(x0, x1, ty_Double) 25.69/9.76 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_primPlusNat1(x0, x1) 25.69/9.76 new_esEs7(x0, x1, ty_Double) 25.69/9.76 new_lt23(x0, x1, ty_Char) 25.69/9.76 new_compare13(GT, EQ) 25.69/9.76 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.69/9.76 new_compare13(EQ, GT) 25.69/9.76 new_compare5(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_esEs25(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.69/9.76 new_esEs11(x0, x1, ty_Ordering) 25.69/9.76 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_lt8(x0, x1, ty_Float) 25.69/9.76 new_compare16(Just(x0), Just(x1), x2) 25.69/9.76 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_compare30(Char(x0), Char(x1)) 25.69/9.76 new_lt4(x0, x1, x2) 25.69/9.76 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) 25.69/9.76 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_esEs13(x0, x1, ty_Bool) 25.69/9.76 new_primCompAux00(x0, x1, EQ, ty_Char) 25.69/9.76 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.69/9.76 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.69/9.76 new_lt20(x0, x1, app(ty_[], x2)) 25.69/9.76 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.69/9.76 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.69/9.76 new_lt21(x0, x1, ty_Char) 25.69/9.76 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.69/9.76 new_compare110(x0, x1, False, x2, x3) 25.69/9.76 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_lt13(x0, x1) 25.69/9.76 new_esEs30(x0, x1, ty_Int) 25.69/9.76 new_compare5(x0, x1, ty_Char) 25.69/9.76 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_primPlusNat0(Succ(x0), Zero) 25.69/9.76 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_esEs21(Right(x0), Right(x1), x2, ty_Char) 25.69/9.76 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_esEs39(x0, x1, ty_@0) 25.69/9.76 new_ltEs11(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_lt8(x0, x1, ty_Char) 25.69/9.76 new_lt23(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_esEs6(x0, x1, ty_Int) 25.69/9.76 new_esEs26(LT, LT) 25.69/9.76 new_esEs35(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_esEs4(x0, x1, ty_Char) 25.69/9.76 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_esEs9(x0, x1, ty_Float) 25.69/9.76 new_primMulNat0(Zero, Zero) 25.69/9.76 new_ltEs15(Nothing, Just(x0), x1) 25.69/9.76 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_esEs21(Left(x0), Left(x1), ty_Char, x2) 25.69/9.76 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.69/9.76 new_esEs21(Right(x0), Right(x1), x2, ty_Float) 25.69/9.76 new_esEs10(x0, x1, ty_Int) 25.69/9.76 new_esEs38(x0, x1, ty_Integer) 25.69/9.76 new_compare17(x0, x1, False, x2, x3) 25.69/9.76 new_ltEs14(EQ, EQ) 25.69/9.76 new_ltEs11(x0, x1, ty_Integer) 25.69/9.76 new_esEs29(x0, x1, ty_@0) 25.69/9.76 new_esEs31(x0, x1, ty_Char) 25.69/9.76 new_esEs6(x0, x1, ty_Char) 25.69/9.76 new_esEs7(x0, x1, ty_Char) 25.69/9.76 new_esEs10(x0, x1, app(ty_[], x2)) 25.69/9.76 new_esEs38(x0, x1, ty_Bool) 25.69/9.76 new_ltEs5(x0, x1) 25.69/9.76 new_esEs28(x0, x1, ty_Int) 25.69/9.76 new_esEs37(x0, x1, ty_Float) 25.69/9.76 new_esEs7(x0, x1, ty_Int) 25.69/9.76 new_ltEs22(x0, x1, ty_Integer) 25.69/9.76 new_esEs25(Just(x0), Just(x1), ty_Char) 25.69/9.76 new_ltEs23(x0, x1, ty_Float) 25.69/9.76 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_lt19(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_compare24(x0, x1, x2, x3, True, x4, x5) 25.69/9.76 new_esEs7(x0, x1, ty_@0) 25.69/9.76 new_esEs25(Just(x0), Just(x1), ty_@0) 25.69/9.76 new_ltEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_lt8(x0, x1, ty_Int) 25.69/9.76 new_esEs21(Left(x0), Left(x1), ty_Bool, x2) 25.69/9.76 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_esEs25(Just(x0), Just(x1), ty_Int) 25.69/9.76 new_esEs25(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.69/9.76 new_lt22(x0, x1, ty_Float) 25.69/9.76 new_esEs10(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_esEs37(x0, x1, ty_Integer) 25.69/9.76 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_esEs31(x0, x1, ty_@0) 25.69/9.76 new_esEs13(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_esEs8(x0, x1, ty_Integer) 25.69/9.76 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_ltEs9(x0, x1) 25.69/9.76 new_primEqNat0(Zero, Succ(x0)) 25.69/9.76 new_ltEs23(x0, x1, ty_Integer) 25.69/9.76 new_esEs21(Left(x0), Left(x1), ty_Double, x2) 25.69/9.76 new_ltEs19(x0, x1, ty_Double) 25.69/9.76 new_esEs11(x0, x1, ty_Bool) 25.69/9.76 new_esEs8(x0, x1, ty_Int) 25.69/9.76 new_pePe(False, x0) 25.69/9.76 new_ltEs11(x0, x1, ty_Float) 25.69/9.76 new_esEs11(x0, x1, ty_Int) 25.69/9.76 new_pePe(True, x0) 25.69/9.76 new_esEs8(x0, x1, ty_Char) 25.69/9.76 new_esEs12(:(x0, x1), :(x2, x3), x4) 25.69/9.76 new_lt8(x0, x1, ty_Bool) 25.69/9.76 new_ltEs11(x0, x1, ty_Bool) 25.69/9.76 new_compare5(x0, x1, ty_Ordering) 25.69/9.76 new_compare13(LT, LT) 25.69/9.76 new_esEs6(x0, x1, ty_Bool) 25.69/9.76 new_esEs39(x0, x1, ty_Integer) 25.69/9.76 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_esEs33(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_esEs25(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.69/9.76 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_lt22(x0, x1, app(ty_[], x2)) 25.69/9.76 new_esEs38(x0, x1, ty_Float) 25.69/9.76 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_esEs21(Left(x0), Left(x1), ty_Int, x2) 25.69/9.76 new_esEs31(x0, x1, ty_Int) 25.69/9.76 new_ltEs22(x0, x1, ty_Bool) 25.69/9.76 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_esEs38(x0, x1, ty_@0) 25.69/9.76 new_compare12(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 25.69/9.76 new_ltEs23(x0, x1, ty_Bool) 25.69/9.76 new_ltEs22(x0, x1, app(ty_[], x2)) 25.69/9.76 new_esEs8(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_esEs8(x0, x1, ty_Bool) 25.69/9.76 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.69/9.76 new_esEs11(x0, x1, ty_Char) 25.69/9.76 new_esEs11(x0, x1, ty_Double) 25.69/9.76 new_compare13(EQ, EQ) 25.69/9.76 new_esEs38(x0, x1, ty_Int) 25.69/9.76 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 25.69/9.76 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.69/9.76 new_esEs10(x0, x1, ty_Integer) 25.69/9.76 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_esEs14(@0, @0) 25.69/9.76 new_ltEs15(Just(x0), Just(x1), ty_Ordering) 25.69/9.76 new_esEs31(x0, x1, ty_Integer) 25.69/9.76 new_esEs6(x0, x1, ty_Integer) 25.69/9.76 new_esEs39(x0, x1, ty_Char) 25.69/9.76 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_ltEs20(x0, x1, ty_Double) 25.69/9.76 new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.69/9.76 new_esEs9(x0, x1, ty_Bool) 25.69/9.76 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.69/9.76 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.69/9.76 new_lt8(x0, x1, ty_Integer) 25.69/9.76 new_ltEs15(Just(x0), Just(x1), ty_Double) 25.69/9.76 new_esEs38(x0, x1, ty_Char) 25.69/9.76 new_ltEs22(x0, x1, ty_Float) 25.69/9.76 new_lt23(x0, x1, ty_Double) 25.69/9.76 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.69/9.76 new_lt21(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_compare10(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.69/9.76 new_compare10(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.69/9.76 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 25.69/9.76 new_esEs32(x0, x1, app(ty_[], x2)) 25.69/9.76 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.69/9.76 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 25.69/9.76 new_ltEs11(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_compare16(Nothing, Just(x0), x1) 25.69/9.76 new_esEs4(x0, x1, ty_Integer) 25.69/9.76 new_esEs7(x0, x1, ty_Integer) 25.69/9.76 new_ltEs24(x0, x1, ty_@0) 25.69/9.76 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_esEs25(Just(x0), Just(x1), ty_Float) 25.69/9.76 new_ltEs20(x0, x1, ty_Ordering) 25.69/9.76 new_ltEs22(x0, x1, ty_Char) 25.69/9.76 new_esEs31(x0, x1, app(ty_[], x2)) 25.69/9.76 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.69/9.76 new_esEs11(x0, x1, ty_Float) 25.69/9.76 new_esEs8(x0, x1, ty_Float) 25.69/9.76 new_esEs31(x0, x1, ty_Bool) 25.69/9.76 new_ltEs22(x0, x1, ty_Int) 25.69/9.76 new_esEs7(x0, x1, app(ty_[], x2)) 25.69/9.76 new_esEs8(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_esEs32(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_esEs6(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_compare25(x0, x1, True, x2) 25.69/9.76 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.69/9.76 new_esEs6(x0, x1, ty_@0) 25.69/9.76 new_compare26(x0, x1, True, x2, x3) 25.69/9.76 new_lt8(x0, x1, ty_@0) 25.69/9.76 new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.69/9.76 new_esEs37(x0, x1, ty_Int) 25.69/9.76 new_esEs25(Nothing, Just(x0), x1) 25.69/9.76 new_esEs39(x0, x1, ty_Float) 25.69/9.76 new_esEs39(x0, x1, ty_Bool) 25.69/9.76 new_esEs35(x0, x1, ty_Ordering) 25.69/9.76 new_esEs34(x0, x1, ty_Double) 25.69/9.76 new_lt21(x0, x1, app(ty_[], x2)) 25.69/9.76 new_ltEs16(True, True) 25.69/9.76 new_esEs4(x0, x1, ty_Float) 25.69/9.76 new_compare15(x0, x1) 25.69/9.76 new_esEs4(x0, x1, ty_Bool) 25.69/9.76 new_esEs38(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_esEs25(Just(x0), Just(x1), ty_Integer) 25.69/9.76 new_esEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.69/9.76 new_lt20(x0, x1, ty_Double) 25.69/9.76 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 25.69/9.76 new_esEs36(x0, x1, app(ty_[], x2)) 25.69/9.76 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.76 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 25.69/9.76 new_esEs32(x0, x1, ty_Ordering) 25.69/9.76 new_compare19(x0, x1, True, x2) 25.69/9.76 new_esEs5(x0, x1, ty_Ordering) 25.69/9.76 new_lt16(x0, x1) 25.69/9.76 new_primCompAux00(x0, x1, EQ, ty_Double) 25.69/9.76 new_esEs39(x0, x1, ty_Int) 25.69/9.76 new_esEs38(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_esEs13(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_esEs25(Just(x0), Just(x1), ty_Bool) 25.69/9.76 new_esEs37(x0, x1, ty_Bool) 25.69/9.76 new_esEs13(x0, x1, ty_Double) 25.69/9.76 new_esEs10(x0, x1, ty_Bool) 25.69/9.76 new_ltEs7(x0, x1) 25.69/9.76 new_esEs37(x0, x1, ty_Char) 25.69/9.76 new_esEs4(x0, x1, ty_Int) 25.69/9.76 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 25.69/9.76 new_esEs4(x0, x1, app(ty_[], x2)) 25.69/9.76 new_lt21(x0, x1, ty_Double) 25.69/9.76 new_esEs10(x0, x1, ty_Char) 25.69/9.76 new_esEs21(Right(x0), Right(x1), x2, ty_Double) 25.69/9.76 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 25.69/9.76 new_esEs30(x0, x1, ty_@0) 25.69/9.76 new_esEs7(x0, x1, ty_Bool) 25.69/9.76 new_compare5(x0, x1, ty_Double) 25.69/9.76 new_primCmpNat0(Zero, Zero) 25.69/9.76 new_primCompAux1(x0, x1, x2, x3, x4) 25.69/9.76 25.69/9.76 We have to consider all minimal (P,Q,R)-chains. 25.69/9.76 ---------------------------------------- 25.69/9.76 25.69/9.76 (24) QDPSizeChangeProof (EQUIVALENT) 25.69/9.76 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. 25.69/9.76 25.69/9.76 From the DPs we obtained the following set of size-change graphs: 25.69/9.76 *new_addToFM_C(Branch(:(xuu600, xuu601), xuu61, xuu62, xuu63, xuu64), [], xuu31101, bb, bc) -> new_addToFM_C(xuu63, [], xuu31101, bb, bc) 25.69/9.76 The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 25.69/9.76 25.69/9.76 25.69/9.76 ---------------------------------------- 25.69/9.76 25.69/9.76 (25) 25.69/9.76 YES 25.69/9.76 25.69/9.76 ---------------------------------------- 25.69/9.76 25.69/9.76 (26) 25.69/9.76 Obligation: 25.69/9.76 Q DP problem: 25.69/9.76 The TRS P consists of the following rules: 25.69/9.76 25.69/9.76 new_addToFM_C(Branch([], xuu61, xuu62, xuu63, xuu64), :(xuu311000, xuu311001), xuu31101, bb, bc) -> new_addToFM_C10(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, GT, bb, bc) 25.69/9.76 new_addToFM_C10(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, GT, bb, bc) -> new_addToFM_C(xuu64, :(xuu311000, xuu311001), xuu31101, bb, bc) 25.69/9.76 new_addToFM_C(Branch(:(xuu600, xuu601), xuu61, xuu62, xuu63, xuu64), :(xuu311000, xuu311001), xuu31101, bb, bc) -> new_addToFM_C2(xuu600, xuu601, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, new_primCompAux1(xuu311000, xuu600, xuu311001, xuu601, bb), bb, bc) 25.69/9.76 new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, EQ, h, ba) -> new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare6(:(xuu25, xuu26), :(xuu19, xuu20), h), h, ba) 25.69/9.76 new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, h, ba) -> new_addToFM_C(xuu24, :(xuu25, xuu26), xuu27, h, ba) 25.69/9.76 new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, LT, h, ba) -> new_addToFM_C(xuu23, :(xuu25, xuu26), xuu27, h, ba) 25.69/9.76 new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, h, ba) -> new_addToFM_C20(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, h, ba) 25.69/9.76 new_addToFM_C20(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, h, ba) -> new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare6(:(xuu25, xuu26), :(xuu19, xuu20), h), h, ba) 25.69/9.76 25.69/9.76 The TRS R consists of the following rules: 25.69/9.76 25.69/9.76 new_lt20(xuu471, xuu481, ty_Double) -> new_lt12(xuu471, xuu481) 25.69/9.76 new_compare5(xuu311000, xuu600, ty_Integer) -> new_compare14(xuu311000, xuu600) 25.69/9.76 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.69/9.76 new_esEs33(xuu31100001, xuu60001, app(ty_Ratio, dgb)) -> new_esEs23(xuu31100001, xuu60001, dgb) 25.69/9.76 new_primPlusNat0(Zero, Zero) -> Zero 25.69/9.76 new_esEs30(xuu470, xuu480, app(ty_Maybe, bha)) -> new_esEs25(xuu470, xuu480, bha) 25.69/9.76 new_pePe(True, xuu210) -> True 25.69/9.76 new_ltEs20(xuu54, xuu55, app(ty_Maybe, cda)) -> new_ltEs15(xuu54, xuu55, cda) 25.69/9.76 new_compare7(Float(xuu3110000, Pos(xuu31100010)), Float(xuu6000, Neg(xuu60010))) -> new_compare15(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) 25.69/9.76 new_compare7(Float(xuu3110000, Neg(xuu31100010)), Float(xuu6000, Pos(xuu60010))) -> new_compare15(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) 25.69/9.76 new_esEs32(xuu31100000, xuu60000, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.76 new_esEs33(xuu31100001, xuu60001, app(app(app(ty_@3, dfe), dff), dfg)) -> new_esEs17(xuu31100001, xuu60001, dfe, dff, dfg) 25.69/9.76 new_esEs6(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.76 new_ltEs24(xuu103, xuu106, app(app(ty_@2, fhf), fhg)) -> new_ltEs10(xuu103, xuu106, fhf, fhg) 25.69/9.76 new_ltEs24(xuu103, xuu106, ty_Ordering) -> new_ltEs14(xuu103, xuu106) 25.69/9.76 new_ltEs4(xuu47, xuu48, bd) -> new_fsEs(new_compare6(xuu47, xuu48, bd)) 25.69/9.76 new_esEs26(LT, GT) -> False 25.69/9.76 new_esEs26(GT, LT) -> False 25.69/9.76 new_esEs35(xuu31100001, xuu60001, app(ty_[], edc)) -> new_esEs12(xuu31100001, xuu60001, edc) 25.69/9.76 new_esEs8(xuu3110002, xuu6002, ty_Ordering) -> new_esEs26(xuu3110002, xuu6002) 25.69/9.76 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.69/9.76 new_compare24(xuu114, xuu115, xuu116, xuu117, True, eeg, eeh) -> EQ 25.69/9.76 new_esEs26(LT, EQ) -> False 25.69/9.76 new_esEs26(EQ, LT) -> False 25.69/9.76 new_lt8(xuu470, xuu480, ty_Bool) -> new_lt16(xuu470, xuu480) 25.69/9.76 new_ltEs24(xuu103, xuu106, app(ty_[], fhd)) -> new_ltEs4(xuu103, xuu106, fhd) 25.69/9.76 new_compare26(xuu54, xuu55, True, cca, ccb) -> EQ 25.69/9.76 new_esEs39(xuu102, xuu105, ty_Int) -> new_esEs19(xuu102, xuu105) 25.69/9.76 new_lt14(xuu101, xuu104) -> new_esEs26(new_compare7(xuu101, xuu104), LT) 25.69/9.76 new_esEs6(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.76 new_ltEs7(xuu47, xuu48) -> new_fsEs(new_compare14(xuu47, xuu48)) 25.69/9.76 new_ltEs12(Left(xuu470), Right(xuu480), bee, bdd) -> True 25.69/9.76 new_lt23(xuu102, xuu105, app(ty_Maybe, fgc)) -> new_lt15(xuu102, xuu105, fgc) 25.69/9.76 new_compare27(xuu47, xuu48, False, ddg, ddh) -> new_compare110(xuu47, xuu48, new_ltEs22(xuu47, xuu48, ddg), ddg, ddh) 25.69/9.76 new_ltEs24(xuu103, xuu106, app(ty_Ratio, fhh)) -> new_ltEs8(xuu103, xuu106, fhh) 25.69/9.76 new_primMulNat0(Succ(xuu600000), Succ(xuu311000100)) -> new_primPlusNat1(new_primMulNat0(xuu600000, Succ(xuu311000100)), xuu311000100) 25.69/9.76 new_esEs11(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) 25.69/9.76 new_lt6(xuu101, xuu104) -> new_esEs26(new_compare13(xuu101, xuu104), LT) 25.69/9.76 new_lt19(xuu470, xuu480, ty_Bool) -> new_lt16(xuu470, xuu480) 25.69/9.76 new_esEs6(xuu3110000, xuu6000, app(app(ty_@2, ehh), faa)) -> new_esEs16(xuu3110000, xuu6000, ehh, faa) 25.69/9.76 new_esEs36(xuu31100002, xuu60002, ty_@0) -> new_esEs14(xuu31100002, xuu60002) 25.69/9.76 new_esEs32(xuu31100000, xuu60000, ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.76 new_esEs21(Left(xuu31100000), Right(xuu60000), ced, cee) -> False 25.69/9.76 new_esEs21(Right(xuu31100000), Left(xuu60000), ced, cee) -> False 25.69/9.76 new_primCompAux00(xuu37, xuu38, EQ, ty_Integer) -> new_compare14(xuu37, xuu38) 25.69/9.76 new_esEs37(xuu114, xuu116, ty_Bool) -> new_esEs20(xuu114, xuu116) 25.69/9.76 new_primEqNat0(Succ(xuu311000000), Succ(xuu600000)) -> new_primEqNat0(xuu311000000, xuu600000) 25.69/9.76 new_ltEs22(xuu47, xuu48, ty_Double) -> new_ltEs6(xuu47, xuu48) 25.69/9.76 new_not(True) -> False 25.69/9.76 new_lt22(xuu101, xuu104, app(ty_[], dh)) -> new_lt7(xuu101, xuu104, dh) 25.69/9.76 new_ltEs19(xuu472, xuu482, ty_@0) -> new_ltEs18(xuu472, xuu482) 25.69/9.76 new_esEs35(xuu31100001, xuu60001, app(ty_Maybe, edd)) -> new_esEs25(xuu31100001, xuu60001, edd) 25.69/9.76 new_lt7(xuu101, xuu104, dh) -> new_esEs26(new_compare6(xuu101, xuu104, dh), LT) 25.69/9.76 new_esEs9(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.76 new_esEs10(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.76 new_compare17(xuu140, xuu141, False, dde, ddf) -> GT 25.69/9.76 new_esEs39(xuu102, xuu105, ty_Ordering) -> new_esEs26(xuu102, xuu105) 25.69/9.76 new_esEs38(xuu101, xuu104, app(ty_Ratio, da)) -> new_esEs23(xuu101, xuu104, da) 25.69/9.76 new_esEs38(xuu101, xuu104, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs17(xuu101, xuu104, dad, dae, daf) 25.69/9.76 new_esEs4(xuu3110000, xuu6000, app(ty_[], be)) -> new_esEs12(xuu3110000, xuu6000, be) 25.69/9.76 new_esEs33(xuu31100001, xuu60001, app(app(ty_Either, dfh), dga)) -> new_esEs21(xuu31100001, xuu60001, dfh, dga) 25.69/9.76 new_compare11(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, False, xuu180, de, df, dg) -> new_compare12(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, xuu180, de, df, dg) 25.69/9.76 new_lt22(xuu101, xuu104, app(app(ty_Either, cga), cgb)) -> new_lt9(xuu101, xuu104, cga, cgb) 25.69/9.76 new_lt22(xuu101, xuu104, app(ty_Ratio, da)) -> new_lt4(xuu101, xuu104, da) 25.69/9.76 new_compare6([], :(xuu6000, xuu6001), dab) -> LT 25.69/9.76 new_compare10(Double(xuu3110000, Pos(xuu31100010)), Double(xuu6000, Neg(xuu60010))) -> new_compare15(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) 25.69/9.76 new_compare10(Double(xuu3110000, Neg(xuu31100010)), Double(xuu6000, Pos(xuu60010))) -> new_compare15(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) 25.69/9.76 new_primEqNat0(Succ(xuu311000000), Zero) -> False 25.69/9.76 new_primEqNat0(Zero, Succ(xuu600000)) -> False 25.69/9.76 new_esEs14(@0, @0) -> True 25.69/9.76 new_lt23(xuu102, xuu105, ty_Char) -> new_lt17(xuu102, xuu105) 25.69/9.76 new_lt23(xuu102, xuu105, ty_Int) -> new_lt10(xuu102, xuu105) 25.69/9.76 new_ltEs21(xuu76, xuu77, ty_Integer) -> new_ltEs7(xuu76, xuu77) 25.69/9.76 new_esEs29(xuu470, xuu480, ty_Int) -> new_esEs19(xuu470, xuu480) 25.69/9.76 new_esEs37(xuu114, xuu116, ty_Float) -> new_esEs18(xuu114, xuu116) 25.69/9.76 new_ltEs23(xuu115, xuu117, ty_Char) -> new_ltEs17(xuu115, xuu117) 25.69/9.76 new_lt5(xuu101, xuu104, db, dc) -> new_esEs26(new_compare9(xuu101, xuu104, db, dc), LT) 25.69/9.76 new_esEs6(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.76 new_ltEs23(xuu115, xuu117, ty_Float) -> new_ltEs5(xuu115, xuu117) 25.69/9.76 new_esEs32(xuu31100000, xuu60000, ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.76 new_esEs9(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.76 new_ltEs14(EQ, EQ) -> True 25.69/9.76 new_esEs37(xuu114, xuu116, ty_Char) -> new_esEs15(xuu114, xuu116) 25.69/9.76 new_esEs4(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.76 new_lt21(xuu114, xuu116, ty_Bool) -> new_lt16(xuu114, xuu116) 25.69/9.76 new_compare210(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, True, ffb, ffc, ffd) -> EQ 25.69/9.76 new_ltEs20(xuu54, xuu55, app(app(app(ty_@3, cce), ccf), ccg)) -> new_ltEs13(xuu54, xuu55, cce, ccf, ccg) 25.69/9.76 new_compare13(LT, LT) -> EQ 25.69/9.76 new_primCmpInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> GT 25.69/9.76 new_lt13(xuu101, xuu104) -> new_esEs26(new_compare14(xuu101, xuu104), LT) 25.69/9.76 new_esEs21(Left(xuu31100000), Left(xuu60000), app(ty_Ratio, dhd), cee) -> new_esEs23(xuu31100000, xuu60000, dhd) 25.69/9.76 new_compare112(xuu188, xuu189, xuu190, xuu191, True, ehf, ehg) -> LT 25.69/9.76 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.76 new_esEs10(xuu3110000, xuu6000, app(ty_[], fd)) -> new_esEs12(xuu3110000, xuu6000, fd) 25.69/9.76 new_esEs29(xuu470, xuu480, ty_Ordering) -> new_esEs26(xuu470, xuu480) 25.69/9.76 new_compare13(GT, EQ) -> GT 25.69/9.76 new_primCompAux00(xuu37, xuu38, GT, dcb) -> GT 25.69/9.76 new_lt19(xuu470, xuu480, ty_Integer) -> new_lt13(xuu470, xuu480) 25.69/9.76 new_primCmpNat0(Zero, Succ(xuu60000)) -> LT 25.69/9.76 new_ltEs11(xuu471, xuu481, ty_Bool) -> new_ltEs16(xuu471, xuu481) 25.69/9.76 new_lt23(xuu102, xuu105, app(app(app(ty_@3, ffg), ffh), fga)) -> new_lt11(xuu102, xuu105, ffg, ffh, fga) 25.69/9.76 new_ltEs23(xuu115, xuu117, ty_Int) -> new_ltEs9(xuu115, xuu117) 25.69/9.76 new_esEs11(xuu3110001, xuu6001, ty_Ordering) -> new_esEs26(xuu3110001, xuu6001) 25.69/9.76 new_ltEs12(Left(xuu470), Left(xuu480), ty_Float, bdd) -> new_ltEs5(xuu470, xuu480) 25.69/9.76 new_compare26(xuu54, xuu55, False, cca, ccb) -> new_compare17(xuu54, xuu55, new_ltEs20(xuu54, xuu55, ccb), cca, ccb) 25.69/9.76 new_esEs9(xuu3110000, xuu6000, app(ty_[], bab)) -> new_esEs12(xuu3110000, xuu6000, bab) 25.69/9.76 new_esEs34(xuu31100000, xuu60000, ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.76 new_esEs38(xuu101, xuu104, app(app(ty_Either, cga), cgb)) -> new_esEs21(xuu101, xuu104, cga, cgb) 25.69/9.76 new_ltEs12(Left(xuu470), Left(xuu480), ty_Char, bdd) -> new_ltEs17(xuu470, xuu480) 25.69/9.76 new_ltEs21(xuu76, xuu77, ty_@0) -> new_ltEs18(xuu76, xuu77) 25.69/9.76 new_lt8(xuu470, xuu480, ty_Ordering) -> new_lt6(xuu470, xuu480) 25.69/9.76 new_ltEs19(xuu472, xuu482, app(app(ty_@2, cbf), cbg)) -> new_ltEs10(xuu472, xuu482, cbf, cbg) 25.69/9.76 new_esEs11(xuu3110001, xuu6001, app(ty_Ratio, gf)) -> new_esEs23(xuu3110001, xuu6001, gf) 25.69/9.76 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.76 new_esEs5(xuu3110000, xuu6000, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_esEs17(xuu3110000, xuu6000, cfa, cfb, cfc) 25.69/9.76 new_esEs9(xuu3110000, xuu6000, app(app(ty_@2, hb), hc)) -> new_esEs16(xuu3110000, xuu6000, hb, hc) 25.69/9.76 new_ltEs19(xuu472, xuu482, ty_Ordering) -> new_ltEs14(xuu472, xuu482) 25.69/9.76 new_ltEs12(Left(xuu470), Left(xuu480), ty_Double, bdd) -> new_ltEs6(xuu470, xuu480) 25.69/9.76 new_compare5(xuu311000, xuu600, ty_Float) -> new_compare7(xuu311000, xuu600) 25.69/9.76 new_esEs34(xuu31100000, xuu60000, ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.76 new_esEs38(xuu101, xuu104, app(ty_[], dh)) -> new_esEs12(xuu101, xuu104, dh) 25.69/9.76 new_esEs10(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.76 new_ltEs14(EQ, GT) -> True 25.69/9.76 new_esEs31(xuu471, xuu481, app(app(ty_Either, bhe), bhf)) -> new_esEs21(xuu471, xuu481, bhe, bhf) 25.69/9.76 new_ltEs12(Right(xuu470), Right(xuu480), bee, app(ty_Maybe, bfd)) -> new_ltEs15(xuu470, xuu480, bfd) 25.69/9.76 new_compare5(xuu311000, xuu600, app(app(ty_@2, eb), ec)) -> new_compare9(xuu311000, xuu600, eb, ec) 25.69/9.76 new_ltEs15(Just(xuu470), Just(xuu480), ty_Integer) -> new_ltEs7(xuu470, xuu480) 25.69/9.76 new_ltEs19(xuu472, xuu482, ty_Integer) -> new_ltEs7(xuu472, xuu482) 25.69/9.76 new_primEqInt(Neg(Succ(xuu311000000)), Neg(Succ(xuu600000))) -> new_primEqNat0(xuu311000000, xuu600000) 25.69/9.76 new_esEs33(xuu31100001, xuu60001, app(ty_Maybe, dgd)) -> new_esEs25(xuu31100001, xuu60001, dgd) 25.69/9.76 new_esEs31(xuu471, xuu481, ty_@0) -> new_esEs14(xuu471, xuu481) 25.69/9.76 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.76 new_ltEs12(Left(xuu470), Left(xuu480), app(ty_[], bdh), bdd) -> new_ltEs4(xuu470, xuu480, bdh) 25.69/9.76 new_primCmpInt(Neg(Zero), Pos(Succ(xuu60000))) -> LT 25.69/9.76 new_compare15(xuu311000, xuu600) -> new_primCmpInt(xuu311000, xuu600) 25.69/9.76 new_ltEs20(xuu54, xuu55, ty_Char) -> new_ltEs17(xuu54, xuu55) 25.69/9.76 new_primMulInt(Pos(xuu60000), Pos(xuu31100010)) -> Pos(new_primMulNat0(xuu60000, xuu31100010)) 25.69/9.76 new_compare13(EQ, LT) -> GT 25.69/9.76 new_ltEs14(LT, GT) -> True 25.69/9.76 new_ltEs14(GT, GT) -> True 25.69/9.76 new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_@2, ddb), ddc)) -> new_compare9(xuu37, xuu38, ddb, ddc) 25.69/9.76 new_ltEs21(xuu76, xuu77, ty_Bool) -> new_ltEs16(xuu76, xuu77) 25.69/9.76 new_esEs30(xuu470, xuu480, ty_Double) -> new_esEs22(xuu470, xuu480) 25.69/9.76 new_primCompAux00(xuu37, xuu38, EQ, ty_Float) -> new_compare7(xuu37, xuu38) 25.69/9.76 new_esEs9(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.76 new_primMulNat0(Succ(xuu600000), Zero) -> Zero 25.69/9.76 new_primMulNat0(Zero, Succ(xuu311000100)) -> Zero 25.69/9.76 new_esEs9(xuu3110000, xuu6000, app(ty_Maybe, bac)) -> new_esEs25(xuu3110000, xuu6000, bac) 25.69/9.76 new_lt21(xuu114, xuu116, ty_Integer) -> new_lt13(xuu114, xuu116) 25.69/9.76 new_esEs6(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.76 new_esEs7(xuu3110001, xuu6001, app(app(app(ty_@3, fbd), fbe), fbf)) -> new_esEs17(xuu3110001, xuu6001, fbd, fbe, fbf) 25.69/9.76 new_compare13(GT, LT) -> GT 25.69/9.76 new_esEs22(Double(xuu31100000, xuu31100001), Double(xuu60000, xuu60001)) -> new_esEs19(new_sr(xuu31100000, xuu60001), new_sr(xuu31100001, xuu60000)) 25.69/9.76 new_lt20(xuu471, xuu481, app(app(app(ty_@3, bhg), bhh), caa)) -> new_lt11(xuu471, xuu481, bhg, bhh, caa) 25.69/9.76 new_primPlusNat0(Succ(xuu21200), Zero) -> Succ(xuu21200) 25.69/9.76 new_primPlusNat0(Zero, Succ(xuu21100)) -> Succ(xuu21100) 25.69/9.76 new_compare7(Float(xuu3110000, Pos(xuu31100010)), Float(xuu6000, Pos(xuu60010))) -> new_compare15(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) 25.69/9.76 new_esEs26(EQ, GT) -> False 25.69/9.76 new_esEs26(GT, EQ) -> False 25.69/9.76 new_ltEs12(Left(xuu470), Left(xuu480), app(ty_Ratio, bed), bdd) -> new_ltEs8(xuu470, xuu480, bed) 25.69/9.76 new_esEs6(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.76 new_compare13(EQ, EQ) -> EQ 25.69/9.76 new_compare5(xuu311000, xuu600, app(app(app(ty_@3, chg), chh), daa)) -> new_compare28(xuu311000, xuu600, chg, chh, daa) 25.69/9.76 new_esEs39(xuu102, xuu105, ty_@0) -> new_esEs14(xuu102, xuu105) 25.69/9.76 new_compare29(False, False) -> EQ 25.69/9.76 new_esEs7(xuu3110001, xuu6001, app(ty_Maybe, fcc)) -> new_esEs25(xuu3110001, xuu6001, fcc) 25.69/9.76 new_esEs31(xuu471, xuu481, ty_Ordering) -> new_esEs26(xuu471, xuu481) 25.69/9.76 new_lt21(xuu114, xuu116, app(app(app(ty_@3, efc), efd), efe)) -> new_lt11(xuu114, xuu116, efc, efd, efe) 25.69/9.76 new_ltEs11(xuu471, xuu481, ty_@0) -> new_ltEs18(xuu471, xuu481) 25.69/9.76 new_esEs32(xuu31100000, xuu60000, app(app(ty_@2, dea), deb)) -> new_esEs16(xuu31100000, xuu60000, dea, deb) 25.69/9.76 new_esEs39(xuu102, xuu105, ty_Bool) -> new_esEs20(xuu102, xuu105) 25.69/9.76 new_lt8(xuu470, xuu480, ty_Integer) -> new_lt13(xuu470, xuu480) 25.69/9.76 new_esEs10(xuu3110000, xuu6000, app(ty_Maybe, ff)) -> new_esEs25(xuu3110000, xuu6000, ff) 25.69/9.76 new_esEs32(xuu31100000, xuu60000, ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.76 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Char, cee) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.76 new_ltEs20(xuu54, xuu55, ty_Float) -> new_ltEs5(xuu54, xuu55) 25.69/9.76 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Bool, cee) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.76 new_ltEs24(xuu103, xuu106, ty_@0) -> new_ltEs18(xuu103, xuu106) 25.69/9.76 new_esEs29(xuu470, xuu480, app(app(ty_Either, baf), bag)) -> new_esEs21(xuu470, xuu480, baf, bag) 25.69/9.76 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.76 new_esEs5(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.76 new_esEs25(Just(xuu31100000), Just(xuu60000), app(app(app(ty_@3, feb), fec), fed)) -> new_esEs17(xuu31100000, xuu60000, feb, fec, fed) 25.69/9.76 new_esEs25(Just(xuu31100000), Just(xuu60000), app(app(ty_Either, fee), fef)) -> new_esEs21(xuu31100000, xuu60000, fee, fef) 25.69/9.76 new_compare9(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), eb, ec) -> new_compare24(xuu3110000, xuu3110001, xuu6000, xuu6001, new_asAs(new_esEs10(xuu3110000, xuu6000, eb), new_esEs11(xuu3110001, xuu6001, ec)), eb, ec) 25.69/9.76 new_esEs29(xuu470, xuu480, ty_@0) -> new_esEs14(xuu470, xuu480) 25.69/9.76 new_esEs32(xuu31100000, xuu60000, app(ty_Maybe, dfb)) -> new_esEs25(xuu31100000, xuu60000, dfb) 25.69/9.76 new_compare25(xuu76, xuu77, True, cgd) -> EQ 25.69/9.76 new_esEs36(xuu31100002, xuu60002, app(ty_Ratio, eed)) -> new_esEs23(xuu31100002, xuu60002, eed) 25.69/9.76 new_esEs13(xuu31100000, xuu60000, app(ty_Ratio, ce)) -> new_esEs23(xuu31100000, xuu60000, ce) 25.69/9.76 new_ltEs5(xuu47, xuu48) -> new_fsEs(new_compare7(xuu47, xuu48)) 25.69/9.76 new_esEs27(xuu31100000, xuu60000, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.76 new_esEs30(xuu470, xuu480, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs17(xuu470, xuu480, bge, bgf, bgg) 25.69/9.76 new_lt23(xuu102, xuu105, ty_Double) -> new_lt12(xuu102, xuu105) 25.69/9.76 new_esEs13(xuu31100000, xuu60000, app(ty_[], cf)) -> new_esEs12(xuu31100000, xuu60000, cf) 25.69/9.76 new_esEs5(xuu3110000, xuu6000, app(app(ty_Either, cfd), cfe)) -> new_esEs21(xuu3110000, xuu6000, cfd, cfe) 25.69/9.76 new_compare29(True, False) -> GT 25.69/9.76 new_esEs7(xuu3110001, xuu6001, ty_Double) -> new_esEs22(xuu3110001, xuu6001) 25.69/9.76 new_ltEs15(Just(xuu470), Just(xuu480), ty_Bool) -> new_ltEs16(xuu470, xuu480) 25.69/9.76 new_ltEs19(xuu472, xuu482, ty_Bool) -> new_ltEs16(xuu472, xuu482) 25.69/9.76 new_esEs4(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.76 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Int, cee) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.76 new_esEs30(xuu470, xuu480, ty_Char) -> new_esEs15(xuu470, xuu480) 25.69/9.76 new_esEs10(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.76 new_ltEs11(xuu471, xuu481, ty_Char) -> new_ltEs17(xuu471, xuu481) 25.69/9.76 new_esEs21(Left(xuu31100000), Left(xuu60000), app(ty_Maybe, dhf), cee) -> new_esEs25(xuu31100000, xuu60000, dhf) 25.69/9.76 new_esEs10(xuu3110000, xuu6000, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs17(xuu3110000, xuu6000, ef, eg, eh) 25.69/9.76 new_lt20(xuu471, xuu481, ty_Char) -> new_lt17(xuu471, xuu481) 25.69/9.76 new_esEs34(xuu31100000, xuu60000, ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.76 new_esEs8(xuu3110002, xuu6002, ty_Float) -> new_esEs18(xuu3110002, xuu6002) 25.69/9.76 new_ltEs11(xuu471, xuu481, ty_Float) -> new_ltEs5(xuu471, xuu481) 25.69/9.76 new_esEs39(xuu102, xuu105, ty_Char) -> new_esEs15(xuu102, xuu105) 25.69/9.76 new_esEs10(xuu3110000, xuu6000, app(ty_Ratio, fc)) -> new_esEs23(xuu3110000, xuu6000, fc) 25.69/9.76 new_ltEs12(Left(xuu470), Left(xuu480), ty_Int, bdd) -> new_ltEs9(xuu470, xuu480) 25.69/9.76 new_esEs8(xuu3110002, xuu6002, app(app(ty_@2, fcd), fce)) -> new_esEs16(xuu3110002, xuu6002, fcd, fce) 25.69/9.76 new_compare25(xuu76, xuu77, False, cgd) -> new_compare19(xuu76, xuu77, new_ltEs21(xuu76, xuu77, cgd), cgd) 25.69/9.76 new_esEs37(xuu114, xuu116, app(ty_[], eff)) -> new_esEs12(xuu114, xuu116, eff) 25.69/9.76 new_esEs30(xuu470, xuu480, app(app(ty_Either, bgc), bgd)) -> new_esEs21(xuu470, xuu480, bgc, bgd) 25.69/9.76 new_esEs29(xuu470, xuu480, app(app(ty_@2, bbe), bbf)) -> new_esEs16(xuu470, xuu480, bbe, bbf) 25.69/9.76 new_primCompAux00(xuu37, xuu38, EQ, ty_Char) -> new_compare30(xuu37, xuu38) 25.69/9.76 new_lt23(xuu102, xuu105, ty_Bool) -> new_lt16(xuu102, xuu105) 25.69/9.76 new_esEs35(xuu31100001, xuu60001, app(app(app(ty_@3, ece), ecf), ecg)) -> new_esEs17(xuu31100001, xuu60001, ece, ecf, ecg) 25.69/9.76 new_esEs35(xuu31100001, xuu60001, ty_Bool) -> new_esEs20(xuu31100001, xuu60001) 25.69/9.76 new_ltEs24(xuu103, xuu106, ty_Double) -> new_ltEs6(xuu103, xuu106) 25.69/9.76 new_lt19(xuu470, xuu480, app(app(app(ty_@3, bge), bgf), bgg)) -> new_lt11(xuu470, xuu480, bge, bgf, bgg) 25.69/9.76 new_esEs31(xuu471, xuu481, app(ty_Ratio, caf)) -> new_esEs23(xuu471, xuu481, caf) 25.69/9.76 new_ltEs12(Left(xuu470), Left(xuu480), app(app(ty_@2, beb), bec), bdd) -> new_ltEs10(xuu470, xuu480, beb, bec) 25.69/9.76 new_ltEs15(Just(xuu470), Just(xuu480), app(app(ty_Either, dah), dba)) -> new_ltEs12(xuu470, xuu480, dah, dba) 25.69/9.76 new_ltEs12(Right(xuu470), Right(xuu480), bee, ty_@0) -> new_ltEs18(xuu470, xuu480) 25.69/9.76 new_esEs31(xuu471, xuu481, app(app(app(ty_@3, bhg), bhh), caa)) -> new_esEs17(xuu471, xuu481, bhg, bhh, caa) 25.69/9.76 new_ltEs11(xuu471, xuu481, app(ty_Ratio, bda)) -> new_ltEs8(xuu471, xuu481, bda) 25.69/9.76 new_esEs31(xuu471, xuu481, ty_Bool) -> new_esEs20(xuu471, xuu481) 25.69/9.76 new_esEs35(xuu31100001, xuu60001, app(ty_Ratio, edb)) -> new_esEs23(xuu31100001, xuu60001, edb) 25.69/9.76 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_@0, cee) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.76 new_lt15(xuu101, xuu104, cgc) -> new_esEs26(new_compare16(xuu101, xuu104, cgc), LT) 25.69/9.76 new_lt21(xuu114, xuu116, ty_@0) -> new_lt18(xuu114, xuu116) 25.69/9.76 new_esEs6(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.76 new_compare18(Right(xuu3110000), Right(xuu6000), cde, cdf) -> new_compare26(xuu3110000, xuu6000, new_esEs5(xuu3110000, xuu6000, cdf), cde, cdf) 25.69/9.76 new_ltEs22(xuu47, xuu48, app(app(ty_@2, bad), bae)) -> new_ltEs10(xuu47, xuu48, bad, bae) 25.69/9.76 new_esEs39(xuu102, xuu105, ty_Integer) -> new_esEs24(xuu102, xuu105) 25.69/9.76 new_lt8(xuu470, xuu480, ty_@0) -> new_lt18(xuu470, xuu480) 25.69/9.76 new_esEs4(xuu3110000, xuu6000, app(app(app(ty_@3, cea), ceb), cec)) -> new_esEs17(xuu3110000, xuu6000, cea, ceb, cec) 25.69/9.76 new_esEs32(xuu31100000, xuu60000, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.76 new_esEs23(:%(xuu31100000, xuu31100001), :%(xuu60000, xuu60001), dd) -> new_asAs(new_esEs27(xuu31100000, xuu60000, dd), new_esEs28(xuu31100001, xuu60001, dd)) 25.69/9.76 new_ltEs12(Right(xuu470), Right(xuu480), bee, app(app(app(ty_@3, beh), bfa), bfb)) -> new_ltEs13(xuu470, xuu480, beh, bfa, bfb) 25.69/9.76 new_esEs33(xuu31100001, xuu60001, ty_Ordering) -> new_esEs26(xuu31100001, xuu60001) 25.69/9.76 new_esEs4(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.76 new_ltEs16(True, False) -> False 25.69/9.76 new_compare5(xuu311000, xuu600, app(ty_Ratio, dac)) -> new_compare8(xuu311000, xuu600, dac) 25.69/9.76 new_esEs39(xuu102, xuu105, app(app(ty_Either, ffe), fff)) -> new_esEs21(xuu102, xuu105, ffe, fff) 25.69/9.76 new_esEs21(Left(xuu31100000), Left(xuu60000), app(app(ty_@2, dge), dgf), cee) -> new_esEs16(xuu31100000, xuu60000, dge, dgf) 25.69/9.76 new_esEs30(xuu470, xuu480, app(app(ty_@2, bhb), bhc)) -> new_esEs16(xuu470, xuu480, bhb, bhc) 25.69/9.76 new_ltEs22(xuu47, xuu48, ty_@0) -> new_ltEs18(xuu47, xuu48) 25.69/9.76 new_esEs37(xuu114, xuu116, ty_Int) -> new_esEs19(xuu114, xuu116) 25.69/9.76 new_primCmpInt(Pos(Succ(xuu31100000)), Pos(xuu6000)) -> new_primCmpNat0(Succ(xuu31100000), xuu6000) 25.69/9.76 new_esEs29(xuu470, xuu480, ty_Char) -> new_esEs15(xuu470, xuu480) 25.69/9.76 new_lt19(xuu470, xuu480, app(ty_Maybe, bha)) -> new_lt15(xuu470, xuu480, bha) 25.69/9.76 new_esEs13(xuu31100000, xuu60000, ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.76 new_esEs10(xuu3110000, xuu6000, app(app(ty_Either, fa), fb)) -> new_esEs21(xuu3110000, xuu6000, fa, fb) 25.69/9.76 new_lt8(xuu470, xuu480, ty_Char) -> new_lt17(xuu470, xuu480) 25.69/9.76 new_ltEs15(Just(xuu470), Just(xuu480), app(ty_Ratio, dca)) -> new_ltEs8(xuu470, xuu480, dca) 25.69/9.76 new_esEs11(xuu3110001, xuu6001, app(ty_Maybe, gh)) -> new_esEs25(xuu3110001, xuu6001, gh) 25.69/9.76 new_compare13(GT, GT) -> EQ 25.69/9.76 new_ltEs20(xuu54, xuu55, ty_Double) -> new_ltEs6(xuu54, xuu55) 25.69/9.76 new_lt20(xuu471, xuu481, app(app(ty_Either, bhe), bhf)) -> new_lt9(xuu471, xuu481, bhe, bhf) 25.69/9.76 new_lt16(xuu101, xuu104) -> new_esEs26(new_compare29(xuu101, xuu104), LT) 25.69/9.76 new_ltEs21(xuu76, xuu77, app(app(ty_@2, chd), che)) -> new_ltEs10(xuu76, xuu77, chd, che) 25.69/9.76 new_ltEs15(Just(xuu470), Just(xuu480), ty_Ordering) -> new_ltEs14(xuu470, xuu480) 25.69/9.76 new_esEs39(xuu102, xuu105, app(app(app(ty_@3, ffg), ffh), fga)) -> new_esEs17(xuu102, xuu105, ffg, ffh, fga) 25.69/9.76 new_compare7(Float(xuu3110000, Neg(xuu31100010)), Float(xuu6000, Neg(xuu60010))) -> new_compare15(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) 25.69/9.76 new_esEs35(xuu31100001, xuu60001, ty_Integer) -> new_esEs24(xuu31100001, xuu60001) 25.69/9.76 new_lt20(xuu471, xuu481, ty_@0) -> new_lt18(xuu471, xuu481) 25.69/9.76 new_esEs13(xuu31100000, xuu60000, ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.76 new_esEs38(xuu101, xuu104, ty_@0) -> new_esEs14(xuu101, xuu104) 25.69/9.76 new_compare29(False, True) -> LT 25.69/9.76 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, app(app(ty_@2, dhg), dhh)) -> new_esEs16(xuu31100000, xuu60000, dhg, dhh) 25.69/9.76 new_primCompAux00(xuu37, xuu38, EQ, app(ty_Ratio, ddd)) -> new_compare8(xuu37, xuu38, ddd) 25.69/9.76 new_esEs29(xuu470, xuu480, ty_Bool) -> new_esEs20(xuu470, xuu480) 25.69/9.76 new_esEs34(xuu31100000, xuu60000, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.76 new_esEs36(xuu31100002, xuu60002, ty_Bool) -> new_esEs20(xuu31100002, xuu60002) 25.69/9.76 new_ltEs11(xuu471, xuu481, app(ty_Maybe, bcf)) -> new_ltEs15(xuu471, xuu481, bcf) 25.69/9.76 new_lt22(xuu101, xuu104, ty_Ordering) -> new_lt6(xuu101, xuu104) 25.69/9.76 new_primCompAux00(xuu37, xuu38, EQ, app(ty_Maybe, dda)) -> new_compare16(xuu37, xuu38, dda) 25.69/9.76 new_esEs30(xuu470, xuu480, ty_Bool) -> new_esEs20(xuu470, xuu480) 25.69/9.76 new_esEs5(xuu3110000, xuu6000, app(ty_Maybe, cfh)) -> new_esEs25(xuu3110000, xuu6000, cfh) 25.69/9.76 new_esEs36(xuu31100002, xuu60002, ty_Int) -> new_esEs19(xuu31100002, xuu60002) 25.69/9.76 new_lt21(xuu114, xuu116, app(ty_Maybe, efg)) -> new_lt15(xuu114, xuu116, efg) 25.69/9.76 new_lt19(xuu470, xuu480, ty_@0) -> new_lt18(xuu470, xuu480) 25.69/9.76 new_esEs5(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.76 new_esEs31(xuu471, xuu481, ty_Char) -> new_esEs15(xuu471, xuu481) 25.69/9.76 new_ltEs22(xuu47, xuu48, app(ty_[], bd)) -> new_ltEs4(xuu47, xuu48, bd) 25.69/9.76 new_compare18(Right(xuu3110000), Left(xuu6000), cde, cdf) -> GT 25.69/9.76 new_compare5(xuu311000, xuu600, ty_Char) -> new_compare30(xuu311000, xuu600) 25.69/9.76 new_compare6([], [], dab) -> EQ 25.69/9.76 new_ltEs18(xuu47, xuu48) -> new_fsEs(new_compare31(xuu47, xuu48)) 25.69/9.76 new_ltEs11(xuu471, xuu481, ty_Int) -> new_ltEs9(xuu471, xuu481) 25.69/9.76 new_lt8(xuu470, xuu480, ty_Float) -> new_lt14(xuu470, xuu480) 25.69/9.76 new_esEs34(xuu31100000, xuu60000, ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.76 new_esEs7(xuu3110001, xuu6001, ty_Float) -> new_esEs18(xuu3110001, xuu6001) 25.69/9.76 new_compare10(Double(xuu3110000, Neg(xuu31100010)), Double(xuu6000, Neg(xuu60010))) -> new_compare15(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) 25.69/9.76 new_esEs4(xuu3110000, xuu6000, app(ty_Maybe, cef)) -> new_esEs25(xuu3110000, xuu6000, cef) 25.69/9.76 new_lt9(xuu101, xuu104, cga, cgb) -> new_esEs26(new_compare18(xuu101, xuu104, cga, cgb), LT) 25.69/9.76 new_esEs10(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.76 new_lt8(xuu470, xuu480, app(app(ty_Either, baf), bag)) -> new_lt9(xuu470, xuu480, baf, bag) 25.69/9.76 new_ltEs12(Right(xuu470), Right(xuu480), bee, ty_Char) -> new_ltEs17(xuu470, xuu480) 25.69/9.76 new_compare112(xuu188, xuu189, xuu190, xuu191, False, ehf, ehg) -> GT 25.69/9.76 new_esEs35(xuu31100001, xuu60001, ty_@0) -> new_esEs14(xuu31100001, xuu60001) 25.69/9.76 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Float, cee) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.76 new_lt19(xuu470, xuu480, ty_Float) -> new_lt14(xuu470, xuu480) 25.69/9.76 new_esEs32(xuu31100000, xuu60000, ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.76 new_ltEs15(Nothing, Just(xuu480), dag) -> True 25.69/9.76 new_esEs31(xuu471, xuu481, ty_Int) -> new_esEs19(xuu471, xuu481) 25.69/9.76 new_esEs4(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.76 new_primPlusNat0(Succ(xuu21200), Succ(xuu21100)) -> Succ(Succ(new_primPlusNat0(xuu21200, xuu21100))) 25.69/9.76 new_compare18(Left(xuu3110000), Left(xuu6000), cde, cdf) -> new_compare27(xuu3110000, xuu6000, new_esEs4(xuu3110000, xuu6000, cde), cde, cdf) 25.69/9.76 new_esEs7(xuu3110001, xuu6001, app(ty_[], fcb)) -> new_esEs12(xuu3110001, xuu6001, fcb) 25.69/9.76 new_compare27(xuu47, xuu48, True, ddg, ddh) -> EQ 25.69/9.76 new_primCompAux00(xuu37, xuu38, EQ, ty_Ordering) -> new_compare13(xuu37, xuu38) 25.69/9.76 new_esEs38(xuu101, xuu104, ty_Integer) -> new_esEs24(xuu101, xuu104) 25.69/9.76 new_lt4(xuu101, xuu104, da) -> new_esEs26(new_compare8(xuu101, xuu104, da), LT) 25.69/9.76 new_esEs13(xuu31100000, xuu60000, ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.76 new_lt23(xuu102, xuu105, ty_Float) -> new_lt14(xuu102, xuu105) 25.69/9.76 new_esEs36(xuu31100002, xuu60002, app(app(ty_Either, eeb), eec)) -> new_esEs21(xuu31100002, xuu60002, eeb, eec) 25.69/9.76 new_esEs13(xuu31100000, xuu60000, app(app(ty_Either, cc), cd)) -> new_esEs21(xuu31100000, xuu60000, cc, cd) 25.69/9.76 new_ltEs16(False, False) -> True 25.69/9.76 new_ltEs21(xuu76, xuu77, app(ty_[], chb)) -> new_ltEs4(xuu76, xuu77, chb) 25.69/9.76 new_esEs13(xuu31100000, xuu60000, app(ty_Maybe, cg)) -> new_esEs25(xuu31100000, xuu60000, cg) 25.69/9.76 new_lt20(xuu471, xuu481, app(ty_Maybe, cac)) -> new_lt15(xuu471, xuu481, cac) 25.69/9.76 new_esEs11(xuu3110001, xuu6001, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs17(xuu3110001, xuu6001, ga, gb, gc) 25.69/9.76 new_esEs32(xuu31100000, xuu60000, app(ty_Ratio, deh)) -> new_esEs23(xuu31100000, xuu60000, deh) 25.69/9.76 new_lt21(xuu114, xuu116, ty_Char) -> new_lt17(xuu114, xuu116) 25.69/9.76 new_esEs36(xuu31100002, xuu60002, app(ty_Maybe, eef)) -> new_esEs25(xuu31100002, xuu60002, eef) 25.69/9.76 new_esEs11(xuu3110001, xuu6001, ty_Bool) -> new_esEs20(xuu3110001, xuu6001) 25.69/9.76 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Ordering, cee) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.76 new_esEs33(xuu31100001, xuu60001, ty_@0) -> new_esEs14(xuu31100001, xuu60001) 25.69/9.76 new_lt20(xuu471, xuu481, ty_Bool) -> new_lt16(xuu471, xuu481) 25.69/9.76 new_ltEs12(Right(xuu470), Right(xuu480), bee, ty_Ordering) -> new_ltEs14(xuu470, xuu480) 25.69/9.76 new_esEs34(xuu31100000, xuu60000, app(app(app(ty_@3, ebc), ebd), ebe)) -> new_esEs17(xuu31100000, xuu60000, ebc, ebd, ebe) 25.69/9.76 new_esEs13(xuu31100000, xuu60000, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.76 new_compare12(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, de, df, dg) -> LT 25.69/9.76 new_esEs18(Float(xuu31100000, xuu31100001), Float(xuu60000, xuu60001)) -> new_esEs19(new_sr(xuu31100000, xuu60001), new_sr(xuu31100001, xuu60000)) 25.69/9.76 new_lt20(xuu471, xuu481, ty_Float) -> new_lt14(xuu471, xuu481) 25.69/9.76 new_esEs36(xuu31100002, xuu60002, ty_Ordering) -> new_esEs26(xuu31100002, xuu60002) 25.69/9.76 new_lt21(xuu114, xuu116, ty_Ordering) -> new_lt6(xuu114, xuu116) 25.69/9.76 new_ltEs12(Right(xuu470), Right(xuu480), bee, app(ty_[], bfc)) -> new_ltEs4(xuu470, xuu480, bfc) 25.69/9.76 new_ltEs16(True, True) -> True 25.69/9.76 new_esEs39(xuu102, xuu105, ty_Float) -> new_esEs18(xuu102, xuu105) 25.69/9.76 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Integer, cee) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.76 new_ltEs11(xuu471, xuu481, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs13(xuu471, xuu481, bcb, bcc, bcd) 25.69/9.76 new_ltEs11(xuu471, xuu481, app(app(ty_Either, bbh), bca)) -> new_ltEs12(xuu471, xuu481, bbh, bca) 25.69/9.76 new_esEs35(xuu31100001, xuu60001, ty_Char) -> new_esEs15(xuu31100001, xuu60001) 25.69/9.76 new_esEs11(xuu3110001, xuu6001, ty_Char) -> new_esEs15(xuu3110001, xuu6001) 25.69/9.76 new_esEs5(xuu3110000, xuu6000, app(ty_[], cfg)) -> new_esEs12(xuu3110000, xuu6000, cfg) 25.69/9.76 new_esEs36(xuu31100002, xuu60002, ty_Integer) -> new_esEs24(xuu31100002, xuu60002) 25.69/9.76 new_esEs17(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), cea, ceb, cec) -> new_asAs(new_esEs34(xuu31100000, xuu60000, cea), new_asAs(new_esEs35(xuu31100001, xuu60001, ceb), new_esEs36(xuu31100002, xuu60002, cec))) 25.69/9.76 new_esEs20(True, True) -> True 25.69/9.76 new_lt21(xuu114, xuu116, ty_Float) -> new_lt14(xuu114, xuu116) 25.69/9.76 new_esEs34(xuu31100000, xuu60000, ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.76 new_primCmpNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primCmpNat0(xuu31100000, xuu60000) 25.69/9.76 new_esEs25(Just(xuu31100000), Just(xuu60000), app(ty_[], feh)) -> new_esEs12(xuu31100000, xuu60000, feh) 25.69/9.76 new_esEs38(xuu101, xuu104, ty_Ordering) -> new_esEs26(xuu101, xuu104) 25.69/9.76 new_ltEs15(Just(xuu470), Just(xuu480), ty_Int) -> new_ltEs9(xuu470, xuu480) 25.69/9.76 new_compare5(xuu311000, xuu600, app(ty_Maybe, ha)) -> new_compare16(xuu311000, xuu600, ha) 25.69/9.76 new_esEs34(xuu31100000, xuu60000, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.76 new_lt22(xuu101, xuu104, ty_Float) -> new_lt14(xuu101, xuu104) 25.69/9.76 new_esEs11(xuu3110001, xuu6001, app(app(ty_Either, gd), ge)) -> new_esEs21(xuu3110001, xuu6001, gd, ge) 25.69/9.76 new_esEs11(xuu3110001, xuu6001, ty_Int) -> new_esEs19(xuu3110001, xuu6001) 25.69/9.76 new_esEs10(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.76 new_ltEs11(xuu471, xuu481, ty_Ordering) -> new_ltEs14(xuu471, xuu481) 25.69/9.76 new_esEs29(xuu470, xuu480, app(ty_Ratio, bbg)) -> new_esEs23(xuu470, xuu480, bbg) 25.69/9.76 new_esEs34(xuu31100000, xuu60000, app(app(ty_Either, ebf), ebg)) -> new_esEs21(xuu31100000, xuu60000, ebf, ebg) 25.69/9.76 new_esEs33(xuu31100001, xuu60001, ty_Char) -> new_esEs15(xuu31100001, xuu60001) 25.69/9.76 new_lt23(xuu102, xuu105, app(app(ty_Either, ffe), fff)) -> new_lt9(xuu102, xuu105, ffe, fff) 25.69/9.76 new_compare12(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, False, de, df, dg) -> GT 25.69/9.76 new_ltEs11(xuu471, xuu481, ty_Integer) -> new_ltEs7(xuu471, xuu481) 25.69/9.76 new_ltEs20(xuu54, xuu55, app(ty_[], cch)) -> new_ltEs4(xuu54, xuu55, cch) 25.69/9.76 new_compare13(LT, GT) -> LT 25.69/9.76 new_esEs37(xuu114, xuu116, ty_Ordering) -> new_esEs26(xuu114, xuu116) 25.69/9.76 new_esEs33(xuu31100001, xuu60001, ty_Int) -> new_esEs19(xuu31100001, xuu60001) 25.69/9.76 new_lt19(xuu470, xuu480, ty_Ordering) -> new_lt6(xuu470, xuu480) 25.69/9.76 new_esEs37(xuu114, xuu116, app(ty_Maybe, efg)) -> new_esEs25(xuu114, xuu116, efg) 25.69/9.76 new_esEs5(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.76 new_esEs15(Char(xuu31100000), Char(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 25.69/9.76 new_esEs36(xuu31100002, xuu60002, app(app(app(ty_@3, edg), edh), eea)) -> new_esEs17(xuu31100002, xuu60002, edg, edh, eea) 25.69/9.76 new_ltEs23(xuu115, xuu117, ty_Double) -> new_ltEs6(xuu115, xuu117) 25.69/9.76 new_ltEs12(Right(xuu470), Right(xuu480), bee, ty_Bool) -> new_ltEs16(xuu470, xuu480) 25.69/9.76 new_esEs30(xuu470, xuu480, app(ty_Ratio, bhd)) -> new_esEs23(xuu470, xuu480, bhd) 25.69/9.76 new_esEs38(xuu101, xuu104, app(ty_Maybe, cgc)) -> new_esEs25(xuu101, xuu104, cgc) 25.69/9.76 new_esEs13(xuu31100000, xuu60000, app(app(app(ty_@3, bh), ca), cb)) -> new_esEs17(xuu31100000, xuu60000, bh, ca, cb) 25.69/9.76 new_ltEs12(Right(xuu470), Right(xuu480), bee, ty_Float) -> new_ltEs5(xuu470, xuu480) 25.69/9.76 new_ltEs19(xuu472, xuu482, app(ty_[], cbd)) -> new_ltEs4(xuu472, xuu482, cbd) 25.69/9.76 new_ltEs14(LT, LT) -> True 25.69/9.76 new_lt22(xuu101, xuu104, ty_@0) -> new_lt18(xuu101, xuu104) 25.69/9.76 new_lt20(xuu471, xuu481, ty_Ordering) -> new_lt6(xuu471, xuu481) 25.69/9.76 new_compare210(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, ffb, ffc, ffd) -> new_compare11(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, new_lt22(xuu101, xuu104, ffb), new_asAs(new_esEs38(xuu101, xuu104, ffb), new_pePe(new_lt23(xuu102, xuu105, ffc), new_asAs(new_esEs39(xuu102, xuu105, ffc), new_ltEs24(xuu103, xuu106, ffd)))), ffb, ffc, ffd) 25.69/9.76 new_esEs35(xuu31100001, xuu60001, app(app(ty_Either, ech), eda)) -> new_esEs21(xuu31100001, xuu60001, ech, eda) 25.69/9.76 new_esEs6(xuu3110000, xuu6000, app(ty_[], fah)) -> new_esEs12(xuu3110000, xuu6000, fah) 25.69/9.76 new_esEs37(xuu114, xuu116, ty_Integer) -> new_esEs24(xuu114, xuu116) 25.69/9.76 new_ltEs12(Left(xuu470), Left(xuu480), app(app(app(ty_@3, bde), bdf), bdg), bdd) -> new_ltEs13(xuu470, xuu480, bde, bdf, bdg) 25.69/9.76 new_esEs10(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.76 new_lt19(xuu470, xuu480, ty_Char) -> new_lt17(xuu470, xuu480) 25.69/9.76 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.76 new_ltEs16(False, True) -> True 25.69/9.76 new_primCompAux1(xuu311000, xuu600, xuu311001, xuu601, bb) -> new_primCompAux00(xuu311001, xuu601, new_compare5(xuu311000, xuu600, bb), app(ty_[], bb)) 25.69/9.76 new_ltEs23(xuu115, xuu117, app(app(ty_@2, ehb), ehc)) -> new_ltEs10(xuu115, xuu117, ehb, ehc) 25.69/9.76 new_compare14(Integer(xuu3110000), Integer(xuu6000)) -> new_primCmpInt(xuu3110000, xuu6000) 25.69/9.76 new_ltEs23(xuu115, xuu117, app(app(ty_Either, egc), egd)) -> new_ltEs12(xuu115, xuu117, egc, egd) 25.69/9.76 new_lt23(xuu102, xuu105, ty_@0) -> new_lt18(xuu102, xuu105) 25.69/9.76 new_primCmpInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> LT 25.69/9.76 new_esEs29(xuu470, xuu480, app(ty_[], bbc)) -> new_esEs12(xuu470, xuu480, bbc) 25.69/9.76 new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_Either, dcc), dcd)) -> new_compare18(xuu37, xuu38, dcc, dcd) 25.69/9.76 new_esEs33(xuu31100001, xuu60001, ty_Bool) -> new_esEs20(xuu31100001, xuu60001) 25.69/9.76 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.76 new_esEs5(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.76 new_esEs6(xuu3110000, xuu6000, app(app(app(ty_@3, fab), fac), fad)) -> new_esEs17(xuu3110000, xuu6000, fab, fac, fad) 25.69/9.76 new_esEs30(xuu470, xuu480, ty_Int) -> new_esEs19(xuu470, xuu480) 25.69/9.76 new_compare13(EQ, GT) -> LT 25.69/9.76 new_compare24(xuu114, xuu115, xuu116, xuu117, False, eeg, eeh) -> new_compare111(xuu114, xuu115, xuu116, xuu117, new_lt21(xuu114, xuu116, eeg), new_asAs(new_esEs37(xuu114, xuu116, eeg), new_ltEs23(xuu115, xuu117, eeh)), eeg, eeh) 25.69/9.76 new_ltEs22(xuu47, xuu48, ty_Bool) -> new_ltEs16(xuu47, xuu48) 25.69/9.76 new_esEs35(xuu31100001, xuu60001, ty_Ordering) -> new_esEs26(xuu31100001, xuu60001) 25.69/9.76 new_ltEs12(Right(xuu470), Right(xuu480), bee, ty_Int) -> new_ltEs9(xuu470, xuu480) 25.69/9.76 new_esEs8(xuu3110002, xuu6002, app(ty_[], fdd)) -> new_esEs12(xuu3110002, xuu6002, fdd) 25.69/9.76 new_esEs12(:(xuu31100000, xuu31100001), [], be) -> False 25.69/9.76 new_esEs12([], :(xuu60000, xuu60001), be) -> False 25.69/9.76 new_primCmpInt(Pos(Zero), Neg(Succ(xuu60000))) -> GT 25.69/9.76 new_ltEs15(Just(xuu470), Just(xuu480), app(app(app(ty_@3, dbb), dbc), dbd)) -> new_ltEs13(xuu470, xuu480, dbb, dbc, dbd) 25.69/9.76 new_esEs10(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.76 new_compare5(xuu311000, xuu600, ty_Int) -> new_compare15(xuu311000, xuu600) 25.69/9.76 new_compare111(xuu188, xuu189, xuu190, xuu191, False, xuu193, ehf, ehg) -> new_compare112(xuu188, xuu189, xuu190, xuu191, xuu193, ehf, ehg) 25.69/9.76 new_compare29(True, True) -> EQ 25.69/9.76 new_esEs33(xuu31100001, xuu60001, ty_Float) -> new_esEs18(xuu31100001, xuu60001) 25.69/9.76 new_ltEs21(xuu76, xuu77, app(app(app(ty_@3, cgg), cgh), cha)) -> new_ltEs13(xuu76, xuu77, cgg, cgh, cha) 25.69/9.76 new_esEs37(xuu114, xuu116, app(app(ty_Either, efa), efb)) -> new_esEs21(xuu114, xuu116, efa, efb) 25.69/9.76 new_primCmpInt(Neg(Succ(xuu31100000)), Neg(xuu6000)) -> new_primCmpNat0(xuu6000, Succ(xuu31100000)) 25.69/9.76 new_esEs36(xuu31100002, xuu60002, ty_Double) -> new_esEs22(xuu31100002, xuu60002) 25.69/9.76 new_ltEs20(xuu54, xuu55, ty_@0) -> new_ltEs18(xuu54, xuu55) 25.69/9.76 new_esEs33(xuu31100001, xuu60001, app(app(ty_@2, dfc), dfd)) -> new_esEs16(xuu31100001, xuu60001, dfc, dfd) 25.69/9.76 new_ltEs22(xuu47, xuu48, ty_Integer) -> new_ltEs7(xuu47, xuu48) 25.69/9.76 new_esEs9(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.76 new_esEs5(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.76 new_primEqInt(Pos(Succ(xuu311000000)), Pos(Zero)) -> False 25.69/9.76 new_primEqInt(Pos(Zero), Pos(Succ(xuu600000))) -> False 25.69/9.76 new_esEs7(xuu3110001, xuu6001, ty_Int) -> new_esEs19(xuu3110001, xuu6001) 25.69/9.76 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.76 new_ltEs11(xuu471, xuu481, ty_Double) -> new_ltEs6(xuu471, xuu481) 25.69/9.76 new_lt21(xuu114, xuu116, app(app(ty_@2, efh), ega)) -> new_lt5(xuu114, xuu116, efh, ega) 25.69/9.76 new_ltEs17(xuu47, xuu48) -> new_fsEs(new_compare30(xuu47, xuu48)) 25.69/9.76 new_ltEs24(xuu103, xuu106, ty_Float) -> new_ltEs5(xuu103, xuu106) 25.69/9.76 new_primCompAux00(xuu37, xuu38, EQ, app(ty_[], dch)) -> new_compare6(xuu37, xuu38, dch) 25.69/9.76 new_lt23(xuu102, xuu105, app(ty_Ratio, fgf)) -> new_lt4(xuu102, xuu105, fgf) 25.69/9.76 new_esEs37(xuu114, xuu116, app(ty_Ratio, egb)) -> new_esEs23(xuu114, xuu116, egb) 25.69/9.76 new_compare6(:(xuu3110000, xuu3110001), [], dab) -> GT 25.69/9.76 new_esEs37(xuu114, xuu116, app(app(app(ty_@3, efc), efd), efe)) -> new_esEs17(xuu114, xuu116, efc, efd, efe) 25.69/9.76 new_esEs39(xuu102, xuu105, app(ty_Maybe, fgc)) -> new_esEs25(xuu102, xuu105, fgc) 25.69/9.76 new_ltEs8(xuu47, xuu48, ea) -> new_fsEs(new_compare8(xuu47, xuu48, ea)) 25.69/9.76 new_lt21(xuu114, xuu116, app(app(ty_Either, efa), efb)) -> new_lt9(xuu114, xuu116, efa, efb) 25.69/9.76 new_ltEs20(xuu54, xuu55, ty_Ordering) -> new_ltEs14(xuu54, xuu55) 25.69/9.76 new_ltEs20(xuu54, xuu55, app(app(ty_@2, cdb), cdc)) -> new_ltEs10(xuu54, xuu55, cdb, cdc) 25.69/9.76 new_esEs30(xuu470, xuu480, ty_Ordering) -> new_esEs26(xuu470, xuu480) 25.69/9.76 new_primCmpNat0(Zero, Zero) -> EQ 25.69/9.76 new_esEs35(xuu31100001, xuu60001, ty_Int) -> new_esEs19(xuu31100001, xuu60001) 25.69/9.76 new_ltEs15(Just(xuu470), Just(xuu480), ty_Double) -> new_ltEs6(xuu470, xuu480) 25.69/9.76 new_ltEs12(Right(xuu470), Right(xuu480), bee, ty_Integer) -> new_ltEs7(xuu470, xuu480) 25.69/9.76 new_ltEs22(xuu47, xuu48, ty_Int) -> new_ltEs9(xuu47, xuu48) 25.69/9.76 new_esEs21(Left(xuu31100000), Left(xuu60000), app(app(app(ty_@3, dgg), dgh), dha), cee) -> new_esEs17(xuu31100000, xuu60000, dgg, dgh, dha) 25.69/9.76 new_ltEs21(xuu76, xuu77, ty_Double) -> new_ltEs6(xuu76, xuu77) 25.69/9.76 new_lt23(xuu102, xuu105, app(ty_[], fgb)) -> new_lt7(xuu102, xuu105, fgb) 25.69/9.76 new_compare13(LT, EQ) -> LT 25.69/9.76 new_ltEs19(xuu472, xuu482, app(app(app(ty_@3, cba), cbb), cbc)) -> new_ltEs13(xuu472, xuu482, cba, cbb, cbc) 25.69/9.76 new_esEs5(xuu3110000, xuu6000, app(app(ty_@2, ceg), ceh)) -> new_esEs16(xuu3110000, xuu6000, ceg, ceh) 25.69/9.76 new_esEs36(xuu31100002, xuu60002, ty_Char) -> new_esEs15(xuu31100002, xuu60002) 25.69/9.76 new_esEs38(xuu101, xuu104, ty_Float) -> new_esEs18(xuu101, xuu104) 25.69/9.76 new_esEs11(xuu3110001, xuu6001, ty_Integer) -> new_esEs24(xuu3110001, xuu6001) 25.69/9.76 new_lt19(xuu470, xuu480, ty_Double) -> new_lt12(xuu470, xuu480) 25.69/9.76 new_esEs4(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.76 new_esEs34(xuu31100000, xuu60000, app(ty_Maybe, ecb)) -> new_esEs25(xuu31100000, xuu60000, ecb) 25.69/9.76 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.76 new_esEs5(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.76 new_lt12(xuu101, xuu104) -> new_esEs26(new_compare10(xuu101, xuu104), LT) 25.69/9.76 new_ltEs20(xuu54, xuu55, app(ty_Ratio, cdd)) -> new_ltEs8(xuu54, xuu55, cdd) 25.69/9.76 new_lt22(xuu101, xuu104, ty_Char) -> new_lt17(xuu101, xuu104) 25.69/9.76 new_esEs20(False, True) -> False 25.69/9.76 new_esEs20(True, False) -> False 25.69/9.76 new_ltEs13(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), bfh, bga, bgb) -> new_pePe(new_lt19(xuu470, xuu480, bfh), new_asAs(new_esEs30(xuu470, xuu480, bfh), new_pePe(new_lt20(xuu471, xuu481, bga), new_asAs(new_esEs31(xuu471, xuu481, bga), new_ltEs19(xuu472, xuu482, bgb))))) 25.69/9.76 new_primCompAux00(xuu37, xuu38, EQ, ty_Int) -> new_compare15(xuu37, xuu38) 25.69/9.76 new_lt20(xuu471, xuu481, ty_Integer) -> new_lt13(xuu471, xuu481) 25.69/9.76 new_esEs32(xuu31100000, xuu60000, ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.76 new_lt19(xuu470, xuu480, app(app(ty_@2, bhb), bhc)) -> new_lt5(xuu470, xuu480, bhb, bhc) 25.69/9.76 new_esEs13(xuu31100000, xuu60000, ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.76 new_esEs37(xuu114, xuu116, ty_@0) -> new_esEs14(xuu114, xuu116) 25.69/9.76 new_ltEs14(EQ, LT) -> False 25.69/9.76 new_compare110(xuu133, xuu134, True, fdf, fdg) -> LT 25.69/9.76 new_esEs39(xuu102, xuu105, app(ty_[], fgb)) -> new_esEs12(xuu102, xuu105, fgb) 25.69/9.76 new_ltEs24(xuu103, xuu106, ty_Char) -> new_ltEs17(xuu103, xuu106) 25.69/9.76 new_esEs11(xuu3110001, xuu6001, ty_Double) -> new_esEs22(xuu3110001, xuu6001) 25.69/9.76 new_esEs29(xuu470, xuu480, app(ty_Maybe, bbd)) -> new_esEs25(xuu470, xuu480, bbd) 25.69/9.76 new_esEs25(Just(xuu31100000), Just(xuu60000), app(ty_Maybe, ffa)) -> new_esEs25(xuu31100000, xuu60000, ffa) 25.69/9.76 new_compare5(xuu311000, xuu600, app(app(ty_Either, cde), cdf)) -> new_compare18(xuu311000, xuu600, cde, cdf) 25.69/9.76 new_esEs13(xuu31100000, xuu60000, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.76 new_esEs19(xuu3110000, xuu6000) -> new_primEqInt(xuu3110000, xuu6000) 25.69/9.76 new_compare8(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ty_Integer) -> new_compare14(new_sr0(xuu3110000, xuu6001), new_sr0(xuu6000, xuu3110001)) 25.69/9.76 new_esEs32(xuu31100000, xuu60000, app(app(ty_Either, def), deg)) -> new_esEs21(xuu31100000, xuu60000, def, deg) 25.69/9.76 new_esEs36(xuu31100002, xuu60002, app(ty_[], eee)) -> new_esEs12(xuu31100002, xuu60002, eee) 25.69/9.76 new_ltEs23(xuu115, xuu117, app(ty_[], egh)) -> new_ltEs4(xuu115, xuu117, egh) 25.69/9.76 new_primCmpNat0(Succ(xuu31100000), Zero) -> GT 25.69/9.76 new_ltEs19(xuu472, xuu482, ty_Double) -> new_ltEs6(xuu472, xuu482) 25.69/9.76 new_compare16(Just(xuu3110000), Nothing, ha) -> GT 25.69/9.76 new_esEs31(xuu471, xuu481, ty_Integer) -> new_esEs24(xuu471, xuu481) 25.69/9.76 new_pePe(False, xuu210) -> xuu210 25.69/9.76 new_esEs20(False, False) -> True 25.69/9.76 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.76 new_ltEs10(@2(xuu470, xuu471), @2(xuu480, xuu481), bad, bae) -> new_pePe(new_lt8(xuu470, xuu480, bad), new_asAs(new_esEs29(xuu470, xuu480, bad), new_ltEs11(xuu471, xuu481, bae))) 25.69/9.76 new_esEs11(xuu3110001, xuu6001, app(app(ty_@2, fg), fh)) -> new_esEs16(xuu3110001, xuu6001, fg, fh) 25.69/9.76 new_compare28(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), chg, chh, daa) -> new_compare210(xuu3110000, xuu3110001, xuu3110002, xuu6000, xuu6001, xuu6002, new_asAs(new_esEs6(xuu3110000, xuu6000, chg), new_asAs(new_esEs7(xuu3110001, xuu6001, chh), new_esEs8(xuu3110002, xuu6002, daa))), chg, chh, daa) 25.69/9.76 new_compare5(xuu311000, xuu600, ty_Ordering) -> new_compare13(xuu311000, xuu600) 25.69/9.76 new_lt22(xuu101, xuu104, app(ty_Maybe, cgc)) -> new_lt15(xuu101, xuu104, cgc) 25.69/9.76 new_esEs11(xuu3110001, xuu6001, ty_Float) -> new_esEs18(xuu3110001, xuu6001) 25.69/9.76 new_compare11(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, xuu180, de, df, dg) -> new_compare12(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, de, df, dg) 25.69/9.76 new_esEs34(xuu31100000, xuu60000, app(ty_Ratio, ebh)) -> new_esEs23(xuu31100000, xuu60000, ebh) 25.69/9.76 new_compare6(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), dab) -> new_primCompAux1(xuu3110000, xuu6000, xuu3110001, xuu6001, dab) 25.69/9.76 new_esEs32(xuu31100000, xuu60000, app(app(app(ty_@3, dec), ded), dee)) -> new_esEs17(xuu31100000, xuu60000, dec, ded, dee) 25.69/9.76 new_compare16(Nothing, Nothing, ha) -> EQ 25.69/9.76 new_lt21(xuu114, xuu116, ty_Double) -> new_lt12(xuu114, xuu116) 25.69/9.76 new_primEqInt(Pos(Zero), Neg(Succ(xuu600000))) -> False 25.69/9.76 new_primEqInt(Neg(Zero), Pos(Succ(xuu600000))) -> False 25.69/9.76 new_esEs5(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.76 new_esEs7(xuu3110001, xuu6001, ty_Ordering) -> new_esEs26(xuu3110001, xuu6001) 25.69/9.76 new_compare19(xuu154, xuu155, True, ehe) -> LT 25.69/9.76 new_lt23(xuu102, xuu105, ty_Ordering) -> new_lt6(xuu102, xuu105) 25.69/9.76 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, app(ty_Ratio, eaf)) -> new_esEs23(xuu31100000, xuu60000, eaf) 25.69/9.76 new_esEs4(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.76 new_esEs34(xuu31100000, xuu60000, app(ty_[], eca)) -> new_esEs12(xuu31100000, xuu60000, eca) 25.69/9.76 new_esEs11(xuu3110001, xuu6001, app(ty_[], gg)) -> new_esEs12(xuu3110001, xuu6001, gg) 25.69/9.76 new_compare111(xuu188, xuu189, xuu190, xuu191, True, xuu193, ehf, ehg) -> new_compare112(xuu188, xuu189, xuu190, xuu191, True, ehf, ehg) 25.69/9.76 new_ltEs12(Left(xuu470), Left(xuu480), app(app(ty_Either, bdb), bdc), bdd) -> new_ltEs12(xuu470, xuu480, bdb, bdc) 25.69/9.76 new_ltEs15(Nothing, Nothing, dag) -> True 25.69/9.76 new_primCompAux00(xuu37, xuu38, EQ, ty_@0) -> new_compare31(xuu37, xuu38) 25.69/9.76 new_ltEs14(GT, EQ) -> False 25.69/9.76 new_lt22(xuu101, xuu104, app(app(app(ty_@3, dad), dae), daf)) -> new_lt11(xuu101, xuu104, dad, dae, daf) 25.69/9.76 new_ltEs15(Just(xuu470), Nothing, dag) -> False 25.69/9.76 new_esEs6(xuu3110000, xuu6000, app(ty_Maybe, fba)) -> new_esEs25(xuu3110000, xuu6000, fba) 25.69/9.76 new_lt22(xuu101, xuu104, ty_Bool) -> new_lt16(xuu101, xuu104) 25.69/9.76 new_ltEs12(Left(xuu470), Left(xuu480), ty_Integer, bdd) -> new_ltEs7(xuu470, xuu480) 25.69/9.76 new_esEs36(xuu31100002, xuu60002, ty_Float) -> new_esEs18(xuu31100002, xuu60002) 25.69/9.76 new_esEs8(xuu3110002, xuu6002, ty_Double) -> new_esEs22(xuu3110002, xuu6002) 25.69/9.76 new_esEs29(xuu470, xuu480, ty_Double) -> new_esEs22(xuu470, xuu480) 25.69/9.76 new_esEs13(xuu31100000, xuu60000, ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.76 new_esEs4(xuu3110000, xuu6000, app(app(ty_Either, ced), cee)) -> new_esEs21(xuu3110000, xuu6000, ced, cee) 25.69/9.76 new_ltEs12(Left(xuu470), Left(xuu480), ty_Ordering, bdd) -> new_ltEs14(xuu470, xuu480) 25.69/9.76 new_esEs9(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.76 new_esEs6(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.76 new_ltEs24(xuu103, xuu106, ty_Int) -> new_ltEs9(xuu103, xuu106) 25.69/9.76 new_esEs38(xuu101, xuu104, ty_Char) -> new_esEs15(xuu101, xuu104) 25.69/9.76 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.76 new_esEs31(xuu471, xuu481, app(ty_Maybe, cac)) -> new_esEs25(xuu471, xuu481, cac) 25.69/9.76 new_ltEs12(Right(xuu470), Right(xuu480), bee, app(app(ty_@2, bfe), bff)) -> new_ltEs10(xuu470, xuu480, bfe, bff) 25.69/9.76 new_ltEs21(xuu76, xuu77, app(ty_Maybe, chc)) -> new_ltEs15(xuu76, xuu77, chc) 25.69/9.76 new_esEs33(xuu31100001, xuu60001, ty_Integer) -> new_esEs24(xuu31100001, xuu60001) 25.69/9.76 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.76 new_lt19(xuu470, xuu480, app(app(ty_Either, bgc), bgd)) -> new_lt9(xuu470, xuu480, bgc, bgd) 25.69/9.76 new_ltEs19(xuu472, xuu482, ty_Char) -> new_ltEs17(xuu472, xuu482) 25.69/9.76 new_ltEs12(Left(xuu470), Left(xuu480), ty_Bool, bdd) -> new_ltEs16(xuu470, xuu480) 25.69/9.76 new_esEs28(xuu31100001, xuu60001, ty_Int) -> new_esEs19(xuu31100001, xuu60001) 25.69/9.76 new_esEs26(GT, GT) -> True 25.69/9.76 new_lt8(xuu470, xuu480, ty_Double) -> new_lt12(xuu470, xuu480) 25.69/9.76 new_lt23(xuu102, xuu105, ty_Integer) -> new_lt13(xuu102, xuu105) 25.69/9.76 new_esEs38(xuu101, xuu104, ty_Bool) -> new_esEs20(xuu101, xuu104) 25.69/9.76 new_esEs8(xuu3110002, xuu6002, app(ty_Maybe, fde)) -> new_esEs25(xuu3110002, xuu6002, fde) 25.69/9.76 new_compare17(xuu140, xuu141, True, dde, ddf) -> LT 25.69/9.76 new_compare5(xuu311000, xuu600, ty_@0) -> new_compare31(xuu311000, xuu600) 25.69/9.76 new_esEs31(xuu471, xuu481, app(app(ty_@2, cad), cae)) -> new_esEs16(xuu471, xuu481, cad, cae) 25.69/9.76 new_esEs6(xuu3110000, xuu6000, app(app(ty_Either, fae), faf)) -> new_esEs21(xuu3110000, xuu6000, fae, faf) 25.69/9.76 new_ltEs22(xuu47, xuu48, ty_Char) -> new_ltEs17(xuu47, xuu48) 25.69/9.76 new_esEs8(xuu3110002, xuu6002, ty_Integer) -> new_esEs24(xuu3110002, xuu6002) 25.69/9.76 new_compare18(Left(xuu3110000), Right(xuu6000), cde, cdf) -> LT 25.69/9.76 new_compare8(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ty_Int) -> new_compare15(new_sr(xuu3110000, xuu6001), new_sr(xuu6000, xuu3110001)) 25.69/9.76 new_lt8(xuu470, xuu480, app(ty_Maybe, bbd)) -> new_lt15(xuu470, xuu480, bbd) 25.69/9.76 new_esEs30(xuu470, xuu480, ty_@0) -> new_esEs14(xuu470, xuu480) 25.69/9.76 new_compare5(xuu311000, xuu600, ty_Bool) -> new_compare29(xuu311000, xuu600) 25.69/9.76 new_lt22(xuu101, xuu104, ty_Integer) -> new_lt13(xuu101, xuu104) 25.69/9.76 new_esEs12(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), be) -> new_asAs(new_esEs13(xuu31100000, xuu60000, be), new_esEs12(xuu31100001, xuu60001, be)) 25.69/9.76 new_esEs4(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.76 new_esEs31(xuu471, xuu481, ty_Double) -> new_esEs22(xuu471, xuu481) 25.69/9.76 new_esEs7(xuu3110001, xuu6001, ty_Integer) -> new_esEs24(xuu3110001, xuu6001) 25.69/9.76 new_esEs29(xuu470, xuu480, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs17(xuu470, xuu480, bah, bba, bbb) 25.69/9.76 new_esEs38(xuu101, xuu104, ty_Int) -> new_esEs19(xuu101, xuu104) 25.69/9.76 new_primMulInt(Neg(xuu60000), Neg(xuu31100010)) -> Pos(new_primMulNat0(xuu60000, xuu31100010)) 25.69/9.76 new_primCmpInt(Pos(Zero), Pos(Succ(xuu60000))) -> new_primCmpNat0(Zero, Succ(xuu60000)) 25.69/9.76 new_ltEs20(xuu54, xuu55, ty_Bool) -> new_ltEs16(xuu54, xuu55) 25.69/9.76 new_ltEs23(xuu115, xuu117, ty_@0) -> new_ltEs18(xuu115, xuu117) 25.69/9.76 new_ltEs23(xuu115, xuu117, app(ty_Ratio, ehd)) -> new_ltEs8(xuu115, xuu117, ehd) 25.69/9.76 new_ltEs19(xuu472, xuu482, app(ty_Maybe, cbe)) -> new_ltEs15(xuu472, xuu482, cbe) 25.69/9.76 new_fsEs(xuu205) -> new_not(new_esEs26(xuu205, GT)) 25.69/9.76 new_ltEs21(xuu76, xuu77, ty_Char) -> new_ltEs17(xuu76, xuu77) 25.69/9.76 new_esEs35(xuu31100001, xuu60001, ty_Float) -> new_esEs18(xuu31100001, xuu60001) 25.69/9.76 new_ltEs15(Just(xuu470), Just(xuu480), app(ty_Maybe, dbf)) -> new_ltEs15(xuu470, xuu480, dbf) 25.69/9.76 new_esEs7(xuu3110001, xuu6001, app(app(ty_@2, fbb), fbc)) -> new_esEs16(xuu3110001, xuu6001, fbb, fbc) 25.69/9.76 new_ltEs15(Just(xuu470), Just(xuu480), ty_Float) -> new_ltEs5(xuu470, xuu480) 25.69/9.76 new_ltEs19(xuu472, xuu482, ty_Float) -> new_ltEs5(xuu472, xuu482) 25.69/9.76 new_esEs32(xuu31100000, xuu60000, ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.76 new_ltEs14(GT, LT) -> False 25.69/9.76 new_ltEs24(xuu103, xuu106, ty_Integer) -> new_ltEs7(xuu103, xuu106) 25.69/9.76 new_esEs7(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) 25.69/9.76 new_esEs38(xuu101, xuu104, ty_Double) -> new_esEs22(xuu101, xuu104) 25.69/9.76 new_esEs35(xuu31100001, xuu60001, app(app(ty_@2, ecc), ecd)) -> new_esEs16(xuu31100001, xuu60001, ecc, ecd) 25.69/9.76 new_ltEs23(xuu115, xuu117, app(app(app(ty_@3, ege), egf), egg)) -> new_ltEs13(xuu115, xuu117, ege, egf, egg) 25.69/9.76 new_lt8(xuu470, xuu480, app(app(app(ty_@3, bah), bba), bbb)) -> new_lt11(xuu470, xuu480, bah, bba, bbb) 25.69/9.76 new_ltEs12(Right(xuu470), Right(xuu480), bee, app(app(ty_Either, bef), beg)) -> new_ltEs12(xuu470, xuu480, bef, beg) 25.69/9.76 new_primMulInt(Pos(xuu60000), Neg(xuu31100010)) -> Neg(new_primMulNat0(xuu60000, xuu31100010)) 25.69/9.76 new_primMulInt(Neg(xuu60000), Pos(xuu31100010)) -> Neg(new_primMulNat0(xuu60000, xuu31100010)) 25.69/9.76 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, app(ty_Maybe, eah)) -> new_esEs25(xuu31100000, xuu60000, eah) 25.69/9.76 new_ltEs12(Right(xuu470), Left(xuu480), bee, bdd) -> False 25.69/9.76 new_ltEs19(xuu472, xuu482, ty_Int) -> new_ltEs9(xuu472, xuu482) 25.69/9.76 new_esEs8(xuu3110002, xuu6002, ty_Bool) -> new_esEs20(xuu3110002, xuu6002) 25.69/9.76 new_esEs30(xuu470, xuu480, ty_Integer) -> new_esEs24(xuu470, xuu480) 25.69/9.76 new_lt18(xuu101, xuu104) -> new_esEs26(new_compare31(xuu101, xuu104), LT) 25.69/9.76 new_esEs8(xuu3110002, xuu6002, app(app(app(ty_@3, fcf), fcg), fch)) -> new_esEs17(xuu3110002, xuu6002, fcf, fcg, fch) 25.69/9.76 new_esEs13(xuu31100000, xuu60000, ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.76 new_sr0(Integer(xuu60000), Integer(xuu31100010)) -> Integer(new_primMulInt(xuu60000, xuu31100010)) 25.69/9.76 new_esEs25(Just(xuu31100000), Just(xuu60000), app(ty_Ratio, feg)) -> new_esEs23(xuu31100000, xuu60000, feg) 25.69/9.76 new_esEs8(xuu3110002, xuu6002, app(ty_Ratio, fdc)) -> new_esEs23(xuu3110002, xuu6002, fdc) 25.69/9.76 new_lt20(xuu471, xuu481, app(ty_[], cab)) -> new_lt7(xuu471, xuu481, cab) 25.69/9.76 new_esEs10(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.76 new_lt19(xuu470, xuu480, app(ty_Ratio, bhd)) -> new_lt4(xuu470, xuu480, bhd) 25.69/9.76 new_esEs4(xuu3110000, xuu6000, app(ty_Ratio, dd)) -> new_esEs23(xuu3110000, xuu6000, dd) 25.69/9.76 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Double, cee) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.76 new_compare10(Double(xuu3110000, Pos(xuu31100010)), Double(xuu6000, Pos(xuu60010))) -> new_compare15(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) 25.69/9.76 new_lt20(xuu471, xuu481, ty_Int) -> new_lt10(xuu471, xuu481) 25.69/9.76 new_ltEs21(xuu76, xuu77, app(app(ty_Either, cge), cgf)) -> new_ltEs12(xuu76, xuu77, cge, cgf) 25.69/9.76 new_lt22(xuu101, xuu104, ty_Double) -> new_lt12(xuu101, xuu104) 25.69/9.76 new_asAs(True, xuu149) -> xuu149 25.69/9.76 new_lt8(xuu470, xuu480, app(ty_Ratio, bbg)) -> new_lt4(xuu470, xuu480, bbg) 25.69/9.76 new_lt20(xuu471, xuu481, app(ty_Ratio, caf)) -> new_lt4(xuu471, xuu481, caf) 25.69/9.76 new_esEs4(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.76 new_ltEs22(xuu47, xuu48, ty_Ordering) -> new_ltEs14(xuu47, xuu48) 25.69/9.76 new_lt19(xuu470, xuu480, app(ty_[], bgh)) -> new_lt7(xuu470, xuu480, bgh) 25.69/9.76 new_esEs5(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.76 new_ltEs24(xuu103, xuu106, ty_Bool) -> new_ltEs16(xuu103, xuu106) 25.69/9.76 new_ltEs21(xuu76, xuu77, ty_Float) -> new_ltEs5(xuu76, xuu77) 25.69/9.76 new_esEs31(xuu471, xuu481, ty_Float) -> new_esEs18(xuu471, xuu481) 25.69/9.76 new_esEs10(xuu3110000, xuu6000, app(app(ty_@2, ed), ee)) -> new_esEs16(xuu3110000, xuu6000, ed, ee) 25.69/9.76 new_ltEs9(xuu47, xuu48) -> new_fsEs(new_compare15(xuu47, xuu48)) 25.69/9.76 new_compare16(Just(xuu3110000), Just(xuu6000), ha) -> new_compare25(xuu3110000, xuu6000, new_esEs9(xuu3110000, xuu6000, ha), ha) 25.69/9.76 new_primPlusNat1(xuu222, xuu311000100) -> new_primPlusNat0(xuu222, Succ(xuu311000100)) 25.69/9.76 new_lt19(xuu470, xuu480, ty_Int) -> new_lt10(xuu470, xuu480) 25.69/9.76 new_ltEs15(Just(xuu470), Just(xuu480), ty_Char) -> new_ltEs17(xuu470, xuu480) 25.69/9.76 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, app(app(ty_Either, ead), eae)) -> new_esEs21(xuu31100000, xuu60000, ead, eae) 25.69/9.76 new_ltEs22(xuu47, xuu48, app(ty_Ratio, ea)) -> new_ltEs8(xuu47, xuu48, ea) 25.69/9.76 new_sr(xuu6000, xuu3110001) -> new_primMulInt(xuu6000, xuu3110001) 25.69/9.76 new_esEs8(xuu3110002, xuu6002, ty_Char) -> new_esEs15(xuu3110002, xuu6002) 25.69/9.76 new_esEs29(xuu470, xuu480, ty_Integer) -> new_esEs24(xuu470, xuu480) 25.69/9.76 new_ltEs11(xuu471, xuu481, app(ty_[], bce)) -> new_ltEs4(xuu471, xuu481, bce) 25.69/9.76 new_primMulNat0(Zero, Zero) -> Zero 25.69/9.76 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, app(ty_[], eag)) -> new_esEs12(xuu31100000, xuu60000, eag) 25.69/9.76 new_esEs21(Left(xuu31100000), Left(xuu60000), app(app(ty_Either, dhb), dhc), cee) -> new_esEs21(xuu31100000, xuu60000, dhb, dhc) 25.69/9.76 new_ltEs20(xuu54, xuu55, ty_Integer) -> new_ltEs7(xuu54, xuu55) 25.69/9.76 new_lt10(xuu101, xuu104) -> new_esEs26(new_compare15(xuu101, xuu104), LT) 25.69/9.76 new_ltEs21(xuu76, xuu77, app(ty_Ratio, chf)) -> new_ltEs8(xuu76, xuu77, chf) 25.69/9.76 new_esEs4(xuu3110000, xuu6000, app(app(ty_@2, cdg), cdh)) -> new_esEs16(xuu3110000, xuu6000, cdg, cdh) 25.69/9.76 new_esEs7(xuu3110001, xuu6001, ty_Char) -> new_esEs15(xuu3110001, xuu6001) 25.69/9.76 new_esEs33(xuu31100001, xuu60001, ty_Double) -> new_esEs22(xuu31100001, xuu60001) 25.69/9.76 new_ltEs22(xuu47, xuu48, ty_Float) -> new_ltEs5(xuu47, xuu48) 25.69/9.76 new_ltEs15(Just(xuu470), Just(xuu480), app(app(ty_@2, dbg), dbh)) -> new_ltEs10(xuu470, xuu480, dbg, dbh) 25.69/9.76 new_ltEs21(xuu76, xuu77, ty_Ordering) -> new_ltEs14(xuu76, xuu77) 25.69/9.76 new_esEs21(Left(xuu31100000), Left(xuu60000), app(ty_[], dhe), cee) -> new_esEs12(xuu31100000, xuu60000, dhe) 25.69/9.76 new_esEs28(xuu31100001, xuu60001, ty_Integer) -> new_esEs24(xuu31100001, xuu60001) 25.69/9.76 new_esEs39(xuu102, xuu105, app(app(ty_@2, fgd), fge)) -> new_esEs16(xuu102, xuu105, fgd, fge) 25.69/9.76 new_esEs25(Just(xuu31100000), Just(xuu60000), app(app(ty_@2, fdh), fea)) -> new_esEs16(xuu31100000, xuu60000, fdh, fea) 25.69/9.76 new_esEs39(xuu102, xuu105, app(ty_Ratio, fgf)) -> new_esEs23(xuu102, xuu105, fgf) 25.69/9.76 new_ltEs23(xuu115, xuu117, app(ty_Maybe, eha)) -> new_ltEs15(xuu115, xuu117, eha) 25.69/9.76 new_ltEs19(xuu472, xuu482, app(app(ty_Either, cag), cah)) -> new_ltEs12(xuu472, xuu482, cag, cah) 25.69/9.76 new_esEs7(xuu3110001, xuu6001, app(app(ty_Either, fbg), fbh)) -> new_esEs21(xuu3110001, xuu6001, fbg, fbh) 25.69/9.76 new_lt21(xuu114, xuu116, app(ty_Ratio, egb)) -> new_lt4(xuu114, xuu116, egb) 25.69/9.76 new_compare5(xuu311000, xuu600, ty_Double) -> new_compare10(xuu311000, xuu600) 25.69/9.76 new_esEs9(xuu3110000, xuu6000, app(app(app(ty_@3, hd), he), hf)) -> new_esEs17(xuu3110000, xuu6000, hd, he, hf) 25.69/9.76 new_lt17(xuu101, xuu104) -> new_esEs26(new_compare30(xuu101, xuu104), LT) 25.69/9.76 new_ltEs22(xuu47, xuu48, app(ty_Maybe, dag)) -> new_ltEs15(xuu47, xuu48, dag) 25.69/9.76 new_primCompAux00(xuu37, xuu38, EQ, app(app(app(ty_@3, dce), dcf), dcg)) -> new_compare28(xuu37, xuu38, dce, dcf, dcg) 25.69/9.76 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.76 new_primEqInt(Neg(Succ(xuu311000000)), Neg(Zero)) -> False 25.69/9.76 new_primEqInt(Neg(Zero), Neg(Succ(xuu600000))) -> False 25.69/9.76 new_esEs9(xuu3110000, xuu6000, app(ty_Ratio, baa)) -> new_esEs23(xuu3110000, xuu6000, baa) 25.69/9.76 new_ltEs20(xuu54, xuu55, app(app(ty_Either, ccc), ccd)) -> new_ltEs12(xuu54, xuu55, ccc, ccd) 25.69/9.76 new_esEs33(xuu31100001, xuu60001, app(ty_[], dgc)) -> new_esEs12(xuu31100001, xuu60001, dgc) 25.69/9.76 new_primEqInt(Pos(Succ(xuu311000000)), Pos(Succ(xuu600000))) -> new_primEqNat0(xuu311000000, xuu600000) 25.69/9.76 new_lt8(xuu470, xuu480, ty_Int) -> new_lt10(xuu470, xuu480) 25.69/9.76 new_primCompAux00(xuu37, xuu38, EQ, ty_Bool) -> new_compare29(xuu37, xuu38) 25.69/9.76 new_compare19(xuu154, xuu155, False, ehe) -> GT 25.69/9.76 new_esEs8(xuu3110002, xuu6002, app(app(ty_Either, fda), fdb)) -> new_esEs21(xuu3110002, xuu6002, fda, fdb) 25.69/9.76 new_esEs34(xuu31100000, xuu60000, app(app(ty_@2, eba), ebb)) -> new_esEs16(xuu31100000, xuu60000, eba, ebb) 25.69/9.76 new_primEqInt(Pos(Succ(xuu311000000)), Neg(xuu60000)) -> False 25.69/9.76 new_primEqInt(Neg(Succ(xuu311000000)), Pos(xuu60000)) -> False 25.69/9.76 new_esEs34(xuu31100000, xuu60000, ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.76 new_primCmpInt(Neg(Zero), Neg(Succ(xuu60000))) -> new_primCmpNat0(Succ(xuu60000), Zero) 25.69/9.76 new_lt8(xuu470, xuu480, app(ty_[], bbc)) -> new_lt7(xuu470, xuu480, bbc) 25.69/9.76 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.69/9.76 new_esEs6(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.76 new_esEs16(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), cdg, cdh) -> new_asAs(new_esEs32(xuu31100000, xuu60000, cdg), new_esEs33(xuu31100001, xuu60001, cdh)) 25.69/9.76 new_ltEs15(Just(xuu470), Just(xuu480), ty_@0) -> new_ltEs18(xuu470, xuu480) 25.69/9.76 new_primCompAux00(xuu37, xuu38, LT, dcb) -> LT 25.69/9.76 new_esEs7(xuu3110001, xuu6001, ty_Bool) -> new_esEs20(xuu3110001, xuu6001) 25.69/9.76 new_esEs39(xuu102, xuu105, ty_Double) -> new_esEs22(xuu102, xuu105) 25.69/9.76 new_ltEs24(xuu103, xuu106, app(app(ty_Either, fgg), fgh)) -> new_ltEs12(xuu103, xuu106, fgg, fgh) 25.69/9.76 new_esEs7(xuu3110001, xuu6001, app(ty_Ratio, fca)) -> new_esEs23(xuu3110001, xuu6001, fca) 25.69/9.76 new_esEs37(xuu114, xuu116, ty_Double) -> new_esEs22(xuu114, xuu116) 25.69/9.76 new_ltEs19(xuu472, xuu482, app(ty_Ratio, cbh)) -> new_ltEs8(xuu472, xuu482, cbh) 25.69/9.76 new_esEs13(xuu31100000, xuu60000, app(app(ty_@2, bf), bg)) -> new_esEs16(xuu31100000, xuu60000, bf, bg) 25.69/9.76 new_not(False) -> True 25.69/9.76 new_ltEs22(xuu47, xuu48, app(app(ty_Either, bee), bdd)) -> new_ltEs12(xuu47, xuu48, bee, bdd) 25.69/9.76 new_ltEs24(xuu103, xuu106, app(app(app(ty_@3, fha), fhb), fhc)) -> new_ltEs13(xuu103, xuu106, fha, fhb, fhc) 25.69/9.76 new_esEs36(xuu31100002, xuu60002, app(app(ty_@2, ede), edf)) -> new_esEs16(xuu31100002, xuu60002, ede, edf) 25.69/9.76 new_esEs8(xuu3110002, xuu6002, ty_@0) -> new_esEs14(xuu3110002, xuu6002) 25.69/9.76 new_ltEs23(xuu115, xuu117, ty_Bool) -> new_ltEs16(xuu115, xuu117) 25.69/9.76 new_lt20(xuu471, xuu481, app(app(ty_@2, cad), cae)) -> new_lt5(xuu471, xuu481, cad, cae) 25.69/9.76 new_esEs9(xuu3110000, xuu6000, app(app(ty_Either, hg), hh)) -> new_esEs21(xuu3110000, xuu6000, hg, hh) 25.69/9.76 new_esEs38(xuu101, xuu104, app(app(ty_@2, db), dc)) -> new_esEs16(xuu101, xuu104, db, dc) 25.69/9.76 new_ltEs12(Right(xuu470), Right(xuu480), bee, ty_Double) -> new_ltEs6(xuu470, xuu480) 25.69/9.76 new_esEs5(xuu3110000, xuu6000, app(ty_Ratio, cff)) -> new_esEs23(xuu3110000, xuu6000, cff) 25.69/9.76 new_esEs35(xuu31100001, xuu60001, ty_Double) -> new_esEs22(xuu31100001, xuu60001) 25.69/9.76 new_ltEs12(Left(xuu470), Left(xuu480), app(ty_Maybe, bea), bdd) -> new_ltEs15(xuu470, xuu480, bea) 25.69/9.76 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.69/9.76 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.69/9.76 new_esEs24(Integer(xuu31100000), Integer(xuu60000)) -> new_primEqInt(xuu31100000, xuu60000) 25.69/9.76 new_ltEs14(LT, EQ) -> True 25.69/9.76 new_ltEs22(xuu47, xuu48, app(app(app(ty_@3, bfh), bga), bgb)) -> new_ltEs13(xuu47, xuu48, bfh, bga, bgb) 25.69/9.76 new_lt8(xuu470, xuu480, app(app(ty_@2, bbe), bbf)) -> new_lt5(xuu470, xuu480, bbe, bbf) 25.69/9.76 new_esEs27(xuu31100000, xuu60000, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.76 new_esEs32(xuu31100000, xuu60000, app(ty_[], dfa)) -> new_esEs12(xuu31100000, xuu60000, dfa) 25.69/9.76 new_esEs31(xuu471, xuu481, app(ty_[], cab)) -> new_esEs12(xuu471, xuu481, cab) 25.69/9.76 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.69/9.76 new_esEs26(EQ, EQ) -> True 25.69/9.76 new_esEs30(xuu470, xuu480, ty_Float) -> new_esEs18(xuu470, xuu480) 25.69/9.76 new_esEs9(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.76 new_ltEs24(xuu103, xuu106, app(ty_Maybe, fhe)) -> new_ltEs15(xuu103, xuu106, fhe) 25.69/9.76 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs17(xuu31100000, xuu60000, eaa, eab, eac) 25.69/9.76 new_lt22(xuu101, xuu104, ty_Int) -> new_lt10(xuu101, xuu104) 25.69/9.76 new_primCompAux00(xuu37, xuu38, EQ, ty_Double) -> new_compare10(xuu37, xuu38) 25.69/9.76 new_lt23(xuu102, xuu105, app(app(ty_@2, fgd), fge)) -> new_lt5(xuu102, xuu105, fgd, fge) 25.69/9.76 new_compare31(@0, @0) -> EQ 25.69/9.76 new_esEs26(LT, LT) -> True 25.69/9.76 new_esEs9(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.76 new_compare30(Char(xuu3110000), Char(xuu6000)) -> new_primCmpNat0(xuu3110000, xuu6000) 25.69/9.76 new_esEs30(xuu470, xuu480, app(ty_[], bgh)) -> new_esEs12(xuu470, xuu480, bgh) 25.69/9.76 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.76 new_compare5(xuu311000, xuu600, app(ty_[], dab)) -> new_compare6(xuu311000, xuu600, dab) 25.69/9.76 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.76 new_ltEs12(Left(xuu470), Left(xuu480), ty_@0, bdd) -> new_ltEs18(xuu470, xuu480) 25.69/9.76 new_esEs12([], [], be) -> True 25.69/9.76 new_ltEs21(xuu76, xuu77, ty_Int) -> new_ltEs9(xuu76, xuu77) 25.69/9.76 new_ltEs6(xuu47, xuu48) -> new_fsEs(new_compare10(xuu47, xuu48)) 25.69/9.76 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.69/9.76 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.69/9.76 new_esEs8(xuu3110002, xuu6002, ty_Int) -> new_esEs19(xuu3110002, xuu6002) 25.69/9.76 new_compare110(xuu133, xuu134, False, fdf, fdg) -> GT 25.69/9.76 new_esEs9(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.76 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.76 new_esEs25(Nothing, Nothing, cef) -> True 25.69/9.76 new_primEqNat0(Zero, Zero) -> True 25.69/9.76 new_ltEs11(xuu471, xuu481, app(app(ty_@2, bcg), bch)) -> new_ltEs10(xuu471, xuu481, bcg, bch) 25.69/9.76 new_ltEs20(xuu54, xuu55, ty_Int) -> new_ltEs9(xuu54, xuu55) 25.69/9.76 new_lt11(xuu101, xuu104, dad, dae, daf) -> new_esEs26(new_compare28(xuu101, xuu104, dad, dae, daf), LT) 25.69/9.76 new_esEs25(Nothing, Just(xuu60000), cef) -> False 25.69/9.76 new_esEs25(Just(xuu31100000), Nothing, cef) -> False 25.69/9.76 new_compare16(Nothing, Just(xuu6000), ha) -> LT 25.69/9.76 new_esEs37(xuu114, xuu116, app(app(ty_@2, efh), ega)) -> new_esEs16(xuu114, xuu116, efh, ega) 25.69/9.76 new_lt21(xuu114, xuu116, app(ty_[], eff)) -> new_lt7(xuu114, xuu116, eff) 25.69/9.76 new_ltEs15(Just(xuu470), Just(xuu480), app(ty_[], dbe)) -> new_ltEs4(xuu470, xuu480, dbe) 25.69/9.76 new_asAs(False, xuu149) -> False 25.69/9.76 new_lt22(xuu101, xuu104, app(app(ty_@2, db), dc)) -> new_lt5(xuu101, xuu104, db, dc) 25.69/9.76 new_ltEs12(Right(xuu470), Right(xuu480), bee, app(ty_Ratio, bfg)) -> new_ltEs8(xuu470, xuu480, bfg) 25.69/9.76 new_ltEs23(xuu115, xuu117, ty_Integer) -> new_ltEs7(xuu115, xuu117) 25.69/9.76 new_lt21(xuu114, xuu116, ty_Int) -> new_lt10(xuu114, xuu116) 25.69/9.76 new_esEs29(xuu470, xuu480, ty_Float) -> new_esEs18(xuu470, xuu480) 25.69/9.76 new_ltEs23(xuu115, xuu117, ty_Ordering) -> new_ltEs14(xuu115, xuu117) 25.69/9.76 new_esEs21(Right(xuu31100000), Right(xuu60000), ced, ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.76 new_esEs6(xuu3110000, xuu6000, app(ty_Ratio, fag)) -> new_esEs23(xuu3110000, xuu6000, fag) 25.69/9.76 25.69/9.76 The set Q consists of the following terms: 25.69/9.76 25.69/9.76 new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.69/9.76 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 25.69/9.76 new_esEs32(x0, x1, ty_Char) 25.69/9.76 new_lt21(x0, x1, ty_Bool) 25.69/9.76 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_lt19(x0, x1, ty_Ordering) 25.69/9.76 new_esEs25(Just(x0), Nothing, x1) 25.69/9.76 new_primCmpNat0(Succ(x0), Succ(x1)) 25.69/9.76 new_esEs36(x0, x1, ty_@0) 25.69/9.76 new_compare25(x0, x1, False, x2) 25.69/9.76 new_esEs36(x0, x1, ty_Bool) 25.69/9.76 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_lt20(x0, x1, ty_Integer) 25.69/9.76 new_lt22(x0, x1, ty_Char) 25.69/9.76 new_lt21(x0, x1, ty_@0) 25.69/9.76 new_esEs4(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_lt19(x0, x1, ty_Double) 25.69/9.76 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 25.69/9.76 new_esEs33(x0, x1, ty_@0) 25.69/9.76 new_esEs5(x0, x1, ty_Int) 25.69/9.76 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.76 new_ltEs23(x0, x1, ty_Double) 25.69/9.76 new_compare18(Right(x0), Right(x1), x2, x3) 25.69/9.76 new_esEs37(x0, x1, ty_Ordering) 25.69/9.76 new_lt23(x0, x1, ty_Bool) 25.69/9.76 new_lt23(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.76 new_compare5(x0, x1, ty_Integer) 25.69/9.76 new_lt21(x0, x1, ty_Integer) 25.69/9.76 new_primEqInt(Pos(Zero), Pos(Zero)) 25.69/9.76 new_primCompAux00(x0, x1, EQ, ty_Bool) 25.69/9.76 new_esEs33(x0, x1, ty_Bool) 25.69/9.76 new_compare110(x0, x1, True, x2, x3) 25.69/9.76 new_ltEs24(x0, x1, ty_Float) 25.69/9.76 new_esEs6(x0, x1, ty_Float) 25.69/9.76 new_esEs20(False, True) 25.69/9.76 new_esEs20(True, False) 25.69/9.76 new_compare27(x0, x1, True, x2, x3) 25.69/9.76 new_esEs9(x0, x1, ty_Int) 25.69/9.76 new_asAs(False, x0) 25.69/9.76 new_esEs5(x0, x1, app(ty_[], x2)) 25.69/9.76 new_esEs10(x0, x1, ty_Float) 25.69/9.76 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 25.69/9.76 new_primEqInt(Neg(Zero), Neg(Zero)) 25.69/9.76 new_ltEs23(x0, x1, ty_Ordering) 25.69/9.76 new_esEs36(x0, x1, app(ty_Maybe, x2)) 25.69/9.76 new_lt20(x0, x1, ty_@0) 25.69/9.76 new_esEs32(x0, x1, ty_Double) 25.69/9.76 new_compare26(x0, x1, False, x2, x3) 25.69/9.77 new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 25.69/9.77 new_lt23(x0, x1, ty_Integer) 25.69/9.77 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 25.69/9.77 new_ltEs15(Nothing, Nothing, x0) 25.69/9.77 new_esEs33(x0, x1, ty_Integer) 25.69/9.77 new_ltEs11(x0, x1, ty_Double) 25.69/9.77 new_lt20(x0, x1, ty_Float) 25.69/9.77 new_lt22(x0, x1, ty_Double) 25.69/9.77 new_esEs31(x0, x1, ty_Float) 25.69/9.77 new_ltEs20(x0, x1, ty_Char) 25.69/9.77 new_esEs25(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.69/9.77 new_esEs36(x0, x1, ty_Integer) 25.69/9.77 new_lt19(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_lt19(x0, x1, ty_Char) 25.69/9.77 new_esEs5(x0, x1, ty_@0) 25.69/9.77 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.69/9.77 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.69/9.77 new_primCompAux00(x0, x1, EQ, ty_Integer) 25.69/9.77 new_ltEs11(x0, x1, app(ty_[], x2)) 25.69/9.77 new_ltEs6(x0, x1) 25.69/9.77 new_ltEs23(x0, x1, ty_Char) 25.69/9.77 new_compare29(False, False) 25.69/9.77 new_primEqInt(Pos(Zero), Neg(Zero)) 25.69/9.77 new_primEqInt(Neg(Zero), Pos(Zero)) 25.69/9.77 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 25.69/9.77 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_esEs39(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_esEs9(x0, x1, app(ty_[], x2)) 25.69/9.77 new_compare112(x0, x1, x2, x3, False, x4, x5) 25.69/9.77 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_ltEs21(x0, x1, ty_Double) 25.69/9.77 new_esEs35(x0, x1, ty_Double) 25.69/9.77 new_lt8(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_ltEs21(x0, x1, ty_Char) 25.69/9.77 new_esEs35(x0, x1, ty_Char) 25.69/9.77 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_esEs21(Left(x0), Left(x1), ty_Float, x2) 25.69/9.77 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.69/9.77 new_primEqNat0(Succ(x0), Succ(x1)) 25.69/9.77 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_esEs11(x0, x1, app(ty_[], x2)) 25.69/9.77 new_esEs34(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.69/9.77 new_primMulInt(Neg(x0), Neg(x1)) 25.69/9.77 new_esEs39(x0, x1, ty_Ordering) 25.69/9.77 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_ltEs23(x0, x1, app(ty_[], x2)) 25.69/9.77 new_primPlusNat0(Succ(x0), Succ(x1)) 25.69/9.77 new_ltEs11(x0, x1, ty_Char) 25.69/9.77 new_lt9(x0, x1, x2, x3) 25.69/9.77 new_esEs29(x0, x1, ty_Float) 25.69/9.77 new_esEs21(Right(x0), Right(x1), x2, ty_Bool) 25.69/9.77 new_esEs8(x0, x1, ty_Double) 25.69/9.77 new_compare17(x0, x1, True, x2, x3) 25.69/9.77 new_esEs9(x0, x1, ty_Integer) 25.69/9.77 new_esEs29(x0, x1, ty_Ordering) 25.69/9.77 new_ltEs15(Just(x0), Just(x1), ty_Float) 25.69/9.77 new_lt23(x0, x1, ty_Float) 25.69/9.77 new_esEs34(x0, x1, app(ty_[], x2)) 25.69/9.77 new_esEs34(x0, x1, ty_Integer) 25.69/9.77 new_lt12(x0, x1) 25.69/9.77 new_lt21(x0, x1, ty_Int) 25.69/9.77 new_ltEs19(x0, x1, ty_Char) 25.69/9.77 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_esEs6(x0, x1, app(ty_[], x2)) 25.69/9.77 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_compare19(x0, x1, False, x2) 25.69/9.77 new_esEs26(LT, EQ) 25.69/9.77 new_esEs26(EQ, LT) 25.69/9.77 new_esEs13(x0, x1, ty_Ordering) 25.69/9.77 new_ltEs19(x0, x1, app(ty_[], x2)) 25.69/9.77 new_esEs9(x0, x1, ty_@0) 25.69/9.77 new_esEs39(x0, x1, app(ty_[], x2)) 25.69/9.77 new_ltEs21(x0, x1, ty_Ordering) 25.69/9.77 new_esEs25(Just(x0), Just(x1), ty_Double) 25.69/9.77 new_esEs37(x0, x1, app(ty_[], x2)) 25.69/9.77 new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) 25.69/9.77 new_primMulNat0(Succ(x0), Zero) 25.69/9.77 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_esEs8(x0, x1, ty_Ordering) 25.69/9.77 new_esEs21(Left(x0), Right(x1), x2, x3) 25.69/9.77 new_esEs21(Right(x0), Left(x1), x2, x3) 25.69/9.77 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_lt20(x0, x1, ty_Int) 25.69/9.77 new_esEs27(x0, x1, ty_Int) 25.69/9.77 new_esEs30(x0, x1, app(ty_[], x2)) 25.69/9.77 new_compare28(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.69/9.77 new_esEs37(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_ltEs24(x0, x1, ty_Int) 25.69/9.77 new_lt21(x0, x1, ty_Float) 25.69/9.77 new_lt19(x0, x1, app(ty_[], x2)) 25.69/9.77 new_ltEs16(True, False) 25.69/9.77 new_ltEs16(False, True) 25.69/9.77 new_esEs29(x0, x1, ty_Char) 25.69/9.77 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 25.69/9.77 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) 25.69/9.77 new_compare5(x0, x1, ty_Float) 25.69/9.77 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 25.69/9.77 new_lt22(x0, x1, ty_Ordering) 25.69/9.77 new_primMulInt(Pos(x0), Neg(x1)) 25.69/9.77 new_primMulInt(Neg(x0), Pos(x1)) 25.69/9.77 new_compare5(x0, x1, ty_Bool) 25.69/9.77 new_esEs30(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_esEs34(x0, x1, ty_Float) 25.69/9.77 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_ltEs24(x0, x1, ty_Integer) 25.69/9.77 new_esEs27(x0, x1, ty_Integer) 25.69/9.77 new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.69/9.77 new_esEs30(x0, x1, ty_Char) 25.69/9.77 new_primMulInt(Pos(x0), Pos(x1)) 25.69/9.77 new_esEs10(x0, x1, ty_@0) 25.69/9.77 new_esEs39(x0, x1, ty_Double) 25.69/9.77 new_esEs34(x0, x1, ty_Bool) 25.69/9.77 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_lt22(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_esEs21(Left(x0), Left(x1), ty_Integer, x2) 25.69/9.77 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.69/9.77 new_ltEs19(x0, x1, ty_Ordering) 25.69/9.77 new_primCompAux00(x0, x1, EQ, ty_Float) 25.69/9.77 new_compare111(x0, x1, x2, x3, False, x4, x5, x6) 25.69/9.77 new_compare5(x0, x1, ty_Int) 25.69/9.77 new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.69/9.77 new_esEs12(:(x0, x1), [], x2) 25.69/9.77 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 25.69/9.77 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.69/9.77 new_ltEs11(x0, x1, ty_Ordering) 25.69/9.77 new_esEs29(x0, x1, ty_Integer) 25.69/9.77 new_primCmpNat0(Zero, Succ(x0)) 25.69/9.77 new_ltEs24(x0, x1, ty_Bool) 25.69/9.77 new_ltEs18(x0, x1) 25.69/9.77 new_compare18(Left(x0), Left(x1), x2, x3) 25.69/9.77 new_esEs13(x0, x1, ty_Char) 25.69/9.77 new_lt20(x0, x1, ty_Bool) 25.69/9.77 new_esEs29(x0, x1, app(ty_[], x2)) 25.69/9.77 new_esEs21(Right(x0), Right(x1), x2, ty_Int) 25.69/9.77 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_esEs10(x0, x1, ty_Double) 25.69/9.77 new_esEs15(Char(x0), Char(x1)) 25.69/9.77 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_compare18(Right(x0), Left(x1), x2, x3) 25.69/9.77 new_esEs34(x0, x1, ty_Int) 25.69/9.77 new_compare18(Left(x0), Right(x1), x2, x3) 25.69/9.77 new_esEs26(EQ, EQ) 25.69/9.77 new_esEs37(x0, x1, ty_Double) 25.69/9.77 new_lt23(x0, x1, ty_Int) 25.69/9.77 new_primCompAux00(x0, x1, EQ, ty_Int) 25.69/9.77 new_esEs25(Just(x0), Just(x1), app(ty_[], x2)) 25.69/9.77 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.69/9.77 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.69/9.77 new_esEs8(x0, x1, ty_@0) 25.69/9.77 new_ltEs15(Just(x0), Just(x1), ty_Bool) 25.69/9.77 new_lt21(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_compare6(:(x0, x1), [], x2) 25.69/9.77 new_esEs30(x0, x1, ty_Double) 25.69/9.77 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_esEs29(x0, x1, ty_Bool) 25.69/9.77 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_compare16(Just(x0), Nothing, x1) 25.69/9.77 new_esEs37(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_ltEs15(Just(x0), Nothing, x1) 25.69/9.77 new_ltEs15(Just(x0), Just(x1), ty_Integer) 25.69/9.77 new_ltEs22(x0, x1, ty_@0) 25.69/9.77 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_compare13(GT, GT) 25.69/9.77 new_compare13(EQ, LT) 25.69/9.77 new_compare13(LT, EQ) 25.69/9.77 new_lt8(x0, x1, ty_Ordering) 25.69/9.77 new_primCmpNat0(Succ(x0), Zero) 25.69/9.77 new_esEs31(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_compare12(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 25.69/9.77 new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) 25.69/9.77 new_primCompAux00(x0, x1, LT, x2) 25.69/9.77 new_ltEs15(Just(x0), Just(x1), ty_@0) 25.69/9.77 new_ltEs20(x0, x1, app(ty_[], x2)) 25.69/9.77 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.69/9.77 new_ltEs8(x0, x1, x2) 25.69/9.77 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_ltEs24(x0, x1, ty_Ordering) 25.69/9.77 new_primPlusNat0(Zero, Zero) 25.69/9.77 new_esEs6(x0, x1, ty_Ordering) 25.69/9.77 new_esEs7(x0, x1, ty_Ordering) 25.69/9.77 new_not(True) 25.69/9.77 new_esEs38(x0, x1, app(ty_[], x2)) 25.69/9.77 new_esEs21(Right(x0), Right(x1), x2, ty_Integer) 25.69/9.77 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_lt8(x0, x1, ty_Double) 25.69/9.77 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 25.69/9.77 new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.69/9.77 new_esEs32(x0, x1, ty_Float) 25.69/9.77 new_ltEs11(x0, x1, ty_@0) 25.69/9.77 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_ltEs17(x0, x1) 25.69/9.77 new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 25.69/9.77 new_ltEs15(Just(x0), Just(x1), ty_Char) 25.69/9.77 new_esEs5(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_compare16(Nothing, Nothing, x0) 25.69/9.77 new_esEs25(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.69/9.77 new_esEs6(x0, x1, ty_Double) 25.69/9.77 new_esEs31(x0, x1, ty_Double) 25.69/9.77 new_esEs10(x0, x1, ty_Ordering) 25.69/9.77 new_esEs11(x0, x1, ty_@0) 25.69/9.77 new_esEs35(x0, x1, ty_Float) 25.69/9.77 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 25.69/9.77 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_esEs4(x0, x1, ty_Ordering) 25.69/9.77 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 25.69/9.77 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_esEs10(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_esEs6(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_esEs12([], :(x0, x1), x2) 25.69/9.77 new_lt19(x0, x1, ty_Float) 25.69/9.77 new_esEs5(x0, x1, ty_Float) 25.69/9.77 new_esEs21(Left(x0), Left(x1), ty_@0, x2) 25.69/9.77 new_esEs35(x0, x1, app(ty_[], x2)) 25.69/9.77 new_esEs30(x0, x1, ty_Ordering) 25.69/9.77 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_esEs5(x0, x1, ty_Integer) 25.69/9.77 new_ltEs11(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 25.69/9.77 new_esEs36(x0, x1, ty_Float) 25.69/9.77 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_esEs21(Right(x0), Right(x1), x2, ty_@0) 25.69/9.77 new_lt10(x0, x1) 25.69/9.77 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 25.69/9.77 new_sr(x0, x1) 25.69/9.77 new_esEs12([], [], x0) 25.69/9.77 new_ltEs14(GT, GT) 25.69/9.77 new_esEs20(True, True) 25.69/9.77 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_esEs9(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_esEs11(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_esEs7(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_ltEs4(x0, x1, x2) 25.69/9.77 new_esEs26(EQ, GT) 25.69/9.77 new_esEs26(GT, EQ) 25.69/9.77 new_esEs8(x0, x1, app(ty_[], x2)) 25.69/9.77 new_lt17(x0, x1) 25.69/9.77 new_compare31(@0, @0) 25.69/9.77 new_ltEs21(x0, x1, ty_Float) 25.69/9.77 new_esEs9(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 25.69/9.77 new_esEs5(x0, x1, ty_Bool) 25.69/9.77 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_ltEs12(Left(x0), Right(x1), x2, x3) 25.69/9.77 new_ltEs12(Right(x0), Left(x1), x2, x3) 25.69/9.77 new_compare14(Integer(x0), Integer(x1)) 25.69/9.77 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.69/9.77 new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 25.69/9.77 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_esEs25(Just(x0), Just(x1), ty_Ordering) 25.69/9.77 new_lt5(x0, x1, x2, x3) 25.69/9.77 new_ltEs24(x0, x1, app(ty_[], x2)) 25.69/9.77 new_lt19(x0, x1, ty_Bool) 25.69/9.77 new_esEs29(x0, x1, ty_Double) 25.69/9.77 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_compare111(x0, x1, x2, x3, True, x4, x5, x6) 25.69/9.77 new_lt11(x0, x1, x2, x3, x4) 25.69/9.77 new_primEqNat0(Zero, Zero) 25.69/9.77 new_primCompAux00(x0, x1, GT, x2) 25.69/9.77 new_esEs36(x0, x1, ty_Char) 25.69/9.77 new_esEs31(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_not(False) 25.69/9.77 new_esEs32(x0, x1, ty_Bool) 25.69/9.77 new_esEs34(x0, x1, ty_@0) 25.69/9.77 new_compare5(x0, x1, app(ty_[], x2)) 25.69/9.77 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 25.69/9.77 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_esEs33(x0, x1, ty_Int) 25.69/9.77 new_esEs13(x0, x1, ty_@0) 25.69/9.77 new_compare5(x0, x1, ty_@0) 25.69/9.77 new_compare27(x0, x1, False, x2, x3) 25.69/9.77 new_lt7(x0, x1, x2) 25.69/9.77 new_esEs11(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.69/9.77 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_compare9(@2(x0, x1), @2(x2, x3), x4, x5) 25.69/9.77 new_ltEs24(x0, x1, ty_Double) 25.69/9.77 new_compare6(:(x0, x1), :(x2, x3), x4) 25.69/9.77 new_lt15(x0, x1, x2) 25.69/9.77 new_lt8(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_lt23(x0, x1, app(ty_[], x2)) 25.69/9.77 new_esEs35(x0, x1, ty_Integer) 25.69/9.77 new_esEs7(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_lt19(x0, x1, ty_Integer) 25.69/9.77 new_compare5(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_esEs33(x0, x1, ty_Float) 25.69/9.77 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_compare29(True, True) 25.69/9.77 new_primPlusNat0(Zero, Succ(x0)) 25.69/9.77 new_esEs32(x0, x1, ty_Integer) 25.69/9.77 new_esEs32(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.69/9.77 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.69/9.77 new_ltEs14(EQ, LT) 25.69/9.77 new_primCompAux00(x0, x1, EQ, ty_@0) 25.69/9.77 new_ltEs14(LT, EQ) 25.69/9.77 new_lt23(x0, x1, ty_@0) 25.69/9.77 new_primMulNat0(Zero, Succ(x0)) 25.69/9.77 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_esEs13(x0, x1, app(ty_[], x2)) 25.69/9.77 new_esEs38(x0, x1, ty_Ordering) 25.69/9.77 new_esEs31(x0, x1, ty_Ordering) 25.69/9.77 new_esEs36(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_compare6([], [], x0) 25.69/9.77 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.69/9.77 new_esEs36(x0, x1, ty_Int) 25.69/9.77 new_esEs33(x0, x1, app(ty_[], x2)) 25.69/9.77 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.69/9.77 new_esEs18(Float(x0, x1), Float(x2, x3)) 25.69/9.77 new_esEs34(x0, x1, ty_Char) 25.69/9.77 new_esEs9(x0, x1, ty_Ordering) 25.69/9.77 new_esEs25(Nothing, Nothing, x0) 25.69/9.77 new_ltEs20(x0, x1, ty_@0) 25.69/9.77 new_ltEs19(x0, x1, ty_Integer) 25.69/9.77 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_esEs30(x0, x1, ty_Float) 25.69/9.77 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 25.69/9.77 new_ltEs20(x0, x1, ty_Bool) 25.69/9.77 new_ltEs21(x0, x1, ty_@0) 25.69/9.77 new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) 25.69/9.77 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_esEs35(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_esEs33(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_fsEs(x0) 25.69/9.77 new_lt22(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.69/9.77 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_compare13(GT, LT) 25.69/9.77 new_compare13(LT, GT) 25.69/9.77 new_esEs9(x0, x1, ty_Double) 25.69/9.77 new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.69/9.77 new_esEs32(x0, x1, ty_Int) 25.69/9.77 new_esEs9(x0, x1, ty_Char) 25.69/9.77 new_esEs16(@2(x0, x1), @2(x2, x3), x4, x5) 25.69/9.77 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.69/9.77 new_ltEs14(LT, LT) 25.69/9.77 new_esEs26(LT, GT) 25.69/9.77 new_esEs26(GT, LT) 25.69/9.77 new_ltEs23(x0, x1, ty_Int) 25.69/9.77 new_esEs30(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_esEs5(x0, x1, ty_Char) 25.69/9.77 new_esEs5(x0, x1, ty_Double) 25.69/9.77 new_ltEs19(x0, x1, ty_Bool) 25.69/9.77 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_esEs33(x0, x1, ty_Char) 25.69/9.77 new_esEs13(x0, x1, ty_Integer) 25.69/9.77 new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.69/9.77 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_ltEs21(x0, x1, ty_Int) 25.69/9.77 new_esEs5(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.69/9.77 new_lt22(x0, x1, ty_Bool) 25.69/9.77 new_ltEs16(False, False) 25.69/9.77 new_esEs7(x0, x1, ty_Float) 25.69/9.77 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_ltEs21(x0, x1, app(ty_[], x2)) 25.69/9.77 new_lt22(x0, x1, ty_@0) 25.69/9.77 new_esEs22(Double(x0, x1), Double(x2, x3)) 25.69/9.77 new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.69/9.77 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.69/9.77 new_esEs28(x0, x1, ty_Integer) 25.69/9.77 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_asAs(True, x0) 25.69/9.77 new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_esEs35(x0, x1, ty_Bool) 25.69/9.77 new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.69/9.77 new_esEs33(x0, x1, ty_Ordering) 25.69/9.77 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_ltEs20(x0, x1, ty_Integer) 25.69/9.77 new_esEs32(x0, x1, ty_@0) 25.69/9.77 new_ltEs21(x0, x1, ty_Bool) 25.69/9.77 new_lt22(x0, x1, ty_Int) 25.69/9.77 new_esEs35(x0, x1, ty_@0) 25.69/9.77 new_esEs38(x0, x1, ty_Double) 25.69/9.77 new_lt23(x0, x1, ty_Ordering) 25.69/9.77 new_primCompAux00(x0, x1, EQ, ty_Ordering) 25.69/9.77 new_lt19(x0, x1, ty_Int) 25.69/9.77 new_compare10(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.69/9.77 new_esEs30(x0, x1, ty_Integer) 25.69/9.77 new_ltEs19(x0, x1, ty_Float) 25.69/9.77 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.69/9.77 new_esEs34(x0, x1, ty_Ordering) 25.69/9.77 new_compare6([], :(x0, x1), x2) 25.69/9.77 new_esEs36(x0, x1, ty_Ordering) 25.69/9.77 new_lt19(x0, x1, ty_@0) 25.69/9.77 new_ltEs11(x0, x1, ty_Int) 25.69/9.77 new_esEs20(False, False) 25.69/9.77 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_ltEs19(x0, x1, ty_@0) 25.69/9.77 new_esEs35(x0, x1, ty_Int) 25.69/9.77 new_lt8(x0, x1, app(ty_[], x2)) 25.69/9.77 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_ltEs11(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.69/9.77 new_lt21(x0, x1, ty_Ordering) 25.69/9.77 new_esEs36(x0, x1, ty_Double) 25.69/9.77 new_esEs30(x0, x1, ty_Bool) 25.69/9.77 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_ltEs19(x0, x1, ty_Int) 25.69/9.77 new_esEs39(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_esEs23(:%(x0, x1), :%(x2, x3), x4) 25.69/9.77 new_lt14(x0, x1) 25.69/9.77 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_esEs37(x0, x1, ty_@0) 25.69/9.77 new_compare10(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.69/9.77 new_esEs24(Integer(x0), Integer(x1)) 25.69/9.77 new_compare24(x0, x1, x2, x3, False, x4, x5) 25.69/9.77 new_ltEs22(x0, x1, ty_Double) 25.69/9.77 new_esEs19(x0, x1) 25.69/9.77 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_lt20(x0, x1, ty_Char) 25.69/9.77 new_ltEs20(x0, x1, ty_Float) 25.69/9.77 new_esEs13(x0, x1, ty_Int) 25.69/9.77 new_lt22(x0, x1, ty_Integer) 25.69/9.77 new_ltEs24(x0, x1, ty_Char) 25.69/9.77 new_ltEs14(LT, GT) 25.69/9.77 new_ltEs14(GT, LT) 25.69/9.77 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_compare29(True, False) 25.69/9.77 new_compare29(False, True) 25.69/9.77 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_esEs26(GT, GT) 25.69/9.77 new_lt18(x0, x1) 25.69/9.77 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.69/9.77 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.69/9.77 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.69/9.77 new_esEs29(x0, x1, ty_Int) 25.69/9.77 new_esEs11(x0, x1, ty_Integer) 25.69/9.77 new_primMulNat0(Succ(x0), Succ(x1)) 25.69/9.77 new_primEqNat0(Succ(x0), Zero) 25.69/9.77 new_esEs4(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_lt6(x0, x1) 25.69/9.77 new_ltEs15(Just(x0), Just(x1), ty_Int) 25.69/9.77 new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 25.69/9.77 new_ltEs22(x0, x1, ty_Ordering) 25.69/9.77 new_ltEs23(x0, x1, ty_@0) 25.69/9.77 new_ltEs21(x0, x1, ty_Integer) 25.69/9.77 new_esEs33(x0, x1, ty_Double) 25.69/9.77 new_compare112(x0, x1, x2, x3, True, x4, x5) 25.69/9.77 new_ltEs20(x0, x1, ty_Int) 25.69/9.77 new_lt20(x0, x1, ty_Ordering) 25.69/9.77 new_esEs13(x0, x1, ty_Float) 25.69/9.77 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 25.69/9.77 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.69/9.77 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 25.69/9.77 new_sr0(Integer(x0), Integer(x1)) 25.69/9.77 new_ltEs14(EQ, GT) 25.69/9.77 new_ltEs14(GT, EQ) 25.69/9.77 new_esEs4(x0, x1, ty_@0) 25.69/9.77 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.69/9.77 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.69/9.77 new_esEs34(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_esEs4(x0, x1, ty_Double) 25.69/9.77 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_primPlusNat1(x0, x1) 25.69/9.77 new_esEs7(x0, x1, ty_Double) 25.69/9.77 new_lt23(x0, x1, ty_Char) 25.69/9.77 new_compare13(GT, EQ) 25.69/9.77 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.69/9.77 new_compare13(EQ, GT) 25.69/9.77 new_compare5(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_esEs25(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.69/9.77 new_esEs11(x0, x1, ty_Ordering) 25.69/9.77 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_lt8(x0, x1, ty_Float) 25.69/9.77 new_compare16(Just(x0), Just(x1), x2) 25.69/9.77 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_compare30(Char(x0), Char(x1)) 25.69/9.77 new_lt4(x0, x1, x2) 25.69/9.77 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) 25.69/9.77 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_esEs13(x0, x1, ty_Bool) 25.69/9.77 new_primCompAux00(x0, x1, EQ, ty_Char) 25.69/9.77 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.69/9.77 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.69/9.77 new_lt20(x0, x1, app(ty_[], x2)) 25.69/9.77 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.69/9.77 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.69/9.77 new_lt21(x0, x1, ty_Char) 25.69/9.77 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.69/9.77 new_compare110(x0, x1, False, x2, x3) 25.69/9.77 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_lt13(x0, x1) 25.69/9.77 new_esEs30(x0, x1, ty_Int) 25.69/9.77 new_compare5(x0, x1, ty_Char) 25.69/9.77 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_primPlusNat0(Succ(x0), Zero) 25.69/9.77 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_esEs21(Right(x0), Right(x1), x2, ty_Char) 25.69/9.77 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_esEs39(x0, x1, ty_@0) 25.69/9.77 new_ltEs11(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_lt8(x0, x1, ty_Char) 25.69/9.77 new_lt23(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_esEs6(x0, x1, ty_Int) 25.69/9.77 new_esEs26(LT, LT) 25.69/9.77 new_esEs35(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_esEs4(x0, x1, ty_Char) 25.69/9.77 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_esEs9(x0, x1, ty_Float) 25.69/9.77 new_primMulNat0(Zero, Zero) 25.69/9.77 new_ltEs15(Nothing, Just(x0), x1) 25.69/9.77 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_esEs21(Left(x0), Left(x1), ty_Char, x2) 25.69/9.77 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.69/9.77 new_esEs21(Right(x0), Right(x1), x2, ty_Float) 25.69/9.77 new_esEs10(x0, x1, ty_Int) 25.69/9.77 new_esEs38(x0, x1, ty_Integer) 25.69/9.77 new_compare17(x0, x1, False, x2, x3) 25.69/9.77 new_ltEs14(EQ, EQ) 25.69/9.77 new_ltEs11(x0, x1, ty_Integer) 25.69/9.77 new_esEs29(x0, x1, ty_@0) 25.69/9.77 new_esEs31(x0, x1, ty_Char) 25.69/9.77 new_esEs6(x0, x1, ty_Char) 25.69/9.77 new_esEs7(x0, x1, ty_Char) 25.69/9.77 new_esEs10(x0, x1, app(ty_[], x2)) 25.69/9.77 new_esEs38(x0, x1, ty_Bool) 25.69/9.77 new_ltEs5(x0, x1) 25.69/9.77 new_esEs28(x0, x1, ty_Int) 25.69/9.77 new_esEs37(x0, x1, ty_Float) 25.69/9.77 new_esEs7(x0, x1, ty_Int) 25.69/9.77 new_ltEs22(x0, x1, ty_Integer) 25.69/9.77 new_esEs25(Just(x0), Just(x1), ty_Char) 25.69/9.77 new_ltEs23(x0, x1, ty_Float) 25.69/9.77 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_lt19(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_compare24(x0, x1, x2, x3, True, x4, x5) 25.69/9.77 new_esEs7(x0, x1, ty_@0) 25.69/9.77 new_esEs25(Just(x0), Just(x1), ty_@0) 25.69/9.77 new_ltEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_lt8(x0, x1, ty_Int) 25.69/9.77 new_esEs21(Left(x0), Left(x1), ty_Bool, x2) 25.69/9.77 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_esEs25(Just(x0), Just(x1), ty_Int) 25.69/9.77 new_esEs25(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.69/9.77 new_lt22(x0, x1, ty_Float) 25.69/9.77 new_esEs10(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_esEs37(x0, x1, ty_Integer) 25.69/9.77 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_esEs31(x0, x1, ty_@0) 25.69/9.77 new_esEs13(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_esEs8(x0, x1, ty_Integer) 25.69/9.77 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_ltEs9(x0, x1) 25.69/9.77 new_primEqNat0(Zero, Succ(x0)) 25.69/9.77 new_ltEs23(x0, x1, ty_Integer) 25.69/9.77 new_esEs21(Left(x0), Left(x1), ty_Double, x2) 25.69/9.77 new_ltEs19(x0, x1, ty_Double) 25.69/9.77 new_esEs11(x0, x1, ty_Bool) 25.69/9.77 new_esEs8(x0, x1, ty_Int) 25.69/9.77 new_pePe(False, x0) 25.69/9.77 new_ltEs11(x0, x1, ty_Float) 25.69/9.77 new_esEs11(x0, x1, ty_Int) 25.69/9.77 new_pePe(True, x0) 25.69/9.77 new_esEs8(x0, x1, ty_Char) 25.69/9.77 new_esEs12(:(x0, x1), :(x2, x3), x4) 25.69/9.77 new_lt8(x0, x1, ty_Bool) 25.69/9.77 new_ltEs11(x0, x1, ty_Bool) 25.69/9.77 new_compare5(x0, x1, ty_Ordering) 25.69/9.77 new_compare13(LT, LT) 25.69/9.77 new_esEs6(x0, x1, ty_Bool) 25.69/9.77 new_esEs39(x0, x1, ty_Integer) 25.69/9.77 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_esEs33(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_esEs25(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.69/9.77 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_lt22(x0, x1, app(ty_[], x2)) 25.69/9.77 new_esEs38(x0, x1, ty_Float) 25.69/9.77 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_esEs21(Left(x0), Left(x1), ty_Int, x2) 25.69/9.77 new_esEs31(x0, x1, ty_Int) 25.69/9.77 new_ltEs22(x0, x1, ty_Bool) 25.69/9.77 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_esEs38(x0, x1, ty_@0) 25.69/9.77 new_compare12(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 25.69/9.77 new_ltEs23(x0, x1, ty_Bool) 25.69/9.77 new_ltEs22(x0, x1, app(ty_[], x2)) 25.69/9.77 new_esEs8(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_esEs8(x0, x1, ty_Bool) 25.69/9.77 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.69/9.77 new_esEs11(x0, x1, ty_Char) 25.69/9.77 new_esEs11(x0, x1, ty_Double) 25.69/9.77 new_compare13(EQ, EQ) 25.69/9.77 new_esEs38(x0, x1, ty_Int) 25.69/9.77 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 25.69/9.77 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.69/9.77 new_esEs10(x0, x1, ty_Integer) 25.69/9.77 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_esEs14(@0, @0) 25.69/9.77 new_ltEs15(Just(x0), Just(x1), ty_Ordering) 25.69/9.77 new_esEs31(x0, x1, ty_Integer) 25.69/9.77 new_esEs6(x0, x1, ty_Integer) 25.69/9.77 new_esEs39(x0, x1, ty_Char) 25.69/9.77 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_ltEs20(x0, x1, ty_Double) 25.69/9.77 new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.69/9.77 new_esEs9(x0, x1, ty_Bool) 25.69/9.77 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.69/9.77 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.69/9.77 new_lt8(x0, x1, ty_Integer) 25.69/9.77 new_ltEs15(Just(x0), Just(x1), ty_Double) 25.69/9.77 new_esEs38(x0, x1, ty_Char) 25.69/9.77 new_ltEs22(x0, x1, ty_Float) 25.69/9.77 new_lt23(x0, x1, ty_Double) 25.69/9.77 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.69/9.77 new_lt21(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_compare10(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.69/9.77 new_compare10(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.69/9.77 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 25.69/9.77 new_esEs32(x0, x1, app(ty_[], x2)) 25.69/9.77 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.69/9.77 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 25.69/9.77 new_ltEs11(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_compare16(Nothing, Just(x0), x1) 25.69/9.77 new_esEs4(x0, x1, ty_Integer) 25.69/9.77 new_esEs7(x0, x1, ty_Integer) 25.69/9.77 new_ltEs24(x0, x1, ty_@0) 25.69/9.77 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.77 new_esEs25(Just(x0), Just(x1), ty_Float) 25.69/9.77 new_ltEs20(x0, x1, ty_Ordering) 25.69/9.77 new_ltEs22(x0, x1, ty_Char) 25.69/9.77 new_esEs31(x0, x1, app(ty_[], x2)) 25.69/9.77 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.69/9.77 new_esEs11(x0, x1, ty_Float) 25.69/9.77 new_esEs8(x0, x1, ty_Float) 25.69/9.77 new_esEs31(x0, x1, ty_Bool) 25.69/9.77 new_ltEs22(x0, x1, ty_Int) 25.69/9.77 new_esEs7(x0, x1, app(ty_[], x2)) 25.69/9.77 new_esEs8(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_esEs32(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_esEs6(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_compare25(x0, x1, True, x2) 25.69/9.77 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.69/9.77 new_esEs6(x0, x1, ty_@0) 25.69/9.77 new_compare26(x0, x1, True, x2, x3) 25.69/9.77 new_lt8(x0, x1, ty_@0) 25.69/9.77 new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.69/9.77 new_esEs37(x0, x1, ty_Int) 25.69/9.77 new_esEs25(Nothing, Just(x0), x1) 25.69/9.77 new_esEs39(x0, x1, ty_Float) 25.69/9.77 new_esEs39(x0, x1, ty_Bool) 25.69/9.77 new_esEs35(x0, x1, ty_Ordering) 25.69/9.77 new_esEs34(x0, x1, ty_Double) 25.69/9.77 new_lt21(x0, x1, app(ty_[], x2)) 25.69/9.77 new_ltEs16(True, True) 25.69/9.77 new_esEs4(x0, x1, ty_Float) 25.69/9.77 new_compare15(x0, x1) 25.69/9.77 new_esEs4(x0, x1, ty_Bool) 25.69/9.77 new_esEs38(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_esEs25(Just(x0), Just(x1), ty_Integer) 25.69/9.77 new_esEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.69/9.77 new_lt20(x0, x1, ty_Double) 25.69/9.77 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 25.69/9.77 new_esEs36(x0, x1, app(ty_[], x2)) 25.69/9.77 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 25.69/9.77 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.77 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 25.69/9.77 new_esEs32(x0, x1, ty_Ordering) 25.69/9.77 new_compare19(x0, x1, True, x2) 25.69/9.77 new_esEs5(x0, x1, ty_Ordering) 25.69/9.77 new_lt16(x0, x1) 25.69/9.77 new_primCompAux00(x0, x1, EQ, ty_Double) 25.69/9.77 new_esEs39(x0, x1, ty_Int) 25.69/9.77 new_esEs38(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_esEs13(x0, x1, app(ty_Ratio, x2)) 25.69/9.77 new_esEs25(Just(x0), Just(x1), ty_Bool) 25.69/9.77 new_esEs37(x0, x1, ty_Bool) 25.69/9.77 new_esEs13(x0, x1, ty_Double) 25.69/9.77 new_esEs10(x0, x1, ty_Bool) 25.69/9.77 new_ltEs7(x0, x1) 25.69/9.77 new_esEs37(x0, x1, ty_Char) 25.69/9.77 new_esEs4(x0, x1, ty_Int) 25.69/9.77 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 25.69/9.77 new_esEs4(x0, x1, app(ty_[], x2)) 25.69/9.77 new_lt21(x0, x1, ty_Double) 25.69/9.77 new_esEs10(x0, x1, ty_Char) 25.69/9.77 new_esEs21(Right(x0), Right(x1), x2, ty_Double) 25.69/9.77 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.77 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 25.69/9.77 new_esEs30(x0, x1, ty_@0) 25.69/9.77 new_esEs7(x0, x1, ty_Bool) 25.69/9.77 new_compare5(x0, x1, ty_Double) 25.69/9.77 new_primCmpNat0(Zero, Zero) 25.69/9.77 new_primCompAux1(x0, x1, x2, x3, x4) 25.69/9.77 25.69/9.77 We have to consider all minimal (P,Q,R)-chains. 25.69/9.77 ---------------------------------------- 25.69/9.77 25.69/9.77 (27) QDPSizeChangeProof (EQUIVALENT) 25.69/9.77 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. 25.69/9.77 25.69/9.77 From the DPs we obtained the following set of size-change graphs: 25.69/9.77 *new_addToFM_C10(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, GT, bb, bc) -> new_addToFM_C(xuu64, :(xuu311000, xuu311001), xuu31101, bb, bc) 25.69/9.77 The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5 25.69/9.77 25.69/9.77 25.69/9.77 *new_addToFM_C(Branch([], xuu61, xuu62, xuu63, xuu64), :(xuu311000, xuu311001), xuu31101, bb, bc) -> new_addToFM_C10(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, GT, bb, bc) 25.69/9.77 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 2 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10 25.69/9.77 25.69/9.77 25.69/9.77 *new_addToFM_C(Branch(:(xuu600, xuu601), xuu61, xuu62, xuu63, xuu64), :(xuu311000, xuu311001), xuu31101, bb, bc) -> new_addToFM_C2(xuu600, xuu601, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, new_primCompAux1(xuu311000, xuu600, xuu311001, xuu601, bb), bb, bc) 25.69/9.77 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 1 > 6, 2 > 7, 2 > 8, 3 >= 9, 4 >= 11, 5 >= 12 25.69/9.77 25.69/9.77 25.69/9.77 *new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, LT, h, ba) -> new_addToFM_C(xuu23, :(xuu25, xuu26), xuu27, h, ba) 25.69/9.77 The graph contains the following edges 5 >= 1, 9 >= 3, 11 >= 4, 12 >= 5 25.69/9.77 25.69/9.77 25.69/9.77 *new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, h, ba) -> new_addToFM_C(xuu24, :(xuu25, xuu26), xuu27, h, ba) 25.69/9.77 The graph contains the following edges 6 >= 1, 9 >= 3, 11 >= 4, 12 >= 5 25.69/9.77 25.69/9.77 25.69/9.77 *new_addToFM_C20(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, h, ba) -> new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare6(:(xuu25, xuu26), :(xuu19, xuu20), h), h, ba) 25.69/9.77 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 >= 11, 11 >= 12 25.69/9.77 25.69/9.77 25.69/9.77 *new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, EQ, h, ba) -> new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare6(:(xuu25, xuu26), :(xuu19, xuu20), h), h, ba) 25.69/9.77 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 11 >= 11, 12 >= 12 25.69/9.77 25.69/9.77 25.69/9.77 *new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, h, ba) -> new_addToFM_C20(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, h, ba) 25.69/9.77 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 11 >= 10, 12 >= 11 25.69/9.77 25.69/9.77 25.69/9.77 ---------------------------------------- 25.69/9.77 25.69/9.77 (28) 25.69/9.77 YES 25.69/9.77 25.69/9.77 ---------------------------------------- 25.69/9.77 25.69/9.77 (29) 25.69/9.77 Obligation: 25.69/9.77 Q DP problem: 25.69/9.77 The TRS P consists of the following rules: 25.69/9.77 25.69/9.77 new_compare2(Just(xuu470), Just(xuu480), False, app(ty_Maybe, app(app(app(ty_@3, bad), bae), baf)), bg) -> new_ltEs0(xuu470, xuu480, bad, bae, baf) 25.69/9.77 new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, bce), app(ty_[], bdc)), bg) -> new_ltEs1(xuu471, xuu481, bdc) 25.69/9.77 new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(ty_Maybe, cdd), ccg) -> new_lt2(xuu114, xuu116, cdd) 25.69/9.77 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, ed, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs0(xuu472, xuu482, hb, hc, hd) 25.69/9.77 new_primCompAux(xuu311000, xuu600, xuu311001, xuu601, bhg) -> new_primCompAux0(xuu311001, xuu601, new_compare5(xuu311000, xuu600, bhg), app(ty_[], bhg)) 25.69/9.77 new_compare1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), beb, bec, bed) -> new_compare21(xuu3110000, xuu3110001, xuu3110002, xuu6000, xuu6001, xuu6002, new_asAs(new_esEs6(xuu3110000, xuu6000, beb), new_asAs(new_esEs7(xuu3110001, xuu6001, bec), new_esEs8(xuu3110002, xuu6002, bed))), beb, bec, bed) 25.69/9.77 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), app(app(app(ty_@3, ef), eg), eh), ed, ee) -> new_lt0(xuu470, xuu480, ef, eg, eh) 25.69/9.77 new_ltEs(Left(xuu470), Left(xuu480), app(ty_[], cc), bf) -> new_ltEs1(xuu470, xuu480, cc) 25.69/9.77 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(app(ty_@2, bfa), bfb), bee, bef) -> new_compare4(xuu101, xuu104, bfa, bfb) 25.69/9.77 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), app(app(app(ty_@3, ga), gb), gc)), ee), bg) -> new_lt0(xuu471, xuu481, ga, gb, gc) 25.69/9.77 new_compare20(xuu54, xuu55, False, cfa, app(ty_Maybe, cfh)) -> new_ltEs2(xuu54, xuu55, cfh) 25.69/9.77 new_primCompAux(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), xuu311001, xuu601, app(app(ty_@2, caa), cab)) -> new_compare23(xuu3110000, xuu3110001, xuu6000, xuu6001, new_asAs(new_esEs10(xuu3110000, xuu6000, caa), new_esEs11(xuu3110001, xuu6001, cab)), caa, cab) 25.69/9.77 new_compare2(Right(xuu470), Right(xuu480), False, app(app(ty_Either, cg), app(app(app(ty_@3, dc), dd), de)), bg) -> new_ltEs0(xuu470, xuu480, dc, dd, de) 25.69/9.77 new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, bce), app(app(ty_Either, bcf), bcg)), bg) -> new_ltEs(xuu471, xuu481, bcf, bcg) 25.69/9.77 new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), bce, app(app(ty_@2, bde), bdf)) -> new_ltEs3(xuu471, xuu481, bde, bdf) 25.69/9.77 new_primCompAux(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), xuu311001, xuu601, app(app(app(ty_@3, beb), bec), bed)) -> new_compare21(xuu3110000, xuu3110001, xuu3110002, xuu6000, xuu6001, xuu6002, new_asAs(new_esEs6(xuu3110000, xuu6000, beb), new_asAs(new_esEs7(xuu3110001, xuu6001, bec), new_esEs8(xuu3110002, xuu6002, bed))), beb, bec, bed) 25.69/9.77 new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), bce, app(app(ty_Either, bcf), bcg)) -> new_ltEs(xuu471, xuu481, bcf, bcg) 25.69/9.77 new_compare2(Right(xuu470), Right(xuu480), False, app(app(ty_Either, cg), app(app(ty_Either, da), db)), bg) -> new_ltEs(xuu470, xuu480, da, db) 25.69/9.77 new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), app(app(ty_@2, bcc), bcd), bbe) -> new_lt3(xuu470, xuu480, bcc, bcd) 25.69/9.77 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), ed), app(app(ty_@2, hg), hh)), bg) -> new_ltEs3(xuu472, xuu482, hg, hh) 25.69/9.77 new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), bce, app(ty_Maybe, bdd)) -> new_ltEs2(xuu471, xuu481, bdd) 25.69/9.77 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, bee, app(app(ty_Either, bge), bgf)) -> new_ltEs(xuu103, xuu106, bge, bgf) 25.69/9.77 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), app(ty_Maybe, fb), ed, ee) -> new_lt2(xuu470, xuu480, fb) 25.69/9.77 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, app(app(ty_Either, fg), fh), ee) -> new_lt(xuu471, xuu481, fg, fh) 25.69/9.77 new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(app(app(ty_@3, ceb), cec), ced)) -> new_ltEs0(xuu115, xuu117, ceb, cec, ced) 25.69/9.77 new_primCompAux0(xuu37, xuu38, EQ, app(ty_[], cah)) -> new_compare0(xuu37, xuu38, cah) 25.69/9.77 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), app(app(ty_Either, fg), fh)), ee), bg) -> new_lt(xuu471, xuu481, fg, fh) 25.69/9.77 new_compare4(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), caa, cab) -> new_compare23(xuu3110000, xuu3110001, xuu6000, xuu6001, new_asAs(new_esEs10(xuu3110000, xuu6000, caa), new_esEs11(xuu3110001, xuu6001, cab)), caa, cab) 25.69/9.77 new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, app(app(app(ty_@3, bbf), bbg), bbh)), bbe), bg) -> new_lt0(xuu470, xuu480, bbf, bbg, bbh) 25.69/9.77 new_compare(Left(xuu3110000), Left(xuu6000), bb, bc) -> new_compare2(xuu3110000, xuu6000, new_esEs4(xuu3110000, xuu6000, bb), bb, bc) 25.69/9.77 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, app(app(ty_@2, fc), fd)), ed), ee), bg) -> new_lt3(xuu470, xuu480, fc, fd) 25.69/9.77 new_ltEs(Left(xuu470), Left(xuu480), app(app(ty_Either, bd), be), bf) -> new_ltEs(xuu470, xuu480, bd, be) 25.69/9.77 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, bee, app(app(app(ty_@3, bgg), bgh), bha)) -> new_ltEs0(xuu103, xuu106, bgg, bgh, bha) 25.69/9.77 new_primCompAux(Just(xuu3110000), Just(xuu6000), xuu311001, xuu601, app(ty_Maybe, bhh)) -> new_compare22(xuu3110000, xuu6000, new_esEs9(xuu3110000, xuu6000, bhh), bhh) 25.69/9.77 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, ed, app(ty_[], he)) -> new_ltEs1(xuu472, xuu482, he) 25.69/9.77 new_compare22(xuu76, xuu77, False, app(app(ty_@2, ccc), ccd)) -> new_ltEs3(xuu76, xuu77, ccc, ccd) 25.69/9.77 new_compare0(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhf) -> new_primCompAux(xuu3110000, xuu6000, xuu3110001, xuu6001, bhf) 25.69/9.77 new_compare2(Just(xuu470), Just(xuu480), False, app(ty_Maybe, app(app(ty_Either, bab), bac)), bg) -> new_ltEs(xuu470, xuu480, bab, bac) 25.69/9.77 new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(ty_[], cee)) -> new_ltEs1(xuu115, xuu117, cee) 25.69/9.77 new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, app(app(ty_Either, bbc), bbd)), bbe), bg) -> new_lt(xuu470, xuu480, bbc, bbd) 25.69/9.77 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, app(ty_[], gd), ee) -> new_lt1(xuu471, xuu481, gd) 25.69/9.77 new_compare2(Left(xuu470), Left(xuu480), False, app(app(ty_Either, app(app(app(ty_@3, bh), ca), cb)), bf), bg) -> new_ltEs0(xuu470, xuu480, bh, ca, cb) 25.69/9.77 new_lt2(xuu101, xuu104, beh) -> new_compare3(xuu101, xuu104, beh) 25.69/9.77 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(app(app(ty_@3, bdg), bdh), bea), bee, bef) -> new_compare1(xuu101, xuu104, bdg, bdh, bea) 25.69/9.77 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), app(app(ty_Either, eb), ec), ed, ee) -> new_lt(xuu470, xuu480, eb, ec) 25.69/9.77 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(app(ty_Either, h), ba), bee, bef) -> new_compare(xuu101, xuu104, h, ba) 25.69/9.77 new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), bce, app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs0(xuu471, xuu481, bch, bda, bdb) 25.69/9.77 new_ltEs(Left(xuu470), Left(xuu480), app(app(app(ty_@3, bh), ca), cb), bf) -> new_ltEs0(xuu470, xuu480, bh, ca, cb) 25.69/9.77 new_primCompAux(Left(xuu3110000), Left(xuu6000), xuu311001, xuu601, app(app(ty_Either, bb), bc)) -> new_compare2(xuu3110000, xuu6000, new_esEs4(xuu3110000, xuu6000, bb), bb, bc) 25.69/9.77 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, bee, app(ty_Maybe, bhc)) -> new_ltEs2(xuu103, xuu106, bhc) 25.69/9.77 new_primCompAux0(xuu37, xuu38, EQ, app(app(ty_@2, cbb), cbc)) -> new_compare4(xuu37, xuu38, cbb, cbc) 25.69/9.77 new_compare2(Right(xuu470), Right(xuu480), False, app(app(ty_Either, cg), app(ty_Maybe, dg)), bg) -> new_ltEs2(xuu470, xuu480, dg) 25.69/9.77 new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(ty_[], cdc), ccg) -> new_lt1(xuu114, xuu116, cdc) 25.69/9.77 new_compare20(xuu54, xuu55, False, cfa, app(app(ty_@2, cga), cgb)) -> new_ltEs3(xuu54, xuu55, cga, cgb) 25.69/9.77 new_compare2(Just(xuu470), Just(xuu480), False, app(ty_Maybe, app(app(ty_@2, bba), bbb)), bg) -> new_ltEs3(xuu470, xuu480, bba, bbb) 25.69/9.77 new_ltEs(Right(xuu470), Right(xuu480), cg, app(ty_[], df)) -> new_ltEs1(xuu470, xuu480, df) 25.69/9.77 new_ltEs2(Just(xuu470), Just(xuu480), app(ty_Maybe, bah)) -> new_ltEs2(xuu470, xuu480, bah) 25.69/9.77 new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(app(app(ty_@3, cch), cda), cdb), ccg) -> new_lt0(xuu114, xuu116, cch, cda, cdb) 25.69/9.77 new_primCompAux0(xuu37, xuu38, EQ, app(ty_Maybe, cba)) -> new_compare3(xuu37, xuu38, cba) 25.69/9.77 new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(app(ty_Either, cce), ccf), ccg) -> new_lt(xuu114, xuu116, cce, ccf) 25.69/9.77 new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(app(ty_@2, cde), cdf), ccg) -> new_lt3(xuu114, xuu116, cde, cdf) 25.69/9.77 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), app(app(ty_@2, fc), fd), ed, ee) -> new_lt3(xuu470, xuu480, fc, fd) 25.69/9.77 new_compare3(Just(xuu3110000), Just(xuu6000), bhh) -> new_compare22(xuu3110000, xuu6000, new_esEs9(xuu3110000, xuu6000, bhh), bhh) 25.69/9.77 new_compare22(xuu76, xuu77, False, app(ty_Maybe, ccb)) -> new_ltEs2(xuu76, xuu77, ccb) 25.69/9.77 new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(app(ty_Either, cdh), cea)) -> new_ltEs(xuu115, xuu117, cdh, cea) 25.69/9.77 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, app(ty_Maybe, bgb), bef) -> new_lt2(xuu102, xuu105, bgb) 25.69/9.77 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), app(ty_[], gd)), ee), bg) -> new_lt1(xuu471, xuu481, gd) 25.69/9.77 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(ty_Maybe, beh), bee, bef) -> new_compare3(xuu101, xuu104, beh) 25.69/9.77 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, bee, app(ty_[], bhb)) -> new_ltEs1(xuu103, xuu106, bhb) 25.69/9.77 new_ltEs2(Just(xuu470), Just(xuu480), app(ty_[], bag)) -> new_ltEs1(xuu470, xuu480, bag) 25.69/9.77 new_compare22(xuu76, xuu77, False, app(app(ty_Either, cbd), cbe)) -> new_ltEs(xuu76, xuu77, cbd, cbe) 25.69/9.77 new_ltEs2(Just(xuu470), Just(xuu480), app(app(ty_@2, bba), bbb)) -> new_ltEs3(xuu470, xuu480, bba, bbb) 25.69/9.77 new_compare2(Left(xuu470), Left(xuu480), False, app(app(ty_Either, app(app(ty_Either, bd), be)), bf), bg) -> new_ltEs(xuu470, xuu480, bd, be) 25.69/9.77 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), app(app(ty_@2, gf), gg)), ee), bg) -> new_lt3(xuu471, xuu481, gf, gg) 25.69/9.77 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, app(app(ty_@2, gf), gg), ee) -> new_lt3(xuu471, xuu481, gf, gg) 25.69/9.77 new_ltEs(Right(xuu470), Right(xuu480), cg, app(ty_Maybe, dg)) -> new_ltEs2(xuu470, xuu480, dg) 25.69/9.77 new_lt0(xuu101, xuu104, bdg, bdh, bea) -> new_compare1(xuu101, xuu104, bdg, bdh, bea) 25.69/9.77 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, app(app(app(ty_@3, bff), bfg), bfh), bef) -> new_lt0(xuu102, xuu105, bff, bfg, bfh) 25.69/9.77 new_lt1(xuu101, xuu104, beg) -> new_compare0(xuu101, xuu104, beg) 25.69/9.77 new_compare2(xuu47, xuu48, False, app(ty_[], baa), bg) -> new_compare0(xuu47, xuu48, baa) 25.69/9.77 new_ltEs(Right(xuu470), Right(xuu480), cg, app(app(ty_Either, da), db)) -> new_ltEs(xuu470, xuu480, da, db) 25.69/9.77 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), ed), app(app(ty_Either, gh), ha)), bg) -> new_ltEs(xuu472, xuu482, gh, ha) 25.69/9.77 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, app(app(ty_Either, eb), ec)), ed), ee), bg) -> new_lt(xuu470, xuu480, eb, ec) 25.69/9.77 new_compare20(xuu54, xuu55, False, cfa, app(app(app(ty_@3, cfd), cfe), cff)) -> new_ltEs0(xuu54, xuu55, cfd, cfe, cff) 25.69/9.77 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, app(ty_[], bga), bef) -> new_lt1(xuu102, xuu105, bga) 25.69/9.77 new_compare2(Left(xuu470), Left(xuu480), False, app(app(ty_Either, app(ty_[], cc)), bf), bg) -> new_ltEs1(xuu470, xuu480, cc) 25.69/9.77 new_compare2(Left(xuu470), Left(xuu480), False, app(app(ty_Either, app(app(ty_@2, ce), cf)), bf), bg) -> new_ltEs3(xuu470, xuu480, ce, cf) 25.69/9.77 new_ltEs1(xuu47, xuu48, baa) -> new_compare0(xuu47, xuu48, baa) 25.69/9.77 new_primCompAux(Right(xuu3110000), Right(xuu6000), xuu311001, xuu601, app(app(ty_Either, bb), bc)) -> new_compare20(xuu3110000, xuu6000, new_esEs5(xuu3110000, xuu6000, bc), bb, bc) 25.69/9.77 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), ed), app(app(app(ty_@3, hb), hc), hd)), bg) -> new_ltEs0(xuu472, xuu482, hb, hc, hd) 25.69/9.77 new_primCompAux0(xuu37, xuu38, EQ, app(app(ty_Either, cac), cad)) -> new_compare(xuu37, xuu38, cac, cad) 25.69/9.77 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, ed, app(app(ty_Either, gh), ha)) -> new_ltEs(xuu472, xuu482, gh, ha) 25.69/9.77 new_ltEs2(Just(xuu470), Just(xuu480), app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs0(xuu470, xuu480, bad, bae, baf) 25.69/9.77 new_compare2(Just(xuu470), Just(xuu480), False, app(ty_Maybe, app(ty_Maybe, bah)), bg) -> new_ltEs2(xuu470, xuu480, bah) 25.69/9.77 new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, bce), app(app(ty_@2, bde), bdf)), bg) -> new_ltEs3(xuu471, xuu481, bde, bdf) 25.69/9.77 new_ltEs(Left(xuu470), Left(xuu480), app(app(ty_@2, ce), cf), bf) -> new_ltEs3(xuu470, xuu480, ce, cf) 25.69/9.77 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), ed), app(ty_Maybe, hf)), bg) -> new_ltEs2(xuu472, xuu482, hf) 25.69/9.77 new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), app(app(ty_Either, bbc), bbd), bbe) -> new_lt(xuu470, xuu480, bbc, bbd) 25.69/9.77 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, app(app(app(ty_@3, ga), gb), gc), ee) -> new_lt0(xuu471, xuu481, ga, gb, gc) 25.69/9.77 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, app(ty_[], fa)), ed), ee), bg) -> new_lt1(xuu470, xuu480, fa) 25.69/9.77 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, ed, app(app(ty_@2, hg), hh)) -> new_ltEs3(xuu472, xuu482, hg, hh) 25.69/9.77 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), ed), app(ty_[], he)), bg) -> new_ltEs1(xuu472, xuu482, he) 25.69/9.77 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, app(app(ty_@2, bgc), bgd), bef) -> new_lt3(xuu102, xuu105, bgc, bgd) 25.69/9.77 new_compare2(Just(xuu470), Just(xuu480), False, app(ty_Maybe, app(ty_[], bag)), bg) -> new_ltEs1(xuu470, xuu480, bag) 25.69/9.77 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, app(app(ty_Either, bfd), bfe), bef) -> new_lt(xuu102, xuu105, bfd, bfe) 25.69/9.77 new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, app(ty_Maybe, bcb)), bbe), bg) -> new_lt2(xuu470, xuu480, bcb) 25.69/9.77 new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), app(app(app(ty_@3, bbf), bbg), bbh), bbe) -> new_lt0(xuu470, xuu480, bbf, bbg, bbh) 25.69/9.77 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(ty_[], beg), bee, bef) -> new_compare0(xuu101, xuu104, beg) 25.69/9.77 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, bee, app(app(ty_@2, bhd), bhe)) -> new_ltEs3(xuu103, xuu106, bhd, bhe) 25.69/9.77 new_ltEs(Right(xuu470), Right(xuu480), cg, app(app(ty_@2, dh), ea)) -> new_ltEs3(xuu470, xuu480, dh, ea) 25.69/9.77 new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, bce), app(app(app(ty_@3, bch), bda), bdb)), bg) -> new_ltEs0(xuu471, xuu481, bch, bda, bdb) 25.69/9.77 new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), app(ty_[], bca), bbe) -> new_lt1(xuu470, xuu480, bca) 25.69/9.77 new_compare20(xuu54, xuu55, False, cfa, app(ty_[], cfg)) -> new_ltEs1(xuu54, xuu55, cfg) 25.69/9.77 new_compare20(xuu54, xuu55, False, cfa, app(app(ty_Either, cfb), cfc)) -> new_ltEs(xuu54, xuu55, cfb, cfc) 25.69/9.77 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, ed, app(ty_Maybe, hf)) -> new_ltEs2(xuu472, xuu482, hf) 25.69/9.77 new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), app(ty_Maybe, bcb), bbe) -> new_lt2(xuu470, xuu480, bcb) 25.69/9.77 new_primCompAux(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), xuu311001, xuu601, app(ty_[], bhf)) -> new_primCompAux(xuu3110000, xuu6000, xuu3110001, xuu6001, bhf) 25.69/9.77 new_compare22(xuu76, xuu77, False, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs0(xuu76, xuu77, cbf, cbg, cbh) 25.69/9.77 new_primCompAux0(xuu37, xuu38, EQ, app(app(app(ty_@3, cae), caf), cag)) -> new_compare1(xuu37, xuu38, cae, caf, cag) 25.69/9.77 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, app(app(app(ty_@3, ef), eg), eh)), ed), ee), bg) -> new_lt0(xuu470, xuu480, ef, eg, eh) 25.69/9.77 new_compare22(xuu76, xuu77, False, app(ty_[], cca)) -> new_ltEs1(xuu76, xuu77, cca) 25.69/9.77 new_compare(Right(xuu3110000), Right(xuu6000), bb, bc) -> new_compare20(xuu3110000, xuu6000, new_esEs5(xuu3110000, xuu6000, bc), bb, bc) 25.69/9.77 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), app(ty_[], fa), ed, ee) -> new_lt1(xuu470, xuu480, fa) 25.69/9.77 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), app(ty_Maybe, ge)), ee), bg) -> new_lt2(xuu471, xuu481, ge) 25.69/9.77 new_lt3(xuu101, xuu104, bfa, bfb) -> new_compare4(xuu101, xuu104, bfa, bfb) 25.69/9.77 new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, app(ty_[], bca)), bbe), bg) -> new_lt1(xuu470, xuu480, bca) 25.69/9.77 new_lt(xuu101, xuu104, h, ba) -> new_compare(xuu101, xuu104, h, ba) 25.69/9.77 new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, bce), app(ty_Maybe, bdd)), bg) -> new_ltEs2(xuu471, xuu481, bdd) 25.69/9.77 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, app(ty_Maybe, ge), ee) -> new_lt2(xuu471, xuu481, ge) 25.69/9.77 new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), bce, app(ty_[], bdc)) -> new_ltEs1(xuu471, xuu481, bdc) 25.69/9.77 new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, app(app(ty_@2, bcc), bcd)), bbe), bg) -> new_lt3(xuu470, xuu480, bcc, bcd) 25.69/9.77 new_compare2(Right(xuu470), Right(xuu480), False, app(app(ty_Either, cg), app(app(ty_@2, dh), ea)), bg) -> new_ltEs3(xuu470, xuu480, dh, ea) 25.69/9.77 new_ltEs2(Just(xuu470), Just(xuu480), app(app(ty_Either, bab), bac)) -> new_ltEs(xuu470, xuu480, bab, bac) 25.69/9.77 new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(app(ty_@2, ceg), ceh)) -> new_ltEs3(xuu115, xuu117, ceg, ceh) 25.69/9.77 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, app(ty_Maybe, fb)), ed), ee), bg) -> new_lt2(xuu470, xuu480, fb) 25.69/9.77 new_compare2(Right(xuu470), Right(xuu480), False, app(app(ty_Either, cg), app(ty_[], df)), bg) -> new_ltEs1(xuu470, xuu480, df) 25.69/9.77 new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(ty_Maybe, cef)) -> new_ltEs2(xuu115, xuu117, cef) 25.69/9.77 new_ltEs(Right(xuu470), Right(xuu480), cg, app(app(app(ty_@3, dc), dd), de)) -> new_ltEs0(xuu470, xuu480, dc, dd, de) 25.69/9.77 new_compare2(Left(xuu470), Left(xuu480), False, app(app(ty_Either, app(ty_Maybe, cd)), bf), bg) -> new_ltEs2(xuu470, xuu480, cd) 25.69/9.77 new_ltEs(Left(xuu470), Left(xuu480), app(ty_Maybe, cd), bf) -> new_ltEs2(xuu470, xuu480, cd) 25.69/9.77 25.69/9.77 The TRS R consists of the following rules: 25.69/9.77 25.69/9.77 new_lt20(xuu471, xuu481, ty_Double) -> new_lt12(xuu471, xuu481) 25.69/9.77 new_compare5(xuu311000, xuu600, ty_Integer) -> new_compare14(xuu311000, xuu600) 25.69/9.77 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.69/9.77 new_esEs33(xuu31100001, xuu60001, app(ty_Ratio, efd)) -> new_esEs23(xuu31100001, xuu60001, efd) 25.69/9.77 new_primPlusNat0(Zero, Zero) -> Zero 25.69/9.77 new_esEs30(xuu470, xuu480, app(ty_Maybe, fb)) -> new_esEs25(xuu470, xuu480, fb) 25.69/9.77 new_pePe(True, xuu210) -> True 25.69/9.77 new_ltEs20(xuu54, xuu55, app(ty_Maybe, cfh)) -> new_ltEs15(xuu54, xuu55, cfh) 25.69/9.77 new_compare7(Float(xuu3110000, Pos(xuu31100010)), Float(xuu6000, Neg(xuu60010))) -> new_compare15(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) 25.69/9.77 new_compare7(Float(xuu3110000, Neg(xuu31100010)), Float(xuu6000, Pos(xuu60010))) -> new_compare15(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) 25.69/9.77 new_esEs32(xuu31100000, xuu60000, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.77 new_esEs33(xuu31100001, xuu60001, app(app(app(ty_@3, eeg), eeh), efa)) -> new_esEs17(xuu31100001, xuu60001, eeg, eeh, efa) 25.69/9.77 new_esEs6(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.77 new_ltEs24(xuu103, xuu106, app(app(ty_@2, bhd), bhe)) -> new_ltEs10(xuu103, xuu106, bhd, bhe) 25.69/9.77 new_ltEs24(xuu103, xuu106, ty_Ordering) -> new_ltEs14(xuu103, xuu106) 25.69/9.77 new_ltEs4(xuu47, xuu48, baa) -> new_fsEs(new_compare6(xuu47, xuu48, baa)) 25.69/9.77 new_esEs26(LT, GT) -> False 25.69/9.77 new_esEs26(GT, LT) -> False 25.69/9.77 new_esEs8(xuu3110002, xuu6002, ty_Ordering) -> new_esEs26(xuu3110002, xuu6002) 25.69/9.77 new_esEs35(xuu31100001, xuu60001, app(ty_[], fce)) -> new_esEs12(xuu31100001, xuu60001, fce) 25.69/9.77 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.69/9.77 new_compare24(xuu114, xuu115, xuu116, xuu117, True, cdg, ccg) -> EQ 25.69/9.77 new_esEs26(LT, EQ) -> False 25.69/9.77 new_esEs26(EQ, LT) -> False 25.69/9.77 new_lt8(xuu470, xuu480, ty_Bool) -> new_lt16(xuu470, xuu480) 25.69/9.77 new_ltEs24(xuu103, xuu106, app(ty_[], bhb)) -> new_ltEs4(xuu103, xuu106, bhb) 25.69/9.77 new_compare26(xuu54, xuu55, True, cfa, dgc) -> EQ 25.69/9.77 new_esEs39(xuu102, xuu105, ty_Int) -> new_esEs19(xuu102, xuu105) 25.69/9.77 new_lt14(xuu101, xuu104) -> new_esEs26(new_compare7(xuu101, xuu104), LT) 25.69/9.77 new_esEs6(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.77 new_ltEs7(xuu47, xuu48) -> new_fsEs(new_compare14(xuu47, xuu48)) 25.69/9.77 new_ltEs12(Left(xuu470), Right(xuu480), cg, bf) -> True 25.69/9.77 new_lt23(xuu102, xuu105, app(ty_Maybe, bgb)) -> new_lt15(xuu102, xuu105, bgb) 25.69/9.77 new_compare27(xuu47, xuu48, False, edb, bg) -> new_compare110(xuu47, xuu48, new_ltEs22(xuu47, xuu48, edb), edb, bg) 25.69/9.77 new_ltEs24(xuu103, xuu106, app(ty_Ratio, fhe)) -> new_ltEs8(xuu103, xuu106, fhe) 25.69/9.77 new_primMulNat0(Succ(xuu600000), Succ(xuu311000100)) -> new_primPlusNat1(new_primMulNat0(xuu600000, Succ(xuu311000100)), xuu311000100) 25.69/9.77 new_esEs11(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) 25.69/9.77 new_lt6(xuu101, xuu104) -> new_esEs26(new_compare13(xuu101, xuu104), LT) 25.69/9.77 new_lt19(xuu470, xuu480, ty_Bool) -> new_lt16(xuu470, xuu480) 25.69/9.77 new_esEs6(xuu3110000, xuu6000, app(app(ty_@2, chf), chg)) -> new_esEs16(xuu3110000, xuu6000, chf, chg) 25.69/9.77 new_esEs36(xuu31100002, xuu60002, ty_@0) -> new_esEs14(xuu31100002, xuu60002) 25.69/9.77 new_esEs32(xuu31100000, xuu60000, ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.77 new_esEs21(Left(xuu31100000), Right(xuu60000), dhb, dhc) -> False 25.69/9.77 new_esEs21(Right(xuu31100000), Left(xuu60000), dhb, dhc) -> False 25.69/9.77 new_primCompAux00(xuu37, xuu38, EQ, ty_Integer) -> new_compare14(xuu37, xuu38) 25.69/9.77 new_esEs37(xuu114, xuu116, ty_Bool) -> new_esEs20(xuu114, xuu116) 25.69/9.77 new_primEqNat0(Succ(xuu311000000), Succ(xuu600000)) -> new_primEqNat0(xuu311000000, xuu600000) 25.69/9.77 new_ltEs22(xuu47, xuu48, ty_Double) -> new_ltEs6(xuu47, xuu48) 25.69/9.77 new_not(True) -> False 25.69/9.77 new_lt22(xuu101, xuu104, app(ty_[], beg)) -> new_lt7(xuu101, xuu104, beg) 25.69/9.77 new_ltEs19(xuu472, xuu482, ty_@0) -> new_ltEs18(xuu472, xuu482) 25.69/9.77 new_esEs35(xuu31100001, xuu60001, app(ty_Maybe, fcf)) -> new_esEs25(xuu31100001, xuu60001, fcf) 25.69/9.77 new_lt7(xuu101, xuu104, beg) -> new_esEs26(new_compare6(xuu101, xuu104, beg), LT) 25.69/9.77 new_esEs9(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.77 new_esEs10(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.77 new_compare17(xuu140, xuu141, False, ech, eda) -> GT 25.69/9.77 new_esEs39(xuu102, xuu105, ty_Ordering) -> new_esEs26(xuu102, xuu105) 25.69/9.77 new_esEs38(xuu101, xuu104, app(ty_Ratio, dah)) -> new_esEs23(xuu101, xuu104, dah) 25.69/9.77 new_esEs38(xuu101, xuu104, app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs17(xuu101, xuu104, bdg, bdh, bea) 25.69/9.77 new_esEs4(xuu3110000, xuu6000, app(ty_[], cgc)) -> new_esEs12(xuu3110000, xuu6000, cgc) 25.69/9.77 new_esEs33(xuu31100001, xuu60001, app(app(ty_Either, efb), efc)) -> new_esEs21(xuu31100001, xuu60001, efb, efc) 25.69/9.77 new_compare11(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, False, xuu180, dbb, dbc, dbd) -> new_compare12(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, xuu180, dbb, dbc, dbd) 25.69/9.77 new_lt22(xuu101, xuu104, app(app(ty_Either, h), ba)) -> new_lt9(xuu101, xuu104, h, ba) 25.69/9.77 new_lt22(xuu101, xuu104, app(ty_Ratio, dah)) -> new_lt4(xuu101, xuu104, dah) 25.69/9.77 new_compare6([], :(xuu6000, xuu6001), bhf) -> LT 25.69/9.77 new_compare10(Double(xuu3110000, Pos(xuu31100010)), Double(xuu6000, Neg(xuu60010))) -> new_compare15(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) 25.69/9.77 new_compare10(Double(xuu3110000, Neg(xuu31100010)), Double(xuu6000, Pos(xuu60010))) -> new_compare15(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) 25.69/9.77 new_primEqNat0(Succ(xuu311000000), Zero) -> False 25.69/9.77 new_primEqNat0(Zero, Succ(xuu600000)) -> False 25.69/9.77 new_esEs14(@0, @0) -> True 25.69/9.77 new_lt23(xuu102, xuu105, ty_Char) -> new_lt17(xuu102, xuu105) 25.69/9.77 new_lt23(xuu102, xuu105, ty_Int) -> new_lt10(xuu102, xuu105) 25.69/9.77 new_ltEs21(xuu76, xuu77, ty_Integer) -> new_ltEs7(xuu76, xuu77) 25.69/9.77 new_esEs29(xuu470, xuu480, ty_Int) -> new_esEs19(xuu470, xuu480) 25.69/9.77 new_esEs37(xuu114, xuu116, ty_Float) -> new_esEs18(xuu114, xuu116) 25.69/9.77 new_ltEs23(xuu115, xuu117, ty_Char) -> new_ltEs17(xuu115, xuu117) 25.69/9.77 new_esEs6(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.77 new_lt5(xuu101, xuu104, bfa, bfb) -> new_esEs26(new_compare9(xuu101, xuu104, bfa, bfb), LT) 25.69/9.77 new_ltEs23(xuu115, xuu117, ty_Float) -> new_ltEs5(xuu115, xuu117) 25.69/9.77 new_esEs32(xuu31100000, xuu60000, ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.77 new_esEs9(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.77 new_ltEs14(EQ, EQ) -> True 25.69/9.77 new_esEs37(xuu114, xuu116, ty_Char) -> new_esEs15(xuu114, xuu116) 25.69/9.77 new_esEs4(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.77 new_lt21(xuu114, xuu116, ty_Bool) -> new_lt16(xuu114, xuu116) 25.69/9.77 new_compare210(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, True, bfc, bee, bef) -> EQ 25.69/9.77 new_ltEs20(xuu54, xuu55, app(app(app(ty_@3, cfd), cfe), cff)) -> new_ltEs13(xuu54, xuu55, cfd, cfe, cff) 25.69/9.77 new_compare13(LT, LT) -> EQ 25.69/9.77 new_primCmpInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> GT 25.69/9.77 new_lt13(xuu101, xuu104) -> new_esEs26(new_compare14(xuu101, xuu104), LT) 25.69/9.77 new_esEs21(Left(xuu31100000), Left(xuu60000), app(ty_Ratio, egf), dhc) -> new_esEs23(xuu31100000, xuu60000, egf) 25.69/9.77 new_compare112(xuu188, xuu189, xuu190, xuu191, True, fff, ffg) -> LT 25.69/9.77 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.77 new_esEs10(xuu3110000, xuu6000, app(ty_[], dcf)) -> new_esEs12(xuu3110000, xuu6000, dcf) 25.69/9.77 new_esEs29(xuu470, xuu480, ty_Ordering) -> new_esEs26(xuu470, xuu480) 25.69/9.77 new_compare13(GT, EQ) -> GT 25.69/9.77 new_primCompAux00(xuu37, xuu38, GT, ecf) -> GT 25.69/9.77 new_lt19(xuu470, xuu480, ty_Integer) -> new_lt13(xuu470, xuu480) 25.69/9.77 new_primCmpNat0(Zero, Succ(xuu60000)) -> LT 25.69/9.77 new_ltEs11(xuu471, xuu481, ty_Bool) -> new_ltEs16(xuu471, xuu481) 25.69/9.77 new_lt23(xuu102, xuu105, app(app(app(ty_@3, bff), bfg), bfh)) -> new_lt11(xuu102, xuu105, bff, bfg, bfh) 25.69/9.77 new_ltEs23(xuu115, xuu117, ty_Int) -> new_ltEs9(xuu115, xuu117) 25.69/9.77 new_esEs11(xuu3110001, xuu6001, ty_Ordering) -> new_esEs26(xuu3110001, xuu6001) 25.69/9.77 new_ltEs12(Left(xuu470), Left(xuu480), ty_Float, bf) -> new_ltEs5(xuu470, xuu480) 25.69/9.77 new_compare26(xuu54, xuu55, False, cfa, dgc) -> new_compare17(xuu54, xuu55, new_ltEs20(xuu54, xuu55, dgc), cfa, dgc) 25.69/9.77 new_esEs9(xuu3110000, xuu6000, app(ty_[], dfb)) -> new_esEs12(xuu3110000, xuu6000, dfb) 25.69/9.77 new_esEs34(xuu31100000, xuu60000, ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.77 new_esEs38(xuu101, xuu104, app(app(ty_Either, h), ba)) -> new_esEs21(xuu101, xuu104, h, ba) 25.69/9.77 new_ltEs12(Left(xuu470), Left(xuu480), ty_Char, bf) -> new_ltEs17(xuu470, xuu480) 25.69/9.77 new_ltEs21(xuu76, xuu77, ty_@0) -> new_ltEs18(xuu76, xuu77) 25.69/9.77 new_lt8(xuu470, xuu480, ty_Ordering) -> new_lt6(xuu470, xuu480) 25.69/9.77 new_ltEs19(xuu472, xuu482, app(app(ty_@2, hg), hh)) -> new_ltEs10(xuu472, xuu482, hg, hh) 25.69/9.77 new_esEs11(xuu3110001, xuu6001, app(ty_Ratio, ddg)) -> new_esEs23(xuu3110001, xuu6001, ddg) 25.69/9.77 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.77 new_esEs5(xuu3110000, xuu6000, app(app(app(ty_@3, dhg), dhh), eaa)) -> new_esEs17(xuu3110000, xuu6000, dhg, dhh, eaa) 25.69/9.77 new_esEs9(xuu3110000, xuu6000, app(app(ty_@2, deb), dec)) -> new_esEs16(xuu3110000, xuu6000, deb, dec) 25.69/9.77 new_ltEs19(xuu472, xuu482, ty_Ordering) -> new_ltEs14(xuu472, xuu482) 25.69/9.77 new_ltEs12(Left(xuu470), Left(xuu480), ty_Double, bf) -> new_ltEs6(xuu470, xuu480) 25.69/9.77 new_compare5(xuu311000, xuu600, ty_Float) -> new_compare7(xuu311000, xuu600) 25.69/9.77 new_esEs34(xuu31100000, xuu60000, ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.77 new_esEs38(xuu101, xuu104, app(ty_[], beg)) -> new_esEs12(xuu101, xuu104, beg) 25.69/9.77 new_esEs10(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.77 new_ltEs14(EQ, GT) -> True 25.69/9.77 new_esEs31(xuu471, xuu481, app(app(ty_Either, fg), fh)) -> new_esEs21(xuu471, xuu481, fg, fh) 25.69/9.77 new_ltEs12(Right(xuu470), Right(xuu480), cg, app(ty_Maybe, dg)) -> new_ltEs15(xuu470, xuu480, dg) 25.69/9.77 new_compare5(xuu311000, xuu600, app(app(ty_@2, caa), cab)) -> new_compare9(xuu311000, xuu600, caa, cab) 25.69/9.77 new_ltEs15(Just(xuu470), Just(xuu480), ty_Integer) -> new_ltEs7(xuu470, xuu480) 25.69/9.77 new_ltEs19(xuu472, xuu482, ty_Integer) -> new_ltEs7(xuu472, xuu482) 25.69/9.77 new_primEqInt(Neg(Succ(xuu311000000)), Neg(Succ(xuu600000))) -> new_primEqNat0(xuu311000000, xuu600000) 25.69/9.77 new_esEs33(xuu31100001, xuu60001, app(ty_Maybe, eff)) -> new_esEs25(xuu31100001, xuu60001, eff) 25.69/9.77 new_esEs31(xuu471, xuu481, ty_@0) -> new_esEs14(xuu471, xuu481) 25.69/9.77 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.77 new_ltEs12(Left(xuu470), Left(xuu480), app(ty_[], cc), bf) -> new_ltEs4(xuu470, xuu480, cc) 25.69/9.77 new_primCmpInt(Neg(Zero), Pos(Succ(xuu60000))) -> LT 25.69/9.77 new_compare15(xuu311000, xuu600) -> new_primCmpInt(xuu311000, xuu600) 25.69/9.77 new_ltEs20(xuu54, xuu55, ty_Char) -> new_ltEs17(xuu54, xuu55) 25.69/9.77 new_primMulInt(Pos(xuu60000), Pos(xuu31100010)) -> Pos(new_primMulNat0(xuu60000, xuu31100010)) 25.69/9.77 new_compare13(EQ, LT) -> GT 25.69/9.77 new_ltEs14(LT, GT) -> True 25.69/9.77 new_ltEs14(GT, GT) -> True 25.69/9.77 new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_@2, cbb), cbc)) -> new_compare9(xuu37, xuu38, cbb, cbc) 25.69/9.77 new_ltEs21(xuu76, xuu77, ty_Bool) -> new_ltEs16(xuu76, xuu77) 25.69/9.77 new_esEs30(xuu470, xuu480, ty_Double) -> new_esEs22(xuu470, xuu480) 25.69/9.77 new_primCompAux00(xuu37, xuu38, EQ, ty_Float) -> new_compare7(xuu37, xuu38) 25.69/9.77 new_esEs9(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.77 new_primMulNat0(Succ(xuu600000), Zero) -> Zero 25.69/9.77 new_primMulNat0(Zero, Succ(xuu311000100)) -> Zero 25.69/9.77 new_esEs9(xuu3110000, xuu6000, app(ty_Maybe, dfc)) -> new_esEs25(xuu3110000, xuu6000, dfc) 25.69/9.77 new_lt21(xuu114, xuu116, ty_Integer) -> new_lt13(xuu114, xuu116) 25.69/9.77 new_esEs6(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.77 new_esEs7(xuu3110001, xuu6001, app(app(app(ty_@3, fef), feg), feh)) -> new_esEs17(xuu3110001, xuu6001, fef, feg, feh) 25.69/9.77 new_compare13(GT, LT) -> GT 25.69/9.77 new_esEs22(Double(xuu31100000, xuu31100001), Double(xuu60000, xuu60001)) -> new_esEs19(new_sr(xuu31100000, xuu60001), new_sr(xuu31100001, xuu60000)) 25.69/9.77 new_lt20(xuu471, xuu481, app(app(app(ty_@3, ga), gb), gc)) -> new_lt11(xuu471, xuu481, ga, gb, gc) 25.69/9.77 new_primPlusNat0(Succ(xuu21200), Zero) -> Succ(xuu21200) 25.69/9.77 new_primPlusNat0(Zero, Succ(xuu21100)) -> Succ(xuu21100) 25.69/9.77 new_compare7(Float(xuu3110000, Pos(xuu31100010)), Float(xuu6000, Pos(xuu60010))) -> new_compare15(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) 25.69/9.77 new_esEs26(EQ, GT) -> False 25.69/9.77 new_esEs26(GT, EQ) -> False 25.69/9.77 new_ltEs12(Left(xuu470), Left(xuu480), app(ty_Ratio, dff), bf) -> new_ltEs8(xuu470, xuu480, dff) 25.69/9.77 new_esEs6(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.77 new_compare13(EQ, EQ) -> EQ 25.69/9.77 new_compare5(xuu311000, xuu600, app(app(app(ty_@3, beb), bec), bed)) -> new_compare28(xuu311000, xuu600, beb, bec, bed) 25.69/9.77 new_esEs39(xuu102, xuu105, ty_@0) -> new_esEs14(xuu102, xuu105) 25.69/9.77 new_compare29(False, False) -> EQ 25.69/9.77 new_esEs7(xuu3110001, xuu6001, app(ty_Maybe, ffe)) -> new_esEs25(xuu3110001, xuu6001, ffe) 25.69/9.77 new_esEs31(xuu471, xuu481, ty_Ordering) -> new_esEs26(xuu471, xuu481) 25.69/9.77 new_lt21(xuu114, xuu116, app(app(app(ty_@3, cch), cda), cdb)) -> new_lt11(xuu114, xuu116, cch, cda, cdb) 25.69/9.77 new_ltEs11(xuu471, xuu481, ty_@0) -> new_ltEs18(xuu471, xuu481) 25.69/9.77 new_esEs32(xuu31100000, xuu60000, app(app(ty_@2, edc), edd)) -> new_esEs16(xuu31100000, xuu60000, edc, edd) 25.69/9.77 new_esEs39(xuu102, xuu105, ty_Bool) -> new_esEs20(xuu102, xuu105) 25.69/9.77 new_lt8(xuu470, xuu480, ty_Integer) -> new_lt13(xuu470, xuu480) 25.69/9.77 new_esEs10(xuu3110000, xuu6000, app(ty_Maybe, dcg)) -> new_esEs25(xuu3110000, xuu6000, dcg) 25.69/9.77 new_esEs32(xuu31100000, xuu60000, ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.77 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Char, dhc) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.77 new_ltEs20(xuu54, xuu55, ty_Float) -> new_ltEs5(xuu54, xuu55) 25.69/9.77 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Bool, dhc) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.77 new_ltEs24(xuu103, xuu106, ty_@0) -> new_ltEs18(xuu103, xuu106) 25.69/9.77 new_esEs29(xuu470, xuu480, app(app(ty_Either, bbc), bbd)) -> new_esEs21(xuu470, xuu480, bbc, bbd) 25.69/9.77 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.77 new_esEs5(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.77 new_esEs25(Just(xuu31100000), Just(xuu60000), app(app(app(ty_@3, fgb), fgc), fgd)) -> new_esEs17(xuu31100000, xuu60000, fgb, fgc, fgd) 25.69/9.77 new_esEs25(Just(xuu31100000), Just(xuu60000), app(app(ty_Either, fge), fgf)) -> new_esEs21(xuu31100000, xuu60000, fge, fgf) 25.69/9.77 new_compare9(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), caa, cab) -> new_compare24(xuu3110000, xuu3110001, xuu6000, xuu6001, new_asAs(new_esEs10(xuu3110000, xuu6000, caa), new_esEs11(xuu3110001, xuu6001, cab)), caa, cab) 25.69/9.77 new_esEs29(xuu470, xuu480, ty_@0) -> new_esEs14(xuu470, xuu480) 25.69/9.77 new_esEs32(xuu31100000, xuu60000, app(ty_Maybe, eed)) -> new_esEs25(xuu31100000, xuu60000, eed) 25.69/9.77 new_compare25(xuu76, xuu77, True, eag) -> EQ 25.69/9.77 new_esEs36(xuu31100002, xuu60002, app(ty_Ratio, fdf)) -> new_esEs23(xuu31100002, xuu60002, fdf) 25.69/9.77 new_esEs13(xuu31100000, xuu60000, app(ty_Ratio, chc)) -> new_esEs23(xuu31100000, xuu60000, chc) 25.69/9.77 new_ltEs5(xuu47, xuu48) -> new_fsEs(new_compare7(xuu47, xuu48)) 25.69/9.77 new_esEs27(xuu31100000, xuu60000, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.77 new_esEs30(xuu470, xuu480, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs17(xuu470, xuu480, ef, eg, eh) 25.69/9.77 new_lt23(xuu102, xuu105, ty_Double) -> new_lt12(xuu102, xuu105) 25.69/9.77 new_esEs13(xuu31100000, xuu60000, app(ty_[], chd)) -> new_esEs12(xuu31100000, xuu60000, chd) 25.69/9.77 new_esEs5(xuu3110000, xuu6000, app(app(ty_Either, eab), eac)) -> new_esEs21(xuu3110000, xuu6000, eab, eac) 25.69/9.77 new_compare29(True, False) -> GT 25.69/9.77 new_esEs7(xuu3110001, xuu6001, ty_Double) -> new_esEs22(xuu3110001, xuu6001) 25.69/9.77 new_ltEs15(Just(xuu470), Just(xuu480), ty_Bool) -> new_ltEs16(xuu470, xuu480) 25.69/9.77 new_ltEs19(xuu472, xuu482, ty_Bool) -> new_ltEs16(xuu472, xuu482) 25.69/9.77 new_esEs4(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.77 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Int, dhc) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.77 new_esEs30(xuu470, xuu480, ty_Char) -> new_esEs15(xuu470, xuu480) 25.69/9.77 new_esEs10(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.77 new_ltEs11(xuu471, xuu481, ty_Char) -> new_ltEs17(xuu471, xuu481) 25.69/9.77 new_esEs21(Left(xuu31100000), Left(xuu60000), app(ty_Maybe, egh), dhc) -> new_esEs25(xuu31100000, xuu60000, egh) 25.69/9.77 new_esEs10(xuu3110000, xuu6000, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs17(xuu3110000, xuu6000, dbh, dca, dcb) 25.69/9.77 new_lt20(xuu471, xuu481, ty_Char) -> new_lt17(xuu471, xuu481) 25.69/9.77 new_esEs34(xuu31100000, xuu60000, ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.77 new_esEs8(xuu3110002, xuu6002, ty_Float) -> new_esEs18(xuu3110002, xuu6002) 25.69/9.77 new_ltEs11(xuu471, xuu481, ty_Float) -> new_ltEs5(xuu471, xuu481) 25.69/9.77 new_esEs39(xuu102, xuu105, ty_Char) -> new_esEs15(xuu102, xuu105) 25.69/9.77 new_esEs10(xuu3110000, xuu6000, app(ty_Ratio, dce)) -> new_esEs23(xuu3110000, xuu6000, dce) 25.69/9.77 new_ltEs12(Left(xuu470), Left(xuu480), ty_Int, bf) -> new_ltEs9(xuu470, xuu480) 25.69/9.77 new_esEs8(xuu3110002, xuu6002, app(app(ty_@2, ebb), ebc)) -> new_esEs16(xuu3110002, xuu6002, ebb, ebc) 25.69/9.77 new_compare25(xuu76, xuu77, False, eag) -> new_compare19(xuu76, xuu77, new_ltEs21(xuu76, xuu77, eag), eag) 25.69/9.77 new_esEs37(xuu114, xuu116, app(ty_[], cdc)) -> new_esEs12(xuu114, xuu116, cdc) 25.69/9.77 new_esEs30(xuu470, xuu480, app(app(ty_Either, eb), ec)) -> new_esEs21(xuu470, xuu480, eb, ec) 25.69/9.77 new_esEs29(xuu470, xuu480, app(app(ty_@2, bcc), bcd)) -> new_esEs16(xuu470, xuu480, bcc, bcd) 25.69/9.77 new_primCompAux00(xuu37, xuu38, EQ, ty_Char) -> new_compare30(xuu37, xuu38) 25.69/9.77 new_lt23(xuu102, xuu105, ty_Bool) -> new_lt16(xuu102, xuu105) 25.69/9.77 new_esEs35(xuu31100001, xuu60001, app(app(app(ty_@3, fbg), fbh), fca)) -> new_esEs17(xuu31100001, xuu60001, fbg, fbh, fca) 25.69/9.77 new_esEs35(xuu31100001, xuu60001, ty_Bool) -> new_esEs20(xuu31100001, xuu60001) 25.69/9.77 new_ltEs24(xuu103, xuu106, ty_Double) -> new_ltEs6(xuu103, xuu106) 25.69/9.77 new_lt19(xuu470, xuu480, app(app(app(ty_@3, ef), eg), eh)) -> new_lt11(xuu470, xuu480, ef, eg, eh) 25.69/9.77 new_esEs31(xuu471, xuu481, app(ty_Ratio, dga)) -> new_esEs23(xuu471, xuu481, dga) 25.69/9.77 new_ltEs12(Left(xuu470), Left(xuu480), app(app(ty_@2, ce), cf), bf) -> new_ltEs10(xuu470, xuu480, ce, cf) 25.69/9.77 new_ltEs15(Just(xuu470), Just(xuu480), app(app(ty_Either, bab), bac)) -> new_ltEs12(xuu470, xuu480, bab, bac) 25.69/9.77 new_ltEs12(Right(xuu470), Right(xuu480), cg, ty_@0) -> new_ltEs18(xuu470, xuu480) 25.69/9.77 new_esEs31(xuu471, xuu481, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs17(xuu471, xuu481, ga, gb, gc) 25.69/9.77 new_ltEs11(xuu471, xuu481, app(ty_Ratio, dfe)) -> new_ltEs8(xuu471, xuu481, dfe) 25.69/9.77 new_esEs31(xuu471, xuu481, ty_Bool) -> new_esEs20(xuu471, xuu481) 25.69/9.77 new_esEs35(xuu31100001, xuu60001, app(ty_Ratio, fcd)) -> new_esEs23(xuu31100001, xuu60001, fcd) 25.69/9.77 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_@0, dhc) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.77 new_lt15(xuu101, xuu104, beh) -> new_esEs26(new_compare16(xuu101, xuu104, beh), LT) 25.69/9.77 new_lt21(xuu114, xuu116, ty_@0) -> new_lt18(xuu114, xuu116) 25.69/9.77 new_esEs6(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.77 new_compare18(Right(xuu3110000), Right(xuu6000), bb, bc) -> new_compare26(xuu3110000, xuu6000, new_esEs5(xuu3110000, xuu6000, bc), bb, bc) 25.69/9.77 new_ltEs22(xuu47, xuu48, app(app(ty_@2, bce), bbe)) -> new_ltEs10(xuu47, xuu48, bce, bbe) 25.69/9.77 new_esEs39(xuu102, xuu105, ty_Integer) -> new_esEs24(xuu102, xuu105) 25.69/9.77 new_lt8(xuu470, xuu480, ty_@0) -> new_lt18(xuu470, xuu480) 25.69/9.77 new_esEs4(xuu3110000, xuu6000, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs17(xuu3110000, xuu6000, dgg, dgh, dha) 25.69/9.77 new_esEs32(xuu31100000, xuu60000, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.77 new_esEs23(:%(xuu31100000, xuu31100001), :%(xuu60000, xuu60001), dba) -> new_asAs(new_esEs27(xuu31100000, xuu60000, dba), new_esEs28(xuu31100001, xuu60001, dba)) 25.69/9.77 new_ltEs12(Right(xuu470), Right(xuu480), cg, app(app(app(ty_@3, dc), dd), de)) -> new_ltEs13(xuu470, xuu480, dc, dd, de) 25.69/9.77 new_esEs33(xuu31100001, xuu60001, ty_Ordering) -> new_esEs26(xuu31100001, xuu60001) 25.69/9.77 new_esEs4(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.77 new_ltEs16(True, False) -> False 25.69/9.77 new_compare5(xuu311000, xuu600, app(ty_Ratio, eba)) -> new_compare8(xuu311000, xuu600, eba) 25.69/9.77 new_esEs39(xuu102, xuu105, app(app(ty_Either, bfd), bfe)) -> new_esEs21(xuu102, xuu105, bfd, bfe) 25.69/9.77 new_esEs21(Left(xuu31100000), Left(xuu60000), app(app(ty_@2, efg), efh), dhc) -> new_esEs16(xuu31100000, xuu60000, efg, efh) 25.69/9.77 new_esEs30(xuu470, xuu480, app(app(ty_@2, fc), fd)) -> new_esEs16(xuu470, xuu480, fc, fd) 25.69/9.77 new_ltEs22(xuu47, xuu48, ty_@0) -> new_ltEs18(xuu47, xuu48) 25.69/9.77 new_esEs37(xuu114, xuu116, ty_Int) -> new_esEs19(xuu114, xuu116) 25.69/9.77 new_primCmpInt(Pos(Succ(xuu31100000)), Pos(xuu6000)) -> new_primCmpNat0(Succ(xuu31100000), xuu6000) 25.69/9.77 new_esEs29(xuu470, xuu480, ty_Char) -> new_esEs15(xuu470, xuu480) 25.69/9.77 new_lt19(xuu470, xuu480, app(ty_Maybe, fb)) -> new_lt15(xuu470, xuu480, fb) 25.69/9.77 new_esEs13(xuu31100000, xuu60000, ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.77 new_esEs10(xuu3110000, xuu6000, app(app(ty_Either, dcc), dcd)) -> new_esEs21(xuu3110000, xuu6000, dcc, dcd) 25.69/9.77 new_lt8(xuu470, xuu480, ty_Char) -> new_lt17(xuu470, xuu480) 25.69/9.77 new_ltEs15(Just(xuu470), Just(xuu480), app(ty_Ratio, ece)) -> new_ltEs8(xuu470, xuu480, ece) 25.69/9.77 new_esEs11(xuu3110001, xuu6001, app(ty_Maybe, dea)) -> new_esEs25(xuu3110001, xuu6001, dea) 25.69/9.77 new_compare13(GT, GT) -> EQ 25.69/9.77 new_ltEs20(xuu54, xuu55, ty_Double) -> new_ltEs6(xuu54, xuu55) 25.69/9.77 new_lt20(xuu471, xuu481, app(app(ty_Either, fg), fh)) -> new_lt9(xuu471, xuu481, fg, fh) 25.69/9.77 new_lt16(xuu101, xuu104) -> new_esEs26(new_compare29(xuu101, xuu104), LT) 25.69/9.77 new_ltEs21(xuu76, xuu77, app(app(ty_@2, ccc), ccd)) -> new_ltEs10(xuu76, xuu77, ccc, ccd) 25.69/9.77 new_ltEs15(Just(xuu470), Just(xuu480), ty_Ordering) -> new_ltEs14(xuu470, xuu480) 25.69/9.77 new_esEs39(xuu102, xuu105, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs17(xuu102, xuu105, bff, bfg, bfh) 25.69/9.77 new_compare7(Float(xuu3110000, Neg(xuu31100010)), Float(xuu6000, Neg(xuu60010))) -> new_compare15(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) 25.69/9.77 new_esEs35(xuu31100001, xuu60001, ty_Integer) -> new_esEs24(xuu31100001, xuu60001) 25.69/9.77 new_lt20(xuu471, xuu481, ty_@0) -> new_lt18(xuu471, xuu481) 25.69/9.77 new_esEs13(xuu31100000, xuu60000, ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.77 new_esEs38(xuu101, xuu104, ty_@0) -> new_esEs14(xuu101, xuu104) 25.69/9.77 new_compare29(False, True) -> LT 25.69/9.77 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, app(app(ty_@2, eha), ehb)) -> new_esEs16(xuu31100000, xuu60000, eha, ehb) 25.69/9.77 new_primCompAux00(xuu37, xuu38, EQ, app(ty_Ratio, ecg)) -> new_compare8(xuu37, xuu38, ecg) 25.69/9.77 new_esEs29(xuu470, xuu480, ty_Bool) -> new_esEs20(xuu470, xuu480) 25.69/9.77 new_esEs34(xuu31100000, xuu60000, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.77 new_esEs36(xuu31100002, xuu60002, ty_Bool) -> new_esEs20(xuu31100002, xuu60002) 25.69/9.77 new_ltEs11(xuu471, xuu481, app(ty_Maybe, bdd)) -> new_ltEs15(xuu471, xuu481, bdd) 25.69/9.77 new_lt22(xuu101, xuu104, ty_Ordering) -> new_lt6(xuu101, xuu104) 25.69/9.77 new_primCompAux00(xuu37, xuu38, EQ, app(ty_Maybe, cba)) -> new_compare16(xuu37, xuu38, cba) 25.69/9.77 new_esEs30(xuu470, xuu480, ty_Bool) -> new_esEs20(xuu470, xuu480) 25.69/9.77 new_esEs5(xuu3110000, xuu6000, app(ty_Maybe, eaf)) -> new_esEs25(xuu3110000, xuu6000, eaf) 25.69/9.77 new_esEs36(xuu31100002, xuu60002, ty_Int) -> new_esEs19(xuu31100002, xuu60002) 25.69/9.77 new_lt21(xuu114, xuu116, app(ty_Maybe, cdd)) -> new_lt15(xuu114, xuu116, cdd) 25.69/9.77 new_lt19(xuu470, xuu480, ty_@0) -> new_lt18(xuu470, xuu480) 25.69/9.77 new_esEs5(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.77 new_esEs31(xuu471, xuu481, ty_Char) -> new_esEs15(xuu471, xuu481) 25.69/9.77 new_ltEs22(xuu47, xuu48, app(ty_[], baa)) -> new_ltEs4(xuu47, xuu48, baa) 25.69/9.77 new_compare18(Right(xuu3110000), Left(xuu6000), bb, bc) -> GT 25.69/9.77 new_compare5(xuu311000, xuu600, ty_Char) -> new_compare30(xuu311000, xuu600) 25.69/9.77 new_compare6([], [], bhf) -> EQ 25.69/9.77 new_ltEs18(xuu47, xuu48) -> new_fsEs(new_compare31(xuu47, xuu48)) 25.69/9.77 new_ltEs11(xuu471, xuu481, ty_Int) -> new_ltEs9(xuu471, xuu481) 25.69/9.77 new_lt8(xuu470, xuu480, ty_Float) -> new_lt14(xuu470, xuu480) 25.69/9.77 new_esEs34(xuu31100000, xuu60000, ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.77 new_esEs7(xuu3110001, xuu6001, ty_Float) -> new_esEs18(xuu3110001, xuu6001) 25.69/9.77 new_compare10(Double(xuu3110000, Neg(xuu31100010)), Double(xuu6000, Neg(xuu60010))) -> new_compare15(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) 25.69/9.77 new_esEs4(xuu3110000, xuu6000, app(ty_Maybe, dhd)) -> new_esEs25(xuu3110000, xuu6000, dhd) 25.69/9.77 new_lt9(xuu101, xuu104, h, ba) -> new_esEs26(new_compare18(xuu101, xuu104, h, ba), LT) 25.69/9.77 new_esEs10(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.77 new_lt8(xuu470, xuu480, app(app(ty_Either, bbc), bbd)) -> new_lt9(xuu470, xuu480, bbc, bbd) 25.69/9.77 new_ltEs12(Right(xuu470), Right(xuu480), cg, ty_Char) -> new_ltEs17(xuu470, xuu480) 25.69/9.77 new_compare112(xuu188, xuu189, xuu190, xuu191, False, fff, ffg) -> GT 25.69/9.77 new_esEs35(xuu31100001, xuu60001, ty_@0) -> new_esEs14(xuu31100001, xuu60001) 25.69/9.77 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Float, dhc) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.77 new_lt19(xuu470, xuu480, ty_Float) -> new_lt14(xuu470, xuu480) 25.69/9.77 new_esEs32(xuu31100000, xuu60000, ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.77 new_ltEs15(Nothing, Just(xuu480), ecd) -> True 25.69/9.77 new_esEs31(xuu471, xuu481, ty_Int) -> new_esEs19(xuu471, xuu481) 25.69/9.77 new_esEs4(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.77 new_primPlusNat0(Succ(xuu21200), Succ(xuu21100)) -> Succ(Succ(new_primPlusNat0(xuu21200, xuu21100))) 25.69/9.77 new_compare18(Left(xuu3110000), Left(xuu6000), bb, bc) -> new_compare27(xuu3110000, xuu6000, new_esEs4(xuu3110000, xuu6000, bb), bb, bc) 25.69/9.77 new_esEs7(xuu3110001, xuu6001, app(ty_[], ffd)) -> new_esEs12(xuu3110001, xuu6001, ffd) 25.69/9.77 new_compare27(xuu47, xuu48, True, edb, bg) -> EQ 25.69/9.77 new_primCompAux00(xuu37, xuu38, EQ, ty_Ordering) -> new_compare13(xuu37, xuu38) 25.69/9.77 new_esEs38(xuu101, xuu104, ty_Integer) -> new_esEs24(xuu101, xuu104) 25.69/9.77 new_lt4(xuu101, xuu104, dah) -> new_esEs26(new_compare8(xuu101, xuu104, dah), LT) 25.69/9.77 new_esEs13(xuu31100000, xuu60000, ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.77 new_lt23(xuu102, xuu105, ty_Float) -> new_lt14(xuu102, xuu105) 25.69/9.77 new_esEs36(xuu31100002, xuu60002, app(app(ty_Either, fdd), fde)) -> new_esEs21(xuu31100002, xuu60002, fdd, fde) 25.69/9.77 new_esEs13(xuu31100000, xuu60000, app(app(ty_Either, cha), chb)) -> new_esEs21(xuu31100000, xuu60000, cha, chb) 25.69/9.77 new_ltEs16(False, False) -> True 25.69/9.77 new_ltEs21(xuu76, xuu77, app(ty_[], cca)) -> new_ltEs4(xuu76, xuu77, cca) 25.69/9.77 new_esEs13(xuu31100000, xuu60000, app(ty_Maybe, che)) -> new_esEs25(xuu31100000, xuu60000, che) 25.69/9.77 new_lt20(xuu471, xuu481, app(ty_Maybe, ge)) -> new_lt15(xuu471, xuu481, ge) 25.69/9.77 new_esEs11(xuu3110001, xuu6001, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_esEs17(xuu3110001, xuu6001, ddb, ddc, ddd) 25.69/9.77 new_esEs32(xuu31100000, xuu60000, app(ty_Ratio, eeb)) -> new_esEs23(xuu31100000, xuu60000, eeb) 25.69/9.77 new_lt21(xuu114, xuu116, ty_Char) -> new_lt17(xuu114, xuu116) 25.69/9.77 new_esEs36(xuu31100002, xuu60002, app(ty_Maybe, fdh)) -> new_esEs25(xuu31100002, xuu60002, fdh) 25.69/9.77 new_esEs11(xuu3110001, xuu6001, ty_Bool) -> new_esEs20(xuu3110001, xuu6001) 25.69/9.77 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Ordering, dhc) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.77 new_esEs33(xuu31100001, xuu60001, ty_@0) -> new_esEs14(xuu31100001, xuu60001) 25.69/9.77 new_lt20(xuu471, xuu481, ty_Bool) -> new_lt16(xuu471, xuu481) 25.69/9.77 new_ltEs12(Right(xuu470), Right(xuu480), cg, ty_Ordering) -> new_ltEs14(xuu470, xuu480) 25.69/9.77 new_esEs34(xuu31100000, xuu60000, app(app(app(ty_@3, fae), faf), fag)) -> new_esEs17(xuu31100000, xuu60000, fae, faf, fag) 25.69/9.77 new_esEs13(xuu31100000, xuu60000, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.77 new_compare12(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, dbb, dbc, dbd) -> LT 25.69/9.77 new_esEs18(Float(xuu31100000, xuu31100001), Float(xuu60000, xuu60001)) -> new_esEs19(new_sr(xuu31100000, xuu60001), new_sr(xuu31100001, xuu60000)) 25.69/9.77 new_lt20(xuu471, xuu481, ty_Float) -> new_lt14(xuu471, xuu481) 25.69/9.77 new_esEs36(xuu31100002, xuu60002, ty_Ordering) -> new_esEs26(xuu31100002, xuu60002) 25.69/9.77 new_lt21(xuu114, xuu116, ty_Ordering) -> new_lt6(xuu114, xuu116) 25.69/9.77 new_ltEs12(Right(xuu470), Right(xuu480), cg, app(ty_[], df)) -> new_ltEs4(xuu470, xuu480, df) 25.69/9.77 new_ltEs16(True, True) -> True 25.69/9.77 new_esEs39(xuu102, xuu105, ty_Float) -> new_esEs18(xuu102, xuu105) 25.69/9.77 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Integer, dhc) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.77 new_ltEs11(xuu471, xuu481, app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs13(xuu471, xuu481, bch, bda, bdb) 25.69/9.77 new_ltEs11(xuu471, xuu481, app(app(ty_Either, bcf), bcg)) -> new_ltEs12(xuu471, xuu481, bcf, bcg) 25.69/9.77 new_esEs35(xuu31100001, xuu60001, ty_Char) -> new_esEs15(xuu31100001, xuu60001) 25.69/9.77 new_esEs11(xuu3110001, xuu6001, ty_Char) -> new_esEs15(xuu3110001, xuu6001) 25.69/9.77 new_esEs5(xuu3110000, xuu6000, app(ty_[], eae)) -> new_esEs12(xuu3110000, xuu6000, eae) 25.69/9.77 new_esEs36(xuu31100002, xuu60002, ty_Integer) -> new_esEs24(xuu31100002, xuu60002) 25.69/9.77 new_esEs17(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), dgg, dgh, dha) -> new_asAs(new_esEs34(xuu31100000, xuu60000, dgg), new_asAs(new_esEs35(xuu31100001, xuu60001, dgh), new_esEs36(xuu31100002, xuu60002, dha))) 25.69/9.77 new_esEs20(True, True) -> True 25.69/9.77 new_lt21(xuu114, xuu116, ty_Float) -> new_lt14(xuu114, xuu116) 25.69/9.77 new_esEs34(xuu31100000, xuu60000, ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.77 new_primCmpNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primCmpNat0(xuu31100000, xuu60000) 25.69/9.77 new_esEs25(Just(xuu31100000), Just(xuu60000), app(ty_[], fgh)) -> new_esEs12(xuu31100000, xuu60000, fgh) 25.69/9.77 new_esEs38(xuu101, xuu104, ty_Ordering) -> new_esEs26(xuu101, xuu104) 25.69/9.77 new_ltEs15(Just(xuu470), Just(xuu480), ty_Int) -> new_ltEs9(xuu470, xuu480) 25.69/9.77 new_compare5(xuu311000, xuu600, app(ty_Maybe, bhh)) -> new_compare16(xuu311000, xuu600, bhh) 25.69/9.77 new_esEs34(xuu31100000, xuu60000, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.77 new_lt22(xuu101, xuu104, ty_Float) -> new_lt14(xuu101, xuu104) 25.69/9.77 new_esEs11(xuu3110001, xuu6001, app(app(ty_Either, dde), ddf)) -> new_esEs21(xuu3110001, xuu6001, dde, ddf) 25.69/9.77 new_esEs11(xuu3110001, xuu6001, ty_Int) -> new_esEs19(xuu3110001, xuu6001) 25.69/9.77 new_esEs10(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.77 new_ltEs11(xuu471, xuu481, ty_Ordering) -> new_ltEs14(xuu471, xuu481) 25.69/9.77 new_esEs29(xuu470, xuu480, app(ty_Ratio, dfd)) -> new_esEs23(xuu470, xuu480, dfd) 25.69/9.77 new_esEs34(xuu31100000, xuu60000, app(app(ty_Either, fah), fba)) -> new_esEs21(xuu31100000, xuu60000, fah, fba) 25.69/9.77 new_esEs33(xuu31100001, xuu60001, ty_Char) -> new_esEs15(xuu31100001, xuu60001) 25.69/9.77 new_lt23(xuu102, xuu105, app(app(ty_Either, bfd), bfe)) -> new_lt9(xuu102, xuu105, bfd, bfe) 25.69/9.77 new_compare12(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, False, dbb, dbc, dbd) -> GT 25.69/9.77 new_ltEs11(xuu471, xuu481, ty_Integer) -> new_ltEs7(xuu471, xuu481) 25.69/9.77 new_ltEs20(xuu54, xuu55, app(ty_[], cfg)) -> new_ltEs4(xuu54, xuu55, cfg) 25.69/9.77 new_compare13(LT, GT) -> LT 25.69/9.77 new_esEs37(xuu114, xuu116, ty_Ordering) -> new_esEs26(xuu114, xuu116) 25.69/9.77 new_esEs33(xuu31100001, xuu60001, ty_Int) -> new_esEs19(xuu31100001, xuu60001) 25.69/9.77 new_lt19(xuu470, xuu480, ty_Ordering) -> new_lt6(xuu470, xuu480) 25.69/9.77 new_esEs37(xuu114, xuu116, app(ty_Maybe, cdd)) -> new_esEs25(xuu114, xuu116, cdd) 25.69/9.77 new_esEs5(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.77 new_esEs15(Char(xuu31100000), Char(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 25.69/9.77 new_esEs36(xuu31100002, xuu60002, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs17(xuu31100002, xuu60002, fda, fdb, fdc) 25.69/9.77 new_ltEs23(xuu115, xuu117, ty_Double) -> new_ltEs6(xuu115, xuu117) 25.69/9.77 new_ltEs12(Right(xuu470), Right(xuu480), cg, ty_Bool) -> new_ltEs16(xuu470, xuu480) 25.69/9.77 new_esEs30(xuu470, xuu480, app(ty_Ratio, dfh)) -> new_esEs23(xuu470, xuu480, dfh) 25.69/9.77 new_esEs38(xuu101, xuu104, app(ty_Maybe, beh)) -> new_esEs25(xuu101, xuu104, beh) 25.69/9.77 new_esEs13(xuu31100000, xuu60000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs17(xuu31100000, xuu60000, cgf, cgg, cgh) 25.69/9.77 new_ltEs12(Right(xuu470), Right(xuu480), cg, ty_Float) -> new_ltEs5(xuu470, xuu480) 25.69/9.77 new_ltEs19(xuu472, xuu482, app(ty_[], he)) -> new_ltEs4(xuu472, xuu482, he) 25.69/9.77 new_ltEs14(LT, LT) -> True 25.69/9.77 new_lt22(xuu101, xuu104, ty_@0) -> new_lt18(xuu101, xuu104) 25.69/9.77 new_lt20(xuu471, xuu481, ty_Ordering) -> new_lt6(xuu471, xuu481) 25.69/9.77 new_compare210(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, bee, bef) -> new_compare11(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, new_lt22(xuu101, xuu104, bfc), new_asAs(new_esEs38(xuu101, xuu104, bfc), new_pePe(new_lt23(xuu102, xuu105, bee), new_asAs(new_esEs39(xuu102, xuu105, bee), new_ltEs24(xuu103, xuu106, bef)))), bfc, bee, bef) 25.69/9.77 new_esEs6(xuu3110000, xuu6000, app(ty_[], daf)) -> new_esEs12(xuu3110000, xuu6000, daf) 25.69/9.77 new_esEs35(xuu31100001, xuu60001, app(app(ty_Either, fcb), fcc)) -> new_esEs21(xuu31100001, xuu60001, fcb, fcc) 25.69/9.77 new_esEs37(xuu114, xuu116, ty_Integer) -> new_esEs24(xuu114, xuu116) 25.69/9.77 new_ltEs12(Left(xuu470), Left(xuu480), app(app(app(ty_@3, bh), ca), cb), bf) -> new_ltEs13(xuu470, xuu480, bh, ca, cb) 25.69/9.77 new_esEs10(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.77 new_lt19(xuu470, xuu480, ty_Char) -> new_lt17(xuu470, xuu480) 25.69/9.77 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.77 new_ltEs16(False, True) -> True 25.69/9.77 new_primCompAux1(xuu311000, xuu600, xuu311001, xuu601, bhg) -> new_primCompAux00(xuu311001, xuu601, new_compare5(xuu311000, xuu600, bhg), app(ty_[], bhg)) 25.69/9.77 new_ltEs23(xuu115, xuu117, app(app(ty_@2, ceg), ceh)) -> new_ltEs10(xuu115, xuu117, ceg, ceh) 25.69/9.77 new_compare14(Integer(xuu3110000), Integer(xuu6000)) -> new_primCmpInt(xuu3110000, xuu6000) 25.69/9.77 new_ltEs23(xuu115, xuu117, app(app(ty_Either, cdh), cea)) -> new_ltEs12(xuu115, xuu117, cdh, cea) 25.69/9.77 new_lt23(xuu102, xuu105, ty_@0) -> new_lt18(xuu102, xuu105) 25.69/9.77 new_primCmpInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> LT 25.69/9.77 new_esEs29(xuu470, xuu480, app(ty_[], bca)) -> new_esEs12(xuu470, xuu480, bca) 25.69/9.77 new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_Either, cac), cad)) -> new_compare18(xuu37, xuu38, cac, cad) 25.69/9.77 new_esEs33(xuu31100001, xuu60001, ty_Bool) -> new_esEs20(xuu31100001, xuu60001) 25.69/9.77 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.77 new_esEs6(xuu3110000, xuu6000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs17(xuu3110000, xuu6000, chh, daa, dab) 25.69/9.77 new_esEs5(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.77 new_esEs30(xuu470, xuu480, ty_Int) -> new_esEs19(xuu470, xuu480) 25.69/9.77 new_compare13(EQ, GT) -> LT 25.69/9.77 new_compare24(xuu114, xuu115, xuu116, xuu117, False, cdg, ccg) -> new_compare111(xuu114, xuu115, xuu116, xuu117, new_lt21(xuu114, xuu116, cdg), new_asAs(new_esEs37(xuu114, xuu116, cdg), new_ltEs23(xuu115, xuu117, ccg)), cdg, ccg) 25.69/9.77 new_ltEs22(xuu47, xuu48, ty_Bool) -> new_ltEs16(xuu47, xuu48) 25.69/9.77 new_esEs35(xuu31100001, xuu60001, ty_Ordering) -> new_esEs26(xuu31100001, xuu60001) 25.69/9.77 new_ltEs12(Right(xuu470), Right(xuu480), cg, ty_Int) -> new_ltEs9(xuu470, xuu480) 25.69/9.77 new_esEs8(xuu3110002, xuu6002, app(ty_[], ecb)) -> new_esEs12(xuu3110002, xuu6002, ecb) 25.69/9.77 new_esEs12(:(xuu31100000, xuu31100001), [], cgc) -> False 25.69/9.77 new_esEs12([], :(xuu60000, xuu60001), cgc) -> False 25.69/9.77 new_primCmpInt(Pos(Zero), Neg(Succ(xuu60000))) -> GT 25.69/9.77 new_ltEs15(Just(xuu470), Just(xuu480), app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs13(xuu470, xuu480, bad, bae, baf) 25.69/9.77 new_esEs10(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.77 new_compare5(xuu311000, xuu600, ty_Int) -> new_compare15(xuu311000, xuu600) 25.69/9.77 new_compare111(xuu188, xuu189, xuu190, xuu191, False, xuu193, fff, ffg) -> new_compare112(xuu188, xuu189, xuu190, xuu191, xuu193, fff, ffg) 25.69/9.77 new_compare29(True, True) -> EQ 25.69/9.77 new_esEs33(xuu31100001, xuu60001, ty_Float) -> new_esEs18(xuu31100001, xuu60001) 25.69/9.77 new_ltEs21(xuu76, xuu77, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs13(xuu76, xuu77, cbf, cbg, cbh) 25.69/9.77 new_esEs37(xuu114, xuu116, app(app(ty_Either, cce), ccf)) -> new_esEs21(xuu114, xuu116, cce, ccf) 25.69/9.77 new_primCmpInt(Neg(Succ(xuu31100000)), Neg(xuu6000)) -> new_primCmpNat0(xuu6000, Succ(xuu31100000)) 25.69/9.77 new_esEs36(xuu31100002, xuu60002, ty_Double) -> new_esEs22(xuu31100002, xuu60002) 25.69/9.77 new_ltEs20(xuu54, xuu55, ty_@0) -> new_ltEs18(xuu54, xuu55) 25.69/9.77 new_esEs33(xuu31100001, xuu60001, app(app(ty_@2, eee), eef)) -> new_esEs16(xuu31100001, xuu60001, eee, eef) 25.69/9.77 new_ltEs22(xuu47, xuu48, ty_Integer) -> new_ltEs7(xuu47, xuu48) 25.69/9.77 new_esEs9(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.77 new_esEs5(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.77 new_primEqInt(Pos(Succ(xuu311000000)), Pos(Zero)) -> False 25.69/9.77 new_primEqInt(Pos(Zero), Pos(Succ(xuu600000))) -> False 25.69/9.77 new_esEs7(xuu3110001, xuu6001, ty_Int) -> new_esEs19(xuu3110001, xuu6001) 25.69/9.77 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.77 new_ltEs11(xuu471, xuu481, ty_Double) -> new_ltEs6(xuu471, xuu481) 25.69/9.77 new_lt21(xuu114, xuu116, app(app(ty_@2, cde), cdf)) -> new_lt5(xuu114, xuu116, cde, cdf) 25.69/9.77 new_ltEs17(xuu47, xuu48) -> new_fsEs(new_compare30(xuu47, xuu48)) 25.69/9.77 new_ltEs24(xuu103, xuu106, ty_Float) -> new_ltEs5(xuu103, xuu106) 25.69/9.77 new_primCompAux00(xuu37, xuu38, EQ, app(ty_[], cah)) -> new_compare6(xuu37, xuu38, cah) 25.69/9.77 new_lt23(xuu102, xuu105, app(ty_Ratio, fhd)) -> new_lt4(xuu102, xuu105, fhd) 25.69/9.77 new_esEs37(xuu114, xuu116, app(ty_Ratio, fea)) -> new_esEs23(xuu114, xuu116, fea) 25.69/9.77 new_compare6(:(xuu3110000, xuu3110001), [], bhf) -> GT 25.69/9.77 new_esEs37(xuu114, xuu116, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs17(xuu114, xuu116, cch, cda, cdb) 25.69/9.77 new_esEs39(xuu102, xuu105, app(ty_Maybe, bgb)) -> new_esEs25(xuu102, xuu105, bgb) 25.69/9.77 new_ltEs8(xuu47, xuu48, dbe) -> new_fsEs(new_compare8(xuu47, xuu48, dbe)) 25.69/9.77 new_lt21(xuu114, xuu116, app(app(ty_Either, cce), ccf)) -> new_lt9(xuu114, xuu116, cce, ccf) 25.69/9.77 new_ltEs20(xuu54, xuu55, ty_Ordering) -> new_ltEs14(xuu54, xuu55) 25.69/9.77 new_ltEs20(xuu54, xuu55, app(app(ty_@2, cga), cgb)) -> new_ltEs10(xuu54, xuu55, cga, cgb) 25.69/9.77 new_esEs30(xuu470, xuu480, ty_Ordering) -> new_esEs26(xuu470, xuu480) 25.69/9.77 new_primCmpNat0(Zero, Zero) -> EQ 25.69/9.77 new_esEs35(xuu31100001, xuu60001, ty_Int) -> new_esEs19(xuu31100001, xuu60001) 25.69/9.77 new_ltEs15(Just(xuu470), Just(xuu480), ty_Double) -> new_ltEs6(xuu470, xuu480) 25.69/9.77 new_ltEs12(Right(xuu470), Right(xuu480), cg, ty_Integer) -> new_ltEs7(xuu470, xuu480) 25.69/9.77 new_ltEs22(xuu47, xuu48, ty_Int) -> new_ltEs9(xuu47, xuu48) 25.69/9.77 new_esEs21(Left(xuu31100000), Left(xuu60000), app(app(app(ty_@3, ega), egb), egc), dhc) -> new_esEs17(xuu31100000, xuu60000, ega, egb, egc) 25.69/9.77 new_ltEs21(xuu76, xuu77, ty_Double) -> new_ltEs6(xuu76, xuu77) 25.69/9.77 new_lt23(xuu102, xuu105, app(ty_[], bga)) -> new_lt7(xuu102, xuu105, bga) 25.69/9.77 new_compare13(LT, EQ) -> LT 25.69/9.77 new_ltEs19(xuu472, xuu482, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs13(xuu472, xuu482, hb, hc, hd) 25.69/9.77 new_esEs5(xuu3110000, xuu6000, app(app(ty_@2, dhe), dhf)) -> new_esEs16(xuu3110000, xuu6000, dhe, dhf) 25.69/9.77 new_esEs36(xuu31100002, xuu60002, ty_Char) -> new_esEs15(xuu31100002, xuu60002) 25.69/9.77 new_esEs38(xuu101, xuu104, ty_Float) -> new_esEs18(xuu101, xuu104) 25.69/9.77 new_esEs11(xuu3110001, xuu6001, ty_Integer) -> new_esEs24(xuu3110001, xuu6001) 25.69/9.77 new_lt19(xuu470, xuu480, ty_Double) -> new_lt12(xuu470, xuu480) 25.69/9.77 new_esEs4(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.77 new_esEs34(xuu31100000, xuu60000, app(ty_Maybe, fbd)) -> new_esEs25(xuu31100000, xuu60000, fbd) 25.69/9.77 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.77 new_esEs5(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.77 new_lt12(xuu101, xuu104) -> new_esEs26(new_compare10(xuu101, xuu104), LT) 25.69/9.77 new_ltEs20(xuu54, xuu55, app(ty_Ratio, dgd)) -> new_ltEs8(xuu54, xuu55, dgd) 25.69/9.77 new_lt22(xuu101, xuu104, ty_Char) -> new_lt17(xuu101, xuu104) 25.69/9.77 new_esEs20(False, True) -> False 25.69/9.77 new_esEs20(True, False) -> False 25.69/9.77 new_ltEs13(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, ed, ee) -> new_pePe(new_lt19(xuu470, xuu480, ff), new_asAs(new_esEs30(xuu470, xuu480, ff), new_pePe(new_lt20(xuu471, xuu481, ed), new_asAs(new_esEs31(xuu471, xuu481, ed), new_ltEs19(xuu472, xuu482, ee))))) 25.69/9.77 new_primCompAux00(xuu37, xuu38, EQ, ty_Int) -> new_compare15(xuu37, xuu38) 25.69/9.77 new_lt20(xuu471, xuu481, ty_Integer) -> new_lt13(xuu471, xuu481) 25.69/9.77 new_esEs32(xuu31100000, xuu60000, ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.77 new_lt19(xuu470, xuu480, app(app(ty_@2, fc), fd)) -> new_lt5(xuu470, xuu480, fc, fd) 25.69/9.77 new_esEs13(xuu31100000, xuu60000, ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.77 new_esEs37(xuu114, xuu116, ty_@0) -> new_esEs14(xuu114, xuu116) 25.69/9.77 new_ltEs14(EQ, LT) -> False 25.69/9.77 new_compare110(xuu133, xuu134, True, fhb, fhc) -> LT 25.69/9.77 new_esEs39(xuu102, xuu105, app(ty_[], bga)) -> new_esEs12(xuu102, xuu105, bga) 25.69/9.77 new_ltEs24(xuu103, xuu106, ty_Char) -> new_ltEs17(xuu103, xuu106) 25.69/9.77 new_esEs11(xuu3110001, xuu6001, ty_Double) -> new_esEs22(xuu3110001, xuu6001) 25.69/9.77 new_esEs29(xuu470, xuu480, app(ty_Maybe, bcb)) -> new_esEs25(xuu470, xuu480, bcb) 25.69/9.77 new_esEs25(Just(xuu31100000), Just(xuu60000), app(ty_Maybe, fha)) -> new_esEs25(xuu31100000, xuu60000, fha) 25.69/9.77 new_compare5(xuu311000, xuu600, app(app(ty_Either, bb), bc)) -> new_compare18(xuu311000, xuu600, bb, bc) 25.69/9.77 new_esEs13(xuu31100000, xuu60000, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.77 new_esEs19(xuu3110000, xuu6000) -> new_primEqInt(xuu3110000, xuu6000) 25.69/9.77 new_compare8(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ty_Integer) -> new_compare14(new_sr0(xuu3110000, xuu6001), new_sr0(xuu6000, xuu3110001)) 25.69/9.77 new_esEs32(xuu31100000, xuu60000, app(app(ty_Either, edh), eea)) -> new_esEs21(xuu31100000, xuu60000, edh, eea) 25.69/9.77 new_esEs36(xuu31100002, xuu60002, app(ty_[], fdg)) -> new_esEs12(xuu31100002, xuu60002, fdg) 25.69/9.77 new_ltEs23(xuu115, xuu117, app(ty_[], cee)) -> new_ltEs4(xuu115, xuu117, cee) 25.69/9.77 new_primCmpNat0(Succ(xuu31100000), Zero) -> GT 25.69/9.77 new_ltEs19(xuu472, xuu482, ty_Double) -> new_ltEs6(xuu472, xuu482) 25.69/9.77 new_compare16(Just(xuu3110000), Nothing, bhh) -> GT 25.69/9.77 new_esEs31(xuu471, xuu481, ty_Integer) -> new_esEs24(xuu471, xuu481) 25.69/9.77 new_pePe(False, xuu210) -> xuu210 25.69/9.77 new_esEs20(False, False) -> True 25.69/9.77 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.77 new_ltEs10(@2(xuu470, xuu471), @2(xuu480, xuu481), bce, bbe) -> new_pePe(new_lt8(xuu470, xuu480, bce), new_asAs(new_esEs29(xuu470, xuu480, bce), new_ltEs11(xuu471, xuu481, bbe))) 25.69/9.77 new_esEs11(xuu3110001, xuu6001, app(app(ty_@2, dch), dda)) -> new_esEs16(xuu3110001, xuu6001, dch, dda) 25.69/9.77 new_compare28(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), beb, bec, bed) -> new_compare210(xuu3110000, xuu3110001, xuu3110002, xuu6000, xuu6001, xuu6002, new_asAs(new_esEs6(xuu3110000, xuu6000, beb), new_asAs(new_esEs7(xuu3110001, xuu6001, bec), new_esEs8(xuu3110002, xuu6002, bed))), beb, bec, bed) 25.69/9.77 new_compare5(xuu311000, xuu600, ty_Ordering) -> new_compare13(xuu311000, xuu600) 25.69/9.77 new_lt22(xuu101, xuu104, app(ty_Maybe, beh)) -> new_lt15(xuu101, xuu104, beh) 25.69/9.77 new_esEs11(xuu3110001, xuu6001, ty_Float) -> new_esEs18(xuu3110001, xuu6001) 25.69/9.77 new_compare11(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, xuu180, dbb, dbc, dbd) -> new_compare12(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, dbb, dbc, dbd) 25.69/9.77 new_esEs34(xuu31100000, xuu60000, app(ty_Ratio, fbb)) -> new_esEs23(xuu31100000, xuu60000, fbb) 25.69/9.77 new_compare6(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhf) -> new_primCompAux1(xuu3110000, xuu6000, xuu3110001, xuu6001, bhf) 25.69/9.77 new_esEs32(xuu31100000, xuu60000, app(app(app(ty_@3, ede), edf), edg)) -> new_esEs17(xuu31100000, xuu60000, ede, edf, edg) 25.69/9.77 new_compare16(Nothing, Nothing, bhh) -> EQ 25.69/9.77 new_lt21(xuu114, xuu116, ty_Double) -> new_lt12(xuu114, xuu116) 25.69/9.77 new_primEqInt(Pos(Zero), Neg(Succ(xuu600000))) -> False 25.69/9.77 new_primEqInt(Neg(Zero), Pos(Succ(xuu600000))) -> False 25.69/9.77 new_esEs5(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.77 new_esEs7(xuu3110001, xuu6001, ty_Ordering) -> new_esEs26(xuu3110001, xuu6001) 25.69/9.77 new_compare19(xuu154, xuu155, True, fec) -> LT 25.69/9.77 new_lt23(xuu102, xuu105, ty_Ordering) -> new_lt6(xuu102, xuu105) 25.69/9.77 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, app(ty_Ratio, ehh)) -> new_esEs23(xuu31100000, xuu60000, ehh) 25.69/9.77 new_esEs4(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.77 new_esEs34(xuu31100000, xuu60000, app(ty_[], fbc)) -> new_esEs12(xuu31100000, xuu60000, fbc) 25.69/9.77 new_esEs11(xuu3110001, xuu6001, app(ty_[], ddh)) -> new_esEs12(xuu3110001, xuu6001, ddh) 25.69/9.77 new_compare111(xuu188, xuu189, xuu190, xuu191, True, xuu193, fff, ffg) -> new_compare112(xuu188, xuu189, xuu190, xuu191, True, fff, ffg) 25.69/9.77 new_ltEs12(Left(xuu470), Left(xuu480), app(app(ty_Either, bd), be), bf) -> new_ltEs12(xuu470, xuu480, bd, be) 25.69/9.77 new_ltEs15(Nothing, Nothing, ecd) -> True 25.69/9.77 new_primCompAux00(xuu37, xuu38, EQ, ty_@0) -> new_compare31(xuu37, xuu38) 25.69/9.77 new_ltEs14(GT, EQ) -> False 25.69/9.77 new_lt22(xuu101, xuu104, app(app(app(ty_@3, bdg), bdh), bea)) -> new_lt11(xuu101, xuu104, bdg, bdh, bea) 25.69/9.77 new_ltEs15(Just(xuu470), Nothing, ecd) -> False 25.69/9.77 new_esEs6(xuu3110000, xuu6000, app(ty_Maybe, dag)) -> new_esEs25(xuu3110000, xuu6000, dag) 25.69/9.77 new_lt22(xuu101, xuu104, ty_Bool) -> new_lt16(xuu101, xuu104) 25.69/9.77 new_ltEs12(Left(xuu470), Left(xuu480), ty_Integer, bf) -> new_ltEs7(xuu470, xuu480) 25.69/9.77 new_esEs36(xuu31100002, xuu60002, ty_Float) -> new_esEs18(xuu31100002, xuu60002) 25.69/9.77 new_esEs8(xuu3110002, xuu6002, ty_Double) -> new_esEs22(xuu3110002, xuu6002) 25.69/9.77 new_esEs29(xuu470, xuu480, ty_Double) -> new_esEs22(xuu470, xuu480) 25.69/9.77 new_esEs13(xuu31100000, xuu60000, ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.77 new_esEs4(xuu3110000, xuu6000, app(app(ty_Either, dhb), dhc)) -> new_esEs21(xuu3110000, xuu6000, dhb, dhc) 25.69/9.77 new_ltEs12(Left(xuu470), Left(xuu480), ty_Ordering, bf) -> new_ltEs14(xuu470, xuu480) 25.69/9.77 new_esEs9(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.77 new_esEs6(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.77 new_ltEs24(xuu103, xuu106, ty_Int) -> new_ltEs9(xuu103, xuu106) 25.69/9.77 new_esEs38(xuu101, xuu104, ty_Char) -> new_esEs15(xuu101, xuu104) 25.69/9.77 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.77 new_esEs31(xuu471, xuu481, app(ty_Maybe, ge)) -> new_esEs25(xuu471, xuu481, ge) 25.69/9.77 new_ltEs12(Right(xuu470), Right(xuu480), cg, app(app(ty_@2, dh), ea)) -> new_ltEs10(xuu470, xuu480, dh, ea) 25.69/9.77 new_ltEs21(xuu76, xuu77, app(ty_Maybe, ccb)) -> new_ltEs15(xuu76, xuu77, ccb) 25.69/9.77 new_esEs33(xuu31100001, xuu60001, ty_Integer) -> new_esEs24(xuu31100001, xuu60001) 25.69/9.77 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.77 new_lt19(xuu470, xuu480, app(app(ty_Either, eb), ec)) -> new_lt9(xuu470, xuu480, eb, ec) 25.69/9.77 new_ltEs19(xuu472, xuu482, ty_Char) -> new_ltEs17(xuu472, xuu482) 25.69/9.77 new_ltEs12(Left(xuu470), Left(xuu480), ty_Bool, bf) -> new_ltEs16(xuu470, xuu480) 25.69/9.77 new_esEs28(xuu31100001, xuu60001, ty_Int) -> new_esEs19(xuu31100001, xuu60001) 25.69/9.77 new_esEs26(GT, GT) -> True 25.69/9.77 new_lt8(xuu470, xuu480, ty_Double) -> new_lt12(xuu470, xuu480) 25.69/9.77 new_lt23(xuu102, xuu105, ty_Integer) -> new_lt13(xuu102, xuu105) 25.69/9.77 new_esEs38(xuu101, xuu104, ty_Bool) -> new_esEs20(xuu101, xuu104) 25.69/9.77 new_esEs8(xuu3110002, xuu6002, app(ty_Maybe, ecc)) -> new_esEs25(xuu3110002, xuu6002, ecc) 25.69/9.77 new_compare17(xuu140, xuu141, True, ech, eda) -> LT 25.69/9.77 new_compare5(xuu311000, xuu600, ty_@0) -> new_compare31(xuu311000, xuu600) 25.69/9.77 new_esEs31(xuu471, xuu481, app(app(ty_@2, gf), gg)) -> new_esEs16(xuu471, xuu481, gf, gg) 25.69/9.77 new_esEs6(xuu3110000, xuu6000, app(app(ty_Either, dac), dad)) -> new_esEs21(xuu3110000, xuu6000, dac, dad) 25.69/9.77 new_ltEs22(xuu47, xuu48, ty_Char) -> new_ltEs17(xuu47, xuu48) 25.69/9.77 new_esEs8(xuu3110002, xuu6002, ty_Integer) -> new_esEs24(xuu3110002, xuu6002) 25.69/9.77 new_compare18(Left(xuu3110000), Right(xuu6000), bb, bc) -> LT 25.69/9.77 new_compare8(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ty_Int) -> new_compare15(new_sr(xuu3110000, xuu6001), new_sr(xuu6000, xuu3110001)) 25.69/9.77 new_lt8(xuu470, xuu480, app(ty_Maybe, bcb)) -> new_lt15(xuu470, xuu480, bcb) 25.69/9.77 new_esEs30(xuu470, xuu480, ty_@0) -> new_esEs14(xuu470, xuu480) 25.69/9.77 new_compare5(xuu311000, xuu600, ty_Bool) -> new_compare29(xuu311000, xuu600) 25.69/9.77 new_lt22(xuu101, xuu104, ty_Integer) -> new_lt13(xuu101, xuu104) 25.69/9.77 new_esEs12(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), cgc) -> new_asAs(new_esEs13(xuu31100000, xuu60000, cgc), new_esEs12(xuu31100001, xuu60001, cgc)) 25.69/9.77 new_esEs4(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.77 new_esEs31(xuu471, xuu481, ty_Double) -> new_esEs22(xuu471, xuu481) 25.69/9.77 new_esEs7(xuu3110001, xuu6001, ty_Integer) -> new_esEs24(xuu3110001, xuu6001) 25.69/9.77 new_esEs29(xuu470, xuu480, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs17(xuu470, xuu480, bbf, bbg, bbh) 25.69/9.77 new_esEs38(xuu101, xuu104, ty_Int) -> new_esEs19(xuu101, xuu104) 25.69/9.77 new_primMulInt(Neg(xuu60000), Neg(xuu31100010)) -> Pos(new_primMulNat0(xuu60000, xuu31100010)) 25.69/9.77 new_primCmpInt(Pos(Zero), Pos(Succ(xuu60000))) -> new_primCmpNat0(Zero, Succ(xuu60000)) 25.69/9.77 new_ltEs20(xuu54, xuu55, ty_Bool) -> new_ltEs16(xuu54, xuu55) 25.69/9.77 new_ltEs23(xuu115, xuu117, ty_@0) -> new_ltEs18(xuu115, xuu117) 25.69/9.77 new_ltEs23(xuu115, xuu117, app(ty_Ratio, feb)) -> new_ltEs8(xuu115, xuu117, feb) 25.69/9.77 new_ltEs19(xuu472, xuu482, app(ty_Maybe, hf)) -> new_ltEs15(xuu472, xuu482, hf) 25.69/9.77 new_fsEs(xuu205) -> new_not(new_esEs26(xuu205, GT)) 25.69/9.77 new_ltEs21(xuu76, xuu77, ty_Char) -> new_ltEs17(xuu76, xuu77) 25.69/9.77 new_esEs35(xuu31100001, xuu60001, ty_Float) -> new_esEs18(xuu31100001, xuu60001) 25.69/9.77 new_ltEs15(Just(xuu470), Just(xuu480), app(ty_Maybe, bah)) -> new_ltEs15(xuu470, xuu480, bah) 25.69/9.77 new_esEs7(xuu3110001, xuu6001, app(app(ty_@2, fed), fee)) -> new_esEs16(xuu3110001, xuu6001, fed, fee) 25.69/9.77 new_ltEs15(Just(xuu470), Just(xuu480), ty_Float) -> new_ltEs5(xuu470, xuu480) 25.69/9.77 new_ltEs19(xuu472, xuu482, ty_Float) -> new_ltEs5(xuu472, xuu482) 25.69/9.77 new_esEs32(xuu31100000, xuu60000, ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.77 new_ltEs14(GT, LT) -> False 25.69/9.77 new_ltEs24(xuu103, xuu106, ty_Integer) -> new_ltEs7(xuu103, xuu106) 25.69/9.77 new_esEs7(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) 25.69/9.77 new_esEs38(xuu101, xuu104, ty_Double) -> new_esEs22(xuu101, xuu104) 25.69/9.77 new_esEs35(xuu31100001, xuu60001, app(app(ty_@2, fbe), fbf)) -> new_esEs16(xuu31100001, xuu60001, fbe, fbf) 25.69/9.77 new_ltEs23(xuu115, xuu117, app(app(app(ty_@3, ceb), cec), ced)) -> new_ltEs13(xuu115, xuu117, ceb, cec, ced) 25.69/9.77 new_lt8(xuu470, xuu480, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_lt11(xuu470, xuu480, bbf, bbg, bbh) 25.69/9.77 new_ltEs12(Right(xuu470), Right(xuu480), cg, app(app(ty_Either, da), db)) -> new_ltEs12(xuu470, xuu480, da, db) 25.69/9.77 new_primMulInt(Pos(xuu60000), Neg(xuu31100010)) -> Neg(new_primMulNat0(xuu60000, xuu31100010)) 25.69/9.77 new_primMulInt(Neg(xuu60000), Pos(xuu31100010)) -> Neg(new_primMulNat0(xuu60000, xuu31100010)) 25.69/9.77 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, app(ty_Maybe, fab)) -> new_esEs25(xuu31100000, xuu60000, fab) 25.69/9.77 new_ltEs12(Right(xuu470), Left(xuu480), cg, bf) -> False 25.69/9.77 new_ltEs19(xuu472, xuu482, ty_Int) -> new_ltEs9(xuu472, xuu482) 25.69/9.77 new_esEs8(xuu3110002, xuu6002, ty_Bool) -> new_esEs20(xuu3110002, xuu6002) 25.69/9.77 new_esEs30(xuu470, xuu480, ty_Integer) -> new_esEs24(xuu470, xuu480) 25.69/9.77 new_lt18(xuu101, xuu104) -> new_esEs26(new_compare31(xuu101, xuu104), LT) 25.69/9.77 new_esEs8(xuu3110002, xuu6002, app(app(app(ty_@3, ebd), ebe), ebf)) -> new_esEs17(xuu3110002, xuu6002, ebd, ebe, ebf) 25.69/9.77 new_esEs13(xuu31100000, xuu60000, ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.77 new_sr0(Integer(xuu60000), Integer(xuu31100010)) -> Integer(new_primMulInt(xuu60000, xuu31100010)) 25.69/9.77 new_esEs25(Just(xuu31100000), Just(xuu60000), app(ty_Ratio, fgg)) -> new_esEs23(xuu31100000, xuu60000, fgg) 25.69/9.77 new_esEs8(xuu3110002, xuu6002, app(ty_Ratio, eca)) -> new_esEs23(xuu3110002, xuu6002, eca) 25.69/9.77 new_lt20(xuu471, xuu481, app(ty_[], gd)) -> new_lt7(xuu471, xuu481, gd) 25.69/9.77 new_esEs10(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.77 new_lt19(xuu470, xuu480, app(ty_Ratio, dfh)) -> new_lt4(xuu470, xuu480, dfh) 25.69/9.77 new_esEs4(xuu3110000, xuu6000, app(ty_Ratio, dba)) -> new_esEs23(xuu3110000, xuu6000, dba) 25.69/9.77 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Double, dhc) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.78 new_compare10(Double(xuu3110000, Pos(xuu31100010)), Double(xuu6000, Pos(xuu60010))) -> new_compare15(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) 25.69/9.78 new_lt20(xuu471, xuu481, ty_Int) -> new_lt10(xuu471, xuu481) 25.69/9.78 new_ltEs21(xuu76, xuu77, app(app(ty_Either, cbd), cbe)) -> new_ltEs12(xuu76, xuu77, cbd, cbe) 25.69/9.78 new_lt22(xuu101, xuu104, ty_Double) -> new_lt12(xuu101, xuu104) 25.69/9.78 new_asAs(True, xuu149) -> xuu149 25.69/9.78 new_lt8(xuu470, xuu480, app(ty_Ratio, dfd)) -> new_lt4(xuu470, xuu480, dfd) 25.69/9.78 new_lt20(xuu471, xuu481, app(ty_Ratio, dga)) -> new_lt4(xuu471, xuu481, dga) 25.69/9.78 new_esEs4(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.78 new_ltEs22(xuu47, xuu48, ty_Ordering) -> new_ltEs14(xuu47, xuu48) 25.69/9.78 new_lt19(xuu470, xuu480, app(ty_[], fa)) -> new_lt7(xuu470, xuu480, fa) 25.69/9.78 new_esEs5(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.78 new_ltEs24(xuu103, xuu106, ty_Bool) -> new_ltEs16(xuu103, xuu106) 25.69/9.78 new_ltEs21(xuu76, xuu77, ty_Float) -> new_ltEs5(xuu76, xuu77) 25.69/9.78 new_esEs31(xuu471, xuu481, ty_Float) -> new_esEs18(xuu471, xuu481) 25.69/9.78 new_esEs10(xuu3110000, xuu6000, app(app(ty_@2, dbf), dbg)) -> new_esEs16(xuu3110000, xuu6000, dbf, dbg) 25.69/9.78 new_ltEs9(xuu47, xuu48) -> new_fsEs(new_compare15(xuu47, xuu48)) 25.69/9.78 new_compare16(Just(xuu3110000), Just(xuu6000), bhh) -> new_compare25(xuu3110000, xuu6000, new_esEs9(xuu3110000, xuu6000, bhh), bhh) 25.69/9.78 new_primPlusNat1(xuu222, xuu311000100) -> new_primPlusNat0(xuu222, Succ(xuu311000100)) 25.69/9.78 new_lt19(xuu470, xuu480, ty_Int) -> new_lt10(xuu470, xuu480) 25.69/9.78 new_ltEs15(Just(xuu470), Just(xuu480), ty_Char) -> new_ltEs17(xuu470, xuu480) 25.69/9.78 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, app(app(ty_Either, ehf), ehg)) -> new_esEs21(xuu31100000, xuu60000, ehf, ehg) 25.69/9.78 new_ltEs22(xuu47, xuu48, app(ty_Ratio, dbe)) -> new_ltEs8(xuu47, xuu48, dbe) 25.69/9.78 new_sr(xuu6000, xuu3110001) -> new_primMulInt(xuu6000, xuu3110001) 25.69/9.78 new_esEs8(xuu3110002, xuu6002, ty_Char) -> new_esEs15(xuu3110002, xuu6002) 25.69/9.78 new_esEs29(xuu470, xuu480, ty_Integer) -> new_esEs24(xuu470, xuu480) 25.69/9.78 new_ltEs11(xuu471, xuu481, app(ty_[], bdc)) -> new_ltEs4(xuu471, xuu481, bdc) 25.69/9.78 new_primMulNat0(Zero, Zero) -> Zero 25.69/9.78 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, app(ty_[], faa)) -> new_esEs12(xuu31100000, xuu60000, faa) 25.69/9.78 new_esEs21(Left(xuu31100000), Left(xuu60000), app(app(ty_Either, egd), ege), dhc) -> new_esEs21(xuu31100000, xuu60000, egd, ege) 25.69/9.78 new_ltEs20(xuu54, xuu55, ty_Integer) -> new_ltEs7(xuu54, xuu55) 25.69/9.78 new_lt10(xuu101, xuu104) -> new_esEs26(new_compare15(xuu101, xuu104), LT) 25.69/9.78 new_ltEs21(xuu76, xuu77, app(ty_Ratio, eah)) -> new_ltEs8(xuu76, xuu77, eah) 25.69/9.78 new_esEs4(xuu3110000, xuu6000, app(app(ty_@2, dge), dgf)) -> new_esEs16(xuu3110000, xuu6000, dge, dgf) 25.69/9.78 new_esEs7(xuu3110001, xuu6001, ty_Char) -> new_esEs15(xuu3110001, xuu6001) 25.69/9.78 new_esEs33(xuu31100001, xuu60001, ty_Double) -> new_esEs22(xuu31100001, xuu60001) 25.69/9.78 new_ltEs22(xuu47, xuu48, ty_Float) -> new_ltEs5(xuu47, xuu48) 25.69/9.78 new_ltEs15(Just(xuu470), Just(xuu480), app(app(ty_@2, bba), bbb)) -> new_ltEs10(xuu470, xuu480, bba, bbb) 25.69/9.78 new_ltEs21(xuu76, xuu77, ty_Ordering) -> new_ltEs14(xuu76, xuu77) 25.69/9.78 new_esEs21(Left(xuu31100000), Left(xuu60000), app(ty_[], egg), dhc) -> new_esEs12(xuu31100000, xuu60000, egg) 25.69/9.78 new_esEs28(xuu31100001, xuu60001, ty_Integer) -> new_esEs24(xuu31100001, xuu60001) 25.69/9.78 new_esEs39(xuu102, xuu105, app(app(ty_@2, bgc), bgd)) -> new_esEs16(xuu102, xuu105, bgc, bgd) 25.69/9.78 new_esEs25(Just(xuu31100000), Just(xuu60000), app(app(ty_@2, ffh), fga)) -> new_esEs16(xuu31100000, xuu60000, ffh, fga) 25.69/9.78 new_esEs39(xuu102, xuu105, app(ty_Ratio, fhd)) -> new_esEs23(xuu102, xuu105, fhd) 25.69/9.78 new_ltEs23(xuu115, xuu117, app(ty_Maybe, cef)) -> new_ltEs15(xuu115, xuu117, cef) 25.69/9.78 new_ltEs19(xuu472, xuu482, app(app(ty_Either, gh), ha)) -> new_ltEs12(xuu472, xuu482, gh, ha) 25.69/9.78 new_esEs7(xuu3110001, xuu6001, app(app(ty_Either, ffa), ffb)) -> new_esEs21(xuu3110001, xuu6001, ffa, ffb) 25.69/9.78 new_lt21(xuu114, xuu116, app(ty_Ratio, fea)) -> new_lt4(xuu114, xuu116, fea) 25.69/9.78 new_compare5(xuu311000, xuu600, ty_Double) -> new_compare10(xuu311000, xuu600) 25.69/9.78 new_esEs9(xuu3110000, xuu6000, app(app(app(ty_@3, ded), dee), def)) -> new_esEs17(xuu3110000, xuu6000, ded, dee, def) 25.69/9.78 new_lt17(xuu101, xuu104) -> new_esEs26(new_compare30(xuu101, xuu104), LT) 25.69/9.78 new_ltEs22(xuu47, xuu48, app(ty_Maybe, ecd)) -> new_ltEs15(xuu47, xuu48, ecd) 25.69/9.78 new_primCompAux00(xuu37, xuu38, EQ, app(app(app(ty_@3, cae), caf), cag)) -> new_compare28(xuu37, xuu38, cae, caf, cag) 25.69/9.78 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.78 new_primEqInt(Neg(Succ(xuu311000000)), Neg(Zero)) -> False 25.69/9.78 new_primEqInt(Neg(Zero), Neg(Succ(xuu600000))) -> False 25.69/9.78 new_esEs9(xuu3110000, xuu6000, app(ty_Ratio, dfa)) -> new_esEs23(xuu3110000, xuu6000, dfa) 25.69/9.78 new_ltEs20(xuu54, xuu55, app(app(ty_Either, cfb), cfc)) -> new_ltEs12(xuu54, xuu55, cfb, cfc) 25.69/9.78 new_esEs33(xuu31100001, xuu60001, app(ty_[], efe)) -> new_esEs12(xuu31100001, xuu60001, efe) 25.69/9.78 new_primEqInt(Pos(Succ(xuu311000000)), Pos(Succ(xuu600000))) -> new_primEqNat0(xuu311000000, xuu600000) 25.69/9.78 new_lt8(xuu470, xuu480, ty_Int) -> new_lt10(xuu470, xuu480) 25.69/9.78 new_primCompAux00(xuu37, xuu38, EQ, ty_Bool) -> new_compare29(xuu37, xuu38) 25.69/9.78 new_compare19(xuu154, xuu155, False, fec) -> GT 25.69/9.78 new_esEs8(xuu3110002, xuu6002, app(app(ty_Either, ebg), ebh)) -> new_esEs21(xuu3110002, xuu6002, ebg, ebh) 25.69/9.78 new_esEs34(xuu31100000, xuu60000, app(app(ty_@2, fac), fad)) -> new_esEs16(xuu31100000, xuu60000, fac, fad) 25.69/9.78 new_primEqInt(Pos(Succ(xuu311000000)), Neg(xuu60000)) -> False 25.69/9.78 new_primEqInt(Neg(Succ(xuu311000000)), Pos(xuu60000)) -> False 25.69/9.78 new_esEs34(xuu31100000, xuu60000, ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.78 new_primCmpInt(Neg(Zero), Neg(Succ(xuu60000))) -> new_primCmpNat0(Succ(xuu60000), Zero) 25.69/9.78 new_lt8(xuu470, xuu480, app(ty_[], bca)) -> new_lt7(xuu470, xuu480, bca) 25.69/9.78 new_esEs6(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.78 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.69/9.78 new_esEs16(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), dge, dgf) -> new_asAs(new_esEs32(xuu31100000, xuu60000, dge), new_esEs33(xuu31100001, xuu60001, dgf)) 25.69/9.78 new_ltEs15(Just(xuu470), Just(xuu480), ty_@0) -> new_ltEs18(xuu470, xuu480) 25.69/9.78 new_primCompAux00(xuu37, xuu38, LT, ecf) -> LT 25.69/9.78 new_esEs7(xuu3110001, xuu6001, ty_Bool) -> new_esEs20(xuu3110001, xuu6001) 25.69/9.78 new_esEs39(xuu102, xuu105, ty_Double) -> new_esEs22(xuu102, xuu105) 25.69/9.78 new_ltEs24(xuu103, xuu106, app(app(ty_Either, bge), bgf)) -> new_ltEs12(xuu103, xuu106, bge, bgf) 25.69/9.78 new_esEs7(xuu3110001, xuu6001, app(ty_Ratio, ffc)) -> new_esEs23(xuu3110001, xuu6001, ffc) 25.69/9.78 new_esEs37(xuu114, xuu116, ty_Double) -> new_esEs22(xuu114, xuu116) 25.69/9.78 new_ltEs19(xuu472, xuu482, app(ty_Ratio, dgb)) -> new_ltEs8(xuu472, xuu482, dgb) 25.69/9.78 new_esEs13(xuu31100000, xuu60000, app(app(ty_@2, cgd), cge)) -> new_esEs16(xuu31100000, xuu60000, cgd, cge) 25.69/9.78 new_not(False) -> True 25.69/9.78 new_ltEs22(xuu47, xuu48, app(app(ty_Either, cg), bf)) -> new_ltEs12(xuu47, xuu48, cg, bf) 25.69/9.78 new_ltEs24(xuu103, xuu106, app(app(app(ty_@3, bgg), bgh), bha)) -> new_ltEs13(xuu103, xuu106, bgg, bgh, bha) 25.69/9.78 new_esEs36(xuu31100002, xuu60002, app(app(ty_@2, fcg), fch)) -> new_esEs16(xuu31100002, xuu60002, fcg, fch) 25.69/9.78 new_esEs8(xuu3110002, xuu6002, ty_@0) -> new_esEs14(xuu3110002, xuu6002) 25.69/9.78 new_ltEs23(xuu115, xuu117, ty_Bool) -> new_ltEs16(xuu115, xuu117) 25.69/9.78 new_lt20(xuu471, xuu481, app(app(ty_@2, gf), gg)) -> new_lt5(xuu471, xuu481, gf, gg) 25.69/9.78 new_esEs9(xuu3110000, xuu6000, app(app(ty_Either, deg), deh)) -> new_esEs21(xuu3110000, xuu6000, deg, deh) 25.69/9.78 new_esEs38(xuu101, xuu104, app(app(ty_@2, bfa), bfb)) -> new_esEs16(xuu101, xuu104, bfa, bfb) 25.69/9.78 new_ltEs12(Right(xuu470), Right(xuu480), cg, ty_Double) -> new_ltEs6(xuu470, xuu480) 25.69/9.78 new_esEs5(xuu3110000, xuu6000, app(ty_Ratio, ead)) -> new_esEs23(xuu3110000, xuu6000, ead) 25.69/9.78 new_esEs35(xuu31100001, xuu60001, ty_Double) -> new_esEs22(xuu31100001, xuu60001) 25.69/9.78 new_ltEs12(Left(xuu470), Left(xuu480), app(ty_Maybe, cd), bf) -> new_ltEs15(xuu470, xuu480, cd) 25.69/9.78 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.69/9.78 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.69/9.78 new_esEs24(Integer(xuu31100000), Integer(xuu60000)) -> new_primEqInt(xuu31100000, xuu60000) 25.69/9.78 new_ltEs14(LT, EQ) -> True 25.69/9.78 new_ltEs22(xuu47, xuu48, app(app(app(ty_@3, ff), ed), ee)) -> new_ltEs13(xuu47, xuu48, ff, ed, ee) 25.69/9.78 new_lt8(xuu470, xuu480, app(app(ty_@2, bcc), bcd)) -> new_lt5(xuu470, xuu480, bcc, bcd) 25.69/9.78 new_esEs27(xuu31100000, xuu60000, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.78 new_esEs32(xuu31100000, xuu60000, app(ty_[], eec)) -> new_esEs12(xuu31100000, xuu60000, eec) 25.69/9.78 new_esEs31(xuu471, xuu481, app(ty_[], gd)) -> new_esEs12(xuu471, xuu481, gd) 25.69/9.78 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.69/9.78 new_esEs26(EQ, EQ) -> True 25.69/9.78 new_esEs30(xuu470, xuu480, ty_Float) -> new_esEs18(xuu470, xuu480) 25.69/9.78 new_esEs9(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.78 new_ltEs24(xuu103, xuu106, app(ty_Maybe, bhc)) -> new_ltEs15(xuu103, xuu106, bhc) 25.69/9.78 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, app(app(app(ty_@3, ehc), ehd), ehe)) -> new_esEs17(xuu31100000, xuu60000, ehc, ehd, ehe) 25.69/9.78 new_lt22(xuu101, xuu104, ty_Int) -> new_lt10(xuu101, xuu104) 25.69/9.78 new_primCompAux00(xuu37, xuu38, EQ, ty_Double) -> new_compare10(xuu37, xuu38) 25.69/9.78 new_lt23(xuu102, xuu105, app(app(ty_@2, bgc), bgd)) -> new_lt5(xuu102, xuu105, bgc, bgd) 25.69/9.78 new_compare31(@0, @0) -> EQ 25.69/9.78 new_esEs26(LT, LT) -> True 25.69/9.78 new_esEs9(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.78 new_compare30(Char(xuu3110000), Char(xuu6000)) -> new_primCmpNat0(xuu3110000, xuu6000) 25.69/9.78 new_esEs30(xuu470, xuu480, app(ty_[], fa)) -> new_esEs12(xuu470, xuu480, fa) 25.69/9.78 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.78 new_compare5(xuu311000, xuu600, app(ty_[], bhf)) -> new_compare6(xuu311000, xuu600, bhf) 25.69/9.78 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.78 new_ltEs12(Left(xuu470), Left(xuu480), ty_@0, bf) -> new_ltEs18(xuu470, xuu480) 25.69/9.78 new_esEs12([], [], cgc) -> True 25.69/9.78 new_ltEs21(xuu76, xuu77, ty_Int) -> new_ltEs9(xuu76, xuu77) 25.69/9.78 new_ltEs6(xuu47, xuu48) -> new_fsEs(new_compare10(xuu47, xuu48)) 25.69/9.78 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.69/9.78 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.69/9.78 new_esEs8(xuu3110002, xuu6002, ty_Int) -> new_esEs19(xuu3110002, xuu6002) 25.69/9.78 new_compare110(xuu133, xuu134, False, fhb, fhc) -> GT 25.69/9.78 new_esEs9(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.78 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.78 new_esEs25(Nothing, Nothing, dhd) -> True 25.69/9.78 new_primEqNat0(Zero, Zero) -> True 25.69/9.78 new_ltEs11(xuu471, xuu481, app(app(ty_@2, bde), bdf)) -> new_ltEs10(xuu471, xuu481, bde, bdf) 25.69/9.78 new_ltEs20(xuu54, xuu55, ty_Int) -> new_ltEs9(xuu54, xuu55) 25.69/9.78 new_lt11(xuu101, xuu104, bdg, bdh, bea) -> new_esEs26(new_compare28(xuu101, xuu104, bdg, bdh, bea), LT) 25.69/9.78 new_esEs25(Nothing, Just(xuu60000), dhd) -> False 25.69/9.78 new_esEs25(Just(xuu31100000), Nothing, dhd) -> False 25.69/9.78 new_compare16(Nothing, Just(xuu6000), bhh) -> LT 25.69/9.78 new_esEs37(xuu114, xuu116, app(app(ty_@2, cde), cdf)) -> new_esEs16(xuu114, xuu116, cde, cdf) 25.69/9.78 new_lt21(xuu114, xuu116, app(ty_[], cdc)) -> new_lt7(xuu114, xuu116, cdc) 25.69/9.78 new_ltEs15(Just(xuu470), Just(xuu480), app(ty_[], bag)) -> new_ltEs4(xuu470, xuu480, bag) 25.69/9.78 new_asAs(False, xuu149) -> False 25.69/9.78 new_lt22(xuu101, xuu104, app(app(ty_@2, bfa), bfb)) -> new_lt5(xuu101, xuu104, bfa, bfb) 25.69/9.78 new_ltEs12(Right(xuu470), Right(xuu480), cg, app(ty_Ratio, dfg)) -> new_ltEs8(xuu470, xuu480, dfg) 25.69/9.78 new_ltEs23(xuu115, xuu117, ty_Integer) -> new_ltEs7(xuu115, xuu117) 25.69/9.78 new_lt21(xuu114, xuu116, ty_Int) -> new_lt10(xuu114, xuu116) 25.69/9.78 new_esEs29(xuu470, xuu480, ty_Float) -> new_esEs18(xuu470, xuu480) 25.69/9.78 new_ltEs23(xuu115, xuu117, ty_Ordering) -> new_ltEs14(xuu115, xuu117) 25.69/9.78 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.78 new_esEs6(xuu3110000, xuu6000, app(ty_Ratio, dae)) -> new_esEs23(xuu3110000, xuu6000, dae) 25.69/9.78 25.69/9.78 The set Q consists of the following terms: 25.69/9.78 25.69/9.78 new_lt23(x0, x1, app(ty_[], x2)) 25.69/9.78 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 25.69/9.78 new_esEs32(x0, x1, ty_Char) 25.69/9.78 new_lt21(x0, x1, ty_Bool) 25.69/9.78 new_lt19(x0, x1, ty_Ordering) 25.69/9.78 new_primCmpNat0(Succ(x0), Succ(x1)) 25.69/9.78 new_esEs36(x0, x1, ty_@0) 25.69/9.78 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_esEs36(x0, x1, ty_Bool) 25.69/9.78 new_esEs10(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_lt20(x0, x1, ty_Integer) 25.69/9.78 new_lt22(x0, x1, ty_Char) 25.69/9.78 new_lt21(x0, x1, ty_@0) 25.69/9.78 new_lt19(x0, x1, ty_Double) 25.69/9.78 new_esEs35(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_esEs12(:(x0, x1), :(x2, x3), x4) 25.69/9.78 new_esEs33(x0, x1, ty_@0) 25.69/9.78 new_esEs5(x0, x1, ty_Int) 25.69/9.78 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_esEs31(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_ltEs23(x0, x1, ty_Double) 25.69/9.78 new_esEs37(x0, x1, ty_Ordering) 25.69/9.78 new_esEs21(Left(x0), Right(x1), x2, x3) 25.69/9.78 new_esEs21(Right(x0), Left(x1), x2, x3) 25.69/9.78 new_lt23(x0, x1, ty_Bool) 25.69/9.78 new_esEs32(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_compare5(x0, x1, ty_Integer) 25.69/9.78 new_lt21(x0, x1, ty_Integer) 25.69/9.78 new_primEqInt(Pos(Zero), Pos(Zero)) 25.69/9.78 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_primCompAux00(x0, x1, EQ, ty_Bool) 25.69/9.78 new_esEs33(x0, x1, ty_Bool) 25.69/9.78 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_compare16(Just(x0), Just(x1), x2) 25.69/9.78 new_ltEs24(x0, x1, ty_Float) 25.69/9.78 new_esEs6(x0, x1, ty_Float) 25.69/9.78 new_esEs20(False, True) 25.69/9.78 new_esEs20(True, False) 25.69/9.78 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs38(x0, x1, app(ty_[], x2)) 25.69/9.78 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs9(x0, x1, ty_Int) 25.69/9.78 new_asAs(False, x0) 25.69/9.78 new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.69/9.78 new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.69/9.78 new_esEs10(x0, x1, ty_Float) 25.69/9.78 new_primEqInt(Neg(Zero), Neg(Zero)) 25.69/9.78 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_ltEs23(x0, x1, ty_Ordering) 25.69/9.78 new_lt20(x0, x1, ty_@0) 25.69/9.78 new_esEs32(x0, x1, ty_Double) 25.69/9.78 new_esEs25(Just(x0), Just(x1), app(ty_[], x2)) 25.69/9.78 new_esEs13(x0, x1, app(ty_[], x2)) 25.69/9.78 new_lt23(x0, x1, ty_Integer) 25.69/9.78 new_ltEs11(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 25.69/9.78 new_esEs5(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_esEs33(x0, x1, ty_Integer) 25.69/9.78 new_ltEs11(x0, x1, ty_Double) 25.69/9.78 new_lt20(x0, x1, ty_Float) 25.69/9.78 new_lt22(x0, x1, ty_Double) 25.69/9.78 new_esEs31(x0, x1, ty_Float) 25.69/9.78 new_ltEs20(x0, x1, ty_Char) 25.69/9.78 new_ltEs19(x0, x1, app(ty_[], x2)) 25.69/9.78 new_esEs36(x0, x1, ty_Integer) 25.69/9.78 new_esEs34(x0, x1, app(ty_[], x2)) 25.69/9.78 new_lt22(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_lt19(x0, x1, ty_Char) 25.69/9.78 new_esEs5(x0, x1, ty_@0) 25.69/9.78 new_compare112(x0, x1, x2, x3, True, x4, x5) 25.69/9.78 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.69/9.78 new_esEs30(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_compare24(x0, x1, x2, x3, False, x4, x5) 25.69/9.78 new_primCompAux00(x0, x1, EQ, ty_Integer) 25.69/9.78 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs12([], [], x0) 25.69/9.78 new_ltEs6(x0, x1) 25.69/9.78 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_ltEs23(x0, x1, ty_Char) 25.69/9.78 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 25.69/9.78 new_compare29(False, False) 25.69/9.78 new_primEqInt(Pos(Zero), Neg(Zero)) 25.69/9.78 new_primEqInt(Neg(Zero), Pos(Zero)) 25.69/9.78 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_compare111(x0, x1, x2, x3, False, x4, x5, x6) 25.69/9.78 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_ltEs21(x0, x1, ty_Double) 25.69/9.78 new_esEs35(x0, x1, ty_Double) 25.69/9.78 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_ltEs11(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_ltEs21(x0, x1, ty_Char) 25.69/9.78 new_esEs35(x0, x1, ty_Char) 25.69/9.78 new_compare5(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_lt21(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.69/9.78 new_primEqNat0(Succ(x0), Succ(x1)) 25.69/9.78 new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.69/9.78 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_primMulInt(Neg(x0), Neg(x1)) 25.69/9.78 new_esEs39(x0, x1, ty_Ordering) 25.69/9.78 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_esEs30(x0, x1, app(ty_[], x2)) 25.69/9.78 new_primPlusNat0(Succ(x0), Succ(x1)) 25.69/9.78 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 25.69/9.78 new_ltEs11(x0, x1, ty_Char) 25.69/9.78 new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) 25.69/9.78 new_lt22(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 25.69/9.78 new_esEs29(x0, x1, ty_Float) 25.69/9.78 new_lt23(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs8(x0, x1, ty_Double) 25.69/9.78 new_esEs21(Right(x0), Right(x1), x2, ty_Integer) 25.69/9.78 new_esEs9(x0, x1, ty_Integer) 25.69/9.78 new_esEs29(x0, x1, ty_Ordering) 25.69/9.78 new_ltEs15(Just(x0), Just(x1), ty_Float) 25.69/9.78 new_lt23(x0, x1, ty_Float) 25.69/9.78 new_esEs34(x0, x1, ty_Integer) 25.69/9.78 new_lt12(x0, x1) 25.69/9.78 new_lt21(x0, x1, ty_Int) 25.69/9.78 new_ltEs19(x0, x1, ty_Char) 25.69/9.78 new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.69/9.78 new_esEs26(LT, EQ) 25.69/9.78 new_esEs26(EQ, LT) 25.69/9.78 new_esEs13(x0, x1, ty_Ordering) 25.69/9.78 new_esEs9(x0, x1, ty_@0) 25.69/9.78 new_ltEs21(x0, x1, ty_Ordering) 25.69/9.78 new_esEs25(Just(x0), Just(x1), ty_Double) 25.69/9.78 new_ltEs11(x0, x1, app(ty_[], x2)) 25.69/9.78 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_esEs23(:%(x0, x1), :%(x2, x3), x4) 25.69/9.78 new_primMulNat0(Succ(x0), Zero) 25.69/9.78 new_esEs8(x0, x1, ty_Ordering) 25.69/9.78 new_ltEs15(Nothing, Just(x0), x1) 25.69/9.78 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_lt20(x0, x1, ty_Int) 25.69/9.78 new_esEs5(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_esEs27(x0, x1, ty_Int) 25.69/9.78 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_ltEs24(x0, x1, ty_Int) 25.69/9.78 new_lt21(x0, x1, ty_Float) 25.69/9.78 new_ltEs16(True, False) 25.69/9.78 new_ltEs16(False, True) 25.69/9.78 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs29(x0, x1, ty_Char) 25.69/9.78 new_esEs10(x0, x1, app(ty_[], x2)) 25.69/9.78 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs21(Right(x0), Right(x1), x2, ty_Float) 25.69/9.78 new_compare5(x0, x1, ty_Float) 25.69/9.78 new_lt22(x0, x1, ty_Ordering) 25.69/9.78 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_primMulInt(Pos(x0), Neg(x1)) 25.69/9.78 new_primMulInt(Neg(x0), Pos(x1)) 25.69/9.78 new_compare5(x0, x1, ty_Bool) 25.69/9.78 new_esEs34(x0, x1, ty_Float) 25.69/9.78 new_ltEs24(x0, x1, ty_Integer) 25.69/9.78 new_esEs27(x0, x1, ty_Integer) 25.69/9.78 new_compare27(x0, x1, True, x2, x3) 25.69/9.78 new_esEs30(x0, x1, ty_Char) 25.69/9.78 new_primMulInt(Pos(x0), Pos(x1)) 25.69/9.78 new_esEs10(x0, x1, ty_@0) 25.69/9.78 new_esEs39(x0, x1, ty_Double) 25.69/9.78 new_esEs34(x0, x1, ty_Bool) 25.69/9.78 new_esEs21(Right(x0), Right(x1), x2, ty_Bool) 25.69/9.78 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_ltEs19(x0, x1, ty_Ordering) 25.69/9.78 new_primCompAux00(x0, x1, EQ, ty_Float) 25.69/9.78 new_compare5(x0, x1, ty_Int) 25.69/9.78 new_esEs21(Left(x0), Left(x1), ty_Integer, x2) 25.69/9.78 new_compare6(:(x0, x1), [], x2) 25.69/9.78 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.69/9.78 new_ltEs11(x0, x1, ty_Ordering) 25.69/9.78 new_esEs29(x0, x1, ty_Integer) 25.69/9.78 new_esEs21(Right(x0), Right(x1), x2, ty_Int) 25.69/9.78 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_primCmpNat0(Zero, Succ(x0)) 25.69/9.78 new_ltEs24(x0, x1, ty_Bool) 25.69/9.78 new_ltEs18(x0, x1) 25.69/9.78 new_esEs13(x0, x1, ty_Char) 25.69/9.78 new_lt20(x0, x1, ty_Bool) 25.69/9.78 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs10(x0, x1, ty_Double) 25.69/9.78 new_esEs15(Char(x0), Char(x1)) 25.69/9.78 new_esEs34(x0, x1, ty_Int) 25.69/9.78 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_esEs10(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_esEs26(EQ, EQ) 25.69/9.78 new_esEs37(x0, x1, ty_Double) 25.69/9.78 new_lt23(x0, x1, ty_Int) 25.69/9.78 new_primCompAux00(x0, x1, EQ, ty_Int) 25.69/9.78 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs33(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_esEs35(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_esEs8(x0, x1, ty_@0) 25.69/9.78 new_ltEs15(Just(x0), Just(x1), ty_Bool) 25.69/9.78 new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.69/9.78 new_esEs30(x0, x1, ty_Double) 25.69/9.78 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs29(x0, x1, ty_Bool) 25.69/9.78 new_lt15(x0, x1, x2) 25.69/9.78 new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.69/9.78 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_ltEs15(Just(x0), Just(x1), ty_Integer) 25.69/9.78 new_ltEs22(x0, x1, ty_@0) 25.69/9.78 new_esEs38(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_compare16(Just(x0), Nothing, x1) 25.69/9.78 new_lt21(x0, x1, app(ty_[], x2)) 25.69/9.78 new_compare13(GT, GT) 25.69/9.78 new_compare13(EQ, LT) 25.69/9.78 new_compare13(LT, EQ) 25.69/9.78 new_lt8(x0, x1, ty_Ordering) 25.69/9.78 new_primCmpNat0(Succ(x0), Zero) 25.69/9.78 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.69/9.78 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.69/9.78 new_ltEs15(Just(x0), Just(x1), ty_@0) 25.69/9.78 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.69/9.78 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.69/9.78 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 25.69/9.78 new_ltEs24(x0, x1, ty_Ordering) 25.69/9.78 new_primPlusNat0(Zero, Zero) 25.69/9.78 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 25.69/9.78 new_esEs6(x0, x1, ty_Ordering) 25.69/9.78 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 25.69/9.78 new_compare12(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 25.69/9.78 new_esEs7(x0, x1, ty_Ordering) 25.69/9.78 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.69/9.78 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_not(True) 25.69/9.78 new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.69/9.78 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_lt8(x0, x1, ty_Double) 25.69/9.78 new_ltEs4(x0, x1, x2) 25.69/9.78 new_esEs29(x0, x1, app(ty_[], x2)) 25.69/9.78 new_esEs32(x0, x1, ty_Float) 25.69/9.78 new_ltEs11(x0, x1, ty_@0) 25.69/9.78 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 25.69/9.78 new_esEs37(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_ltEs17(x0, x1) 25.69/9.78 new_compare19(x0, x1, True, x2) 25.69/9.78 new_ltEs15(Just(x0), Just(x1), ty_Char) 25.69/9.78 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_esEs6(x0, x1, ty_Double) 25.69/9.78 new_esEs31(x0, x1, ty_Double) 25.69/9.78 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 25.69/9.78 new_esEs10(x0, x1, ty_Ordering) 25.69/9.78 new_esEs11(x0, x1, ty_@0) 25.69/9.78 new_esEs35(x0, x1, ty_Float) 25.69/9.78 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_esEs8(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_esEs11(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_lt5(x0, x1, x2, x3) 25.69/9.78 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_compare6(:(x0, x1), :(x2, x3), x4) 25.69/9.78 new_esEs21(Left(x0), Left(x1), ty_@0, x2) 25.69/9.78 new_ltEs21(x0, x1, app(ty_[], x2)) 25.69/9.78 new_esEs4(x0, x1, ty_Ordering) 25.69/9.78 new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.69/9.78 new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.69/9.78 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_compare25(x0, x1, True, x2) 25.69/9.78 new_esEs12(:(x0, x1), [], x2) 25.69/9.78 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 25.69/9.78 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_lt19(x0, x1, ty_Float) 25.69/9.78 new_esEs5(x0, x1, ty_Float) 25.69/9.78 new_esEs30(x0, x1, ty_Ordering) 25.69/9.78 new_lt20(x0, x1, app(ty_[], x2)) 25.69/9.78 new_esEs5(x0, x1, ty_Integer) 25.69/9.78 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_esEs36(x0, x1, ty_Float) 25.69/9.78 new_lt7(x0, x1, x2) 25.69/9.78 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_esEs5(x0, x1, app(ty_[], x2)) 25.69/9.78 new_lt10(x0, x1) 25.69/9.78 new_sr(x0, x1) 25.69/9.78 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_lt8(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_ltEs14(GT, GT) 25.69/9.78 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_esEs20(True, True) 25.69/9.78 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 25.69/9.78 new_compare5(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_lt4(x0, x1, x2) 25.69/9.78 new_esEs26(EQ, GT) 25.69/9.78 new_esEs26(GT, EQ) 25.69/9.78 new_lt17(x0, x1) 25.69/9.78 new_lt8(x0, x1, app(ty_[], x2)) 25.69/9.78 new_compare31(@0, @0) 25.69/9.78 new_ltEs21(x0, x1, ty_Float) 25.69/9.78 new_esEs5(x0, x1, ty_Bool) 25.69/9.78 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_compare14(Integer(x0), Integer(x1)) 25.69/9.78 new_compare17(x0, x1, False, x2, x3) 25.69/9.78 new_compare6([], [], x0) 25.69/9.78 new_esEs7(x0, x1, app(ty_[], x2)) 25.69/9.78 new_esEs25(Just(x0), Just(x1), ty_Ordering) 25.69/9.78 new_esEs25(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.69/9.78 new_lt19(x0, x1, ty_Bool) 25.69/9.78 new_esEs29(x0, x1, ty_Double) 25.69/9.78 new_primEqNat0(Zero, Zero) 25.69/9.78 new_lt19(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_esEs36(x0, x1, ty_Char) 25.69/9.78 new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_esEs6(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_esEs21(Right(x0), Right(x1), x2, ty_@0) 25.69/9.78 new_esEs25(Just(x0), Nothing, x1) 25.69/9.78 new_not(False) 25.69/9.78 new_esEs32(x0, x1, ty_Bool) 25.69/9.78 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs34(x0, x1, ty_@0) 25.69/9.78 new_esEs37(x0, x1, app(ty_[], x2)) 25.69/9.78 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs36(x0, x1, app(ty_[], x2)) 25.69/9.78 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs33(x0, x1, ty_Int) 25.69/9.78 new_esEs13(x0, x1, ty_@0) 25.69/9.78 new_compare5(x0, x1, ty_@0) 25.69/9.78 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.69/9.78 new_compare112(x0, x1, x2, x3, False, x4, x5) 25.69/9.78 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_esEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.69/9.78 new_esEs6(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_compare25(x0, x1, False, x2) 25.69/9.78 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.69/9.78 new_compare6([], :(x0, x1), x2) 25.69/9.78 new_ltEs24(x0, x1, ty_Double) 25.69/9.78 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_esEs35(x0, x1, ty_Integer) 25.69/9.78 new_lt19(x0, x1, ty_Integer) 25.69/9.78 new_esEs33(x0, x1, ty_Float) 25.69/9.78 new_lt9(x0, x1, x2, x3) 25.69/9.78 new_esEs32(x0, x1, app(ty_[], x2)) 25.69/9.78 new_compare29(True, True) 25.69/9.78 new_ltEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_primPlusNat0(Zero, Succ(x0)) 25.69/9.78 new_esEs32(x0, x1, ty_Integer) 25.69/9.78 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.69/9.78 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.69/9.78 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 25.69/9.78 new_ltEs14(EQ, LT) 25.69/9.78 new_primCompAux00(x0, x1, EQ, ty_@0) 25.69/9.78 new_ltEs14(LT, EQ) 25.69/9.78 new_lt23(x0, x1, ty_@0) 25.69/9.78 new_primMulNat0(Zero, Succ(x0)) 25.69/9.78 new_esEs38(x0, x1, ty_Ordering) 25.69/9.78 new_esEs31(x0, x1, ty_Ordering) 25.69/9.78 new_esEs25(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.69/9.78 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.69/9.78 new_esEs36(x0, x1, ty_Int) 25.69/9.78 new_esEs21(Right(x0), Right(x1), x2, ty_Char) 25.69/9.78 new_esEs34(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_esEs25(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.69/9.78 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.69/9.78 new_esEs31(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_esEs18(Float(x0, x1), Float(x2, x3)) 25.69/9.78 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.69/9.78 new_esEs34(x0, x1, ty_Char) 25.69/9.78 new_esEs9(x0, x1, ty_Ordering) 25.69/9.78 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_compare18(Right(x0), Left(x1), x2, x3) 25.69/9.78 new_compare18(Left(x0), Right(x1), x2, x3) 25.69/9.78 new_ltEs23(x0, x1, app(ty_[], x2)) 25.69/9.78 new_ltEs20(x0, x1, ty_@0) 25.69/9.78 new_ltEs19(x0, x1, ty_Integer) 25.69/9.78 new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 25.69/9.78 new_esEs30(x0, x1, ty_Float) 25.69/9.78 new_esEs39(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_compare17(x0, x1, True, x2, x3) 25.69/9.78 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_ltEs20(x0, x1, ty_Bool) 25.69/9.78 new_ltEs21(x0, x1, ty_@0) 25.69/9.78 new_esEs13(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_fsEs(x0) 25.69/9.78 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_esEs36(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.69/9.78 new_compare13(GT, LT) 25.69/9.78 new_compare13(LT, GT) 25.69/9.78 new_esEs9(x0, x1, ty_Double) 25.69/9.78 new_esEs32(x0, x1, ty_Int) 25.69/9.78 new_compare24(x0, x1, x2, x3, True, x4, x5) 25.69/9.78 new_esEs9(x0, x1, ty_Char) 25.69/9.78 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.69/9.78 new_ltEs14(LT, LT) 25.69/9.78 new_esEs26(LT, GT) 25.69/9.78 new_esEs26(GT, LT) 25.69/9.78 new_ltEs23(x0, x1, ty_Int) 25.69/9.78 new_esEs33(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_esEs25(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.69/9.78 new_esEs5(x0, x1, ty_Char) 25.69/9.78 new_esEs4(x0, x1, app(ty_[], x2)) 25.69/9.78 new_esEs5(x0, x1, ty_Double) 25.69/9.78 new_esEs25(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_ltEs19(x0, x1, ty_Bool) 25.69/9.78 new_esEs33(x0, x1, ty_Char) 25.69/9.78 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_esEs13(x0, x1, ty_Integer) 25.69/9.78 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_ltEs21(x0, x1, ty_Int) 25.69/9.78 new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) 25.69/9.78 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_lt22(x0, x1, ty_Bool) 25.69/9.78 new_ltEs16(False, False) 25.69/9.78 new_esEs7(x0, x1, ty_Float) 25.69/9.78 new_lt22(x0, x1, ty_@0) 25.69/9.78 new_esEs22(Double(x0, x1), Double(x2, x3)) 25.69/9.78 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_esEs28(x0, x1, ty_Integer) 25.69/9.78 new_esEs38(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.69/9.78 new_asAs(True, x0) 25.69/9.78 new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) 25.69/9.78 new_esEs35(x0, x1, ty_Bool) 25.69/9.78 new_esEs39(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_esEs33(x0, x1, ty_Ordering) 25.69/9.78 new_ltEs20(x0, x1, ty_Integer) 25.69/9.78 new_esEs32(x0, x1, ty_@0) 25.69/9.78 new_esEs8(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_ltEs21(x0, x1, ty_Bool) 25.69/9.78 new_esEs9(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_lt22(x0, x1, ty_Int) 25.69/9.78 new_esEs35(x0, x1, ty_@0) 25.69/9.78 new_esEs38(x0, x1, ty_Double) 25.69/9.78 new_lt23(x0, x1, ty_Ordering) 25.69/9.78 new_primCompAux00(x0, x1, EQ, ty_Ordering) 25.69/9.78 new_lt19(x0, x1, ty_Int) 25.69/9.78 new_compare10(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.69/9.78 new_esEs30(x0, x1, ty_Integer) 25.69/9.78 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_ltEs19(x0, x1, ty_Float) 25.69/9.78 new_esEs34(x0, x1, ty_Ordering) 25.69/9.78 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_primCompAux1(x0, x1, x2, x3, x4) 25.69/9.78 new_esEs4(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_esEs36(x0, x1, ty_Ordering) 25.69/9.78 new_lt19(x0, x1, ty_@0) 25.69/9.78 new_ltEs11(x0, x1, ty_Int) 25.69/9.78 new_esEs20(False, False) 25.69/9.78 new_primCompAux00(x0, x1, LT, x2) 25.69/9.78 new_ltEs19(x0, x1, ty_@0) 25.69/9.78 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 25.69/9.78 new_esEs35(x0, x1, ty_Int) 25.69/9.78 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 25.69/9.78 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.69/9.78 new_lt21(x0, x1, ty_Ordering) 25.69/9.78 new_esEs36(x0, x1, ty_Double) 25.69/9.78 new_ltEs22(x0, x1, app(ty_[], x2)) 25.69/9.78 new_esEs7(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_esEs30(x0, x1, ty_Bool) 25.69/9.78 new_ltEs19(x0, x1, ty_Int) 25.69/9.78 new_lt14(x0, x1) 25.69/9.78 new_esEs21(Left(x0), Left(x1), ty_Int, x2) 25.69/9.78 new_esEs37(x0, x1, ty_@0) 25.69/9.78 new_compare10(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.69/9.78 new_esEs24(Integer(x0), Integer(x1)) 25.69/9.78 new_ltEs22(x0, x1, ty_Double) 25.69/9.78 new_esEs19(x0, x1) 25.69/9.78 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_lt20(x0, x1, ty_Char) 25.69/9.78 new_ltEs20(x0, x1, ty_Float) 25.69/9.78 new_esEs13(x0, x1, ty_Int) 25.69/9.78 new_lt22(x0, x1, ty_Integer) 25.69/9.78 new_ltEs24(x0, x1, ty_Char) 25.69/9.78 new_ltEs14(LT, GT) 25.69/9.78 new_ltEs14(GT, LT) 25.69/9.78 new_compare29(True, False) 25.69/9.78 new_compare29(False, True) 25.69/9.78 new_esEs16(@2(x0, x1), @2(x2, x3), x4, x5) 25.69/9.78 new_esEs26(GT, GT) 25.69/9.78 new_lt18(x0, x1) 25.69/9.78 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.69/9.78 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.69/9.78 new_lt21(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 25.69/9.78 new_esEs29(x0, x1, ty_Int) 25.69/9.78 new_esEs11(x0, x1, ty_Integer) 25.69/9.78 new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.69/9.78 new_primMulNat0(Succ(x0), Succ(x1)) 25.69/9.78 new_primEqNat0(Succ(x0), Zero) 25.69/9.78 new_lt22(x0, x1, app(ty_[], x2)) 25.69/9.78 new_compare5(x0, x1, app(ty_[], x2)) 25.69/9.78 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_lt6(x0, x1) 25.69/9.78 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_ltEs15(Just(x0), Just(x1), ty_Int) 25.69/9.78 new_ltEs22(x0, x1, ty_Ordering) 25.69/9.78 new_ltEs23(x0, x1, ty_@0) 25.69/9.78 new_ltEs21(x0, x1, ty_Integer) 25.69/9.78 new_esEs33(x0, x1, ty_Double) 25.69/9.78 new_ltEs20(x0, x1, ty_Int) 25.69/9.78 new_esEs8(x0, x1, app(ty_[], x2)) 25.69/9.78 new_lt20(x0, x1, ty_Ordering) 25.69/9.78 new_esEs13(x0, x1, ty_Float) 25.69/9.78 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.69/9.78 new_sr0(Integer(x0), Integer(x1)) 25.69/9.78 new_ltEs14(EQ, GT) 25.69/9.78 new_ltEs14(GT, EQ) 25.69/9.78 new_compare16(Nothing, Just(x0), x1) 25.69/9.78 new_esEs4(x0, x1, ty_@0) 25.69/9.78 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.69/9.78 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.69/9.78 new_esEs4(x0, x1, ty_Double) 25.69/9.78 new_primPlusNat1(x0, x1) 25.69/9.78 new_esEs25(Nothing, Nothing, x0) 25.69/9.78 new_esEs7(x0, x1, ty_Double) 25.69/9.78 new_lt23(x0, x1, ty_Char) 25.69/9.78 new_compare13(GT, EQ) 25.69/9.78 new_compare13(EQ, GT) 25.69/9.78 new_esEs11(x0, x1, ty_Ordering) 25.69/9.78 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_lt8(x0, x1, ty_Float) 25.69/9.78 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.69/9.78 new_compare30(Char(x0), Char(x1)) 25.69/9.78 new_esEs9(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_ltEs20(x0, x1, app(ty_[], x2)) 25.69/9.78 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs12([], :(x0, x1), x2) 25.69/9.78 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_esEs13(x0, x1, ty_Bool) 25.69/9.78 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_primCompAux00(x0, x1, EQ, ty_Char) 25.69/9.78 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.69/9.78 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.69/9.78 new_ltEs12(Left(x0), Right(x1), x2, x3) 25.69/9.78 new_ltEs12(Right(x0), Left(x1), x2, x3) 25.69/9.78 new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.69/9.78 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.69/9.78 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.69/9.78 new_lt21(x0, x1, ty_Char) 25.69/9.78 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.69/9.78 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_lt13(x0, x1) 25.69/9.78 new_esEs30(x0, x1, ty_Int) 25.69/9.78 new_compare5(x0, x1, ty_Char) 25.69/9.78 new_primPlusNat0(Succ(x0), Zero) 25.69/9.78 new_ltEs15(Just(x0), Nothing, x1) 25.69/9.78 new_compare110(x0, x1, False, x2, x3) 25.69/9.78 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_esEs9(x0, x1, app(ty_[], x2)) 25.69/9.78 new_esEs39(x0, x1, ty_@0) 25.69/9.78 new_esEs6(x0, x1, app(ty_[], x2)) 25.69/9.78 new_lt8(x0, x1, ty_Char) 25.69/9.78 new_esEs6(x0, x1, ty_Int) 25.69/9.78 new_esEs13(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_esEs26(LT, LT) 25.69/9.78 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 25.69/9.78 new_esEs4(x0, x1, ty_Char) 25.69/9.78 new_esEs36(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_esEs32(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 25.69/9.78 new_esEs37(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_primCompAux00(x0, x1, GT, x2) 25.69/9.78 new_esEs9(x0, x1, ty_Float) 25.69/9.78 new_primMulNat0(Zero, Zero) 25.69/9.78 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.69/9.78 new_compare26(x0, x1, False, x2, x3) 25.69/9.78 new_esEs10(x0, x1, ty_Int) 25.69/9.78 new_esEs38(x0, x1, ty_Integer) 25.69/9.78 new_ltEs14(EQ, EQ) 25.69/9.78 new_ltEs11(x0, x1, ty_Integer) 25.69/9.78 new_esEs29(x0, x1, ty_@0) 25.69/9.78 new_esEs31(x0, x1, ty_Char) 25.69/9.78 new_esEs6(x0, x1, ty_Char) 25.69/9.78 new_compare111(x0, x1, x2, x3, True, x4, x5, x6) 25.69/9.78 new_esEs7(x0, x1, ty_Char) 25.69/9.78 new_esEs38(x0, x1, ty_Bool) 25.69/9.78 new_ltEs5(x0, x1) 25.69/9.78 new_esEs28(x0, x1, ty_Int) 25.69/9.78 new_esEs37(x0, x1, ty_Float) 25.69/9.78 new_esEs7(x0, x1, ty_Int) 25.69/9.78 new_ltEs22(x0, x1, ty_Integer) 25.69/9.78 new_esEs25(Just(x0), Just(x1), ty_Char) 25.69/9.78 new_esEs34(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_compare16(Nothing, Nothing, x0) 25.69/9.78 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_ltEs23(x0, x1, ty_Float) 25.69/9.78 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_esEs11(x0, x1, app(ty_[], x2)) 25.69/9.78 new_esEs7(x0, x1, ty_@0) 25.69/9.78 new_esEs25(Just(x0), Just(x1), ty_@0) 25.69/9.78 new_lt8(x0, x1, ty_Int) 25.69/9.78 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs25(Just(x0), Just(x1), ty_Int) 25.69/9.78 new_esEs21(Left(x0), Left(x1), ty_Bool, x2) 25.69/9.78 new_compare9(@2(x0, x1), @2(x2, x3), x4, x5) 25.69/9.78 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.69/9.78 new_lt11(x0, x1, x2, x3, x4) 25.69/9.78 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.69/9.78 new_esEs30(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_lt22(x0, x1, ty_Float) 25.69/9.78 new_compare110(x0, x1, True, x2, x3) 25.69/9.78 new_esEs37(x0, x1, ty_Integer) 25.69/9.78 new_esEs31(x0, x1, app(ty_[], x2)) 25.69/9.78 new_esEs31(x0, x1, ty_@0) 25.69/9.78 new_compare12(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 25.69/9.78 new_ltEs15(Nothing, Nothing, x0) 25.69/9.78 new_esEs8(x0, x1, ty_Integer) 25.69/9.78 new_lt23(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_ltEs9(x0, x1) 25.69/9.78 new_esEs33(x0, x1, app(ty_[], x2)) 25.69/9.78 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 25.69/9.78 new_primEqNat0(Zero, Succ(x0)) 25.69/9.78 new_ltEs23(x0, x1, ty_Integer) 25.69/9.78 new_ltEs19(x0, x1, ty_Double) 25.69/9.78 new_esEs11(x0, x1, ty_Bool) 25.69/9.78 new_compare19(x0, x1, False, x2) 25.69/9.78 new_esEs8(x0, x1, ty_Int) 25.69/9.78 new_pePe(False, x0) 25.69/9.78 new_ltEs11(x0, x1, ty_Float) 25.69/9.78 new_esEs11(x0, x1, ty_Int) 25.69/9.78 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_compare27(x0, x1, False, x2, x3) 25.69/9.78 new_pePe(True, x0) 25.69/9.78 new_esEs21(Left(x0), Left(x1), ty_Char, x2) 25.69/9.78 new_esEs8(x0, x1, ty_Char) 25.69/9.78 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 25.69/9.78 new_lt8(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_lt8(x0, x1, ty_Bool) 25.69/9.78 new_ltEs11(x0, x1, ty_Bool) 25.69/9.78 new_compare5(x0, x1, ty_Ordering) 25.69/9.78 new_compare13(LT, LT) 25.69/9.78 new_esEs6(x0, x1, ty_Bool) 25.69/9.78 new_esEs39(x0, x1, ty_Integer) 25.69/9.78 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs38(x0, x1, ty_Float) 25.69/9.78 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_esEs31(x0, x1, ty_Int) 25.69/9.78 new_ltEs22(x0, x1, ty_Bool) 25.69/9.78 new_esEs21(Left(x0), Left(x1), ty_Float, x2) 25.69/9.78 new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.69/9.78 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.69/9.78 new_esEs38(x0, x1, ty_@0) 25.69/9.78 new_ltEs23(x0, x1, ty_Bool) 25.69/9.78 new_ltEs8(x0, x1, x2) 25.69/9.78 new_esEs8(x0, x1, ty_Bool) 25.69/9.78 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.69/9.78 new_esEs11(x0, x1, ty_Char) 25.69/9.78 new_esEs11(x0, x1, ty_Double) 25.69/9.78 new_compare13(EQ, EQ) 25.69/9.78 new_esEs38(x0, x1, ty_Int) 25.69/9.78 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_esEs10(x0, x1, ty_Integer) 25.69/9.78 new_esEs14(@0, @0) 25.69/9.78 new_ltEs15(Just(x0), Just(x1), ty_Ordering) 25.69/9.78 new_esEs4(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_esEs31(x0, x1, ty_Integer) 25.69/9.78 new_esEs6(x0, x1, ty_Integer) 25.69/9.78 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_esEs39(x0, x1, ty_Char) 25.69/9.78 new_ltEs20(x0, x1, ty_Double) 25.69/9.78 new_esEs9(x0, x1, ty_Bool) 25.69/9.78 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.69/9.78 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.69/9.78 new_esEs21(Left(x0), Left(x1), ty_Double, x2) 25.69/9.78 new_lt8(x0, x1, ty_Integer) 25.69/9.78 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 25.69/9.78 new_ltEs15(Just(x0), Just(x1), ty_Double) 25.69/9.78 new_esEs38(x0, x1, ty_Char) 25.69/9.78 new_ltEs22(x0, x1, ty_Float) 25.69/9.78 new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) 25.69/9.78 new_lt23(x0, x1, ty_Double) 25.69/9.78 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.69/9.78 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.69/9.78 new_esEs25(Nothing, Just(x0), x1) 25.69/9.78 new_lt19(x0, x1, app(ty_[], x2)) 25.69/9.78 new_compare10(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.69/9.78 new_compare10(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.69/9.78 new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) 25.69/9.78 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.69/9.78 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 25.69/9.78 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_esEs4(x0, x1, ty_Integer) 25.69/9.78 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 25.69/9.78 new_esEs7(x0, x1, ty_Integer) 25.69/9.78 new_ltEs24(x0, x1, ty_@0) 25.69/9.78 new_esEs25(Just(x0), Just(x1), ty_Float) 25.69/9.78 new_esEs7(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_ltEs20(x0, x1, ty_Ordering) 25.69/9.78 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_esEs39(x0, x1, app(ty_[], x2)) 25.69/9.78 new_ltEs22(x0, x1, ty_Char) 25.69/9.78 new_compare26(x0, x1, True, x2, x3) 25.69/9.78 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_esEs11(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_esEs11(x0, x1, ty_Float) 25.69/9.78 new_esEs8(x0, x1, ty_Float) 25.69/9.78 new_esEs31(x0, x1, ty_Bool) 25.69/9.78 new_ltEs22(x0, x1, ty_Int) 25.69/9.78 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 25.69/9.78 new_ltEs11(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_compare18(Left(x0), Left(x1), x2, x3) 25.69/9.78 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.69/9.78 new_esEs6(x0, x1, ty_@0) 25.69/9.78 new_lt8(x0, x1, ty_@0) 25.69/9.78 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs35(x0, x1, app(ty_[], x2)) 25.69/9.78 new_esEs37(x0, x1, ty_Int) 25.69/9.78 new_esEs21(Right(x0), Right(x1), x2, ty_Double) 25.69/9.78 new_esEs39(x0, x1, ty_Float) 25.69/9.78 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs39(x0, x1, ty_Bool) 25.69/9.78 new_esEs35(x0, x1, ty_Ordering) 25.69/9.78 new_esEs34(x0, x1, ty_Double) 25.69/9.78 new_ltEs16(True, True) 25.69/9.78 new_esEs4(x0, x1, ty_Float) 25.69/9.78 new_compare15(x0, x1) 25.69/9.78 new_esEs4(x0, x1, ty_Bool) 25.69/9.78 new_esEs25(Just(x0), Just(x1), ty_Integer) 25.69/9.78 new_compare28(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.69/9.78 new_lt20(x0, x1, ty_Double) 25.69/9.78 new_esEs32(x0, x1, ty_Ordering) 25.69/9.78 new_esEs5(x0, x1, ty_Ordering) 25.69/9.78 new_ltEs11(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_ltEs24(x0, x1, app(ty_[], x2)) 25.69/9.78 new_lt16(x0, x1) 25.69/9.78 new_primCompAux00(x0, x1, EQ, ty_Double) 25.69/9.78 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs39(x0, x1, ty_Int) 25.69/9.78 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_lt19(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_esEs25(Just(x0), Just(x1), ty_Bool) 25.69/9.78 new_compare18(Right(x0), Right(x1), x2, x3) 25.69/9.78 new_esEs37(x0, x1, ty_Bool) 25.69/9.78 new_esEs13(x0, x1, ty_Double) 25.69/9.78 new_esEs10(x0, x1, ty_Bool) 25.69/9.78 new_ltEs7(x0, x1) 25.69/9.78 new_esEs37(x0, x1, ty_Char) 25.69/9.78 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 25.69/9.78 new_esEs4(x0, x1, ty_Int) 25.69/9.78 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_lt21(x0, x1, ty_Double) 25.69/9.78 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_esEs10(x0, x1, ty_Char) 25.69/9.78 new_esEs30(x0, x1, ty_@0) 25.69/9.78 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs7(x0, x1, ty_Bool) 25.69/9.78 new_compare5(x0, x1, ty_Double) 25.69/9.78 new_primCmpNat0(Zero, Zero) 25.69/9.78 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 25.69/9.78 new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 25.69/9.78 25.69/9.78 We have to consider all minimal (P,Q,R)-chains. 25.69/9.78 ---------------------------------------- 25.69/9.78 25.69/9.78 (30) DependencyGraphProof (EQUIVALENT) 25.69/9.78 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 4 less nodes. 25.69/9.78 ---------------------------------------- 25.69/9.78 25.69/9.78 (31) 25.69/9.78 Obligation: 25.69/9.78 Q DP problem: 25.69/9.78 The TRS P consists of the following rules: 25.69/9.78 25.69/9.78 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, ed, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs0(xuu472, xuu482, hb, hc, hd) 25.69/9.78 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), app(app(app(ty_@3, ef), eg), eh), ed, ee) -> new_lt0(xuu470, xuu480, ef, eg, eh) 25.69/9.78 new_lt0(xuu101, xuu104, bdg, bdh, bea) -> new_compare1(xuu101, xuu104, bdg, bdh, bea) 25.69/9.78 new_compare1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), beb, bec, bed) -> new_compare21(xuu3110000, xuu3110001, xuu3110002, xuu6000, xuu6001, xuu6002, new_asAs(new_esEs6(xuu3110000, xuu6000, beb), new_asAs(new_esEs7(xuu3110001, xuu6001, bec), new_esEs8(xuu3110002, xuu6002, bed))), beb, bec, bed) 25.69/9.78 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(app(ty_@2, bfa), bfb), bee, bef) -> new_compare4(xuu101, xuu104, bfa, bfb) 25.69/9.78 new_compare4(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), caa, cab) -> new_compare23(xuu3110000, xuu3110001, xuu6000, xuu6001, new_asAs(new_esEs10(xuu3110000, xuu6000, caa), new_esEs11(xuu3110001, xuu6001, cab)), caa, cab) 25.69/9.78 new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(ty_Maybe, cdd), ccg) -> new_lt2(xuu114, xuu116, cdd) 25.69/9.78 new_lt2(xuu101, xuu104, beh) -> new_compare3(xuu101, xuu104, beh) 25.69/9.78 new_compare3(Just(xuu3110000), Just(xuu6000), bhh) -> new_compare22(xuu3110000, xuu6000, new_esEs9(xuu3110000, xuu6000, bhh), bhh) 25.69/9.78 new_compare22(xuu76, xuu77, False, app(app(ty_@2, ccc), ccd)) -> new_ltEs3(xuu76, xuu77, ccc, ccd) 25.69/9.78 new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), bce, app(app(ty_@2, bde), bdf)) -> new_ltEs3(xuu471, xuu481, bde, bdf) 25.69/9.78 new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), bce, app(app(ty_Either, bcf), bcg)) -> new_ltEs(xuu471, xuu481, bcf, bcg) 25.69/9.78 new_ltEs(Left(xuu470), Left(xuu480), app(ty_[], cc), bf) -> new_ltEs1(xuu470, xuu480, cc) 25.69/9.78 new_ltEs1(xuu47, xuu48, baa) -> new_compare0(xuu47, xuu48, baa) 25.69/9.78 new_compare0(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhf) -> new_primCompAux(xuu3110000, xuu6000, xuu3110001, xuu6001, bhf) 25.69/9.78 new_primCompAux(xuu311000, xuu600, xuu311001, xuu601, bhg) -> new_primCompAux0(xuu311001, xuu601, new_compare5(xuu311000, xuu600, bhg), app(ty_[], bhg)) 25.69/9.78 new_primCompAux0(xuu37, xuu38, EQ, app(ty_[], cah)) -> new_compare0(xuu37, xuu38, cah) 25.69/9.78 new_primCompAux(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), xuu311001, xuu601, app(app(ty_@2, caa), cab)) -> new_compare23(xuu3110000, xuu3110001, xuu6000, xuu6001, new_asAs(new_esEs10(xuu3110000, xuu6000, caa), new_esEs11(xuu3110001, xuu6001, cab)), caa, cab) 25.69/9.78 new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(app(app(ty_@3, ceb), cec), ced)) -> new_ltEs0(xuu115, xuu117, ceb, cec, ced) 25.69/9.78 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), app(ty_Maybe, fb), ed, ee) -> new_lt2(xuu470, xuu480, fb) 25.69/9.78 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, app(app(ty_Either, fg), fh), ee) -> new_lt(xuu471, xuu481, fg, fh) 25.69/9.78 new_lt(xuu101, xuu104, h, ba) -> new_compare(xuu101, xuu104, h, ba) 25.69/9.78 new_compare(Left(xuu3110000), Left(xuu6000), bb, bc) -> new_compare2(xuu3110000, xuu6000, new_esEs4(xuu3110000, xuu6000, bb), bb, bc) 25.69/9.78 new_compare2(Just(xuu470), Just(xuu480), False, app(ty_Maybe, app(app(app(ty_@3, bad), bae), baf)), bg) -> new_ltEs0(xuu470, xuu480, bad, bae, baf) 25.69/9.78 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, ed, app(ty_[], he)) -> new_ltEs1(xuu472, xuu482, he) 25.69/9.78 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, app(ty_[], gd), ee) -> new_lt1(xuu471, xuu481, gd) 25.69/9.78 new_lt1(xuu101, xuu104, beg) -> new_compare0(xuu101, xuu104, beg) 25.69/9.78 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), app(app(ty_Either, eb), ec), ed, ee) -> new_lt(xuu470, xuu480, eb, ec) 25.69/9.78 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), app(app(ty_@2, fc), fd), ed, ee) -> new_lt3(xuu470, xuu480, fc, fd) 25.69/9.78 new_lt3(xuu101, xuu104, bfa, bfb) -> new_compare4(xuu101, xuu104, bfa, bfb) 25.69/9.78 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, app(app(ty_@2, gf), gg), ee) -> new_lt3(xuu471, xuu481, gf, gg) 25.69/9.78 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, ed, app(app(ty_Either, gh), ha)) -> new_ltEs(xuu472, xuu482, gh, ha) 25.69/9.78 new_ltEs(Left(xuu470), Left(xuu480), app(app(ty_Either, bd), be), bf) -> new_ltEs(xuu470, xuu480, bd, be) 25.69/9.78 new_ltEs(Left(xuu470), Left(xuu480), app(app(app(ty_@3, bh), ca), cb), bf) -> new_ltEs0(xuu470, xuu480, bh, ca, cb) 25.69/9.78 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, app(app(app(ty_@3, ga), gb), gc), ee) -> new_lt0(xuu471, xuu481, ga, gb, gc) 25.69/9.78 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, ed, app(app(ty_@2, hg), hh)) -> new_ltEs3(xuu472, xuu482, hg, hh) 25.69/9.78 new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), app(app(ty_@2, bcc), bcd), bbe) -> new_lt3(xuu470, xuu480, bcc, bcd) 25.69/9.78 new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), bce, app(ty_Maybe, bdd)) -> new_ltEs2(xuu471, xuu481, bdd) 25.69/9.78 new_ltEs2(Just(xuu470), Just(xuu480), app(ty_Maybe, bah)) -> new_ltEs2(xuu470, xuu480, bah) 25.69/9.78 new_ltEs2(Just(xuu470), Just(xuu480), app(ty_[], bag)) -> new_ltEs1(xuu470, xuu480, bag) 25.69/9.78 new_ltEs2(Just(xuu470), Just(xuu480), app(app(ty_@2, bba), bbb)) -> new_ltEs3(xuu470, xuu480, bba, bbb) 25.69/9.78 new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), bce, app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs0(xuu471, xuu481, bch, bda, bdb) 25.69/9.78 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, ed, app(ty_Maybe, hf)) -> new_ltEs2(xuu472, xuu482, hf) 25.69/9.78 new_ltEs2(Just(xuu470), Just(xuu480), app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs0(xuu470, xuu480, bad, bae, baf) 25.69/9.78 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), app(ty_[], fa), ed, ee) -> new_lt1(xuu470, xuu480, fa) 25.69/9.78 new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, app(ty_Maybe, ge), ee) -> new_lt2(xuu471, xuu481, ge) 25.69/9.78 new_ltEs2(Just(xuu470), Just(xuu480), app(app(ty_Either, bab), bac)) -> new_ltEs(xuu470, xuu480, bab, bac) 25.69/9.78 new_ltEs(Right(xuu470), Right(xuu480), cg, app(ty_[], df)) -> new_ltEs1(xuu470, xuu480, df) 25.69/9.78 new_ltEs(Right(xuu470), Right(xuu480), cg, app(ty_Maybe, dg)) -> new_ltEs2(xuu470, xuu480, dg) 25.69/9.78 new_ltEs(Right(xuu470), Right(xuu480), cg, app(app(ty_Either, da), db)) -> new_ltEs(xuu470, xuu480, da, db) 25.69/9.78 new_ltEs(Left(xuu470), Left(xuu480), app(app(ty_@2, ce), cf), bf) -> new_ltEs3(xuu470, xuu480, ce, cf) 25.69/9.78 new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), app(app(ty_Either, bbc), bbd), bbe) -> new_lt(xuu470, xuu480, bbc, bbd) 25.69/9.78 new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), app(app(app(ty_@3, bbf), bbg), bbh), bbe) -> new_lt0(xuu470, xuu480, bbf, bbg, bbh) 25.69/9.78 new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), app(ty_[], bca), bbe) -> new_lt1(xuu470, xuu480, bca) 25.69/9.78 new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), app(ty_Maybe, bcb), bbe) -> new_lt2(xuu470, xuu480, bcb) 25.69/9.78 new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), bce, app(ty_[], bdc)) -> new_ltEs1(xuu471, xuu481, bdc) 25.69/9.78 new_ltEs(Right(xuu470), Right(xuu480), cg, app(app(ty_@2, dh), ea)) -> new_ltEs3(xuu470, xuu480, dh, ea) 25.69/9.78 new_ltEs(Right(xuu470), Right(xuu480), cg, app(app(app(ty_@3, dc), dd), de)) -> new_ltEs0(xuu470, xuu480, dc, dd, de) 25.69/9.78 new_ltEs(Left(xuu470), Left(xuu480), app(ty_Maybe, cd), bf) -> new_ltEs2(xuu470, xuu480, cd) 25.69/9.78 new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, bce), app(ty_[], bdc)), bg) -> new_ltEs1(xuu471, xuu481, bdc) 25.69/9.78 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), app(app(app(ty_@3, ga), gb), gc)), ee), bg) -> new_lt0(xuu471, xuu481, ga, gb, gc) 25.69/9.78 new_compare2(Right(xuu470), Right(xuu480), False, app(app(ty_Either, cg), app(app(app(ty_@3, dc), dd), de)), bg) -> new_ltEs0(xuu470, xuu480, dc, dd, de) 25.69/9.78 new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, bce), app(app(ty_Either, bcf), bcg)), bg) -> new_ltEs(xuu471, xuu481, bcf, bcg) 25.69/9.78 new_compare2(Right(xuu470), Right(xuu480), False, app(app(ty_Either, cg), app(app(ty_Either, da), db)), bg) -> new_ltEs(xuu470, xuu480, da, db) 25.69/9.78 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), ed), app(app(ty_@2, hg), hh)), bg) -> new_ltEs3(xuu472, xuu482, hg, hh) 25.69/9.78 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), app(app(ty_Either, fg), fh)), ee), bg) -> new_lt(xuu471, xuu481, fg, fh) 25.69/9.78 new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, app(app(app(ty_@3, bbf), bbg), bbh)), bbe), bg) -> new_lt0(xuu470, xuu480, bbf, bbg, bbh) 25.69/9.78 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, app(app(ty_@2, fc), fd)), ed), ee), bg) -> new_lt3(xuu470, xuu480, fc, fd) 25.69/9.78 new_compare2(Just(xuu470), Just(xuu480), False, app(ty_Maybe, app(app(ty_Either, bab), bac)), bg) -> new_ltEs(xuu470, xuu480, bab, bac) 25.69/9.78 new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, app(app(ty_Either, bbc), bbd)), bbe), bg) -> new_lt(xuu470, xuu480, bbc, bbd) 25.69/9.78 new_compare2(Left(xuu470), Left(xuu480), False, app(app(ty_Either, app(app(app(ty_@3, bh), ca), cb)), bf), bg) -> new_ltEs0(xuu470, xuu480, bh, ca, cb) 25.69/9.78 new_compare2(Right(xuu470), Right(xuu480), False, app(app(ty_Either, cg), app(ty_Maybe, dg)), bg) -> new_ltEs2(xuu470, xuu480, dg) 25.69/9.78 new_compare2(Just(xuu470), Just(xuu480), False, app(ty_Maybe, app(app(ty_@2, bba), bbb)), bg) -> new_ltEs3(xuu470, xuu480, bba, bbb) 25.69/9.78 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), app(ty_[], gd)), ee), bg) -> new_lt1(xuu471, xuu481, gd) 25.69/9.78 new_compare2(Left(xuu470), Left(xuu480), False, app(app(ty_Either, app(app(ty_Either, bd), be)), bf), bg) -> new_ltEs(xuu470, xuu480, bd, be) 25.69/9.78 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), app(app(ty_@2, gf), gg)), ee), bg) -> new_lt3(xuu471, xuu481, gf, gg) 25.69/9.78 new_compare2(xuu47, xuu48, False, app(ty_[], baa), bg) -> new_compare0(xuu47, xuu48, baa) 25.69/9.78 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), ed), app(app(ty_Either, gh), ha)), bg) -> new_ltEs(xuu472, xuu482, gh, ha) 25.69/9.78 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, app(app(ty_Either, eb), ec)), ed), ee), bg) -> new_lt(xuu470, xuu480, eb, ec) 25.69/9.78 new_compare2(Left(xuu470), Left(xuu480), False, app(app(ty_Either, app(ty_[], cc)), bf), bg) -> new_ltEs1(xuu470, xuu480, cc) 25.69/9.78 new_compare2(Left(xuu470), Left(xuu480), False, app(app(ty_Either, app(app(ty_@2, ce), cf)), bf), bg) -> new_ltEs3(xuu470, xuu480, ce, cf) 25.69/9.78 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), ed), app(app(app(ty_@3, hb), hc), hd)), bg) -> new_ltEs0(xuu472, xuu482, hb, hc, hd) 25.69/9.78 new_compare2(Just(xuu470), Just(xuu480), False, app(ty_Maybe, app(ty_Maybe, bah)), bg) -> new_ltEs2(xuu470, xuu480, bah) 25.69/9.78 new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, bce), app(app(ty_@2, bde), bdf)), bg) -> new_ltEs3(xuu471, xuu481, bde, bdf) 25.69/9.78 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), ed), app(ty_Maybe, hf)), bg) -> new_ltEs2(xuu472, xuu482, hf) 25.69/9.78 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, app(ty_[], fa)), ed), ee), bg) -> new_lt1(xuu470, xuu480, fa) 25.69/9.78 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), ed), app(ty_[], he)), bg) -> new_ltEs1(xuu472, xuu482, he) 25.69/9.78 new_compare2(Just(xuu470), Just(xuu480), False, app(ty_Maybe, app(ty_[], bag)), bg) -> new_ltEs1(xuu470, xuu480, bag) 25.69/9.78 new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, app(ty_Maybe, bcb)), bbe), bg) -> new_lt2(xuu470, xuu480, bcb) 25.69/9.78 new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, bce), app(app(app(ty_@3, bch), bda), bdb)), bg) -> new_ltEs0(xuu471, xuu481, bch, bda, bdb) 25.69/9.78 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, app(app(app(ty_@3, ef), eg), eh)), ed), ee), bg) -> new_lt0(xuu470, xuu480, ef, eg, eh) 25.69/9.78 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), app(ty_Maybe, ge)), ee), bg) -> new_lt2(xuu471, xuu481, ge) 25.69/9.78 new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, app(ty_[], bca)), bbe), bg) -> new_lt1(xuu470, xuu480, bca) 25.69/9.78 new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, bce), app(ty_Maybe, bdd)), bg) -> new_ltEs2(xuu471, xuu481, bdd) 25.69/9.78 new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, app(app(ty_@2, bcc), bcd)), bbe), bg) -> new_lt3(xuu470, xuu480, bcc, bcd) 25.69/9.78 new_compare2(Right(xuu470), Right(xuu480), False, app(app(ty_Either, cg), app(app(ty_@2, dh), ea)), bg) -> new_ltEs3(xuu470, xuu480, dh, ea) 25.69/9.78 new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, app(ty_Maybe, fb)), ed), ee), bg) -> new_lt2(xuu470, xuu480, fb) 25.69/9.78 new_compare2(Right(xuu470), Right(xuu480), False, app(app(ty_Either, cg), app(ty_[], df)), bg) -> new_ltEs1(xuu470, xuu480, df) 25.69/9.78 new_compare2(Left(xuu470), Left(xuu480), False, app(app(ty_Either, app(ty_Maybe, cd)), bf), bg) -> new_ltEs2(xuu470, xuu480, cd) 25.69/9.78 new_compare(Right(xuu3110000), Right(xuu6000), bb, bc) -> new_compare20(xuu3110000, xuu6000, new_esEs5(xuu3110000, xuu6000, bc), bb, bc) 25.69/9.78 new_compare20(xuu54, xuu55, False, cfa, app(ty_Maybe, cfh)) -> new_ltEs2(xuu54, xuu55, cfh) 25.69/9.78 new_compare20(xuu54, xuu55, False, cfa, app(app(ty_@2, cga), cgb)) -> new_ltEs3(xuu54, xuu55, cga, cgb) 25.69/9.78 new_compare20(xuu54, xuu55, False, cfa, app(app(app(ty_@3, cfd), cfe), cff)) -> new_ltEs0(xuu54, xuu55, cfd, cfe, cff) 25.69/9.78 new_compare20(xuu54, xuu55, False, cfa, app(ty_[], cfg)) -> new_ltEs1(xuu54, xuu55, cfg) 25.69/9.78 new_compare20(xuu54, xuu55, False, cfa, app(app(ty_Either, cfb), cfc)) -> new_ltEs(xuu54, xuu55, cfb, cfc) 25.69/9.78 new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(ty_[], cee)) -> new_ltEs1(xuu115, xuu117, cee) 25.69/9.78 new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(ty_[], cdc), ccg) -> new_lt1(xuu114, xuu116, cdc) 25.69/9.78 new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(app(app(ty_@3, cch), cda), cdb), ccg) -> new_lt0(xuu114, xuu116, cch, cda, cdb) 25.69/9.78 new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(app(ty_Either, cce), ccf), ccg) -> new_lt(xuu114, xuu116, cce, ccf) 25.69/9.78 new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(app(ty_@2, cde), cdf), ccg) -> new_lt3(xuu114, xuu116, cde, cdf) 25.69/9.78 new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(app(ty_Either, cdh), cea)) -> new_ltEs(xuu115, xuu117, cdh, cea) 25.69/9.78 new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(app(ty_@2, ceg), ceh)) -> new_ltEs3(xuu115, xuu117, ceg, ceh) 25.69/9.78 new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(ty_Maybe, cef)) -> new_ltEs2(xuu115, xuu117, cef) 25.69/9.78 new_primCompAux(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), xuu311001, xuu601, app(app(app(ty_@3, beb), bec), bed)) -> new_compare21(xuu3110000, xuu3110001, xuu3110002, xuu6000, xuu6001, xuu6002, new_asAs(new_esEs6(xuu3110000, xuu6000, beb), new_asAs(new_esEs7(xuu3110001, xuu6001, bec), new_esEs8(xuu3110002, xuu6002, bed))), beb, bec, bed) 25.69/9.78 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, bee, app(app(ty_Either, bge), bgf)) -> new_ltEs(xuu103, xuu106, bge, bgf) 25.69/9.78 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, bee, app(app(app(ty_@3, bgg), bgh), bha)) -> new_ltEs0(xuu103, xuu106, bgg, bgh, bha) 25.69/9.78 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(app(app(ty_@3, bdg), bdh), bea), bee, bef) -> new_compare1(xuu101, xuu104, bdg, bdh, bea) 25.69/9.78 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(app(ty_Either, h), ba), bee, bef) -> new_compare(xuu101, xuu104, h, ba) 25.69/9.78 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, bee, app(ty_Maybe, bhc)) -> new_ltEs2(xuu103, xuu106, bhc) 25.69/9.78 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, app(ty_Maybe, bgb), bef) -> new_lt2(xuu102, xuu105, bgb) 25.69/9.78 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(ty_Maybe, beh), bee, bef) -> new_compare3(xuu101, xuu104, beh) 25.69/9.78 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, bee, app(ty_[], bhb)) -> new_ltEs1(xuu103, xuu106, bhb) 25.69/9.78 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, app(app(app(ty_@3, bff), bfg), bfh), bef) -> new_lt0(xuu102, xuu105, bff, bfg, bfh) 25.69/9.78 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, app(ty_[], bga), bef) -> new_lt1(xuu102, xuu105, bga) 25.69/9.78 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, app(app(ty_@2, bgc), bgd), bef) -> new_lt3(xuu102, xuu105, bgc, bgd) 25.69/9.78 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, app(app(ty_Either, bfd), bfe), bef) -> new_lt(xuu102, xuu105, bfd, bfe) 25.69/9.78 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(ty_[], beg), bee, bef) -> new_compare0(xuu101, xuu104, beg) 25.69/9.78 new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, bee, app(app(ty_@2, bhd), bhe)) -> new_ltEs3(xuu103, xuu106, bhd, bhe) 25.69/9.78 new_primCompAux(Just(xuu3110000), Just(xuu6000), xuu311001, xuu601, app(ty_Maybe, bhh)) -> new_compare22(xuu3110000, xuu6000, new_esEs9(xuu3110000, xuu6000, bhh), bhh) 25.69/9.78 new_compare22(xuu76, xuu77, False, app(ty_Maybe, ccb)) -> new_ltEs2(xuu76, xuu77, ccb) 25.69/9.78 new_compare22(xuu76, xuu77, False, app(app(ty_Either, cbd), cbe)) -> new_ltEs(xuu76, xuu77, cbd, cbe) 25.69/9.78 new_compare22(xuu76, xuu77, False, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs0(xuu76, xuu77, cbf, cbg, cbh) 25.69/9.78 new_compare22(xuu76, xuu77, False, app(ty_[], cca)) -> new_ltEs1(xuu76, xuu77, cca) 25.69/9.78 new_primCompAux(Left(xuu3110000), Left(xuu6000), xuu311001, xuu601, app(app(ty_Either, bb), bc)) -> new_compare2(xuu3110000, xuu6000, new_esEs4(xuu3110000, xuu6000, bb), bb, bc) 25.69/9.78 new_primCompAux(Right(xuu3110000), Right(xuu6000), xuu311001, xuu601, app(app(ty_Either, bb), bc)) -> new_compare20(xuu3110000, xuu6000, new_esEs5(xuu3110000, xuu6000, bc), bb, bc) 25.69/9.78 new_primCompAux(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), xuu311001, xuu601, app(ty_[], bhf)) -> new_primCompAux(xuu3110000, xuu6000, xuu3110001, xuu6001, bhf) 25.69/9.78 25.69/9.78 The TRS R consists of the following rules: 25.69/9.78 25.69/9.78 new_lt20(xuu471, xuu481, ty_Double) -> new_lt12(xuu471, xuu481) 25.69/9.78 new_compare5(xuu311000, xuu600, ty_Integer) -> new_compare14(xuu311000, xuu600) 25.69/9.78 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.69/9.78 new_esEs33(xuu31100001, xuu60001, app(ty_Ratio, efd)) -> new_esEs23(xuu31100001, xuu60001, efd) 25.69/9.78 new_primPlusNat0(Zero, Zero) -> Zero 25.69/9.78 new_esEs30(xuu470, xuu480, app(ty_Maybe, fb)) -> new_esEs25(xuu470, xuu480, fb) 25.69/9.78 new_pePe(True, xuu210) -> True 25.69/9.78 new_ltEs20(xuu54, xuu55, app(ty_Maybe, cfh)) -> new_ltEs15(xuu54, xuu55, cfh) 25.69/9.78 new_compare7(Float(xuu3110000, Pos(xuu31100010)), Float(xuu6000, Neg(xuu60010))) -> new_compare15(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) 25.69/9.78 new_compare7(Float(xuu3110000, Neg(xuu31100010)), Float(xuu6000, Pos(xuu60010))) -> new_compare15(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) 25.69/9.78 new_esEs32(xuu31100000, xuu60000, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.78 new_esEs33(xuu31100001, xuu60001, app(app(app(ty_@3, eeg), eeh), efa)) -> new_esEs17(xuu31100001, xuu60001, eeg, eeh, efa) 25.69/9.78 new_esEs6(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.78 new_ltEs24(xuu103, xuu106, app(app(ty_@2, bhd), bhe)) -> new_ltEs10(xuu103, xuu106, bhd, bhe) 25.69/9.78 new_ltEs24(xuu103, xuu106, ty_Ordering) -> new_ltEs14(xuu103, xuu106) 25.69/9.78 new_ltEs4(xuu47, xuu48, baa) -> new_fsEs(new_compare6(xuu47, xuu48, baa)) 25.69/9.78 new_esEs26(LT, GT) -> False 25.69/9.78 new_esEs26(GT, LT) -> False 25.69/9.78 new_esEs8(xuu3110002, xuu6002, ty_Ordering) -> new_esEs26(xuu3110002, xuu6002) 25.69/9.78 new_esEs35(xuu31100001, xuu60001, app(ty_[], fce)) -> new_esEs12(xuu31100001, xuu60001, fce) 25.69/9.78 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.69/9.78 new_compare24(xuu114, xuu115, xuu116, xuu117, True, cdg, ccg) -> EQ 25.69/9.78 new_esEs26(LT, EQ) -> False 25.69/9.78 new_esEs26(EQ, LT) -> False 25.69/9.78 new_lt8(xuu470, xuu480, ty_Bool) -> new_lt16(xuu470, xuu480) 25.69/9.78 new_ltEs24(xuu103, xuu106, app(ty_[], bhb)) -> new_ltEs4(xuu103, xuu106, bhb) 25.69/9.78 new_compare26(xuu54, xuu55, True, cfa, dgc) -> EQ 25.69/9.78 new_esEs39(xuu102, xuu105, ty_Int) -> new_esEs19(xuu102, xuu105) 25.69/9.78 new_lt14(xuu101, xuu104) -> new_esEs26(new_compare7(xuu101, xuu104), LT) 25.69/9.78 new_esEs6(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.78 new_ltEs7(xuu47, xuu48) -> new_fsEs(new_compare14(xuu47, xuu48)) 25.69/9.78 new_ltEs12(Left(xuu470), Right(xuu480), cg, bf) -> True 25.69/9.78 new_lt23(xuu102, xuu105, app(ty_Maybe, bgb)) -> new_lt15(xuu102, xuu105, bgb) 25.69/9.78 new_compare27(xuu47, xuu48, False, edb, bg) -> new_compare110(xuu47, xuu48, new_ltEs22(xuu47, xuu48, edb), edb, bg) 25.69/9.78 new_ltEs24(xuu103, xuu106, app(ty_Ratio, fhe)) -> new_ltEs8(xuu103, xuu106, fhe) 25.69/9.78 new_primMulNat0(Succ(xuu600000), Succ(xuu311000100)) -> new_primPlusNat1(new_primMulNat0(xuu600000, Succ(xuu311000100)), xuu311000100) 25.69/9.78 new_esEs11(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) 25.69/9.78 new_lt6(xuu101, xuu104) -> new_esEs26(new_compare13(xuu101, xuu104), LT) 25.69/9.78 new_lt19(xuu470, xuu480, ty_Bool) -> new_lt16(xuu470, xuu480) 25.69/9.78 new_esEs6(xuu3110000, xuu6000, app(app(ty_@2, chf), chg)) -> new_esEs16(xuu3110000, xuu6000, chf, chg) 25.69/9.78 new_esEs36(xuu31100002, xuu60002, ty_@0) -> new_esEs14(xuu31100002, xuu60002) 25.69/9.78 new_esEs32(xuu31100000, xuu60000, ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.78 new_esEs21(Left(xuu31100000), Right(xuu60000), dhb, dhc) -> False 25.69/9.78 new_esEs21(Right(xuu31100000), Left(xuu60000), dhb, dhc) -> False 25.69/9.78 new_primCompAux00(xuu37, xuu38, EQ, ty_Integer) -> new_compare14(xuu37, xuu38) 25.69/9.78 new_esEs37(xuu114, xuu116, ty_Bool) -> new_esEs20(xuu114, xuu116) 25.69/9.78 new_primEqNat0(Succ(xuu311000000), Succ(xuu600000)) -> new_primEqNat0(xuu311000000, xuu600000) 25.69/9.78 new_ltEs22(xuu47, xuu48, ty_Double) -> new_ltEs6(xuu47, xuu48) 25.69/9.78 new_not(True) -> False 25.69/9.78 new_lt22(xuu101, xuu104, app(ty_[], beg)) -> new_lt7(xuu101, xuu104, beg) 25.69/9.78 new_ltEs19(xuu472, xuu482, ty_@0) -> new_ltEs18(xuu472, xuu482) 25.69/9.78 new_esEs35(xuu31100001, xuu60001, app(ty_Maybe, fcf)) -> new_esEs25(xuu31100001, xuu60001, fcf) 25.69/9.78 new_lt7(xuu101, xuu104, beg) -> new_esEs26(new_compare6(xuu101, xuu104, beg), LT) 25.69/9.78 new_esEs9(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.78 new_esEs10(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.78 new_compare17(xuu140, xuu141, False, ech, eda) -> GT 25.69/9.78 new_esEs39(xuu102, xuu105, ty_Ordering) -> new_esEs26(xuu102, xuu105) 25.69/9.78 new_esEs38(xuu101, xuu104, app(ty_Ratio, dah)) -> new_esEs23(xuu101, xuu104, dah) 25.69/9.78 new_esEs38(xuu101, xuu104, app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs17(xuu101, xuu104, bdg, bdh, bea) 25.69/9.78 new_esEs4(xuu3110000, xuu6000, app(ty_[], cgc)) -> new_esEs12(xuu3110000, xuu6000, cgc) 25.69/9.78 new_esEs33(xuu31100001, xuu60001, app(app(ty_Either, efb), efc)) -> new_esEs21(xuu31100001, xuu60001, efb, efc) 25.69/9.78 new_compare11(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, False, xuu180, dbb, dbc, dbd) -> new_compare12(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, xuu180, dbb, dbc, dbd) 25.69/9.78 new_lt22(xuu101, xuu104, app(app(ty_Either, h), ba)) -> new_lt9(xuu101, xuu104, h, ba) 25.69/9.78 new_lt22(xuu101, xuu104, app(ty_Ratio, dah)) -> new_lt4(xuu101, xuu104, dah) 25.69/9.78 new_compare6([], :(xuu6000, xuu6001), bhf) -> LT 25.69/9.78 new_compare10(Double(xuu3110000, Pos(xuu31100010)), Double(xuu6000, Neg(xuu60010))) -> new_compare15(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) 25.69/9.78 new_compare10(Double(xuu3110000, Neg(xuu31100010)), Double(xuu6000, Pos(xuu60010))) -> new_compare15(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) 25.69/9.78 new_primEqNat0(Succ(xuu311000000), Zero) -> False 25.69/9.78 new_primEqNat0(Zero, Succ(xuu600000)) -> False 25.69/9.78 new_esEs14(@0, @0) -> True 25.69/9.78 new_lt23(xuu102, xuu105, ty_Char) -> new_lt17(xuu102, xuu105) 25.69/9.78 new_lt23(xuu102, xuu105, ty_Int) -> new_lt10(xuu102, xuu105) 25.69/9.78 new_ltEs21(xuu76, xuu77, ty_Integer) -> new_ltEs7(xuu76, xuu77) 25.69/9.78 new_esEs29(xuu470, xuu480, ty_Int) -> new_esEs19(xuu470, xuu480) 25.69/9.78 new_esEs37(xuu114, xuu116, ty_Float) -> new_esEs18(xuu114, xuu116) 25.69/9.78 new_ltEs23(xuu115, xuu117, ty_Char) -> new_ltEs17(xuu115, xuu117) 25.69/9.78 new_esEs6(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.78 new_lt5(xuu101, xuu104, bfa, bfb) -> new_esEs26(new_compare9(xuu101, xuu104, bfa, bfb), LT) 25.69/9.78 new_ltEs23(xuu115, xuu117, ty_Float) -> new_ltEs5(xuu115, xuu117) 25.69/9.78 new_esEs32(xuu31100000, xuu60000, ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.78 new_esEs9(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.78 new_ltEs14(EQ, EQ) -> True 25.69/9.78 new_esEs37(xuu114, xuu116, ty_Char) -> new_esEs15(xuu114, xuu116) 25.69/9.78 new_esEs4(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.78 new_lt21(xuu114, xuu116, ty_Bool) -> new_lt16(xuu114, xuu116) 25.69/9.78 new_compare210(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, True, bfc, bee, bef) -> EQ 25.69/9.78 new_ltEs20(xuu54, xuu55, app(app(app(ty_@3, cfd), cfe), cff)) -> new_ltEs13(xuu54, xuu55, cfd, cfe, cff) 25.69/9.78 new_compare13(LT, LT) -> EQ 25.69/9.78 new_primCmpInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> GT 25.69/9.78 new_lt13(xuu101, xuu104) -> new_esEs26(new_compare14(xuu101, xuu104), LT) 25.69/9.78 new_esEs21(Left(xuu31100000), Left(xuu60000), app(ty_Ratio, egf), dhc) -> new_esEs23(xuu31100000, xuu60000, egf) 25.69/9.78 new_compare112(xuu188, xuu189, xuu190, xuu191, True, fff, ffg) -> LT 25.69/9.78 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.78 new_esEs10(xuu3110000, xuu6000, app(ty_[], dcf)) -> new_esEs12(xuu3110000, xuu6000, dcf) 25.69/9.78 new_esEs29(xuu470, xuu480, ty_Ordering) -> new_esEs26(xuu470, xuu480) 25.69/9.78 new_compare13(GT, EQ) -> GT 25.69/9.78 new_primCompAux00(xuu37, xuu38, GT, ecf) -> GT 25.69/9.78 new_lt19(xuu470, xuu480, ty_Integer) -> new_lt13(xuu470, xuu480) 25.69/9.78 new_primCmpNat0(Zero, Succ(xuu60000)) -> LT 25.69/9.78 new_ltEs11(xuu471, xuu481, ty_Bool) -> new_ltEs16(xuu471, xuu481) 25.69/9.78 new_lt23(xuu102, xuu105, app(app(app(ty_@3, bff), bfg), bfh)) -> new_lt11(xuu102, xuu105, bff, bfg, bfh) 25.69/9.78 new_ltEs23(xuu115, xuu117, ty_Int) -> new_ltEs9(xuu115, xuu117) 25.69/9.78 new_esEs11(xuu3110001, xuu6001, ty_Ordering) -> new_esEs26(xuu3110001, xuu6001) 25.69/9.78 new_ltEs12(Left(xuu470), Left(xuu480), ty_Float, bf) -> new_ltEs5(xuu470, xuu480) 25.69/9.78 new_compare26(xuu54, xuu55, False, cfa, dgc) -> new_compare17(xuu54, xuu55, new_ltEs20(xuu54, xuu55, dgc), cfa, dgc) 25.69/9.78 new_esEs9(xuu3110000, xuu6000, app(ty_[], dfb)) -> new_esEs12(xuu3110000, xuu6000, dfb) 25.69/9.78 new_esEs34(xuu31100000, xuu60000, ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.78 new_esEs38(xuu101, xuu104, app(app(ty_Either, h), ba)) -> new_esEs21(xuu101, xuu104, h, ba) 25.69/9.78 new_ltEs12(Left(xuu470), Left(xuu480), ty_Char, bf) -> new_ltEs17(xuu470, xuu480) 25.69/9.78 new_ltEs21(xuu76, xuu77, ty_@0) -> new_ltEs18(xuu76, xuu77) 25.69/9.78 new_lt8(xuu470, xuu480, ty_Ordering) -> new_lt6(xuu470, xuu480) 25.69/9.78 new_ltEs19(xuu472, xuu482, app(app(ty_@2, hg), hh)) -> new_ltEs10(xuu472, xuu482, hg, hh) 25.69/9.78 new_esEs11(xuu3110001, xuu6001, app(ty_Ratio, ddg)) -> new_esEs23(xuu3110001, xuu6001, ddg) 25.69/9.78 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.78 new_esEs5(xuu3110000, xuu6000, app(app(app(ty_@3, dhg), dhh), eaa)) -> new_esEs17(xuu3110000, xuu6000, dhg, dhh, eaa) 25.69/9.78 new_esEs9(xuu3110000, xuu6000, app(app(ty_@2, deb), dec)) -> new_esEs16(xuu3110000, xuu6000, deb, dec) 25.69/9.78 new_ltEs19(xuu472, xuu482, ty_Ordering) -> new_ltEs14(xuu472, xuu482) 25.69/9.78 new_ltEs12(Left(xuu470), Left(xuu480), ty_Double, bf) -> new_ltEs6(xuu470, xuu480) 25.69/9.78 new_compare5(xuu311000, xuu600, ty_Float) -> new_compare7(xuu311000, xuu600) 25.69/9.78 new_esEs34(xuu31100000, xuu60000, ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.78 new_esEs38(xuu101, xuu104, app(ty_[], beg)) -> new_esEs12(xuu101, xuu104, beg) 25.69/9.78 new_esEs10(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.78 new_ltEs14(EQ, GT) -> True 25.69/9.78 new_esEs31(xuu471, xuu481, app(app(ty_Either, fg), fh)) -> new_esEs21(xuu471, xuu481, fg, fh) 25.69/9.78 new_ltEs12(Right(xuu470), Right(xuu480), cg, app(ty_Maybe, dg)) -> new_ltEs15(xuu470, xuu480, dg) 25.69/9.78 new_compare5(xuu311000, xuu600, app(app(ty_@2, caa), cab)) -> new_compare9(xuu311000, xuu600, caa, cab) 25.69/9.78 new_ltEs15(Just(xuu470), Just(xuu480), ty_Integer) -> new_ltEs7(xuu470, xuu480) 25.69/9.78 new_ltEs19(xuu472, xuu482, ty_Integer) -> new_ltEs7(xuu472, xuu482) 25.69/9.78 new_primEqInt(Neg(Succ(xuu311000000)), Neg(Succ(xuu600000))) -> new_primEqNat0(xuu311000000, xuu600000) 25.69/9.78 new_esEs33(xuu31100001, xuu60001, app(ty_Maybe, eff)) -> new_esEs25(xuu31100001, xuu60001, eff) 25.69/9.78 new_esEs31(xuu471, xuu481, ty_@0) -> new_esEs14(xuu471, xuu481) 25.69/9.78 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.78 new_ltEs12(Left(xuu470), Left(xuu480), app(ty_[], cc), bf) -> new_ltEs4(xuu470, xuu480, cc) 25.69/9.78 new_primCmpInt(Neg(Zero), Pos(Succ(xuu60000))) -> LT 25.69/9.78 new_compare15(xuu311000, xuu600) -> new_primCmpInt(xuu311000, xuu600) 25.69/9.78 new_ltEs20(xuu54, xuu55, ty_Char) -> new_ltEs17(xuu54, xuu55) 25.69/9.78 new_primMulInt(Pos(xuu60000), Pos(xuu31100010)) -> Pos(new_primMulNat0(xuu60000, xuu31100010)) 25.69/9.78 new_compare13(EQ, LT) -> GT 25.69/9.78 new_ltEs14(LT, GT) -> True 25.69/9.78 new_ltEs14(GT, GT) -> True 25.69/9.78 new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_@2, cbb), cbc)) -> new_compare9(xuu37, xuu38, cbb, cbc) 25.69/9.78 new_ltEs21(xuu76, xuu77, ty_Bool) -> new_ltEs16(xuu76, xuu77) 25.69/9.78 new_esEs30(xuu470, xuu480, ty_Double) -> new_esEs22(xuu470, xuu480) 25.69/9.78 new_primCompAux00(xuu37, xuu38, EQ, ty_Float) -> new_compare7(xuu37, xuu38) 25.69/9.78 new_esEs9(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.78 new_primMulNat0(Succ(xuu600000), Zero) -> Zero 25.69/9.78 new_primMulNat0(Zero, Succ(xuu311000100)) -> Zero 25.69/9.78 new_esEs9(xuu3110000, xuu6000, app(ty_Maybe, dfc)) -> new_esEs25(xuu3110000, xuu6000, dfc) 25.69/9.78 new_lt21(xuu114, xuu116, ty_Integer) -> new_lt13(xuu114, xuu116) 25.69/9.78 new_esEs6(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.78 new_esEs7(xuu3110001, xuu6001, app(app(app(ty_@3, fef), feg), feh)) -> new_esEs17(xuu3110001, xuu6001, fef, feg, feh) 25.69/9.78 new_compare13(GT, LT) -> GT 25.69/9.78 new_esEs22(Double(xuu31100000, xuu31100001), Double(xuu60000, xuu60001)) -> new_esEs19(new_sr(xuu31100000, xuu60001), new_sr(xuu31100001, xuu60000)) 25.69/9.78 new_lt20(xuu471, xuu481, app(app(app(ty_@3, ga), gb), gc)) -> new_lt11(xuu471, xuu481, ga, gb, gc) 25.69/9.78 new_primPlusNat0(Succ(xuu21200), Zero) -> Succ(xuu21200) 25.69/9.78 new_primPlusNat0(Zero, Succ(xuu21100)) -> Succ(xuu21100) 25.69/9.78 new_compare7(Float(xuu3110000, Pos(xuu31100010)), Float(xuu6000, Pos(xuu60010))) -> new_compare15(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) 25.69/9.78 new_esEs26(EQ, GT) -> False 25.69/9.78 new_esEs26(GT, EQ) -> False 25.69/9.78 new_ltEs12(Left(xuu470), Left(xuu480), app(ty_Ratio, dff), bf) -> new_ltEs8(xuu470, xuu480, dff) 25.69/9.78 new_esEs6(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.78 new_compare13(EQ, EQ) -> EQ 25.69/9.78 new_compare5(xuu311000, xuu600, app(app(app(ty_@3, beb), bec), bed)) -> new_compare28(xuu311000, xuu600, beb, bec, bed) 25.69/9.78 new_esEs39(xuu102, xuu105, ty_@0) -> new_esEs14(xuu102, xuu105) 25.69/9.78 new_compare29(False, False) -> EQ 25.69/9.78 new_esEs7(xuu3110001, xuu6001, app(ty_Maybe, ffe)) -> new_esEs25(xuu3110001, xuu6001, ffe) 25.69/9.78 new_esEs31(xuu471, xuu481, ty_Ordering) -> new_esEs26(xuu471, xuu481) 25.69/9.78 new_lt21(xuu114, xuu116, app(app(app(ty_@3, cch), cda), cdb)) -> new_lt11(xuu114, xuu116, cch, cda, cdb) 25.69/9.78 new_ltEs11(xuu471, xuu481, ty_@0) -> new_ltEs18(xuu471, xuu481) 25.69/9.78 new_esEs32(xuu31100000, xuu60000, app(app(ty_@2, edc), edd)) -> new_esEs16(xuu31100000, xuu60000, edc, edd) 25.69/9.78 new_esEs39(xuu102, xuu105, ty_Bool) -> new_esEs20(xuu102, xuu105) 25.69/9.78 new_lt8(xuu470, xuu480, ty_Integer) -> new_lt13(xuu470, xuu480) 25.69/9.78 new_esEs10(xuu3110000, xuu6000, app(ty_Maybe, dcg)) -> new_esEs25(xuu3110000, xuu6000, dcg) 25.69/9.78 new_esEs32(xuu31100000, xuu60000, ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.78 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Char, dhc) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.78 new_ltEs20(xuu54, xuu55, ty_Float) -> new_ltEs5(xuu54, xuu55) 25.69/9.78 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Bool, dhc) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.78 new_ltEs24(xuu103, xuu106, ty_@0) -> new_ltEs18(xuu103, xuu106) 25.69/9.78 new_esEs29(xuu470, xuu480, app(app(ty_Either, bbc), bbd)) -> new_esEs21(xuu470, xuu480, bbc, bbd) 25.69/9.78 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.78 new_esEs5(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.78 new_esEs25(Just(xuu31100000), Just(xuu60000), app(app(app(ty_@3, fgb), fgc), fgd)) -> new_esEs17(xuu31100000, xuu60000, fgb, fgc, fgd) 25.69/9.78 new_esEs25(Just(xuu31100000), Just(xuu60000), app(app(ty_Either, fge), fgf)) -> new_esEs21(xuu31100000, xuu60000, fge, fgf) 25.69/9.78 new_compare9(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), caa, cab) -> new_compare24(xuu3110000, xuu3110001, xuu6000, xuu6001, new_asAs(new_esEs10(xuu3110000, xuu6000, caa), new_esEs11(xuu3110001, xuu6001, cab)), caa, cab) 25.69/9.78 new_esEs29(xuu470, xuu480, ty_@0) -> new_esEs14(xuu470, xuu480) 25.69/9.78 new_esEs32(xuu31100000, xuu60000, app(ty_Maybe, eed)) -> new_esEs25(xuu31100000, xuu60000, eed) 25.69/9.78 new_compare25(xuu76, xuu77, True, eag) -> EQ 25.69/9.78 new_esEs36(xuu31100002, xuu60002, app(ty_Ratio, fdf)) -> new_esEs23(xuu31100002, xuu60002, fdf) 25.69/9.78 new_esEs13(xuu31100000, xuu60000, app(ty_Ratio, chc)) -> new_esEs23(xuu31100000, xuu60000, chc) 25.69/9.78 new_ltEs5(xuu47, xuu48) -> new_fsEs(new_compare7(xuu47, xuu48)) 25.69/9.78 new_esEs27(xuu31100000, xuu60000, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.78 new_esEs30(xuu470, xuu480, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs17(xuu470, xuu480, ef, eg, eh) 25.69/9.78 new_lt23(xuu102, xuu105, ty_Double) -> new_lt12(xuu102, xuu105) 25.69/9.78 new_esEs13(xuu31100000, xuu60000, app(ty_[], chd)) -> new_esEs12(xuu31100000, xuu60000, chd) 25.69/9.78 new_esEs5(xuu3110000, xuu6000, app(app(ty_Either, eab), eac)) -> new_esEs21(xuu3110000, xuu6000, eab, eac) 25.69/9.78 new_compare29(True, False) -> GT 25.69/9.78 new_esEs7(xuu3110001, xuu6001, ty_Double) -> new_esEs22(xuu3110001, xuu6001) 25.69/9.78 new_ltEs15(Just(xuu470), Just(xuu480), ty_Bool) -> new_ltEs16(xuu470, xuu480) 25.69/9.78 new_ltEs19(xuu472, xuu482, ty_Bool) -> new_ltEs16(xuu472, xuu482) 25.69/9.78 new_esEs4(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.78 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Int, dhc) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.78 new_esEs30(xuu470, xuu480, ty_Char) -> new_esEs15(xuu470, xuu480) 25.69/9.78 new_esEs10(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.78 new_ltEs11(xuu471, xuu481, ty_Char) -> new_ltEs17(xuu471, xuu481) 25.69/9.78 new_esEs21(Left(xuu31100000), Left(xuu60000), app(ty_Maybe, egh), dhc) -> new_esEs25(xuu31100000, xuu60000, egh) 25.69/9.78 new_esEs10(xuu3110000, xuu6000, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs17(xuu3110000, xuu6000, dbh, dca, dcb) 25.69/9.78 new_lt20(xuu471, xuu481, ty_Char) -> new_lt17(xuu471, xuu481) 25.69/9.78 new_esEs34(xuu31100000, xuu60000, ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.78 new_esEs8(xuu3110002, xuu6002, ty_Float) -> new_esEs18(xuu3110002, xuu6002) 25.69/9.78 new_ltEs11(xuu471, xuu481, ty_Float) -> new_ltEs5(xuu471, xuu481) 25.69/9.78 new_esEs39(xuu102, xuu105, ty_Char) -> new_esEs15(xuu102, xuu105) 25.69/9.78 new_esEs10(xuu3110000, xuu6000, app(ty_Ratio, dce)) -> new_esEs23(xuu3110000, xuu6000, dce) 25.69/9.78 new_ltEs12(Left(xuu470), Left(xuu480), ty_Int, bf) -> new_ltEs9(xuu470, xuu480) 25.69/9.78 new_esEs8(xuu3110002, xuu6002, app(app(ty_@2, ebb), ebc)) -> new_esEs16(xuu3110002, xuu6002, ebb, ebc) 25.69/9.78 new_compare25(xuu76, xuu77, False, eag) -> new_compare19(xuu76, xuu77, new_ltEs21(xuu76, xuu77, eag), eag) 25.69/9.78 new_esEs37(xuu114, xuu116, app(ty_[], cdc)) -> new_esEs12(xuu114, xuu116, cdc) 25.69/9.78 new_esEs30(xuu470, xuu480, app(app(ty_Either, eb), ec)) -> new_esEs21(xuu470, xuu480, eb, ec) 25.69/9.78 new_esEs29(xuu470, xuu480, app(app(ty_@2, bcc), bcd)) -> new_esEs16(xuu470, xuu480, bcc, bcd) 25.69/9.78 new_primCompAux00(xuu37, xuu38, EQ, ty_Char) -> new_compare30(xuu37, xuu38) 25.69/9.78 new_lt23(xuu102, xuu105, ty_Bool) -> new_lt16(xuu102, xuu105) 25.69/9.78 new_esEs35(xuu31100001, xuu60001, app(app(app(ty_@3, fbg), fbh), fca)) -> new_esEs17(xuu31100001, xuu60001, fbg, fbh, fca) 25.69/9.78 new_esEs35(xuu31100001, xuu60001, ty_Bool) -> new_esEs20(xuu31100001, xuu60001) 25.69/9.78 new_ltEs24(xuu103, xuu106, ty_Double) -> new_ltEs6(xuu103, xuu106) 25.69/9.78 new_lt19(xuu470, xuu480, app(app(app(ty_@3, ef), eg), eh)) -> new_lt11(xuu470, xuu480, ef, eg, eh) 25.69/9.78 new_esEs31(xuu471, xuu481, app(ty_Ratio, dga)) -> new_esEs23(xuu471, xuu481, dga) 25.69/9.78 new_ltEs12(Left(xuu470), Left(xuu480), app(app(ty_@2, ce), cf), bf) -> new_ltEs10(xuu470, xuu480, ce, cf) 25.69/9.78 new_ltEs15(Just(xuu470), Just(xuu480), app(app(ty_Either, bab), bac)) -> new_ltEs12(xuu470, xuu480, bab, bac) 25.69/9.78 new_ltEs12(Right(xuu470), Right(xuu480), cg, ty_@0) -> new_ltEs18(xuu470, xuu480) 25.69/9.78 new_esEs31(xuu471, xuu481, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs17(xuu471, xuu481, ga, gb, gc) 25.69/9.78 new_ltEs11(xuu471, xuu481, app(ty_Ratio, dfe)) -> new_ltEs8(xuu471, xuu481, dfe) 25.69/9.78 new_esEs31(xuu471, xuu481, ty_Bool) -> new_esEs20(xuu471, xuu481) 25.69/9.78 new_esEs35(xuu31100001, xuu60001, app(ty_Ratio, fcd)) -> new_esEs23(xuu31100001, xuu60001, fcd) 25.69/9.78 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_@0, dhc) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.78 new_lt15(xuu101, xuu104, beh) -> new_esEs26(new_compare16(xuu101, xuu104, beh), LT) 25.69/9.78 new_lt21(xuu114, xuu116, ty_@0) -> new_lt18(xuu114, xuu116) 25.69/9.78 new_esEs6(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.78 new_compare18(Right(xuu3110000), Right(xuu6000), bb, bc) -> new_compare26(xuu3110000, xuu6000, new_esEs5(xuu3110000, xuu6000, bc), bb, bc) 25.69/9.78 new_ltEs22(xuu47, xuu48, app(app(ty_@2, bce), bbe)) -> new_ltEs10(xuu47, xuu48, bce, bbe) 25.69/9.78 new_esEs39(xuu102, xuu105, ty_Integer) -> new_esEs24(xuu102, xuu105) 25.69/9.78 new_lt8(xuu470, xuu480, ty_@0) -> new_lt18(xuu470, xuu480) 25.69/9.78 new_esEs4(xuu3110000, xuu6000, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs17(xuu3110000, xuu6000, dgg, dgh, dha) 25.69/9.78 new_esEs32(xuu31100000, xuu60000, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.78 new_esEs23(:%(xuu31100000, xuu31100001), :%(xuu60000, xuu60001), dba) -> new_asAs(new_esEs27(xuu31100000, xuu60000, dba), new_esEs28(xuu31100001, xuu60001, dba)) 25.69/9.78 new_ltEs12(Right(xuu470), Right(xuu480), cg, app(app(app(ty_@3, dc), dd), de)) -> new_ltEs13(xuu470, xuu480, dc, dd, de) 25.69/9.78 new_esEs33(xuu31100001, xuu60001, ty_Ordering) -> new_esEs26(xuu31100001, xuu60001) 25.69/9.78 new_esEs4(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.78 new_ltEs16(True, False) -> False 25.69/9.78 new_compare5(xuu311000, xuu600, app(ty_Ratio, eba)) -> new_compare8(xuu311000, xuu600, eba) 25.69/9.78 new_esEs39(xuu102, xuu105, app(app(ty_Either, bfd), bfe)) -> new_esEs21(xuu102, xuu105, bfd, bfe) 25.69/9.78 new_esEs21(Left(xuu31100000), Left(xuu60000), app(app(ty_@2, efg), efh), dhc) -> new_esEs16(xuu31100000, xuu60000, efg, efh) 25.69/9.78 new_esEs30(xuu470, xuu480, app(app(ty_@2, fc), fd)) -> new_esEs16(xuu470, xuu480, fc, fd) 25.69/9.78 new_ltEs22(xuu47, xuu48, ty_@0) -> new_ltEs18(xuu47, xuu48) 25.69/9.78 new_esEs37(xuu114, xuu116, ty_Int) -> new_esEs19(xuu114, xuu116) 25.69/9.78 new_primCmpInt(Pos(Succ(xuu31100000)), Pos(xuu6000)) -> new_primCmpNat0(Succ(xuu31100000), xuu6000) 25.69/9.78 new_esEs29(xuu470, xuu480, ty_Char) -> new_esEs15(xuu470, xuu480) 25.69/9.78 new_lt19(xuu470, xuu480, app(ty_Maybe, fb)) -> new_lt15(xuu470, xuu480, fb) 25.69/9.78 new_esEs13(xuu31100000, xuu60000, ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.78 new_esEs10(xuu3110000, xuu6000, app(app(ty_Either, dcc), dcd)) -> new_esEs21(xuu3110000, xuu6000, dcc, dcd) 25.69/9.78 new_lt8(xuu470, xuu480, ty_Char) -> new_lt17(xuu470, xuu480) 25.69/9.78 new_ltEs15(Just(xuu470), Just(xuu480), app(ty_Ratio, ece)) -> new_ltEs8(xuu470, xuu480, ece) 25.69/9.78 new_esEs11(xuu3110001, xuu6001, app(ty_Maybe, dea)) -> new_esEs25(xuu3110001, xuu6001, dea) 25.69/9.78 new_compare13(GT, GT) -> EQ 25.69/9.78 new_ltEs20(xuu54, xuu55, ty_Double) -> new_ltEs6(xuu54, xuu55) 25.69/9.78 new_lt20(xuu471, xuu481, app(app(ty_Either, fg), fh)) -> new_lt9(xuu471, xuu481, fg, fh) 25.69/9.78 new_lt16(xuu101, xuu104) -> new_esEs26(new_compare29(xuu101, xuu104), LT) 25.69/9.78 new_ltEs21(xuu76, xuu77, app(app(ty_@2, ccc), ccd)) -> new_ltEs10(xuu76, xuu77, ccc, ccd) 25.69/9.78 new_ltEs15(Just(xuu470), Just(xuu480), ty_Ordering) -> new_ltEs14(xuu470, xuu480) 25.69/9.78 new_esEs39(xuu102, xuu105, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs17(xuu102, xuu105, bff, bfg, bfh) 25.69/9.78 new_compare7(Float(xuu3110000, Neg(xuu31100010)), Float(xuu6000, Neg(xuu60010))) -> new_compare15(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) 25.69/9.78 new_esEs35(xuu31100001, xuu60001, ty_Integer) -> new_esEs24(xuu31100001, xuu60001) 25.69/9.78 new_lt20(xuu471, xuu481, ty_@0) -> new_lt18(xuu471, xuu481) 25.69/9.78 new_esEs13(xuu31100000, xuu60000, ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.78 new_esEs38(xuu101, xuu104, ty_@0) -> new_esEs14(xuu101, xuu104) 25.69/9.78 new_compare29(False, True) -> LT 25.69/9.78 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, app(app(ty_@2, eha), ehb)) -> new_esEs16(xuu31100000, xuu60000, eha, ehb) 25.69/9.78 new_primCompAux00(xuu37, xuu38, EQ, app(ty_Ratio, ecg)) -> new_compare8(xuu37, xuu38, ecg) 25.69/9.78 new_esEs29(xuu470, xuu480, ty_Bool) -> new_esEs20(xuu470, xuu480) 25.69/9.78 new_esEs34(xuu31100000, xuu60000, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.78 new_esEs36(xuu31100002, xuu60002, ty_Bool) -> new_esEs20(xuu31100002, xuu60002) 25.69/9.78 new_ltEs11(xuu471, xuu481, app(ty_Maybe, bdd)) -> new_ltEs15(xuu471, xuu481, bdd) 25.69/9.78 new_lt22(xuu101, xuu104, ty_Ordering) -> new_lt6(xuu101, xuu104) 25.69/9.78 new_primCompAux00(xuu37, xuu38, EQ, app(ty_Maybe, cba)) -> new_compare16(xuu37, xuu38, cba) 25.69/9.78 new_esEs30(xuu470, xuu480, ty_Bool) -> new_esEs20(xuu470, xuu480) 25.69/9.78 new_esEs5(xuu3110000, xuu6000, app(ty_Maybe, eaf)) -> new_esEs25(xuu3110000, xuu6000, eaf) 25.69/9.78 new_esEs36(xuu31100002, xuu60002, ty_Int) -> new_esEs19(xuu31100002, xuu60002) 25.69/9.78 new_lt21(xuu114, xuu116, app(ty_Maybe, cdd)) -> new_lt15(xuu114, xuu116, cdd) 25.69/9.78 new_lt19(xuu470, xuu480, ty_@0) -> new_lt18(xuu470, xuu480) 25.69/9.78 new_esEs5(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.78 new_esEs31(xuu471, xuu481, ty_Char) -> new_esEs15(xuu471, xuu481) 25.69/9.78 new_ltEs22(xuu47, xuu48, app(ty_[], baa)) -> new_ltEs4(xuu47, xuu48, baa) 25.69/9.78 new_compare18(Right(xuu3110000), Left(xuu6000), bb, bc) -> GT 25.69/9.78 new_compare5(xuu311000, xuu600, ty_Char) -> new_compare30(xuu311000, xuu600) 25.69/9.78 new_compare6([], [], bhf) -> EQ 25.69/9.78 new_ltEs18(xuu47, xuu48) -> new_fsEs(new_compare31(xuu47, xuu48)) 25.69/9.78 new_ltEs11(xuu471, xuu481, ty_Int) -> new_ltEs9(xuu471, xuu481) 25.69/9.78 new_lt8(xuu470, xuu480, ty_Float) -> new_lt14(xuu470, xuu480) 25.69/9.78 new_esEs34(xuu31100000, xuu60000, ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.78 new_esEs7(xuu3110001, xuu6001, ty_Float) -> new_esEs18(xuu3110001, xuu6001) 25.69/9.78 new_compare10(Double(xuu3110000, Neg(xuu31100010)), Double(xuu6000, Neg(xuu60010))) -> new_compare15(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) 25.69/9.78 new_esEs4(xuu3110000, xuu6000, app(ty_Maybe, dhd)) -> new_esEs25(xuu3110000, xuu6000, dhd) 25.69/9.78 new_lt9(xuu101, xuu104, h, ba) -> new_esEs26(new_compare18(xuu101, xuu104, h, ba), LT) 25.69/9.78 new_esEs10(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.78 new_lt8(xuu470, xuu480, app(app(ty_Either, bbc), bbd)) -> new_lt9(xuu470, xuu480, bbc, bbd) 25.69/9.78 new_ltEs12(Right(xuu470), Right(xuu480), cg, ty_Char) -> new_ltEs17(xuu470, xuu480) 25.69/9.78 new_compare112(xuu188, xuu189, xuu190, xuu191, False, fff, ffg) -> GT 25.69/9.78 new_esEs35(xuu31100001, xuu60001, ty_@0) -> new_esEs14(xuu31100001, xuu60001) 25.69/9.78 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Float, dhc) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.78 new_lt19(xuu470, xuu480, ty_Float) -> new_lt14(xuu470, xuu480) 25.69/9.78 new_esEs32(xuu31100000, xuu60000, ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.78 new_ltEs15(Nothing, Just(xuu480), ecd) -> True 25.69/9.78 new_esEs31(xuu471, xuu481, ty_Int) -> new_esEs19(xuu471, xuu481) 25.69/9.78 new_esEs4(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.78 new_primPlusNat0(Succ(xuu21200), Succ(xuu21100)) -> Succ(Succ(new_primPlusNat0(xuu21200, xuu21100))) 25.69/9.78 new_compare18(Left(xuu3110000), Left(xuu6000), bb, bc) -> new_compare27(xuu3110000, xuu6000, new_esEs4(xuu3110000, xuu6000, bb), bb, bc) 25.69/9.78 new_esEs7(xuu3110001, xuu6001, app(ty_[], ffd)) -> new_esEs12(xuu3110001, xuu6001, ffd) 25.69/9.78 new_compare27(xuu47, xuu48, True, edb, bg) -> EQ 25.69/9.78 new_primCompAux00(xuu37, xuu38, EQ, ty_Ordering) -> new_compare13(xuu37, xuu38) 25.69/9.78 new_esEs38(xuu101, xuu104, ty_Integer) -> new_esEs24(xuu101, xuu104) 25.69/9.78 new_lt4(xuu101, xuu104, dah) -> new_esEs26(new_compare8(xuu101, xuu104, dah), LT) 25.69/9.78 new_esEs13(xuu31100000, xuu60000, ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.78 new_lt23(xuu102, xuu105, ty_Float) -> new_lt14(xuu102, xuu105) 25.69/9.78 new_esEs36(xuu31100002, xuu60002, app(app(ty_Either, fdd), fde)) -> new_esEs21(xuu31100002, xuu60002, fdd, fde) 25.69/9.78 new_esEs13(xuu31100000, xuu60000, app(app(ty_Either, cha), chb)) -> new_esEs21(xuu31100000, xuu60000, cha, chb) 25.69/9.78 new_ltEs16(False, False) -> True 25.69/9.78 new_ltEs21(xuu76, xuu77, app(ty_[], cca)) -> new_ltEs4(xuu76, xuu77, cca) 25.69/9.78 new_esEs13(xuu31100000, xuu60000, app(ty_Maybe, che)) -> new_esEs25(xuu31100000, xuu60000, che) 25.69/9.78 new_lt20(xuu471, xuu481, app(ty_Maybe, ge)) -> new_lt15(xuu471, xuu481, ge) 25.69/9.78 new_esEs11(xuu3110001, xuu6001, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_esEs17(xuu3110001, xuu6001, ddb, ddc, ddd) 25.69/9.78 new_esEs32(xuu31100000, xuu60000, app(ty_Ratio, eeb)) -> new_esEs23(xuu31100000, xuu60000, eeb) 25.69/9.78 new_lt21(xuu114, xuu116, ty_Char) -> new_lt17(xuu114, xuu116) 25.69/9.78 new_esEs36(xuu31100002, xuu60002, app(ty_Maybe, fdh)) -> new_esEs25(xuu31100002, xuu60002, fdh) 25.69/9.78 new_esEs11(xuu3110001, xuu6001, ty_Bool) -> new_esEs20(xuu3110001, xuu6001) 25.69/9.78 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Ordering, dhc) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.78 new_esEs33(xuu31100001, xuu60001, ty_@0) -> new_esEs14(xuu31100001, xuu60001) 25.69/9.78 new_lt20(xuu471, xuu481, ty_Bool) -> new_lt16(xuu471, xuu481) 25.69/9.78 new_ltEs12(Right(xuu470), Right(xuu480), cg, ty_Ordering) -> new_ltEs14(xuu470, xuu480) 25.69/9.78 new_esEs34(xuu31100000, xuu60000, app(app(app(ty_@3, fae), faf), fag)) -> new_esEs17(xuu31100000, xuu60000, fae, faf, fag) 25.69/9.78 new_esEs13(xuu31100000, xuu60000, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.78 new_compare12(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, dbb, dbc, dbd) -> LT 25.69/9.78 new_esEs18(Float(xuu31100000, xuu31100001), Float(xuu60000, xuu60001)) -> new_esEs19(new_sr(xuu31100000, xuu60001), new_sr(xuu31100001, xuu60000)) 25.69/9.78 new_lt20(xuu471, xuu481, ty_Float) -> new_lt14(xuu471, xuu481) 25.69/9.78 new_esEs36(xuu31100002, xuu60002, ty_Ordering) -> new_esEs26(xuu31100002, xuu60002) 25.69/9.78 new_lt21(xuu114, xuu116, ty_Ordering) -> new_lt6(xuu114, xuu116) 25.69/9.78 new_ltEs12(Right(xuu470), Right(xuu480), cg, app(ty_[], df)) -> new_ltEs4(xuu470, xuu480, df) 25.69/9.78 new_ltEs16(True, True) -> True 25.69/9.78 new_esEs39(xuu102, xuu105, ty_Float) -> new_esEs18(xuu102, xuu105) 25.69/9.78 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Integer, dhc) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.78 new_ltEs11(xuu471, xuu481, app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs13(xuu471, xuu481, bch, bda, bdb) 25.69/9.78 new_ltEs11(xuu471, xuu481, app(app(ty_Either, bcf), bcg)) -> new_ltEs12(xuu471, xuu481, bcf, bcg) 25.69/9.78 new_esEs35(xuu31100001, xuu60001, ty_Char) -> new_esEs15(xuu31100001, xuu60001) 25.69/9.78 new_esEs11(xuu3110001, xuu6001, ty_Char) -> new_esEs15(xuu3110001, xuu6001) 25.69/9.78 new_esEs5(xuu3110000, xuu6000, app(ty_[], eae)) -> new_esEs12(xuu3110000, xuu6000, eae) 25.69/9.78 new_esEs36(xuu31100002, xuu60002, ty_Integer) -> new_esEs24(xuu31100002, xuu60002) 25.69/9.78 new_esEs17(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), dgg, dgh, dha) -> new_asAs(new_esEs34(xuu31100000, xuu60000, dgg), new_asAs(new_esEs35(xuu31100001, xuu60001, dgh), new_esEs36(xuu31100002, xuu60002, dha))) 25.69/9.78 new_esEs20(True, True) -> True 25.69/9.78 new_lt21(xuu114, xuu116, ty_Float) -> new_lt14(xuu114, xuu116) 25.69/9.78 new_esEs34(xuu31100000, xuu60000, ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.78 new_primCmpNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primCmpNat0(xuu31100000, xuu60000) 25.69/9.78 new_esEs25(Just(xuu31100000), Just(xuu60000), app(ty_[], fgh)) -> new_esEs12(xuu31100000, xuu60000, fgh) 25.69/9.78 new_esEs38(xuu101, xuu104, ty_Ordering) -> new_esEs26(xuu101, xuu104) 25.69/9.78 new_ltEs15(Just(xuu470), Just(xuu480), ty_Int) -> new_ltEs9(xuu470, xuu480) 25.69/9.78 new_compare5(xuu311000, xuu600, app(ty_Maybe, bhh)) -> new_compare16(xuu311000, xuu600, bhh) 25.69/9.78 new_esEs34(xuu31100000, xuu60000, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.78 new_lt22(xuu101, xuu104, ty_Float) -> new_lt14(xuu101, xuu104) 25.69/9.78 new_esEs11(xuu3110001, xuu6001, app(app(ty_Either, dde), ddf)) -> new_esEs21(xuu3110001, xuu6001, dde, ddf) 25.69/9.78 new_esEs11(xuu3110001, xuu6001, ty_Int) -> new_esEs19(xuu3110001, xuu6001) 25.69/9.78 new_esEs10(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.78 new_ltEs11(xuu471, xuu481, ty_Ordering) -> new_ltEs14(xuu471, xuu481) 25.69/9.78 new_esEs29(xuu470, xuu480, app(ty_Ratio, dfd)) -> new_esEs23(xuu470, xuu480, dfd) 25.69/9.78 new_esEs34(xuu31100000, xuu60000, app(app(ty_Either, fah), fba)) -> new_esEs21(xuu31100000, xuu60000, fah, fba) 25.69/9.78 new_esEs33(xuu31100001, xuu60001, ty_Char) -> new_esEs15(xuu31100001, xuu60001) 25.69/9.78 new_lt23(xuu102, xuu105, app(app(ty_Either, bfd), bfe)) -> new_lt9(xuu102, xuu105, bfd, bfe) 25.69/9.78 new_compare12(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, False, dbb, dbc, dbd) -> GT 25.69/9.78 new_ltEs11(xuu471, xuu481, ty_Integer) -> new_ltEs7(xuu471, xuu481) 25.69/9.78 new_ltEs20(xuu54, xuu55, app(ty_[], cfg)) -> new_ltEs4(xuu54, xuu55, cfg) 25.69/9.78 new_compare13(LT, GT) -> LT 25.69/9.78 new_esEs37(xuu114, xuu116, ty_Ordering) -> new_esEs26(xuu114, xuu116) 25.69/9.78 new_esEs33(xuu31100001, xuu60001, ty_Int) -> new_esEs19(xuu31100001, xuu60001) 25.69/9.78 new_lt19(xuu470, xuu480, ty_Ordering) -> new_lt6(xuu470, xuu480) 25.69/9.78 new_esEs37(xuu114, xuu116, app(ty_Maybe, cdd)) -> new_esEs25(xuu114, xuu116, cdd) 25.69/9.78 new_esEs5(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.78 new_esEs15(Char(xuu31100000), Char(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 25.69/9.78 new_esEs36(xuu31100002, xuu60002, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs17(xuu31100002, xuu60002, fda, fdb, fdc) 25.69/9.78 new_ltEs23(xuu115, xuu117, ty_Double) -> new_ltEs6(xuu115, xuu117) 25.69/9.78 new_ltEs12(Right(xuu470), Right(xuu480), cg, ty_Bool) -> new_ltEs16(xuu470, xuu480) 25.69/9.78 new_esEs30(xuu470, xuu480, app(ty_Ratio, dfh)) -> new_esEs23(xuu470, xuu480, dfh) 25.69/9.78 new_esEs38(xuu101, xuu104, app(ty_Maybe, beh)) -> new_esEs25(xuu101, xuu104, beh) 25.69/9.78 new_esEs13(xuu31100000, xuu60000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs17(xuu31100000, xuu60000, cgf, cgg, cgh) 25.69/9.78 new_ltEs12(Right(xuu470), Right(xuu480), cg, ty_Float) -> new_ltEs5(xuu470, xuu480) 25.69/9.78 new_ltEs19(xuu472, xuu482, app(ty_[], he)) -> new_ltEs4(xuu472, xuu482, he) 25.69/9.78 new_ltEs14(LT, LT) -> True 25.69/9.78 new_lt22(xuu101, xuu104, ty_@0) -> new_lt18(xuu101, xuu104) 25.69/9.78 new_lt20(xuu471, xuu481, ty_Ordering) -> new_lt6(xuu471, xuu481) 25.69/9.78 new_compare210(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, bee, bef) -> new_compare11(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, new_lt22(xuu101, xuu104, bfc), new_asAs(new_esEs38(xuu101, xuu104, bfc), new_pePe(new_lt23(xuu102, xuu105, bee), new_asAs(new_esEs39(xuu102, xuu105, bee), new_ltEs24(xuu103, xuu106, bef)))), bfc, bee, bef) 25.69/9.78 new_esEs6(xuu3110000, xuu6000, app(ty_[], daf)) -> new_esEs12(xuu3110000, xuu6000, daf) 25.69/9.78 new_esEs35(xuu31100001, xuu60001, app(app(ty_Either, fcb), fcc)) -> new_esEs21(xuu31100001, xuu60001, fcb, fcc) 25.69/9.78 new_esEs37(xuu114, xuu116, ty_Integer) -> new_esEs24(xuu114, xuu116) 25.69/9.78 new_ltEs12(Left(xuu470), Left(xuu480), app(app(app(ty_@3, bh), ca), cb), bf) -> new_ltEs13(xuu470, xuu480, bh, ca, cb) 25.69/9.78 new_esEs10(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.78 new_lt19(xuu470, xuu480, ty_Char) -> new_lt17(xuu470, xuu480) 25.69/9.78 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.78 new_ltEs16(False, True) -> True 25.69/9.78 new_primCompAux1(xuu311000, xuu600, xuu311001, xuu601, bhg) -> new_primCompAux00(xuu311001, xuu601, new_compare5(xuu311000, xuu600, bhg), app(ty_[], bhg)) 25.69/9.78 new_ltEs23(xuu115, xuu117, app(app(ty_@2, ceg), ceh)) -> new_ltEs10(xuu115, xuu117, ceg, ceh) 25.69/9.78 new_compare14(Integer(xuu3110000), Integer(xuu6000)) -> new_primCmpInt(xuu3110000, xuu6000) 25.69/9.78 new_ltEs23(xuu115, xuu117, app(app(ty_Either, cdh), cea)) -> new_ltEs12(xuu115, xuu117, cdh, cea) 25.69/9.78 new_lt23(xuu102, xuu105, ty_@0) -> new_lt18(xuu102, xuu105) 25.69/9.78 new_primCmpInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> LT 25.69/9.78 new_esEs29(xuu470, xuu480, app(ty_[], bca)) -> new_esEs12(xuu470, xuu480, bca) 25.69/9.78 new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_Either, cac), cad)) -> new_compare18(xuu37, xuu38, cac, cad) 25.69/9.78 new_esEs33(xuu31100001, xuu60001, ty_Bool) -> new_esEs20(xuu31100001, xuu60001) 25.69/9.78 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.78 new_esEs6(xuu3110000, xuu6000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs17(xuu3110000, xuu6000, chh, daa, dab) 25.69/9.78 new_esEs5(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.78 new_esEs30(xuu470, xuu480, ty_Int) -> new_esEs19(xuu470, xuu480) 25.69/9.78 new_compare13(EQ, GT) -> LT 25.69/9.78 new_compare24(xuu114, xuu115, xuu116, xuu117, False, cdg, ccg) -> new_compare111(xuu114, xuu115, xuu116, xuu117, new_lt21(xuu114, xuu116, cdg), new_asAs(new_esEs37(xuu114, xuu116, cdg), new_ltEs23(xuu115, xuu117, ccg)), cdg, ccg) 25.69/9.78 new_ltEs22(xuu47, xuu48, ty_Bool) -> new_ltEs16(xuu47, xuu48) 25.69/9.78 new_esEs35(xuu31100001, xuu60001, ty_Ordering) -> new_esEs26(xuu31100001, xuu60001) 25.69/9.78 new_ltEs12(Right(xuu470), Right(xuu480), cg, ty_Int) -> new_ltEs9(xuu470, xuu480) 25.69/9.78 new_esEs8(xuu3110002, xuu6002, app(ty_[], ecb)) -> new_esEs12(xuu3110002, xuu6002, ecb) 25.69/9.78 new_esEs12(:(xuu31100000, xuu31100001), [], cgc) -> False 25.69/9.78 new_esEs12([], :(xuu60000, xuu60001), cgc) -> False 25.69/9.78 new_primCmpInt(Pos(Zero), Neg(Succ(xuu60000))) -> GT 25.69/9.78 new_ltEs15(Just(xuu470), Just(xuu480), app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs13(xuu470, xuu480, bad, bae, baf) 25.69/9.78 new_esEs10(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.78 new_compare5(xuu311000, xuu600, ty_Int) -> new_compare15(xuu311000, xuu600) 25.69/9.78 new_compare111(xuu188, xuu189, xuu190, xuu191, False, xuu193, fff, ffg) -> new_compare112(xuu188, xuu189, xuu190, xuu191, xuu193, fff, ffg) 25.69/9.78 new_compare29(True, True) -> EQ 25.69/9.78 new_esEs33(xuu31100001, xuu60001, ty_Float) -> new_esEs18(xuu31100001, xuu60001) 25.69/9.78 new_ltEs21(xuu76, xuu77, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs13(xuu76, xuu77, cbf, cbg, cbh) 25.69/9.78 new_esEs37(xuu114, xuu116, app(app(ty_Either, cce), ccf)) -> new_esEs21(xuu114, xuu116, cce, ccf) 25.69/9.78 new_primCmpInt(Neg(Succ(xuu31100000)), Neg(xuu6000)) -> new_primCmpNat0(xuu6000, Succ(xuu31100000)) 25.69/9.78 new_esEs36(xuu31100002, xuu60002, ty_Double) -> new_esEs22(xuu31100002, xuu60002) 25.69/9.78 new_ltEs20(xuu54, xuu55, ty_@0) -> new_ltEs18(xuu54, xuu55) 25.69/9.78 new_esEs33(xuu31100001, xuu60001, app(app(ty_@2, eee), eef)) -> new_esEs16(xuu31100001, xuu60001, eee, eef) 25.69/9.78 new_ltEs22(xuu47, xuu48, ty_Integer) -> new_ltEs7(xuu47, xuu48) 25.69/9.78 new_esEs9(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.78 new_esEs5(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.78 new_primEqInt(Pos(Succ(xuu311000000)), Pos(Zero)) -> False 25.69/9.78 new_primEqInt(Pos(Zero), Pos(Succ(xuu600000))) -> False 25.69/9.78 new_esEs7(xuu3110001, xuu6001, ty_Int) -> new_esEs19(xuu3110001, xuu6001) 25.69/9.78 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.78 new_ltEs11(xuu471, xuu481, ty_Double) -> new_ltEs6(xuu471, xuu481) 25.69/9.78 new_lt21(xuu114, xuu116, app(app(ty_@2, cde), cdf)) -> new_lt5(xuu114, xuu116, cde, cdf) 25.69/9.78 new_ltEs17(xuu47, xuu48) -> new_fsEs(new_compare30(xuu47, xuu48)) 25.69/9.78 new_ltEs24(xuu103, xuu106, ty_Float) -> new_ltEs5(xuu103, xuu106) 25.69/9.78 new_primCompAux00(xuu37, xuu38, EQ, app(ty_[], cah)) -> new_compare6(xuu37, xuu38, cah) 25.69/9.78 new_lt23(xuu102, xuu105, app(ty_Ratio, fhd)) -> new_lt4(xuu102, xuu105, fhd) 25.69/9.78 new_esEs37(xuu114, xuu116, app(ty_Ratio, fea)) -> new_esEs23(xuu114, xuu116, fea) 25.69/9.78 new_compare6(:(xuu3110000, xuu3110001), [], bhf) -> GT 25.69/9.78 new_esEs37(xuu114, xuu116, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs17(xuu114, xuu116, cch, cda, cdb) 25.69/9.78 new_esEs39(xuu102, xuu105, app(ty_Maybe, bgb)) -> new_esEs25(xuu102, xuu105, bgb) 25.69/9.78 new_ltEs8(xuu47, xuu48, dbe) -> new_fsEs(new_compare8(xuu47, xuu48, dbe)) 25.69/9.78 new_lt21(xuu114, xuu116, app(app(ty_Either, cce), ccf)) -> new_lt9(xuu114, xuu116, cce, ccf) 25.69/9.78 new_ltEs20(xuu54, xuu55, ty_Ordering) -> new_ltEs14(xuu54, xuu55) 25.69/9.78 new_ltEs20(xuu54, xuu55, app(app(ty_@2, cga), cgb)) -> new_ltEs10(xuu54, xuu55, cga, cgb) 25.69/9.78 new_esEs30(xuu470, xuu480, ty_Ordering) -> new_esEs26(xuu470, xuu480) 25.69/9.78 new_primCmpNat0(Zero, Zero) -> EQ 25.69/9.78 new_esEs35(xuu31100001, xuu60001, ty_Int) -> new_esEs19(xuu31100001, xuu60001) 25.69/9.78 new_ltEs15(Just(xuu470), Just(xuu480), ty_Double) -> new_ltEs6(xuu470, xuu480) 25.69/9.78 new_ltEs12(Right(xuu470), Right(xuu480), cg, ty_Integer) -> new_ltEs7(xuu470, xuu480) 25.69/9.78 new_ltEs22(xuu47, xuu48, ty_Int) -> new_ltEs9(xuu47, xuu48) 25.69/9.78 new_esEs21(Left(xuu31100000), Left(xuu60000), app(app(app(ty_@3, ega), egb), egc), dhc) -> new_esEs17(xuu31100000, xuu60000, ega, egb, egc) 25.69/9.78 new_ltEs21(xuu76, xuu77, ty_Double) -> new_ltEs6(xuu76, xuu77) 25.69/9.78 new_lt23(xuu102, xuu105, app(ty_[], bga)) -> new_lt7(xuu102, xuu105, bga) 25.69/9.78 new_compare13(LT, EQ) -> LT 25.69/9.78 new_ltEs19(xuu472, xuu482, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs13(xuu472, xuu482, hb, hc, hd) 25.69/9.78 new_esEs5(xuu3110000, xuu6000, app(app(ty_@2, dhe), dhf)) -> new_esEs16(xuu3110000, xuu6000, dhe, dhf) 25.69/9.78 new_esEs36(xuu31100002, xuu60002, ty_Char) -> new_esEs15(xuu31100002, xuu60002) 25.69/9.78 new_esEs38(xuu101, xuu104, ty_Float) -> new_esEs18(xuu101, xuu104) 25.69/9.78 new_esEs11(xuu3110001, xuu6001, ty_Integer) -> new_esEs24(xuu3110001, xuu6001) 25.69/9.78 new_lt19(xuu470, xuu480, ty_Double) -> new_lt12(xuu470, xuu480) 25.69/9.78 new_esEs4(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.78 new_esEs34(xuu31100000, xuu60000, app(ty_Maybe, fbd)) -> new_esEs25(xuu31100000, xuu60000, fbd) 25.69/9.78 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.78 new_esEs5(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.78 new_lt12(xuu101, xuu104) -> new_esEs26(new_compare10(xuu101, xuu104), LT) 25.69/9.78 new_ltEs20(xuu54, xuu55, app(ty_Ratio, dgd)) -> new_ltEs8(xuu54, xuu55, dgd) 25.69/9.78 new_lt22(xuu101, xuu104, ty_Char) -> new_lt17(xuu101, xuu104) 25.69/9.78 new_esEs20(False, True) -> False 25.69/9.78 new_esEs20(True, False) -> False 25.69/9.78 new_ltEs13(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, ed, ee) -> new_pePe(new_lt19(xuu470, xuu480, ff), new_asAs(new_esEs30(xuu470, xuu480, ff), new_pePe(new_lt20(xuu471, xuu481, ed), new_asAs(new_esEs31(xuu471, xuu481, ed), new_ltEs19(xuu472, xuu482, ee))))) 25.69/9.78 new_primCompAux00(xuu37, xuu38, EQ, ty_Int) -> new_compare15(xuu37, xuu38) 25.69/9.78 new_lt20(xuu471, xuu481, ty_Integer) -> new_lt13(xuu471, xuu481) 25.69/9.78 new_esEs32(xuu31100000, xuu60000, ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.78 new_lt19(xuu470, xuu480, app(app(ty_@2, fc), fd)) -> new_lt5(xuu470, xuu480, fc, fd) 25.69/9.78 new_esEs13(xuu31100000, xuu60000, ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.78 new_esEs37(xuu114, xuu116, ty_@0) -> new_esEs14(xuu114, xuu116) 25.69/9.78 new_ltEs14(EQ, LT) -> False 25.69/9.78 new_compare110(xuu133, xuu134, True, fhb, fhc) -> LT 25.69/9.78 new_esEs39(xuu102, xuu105, app(ty_[], bga)) -> new_esEs12(xuu102, xuu105, bga) 25.69/9.78 new_ltEs24(xuu103, xuu106, ty_Char) -> new_ltEs17(xuu103, xuu106) 25.69/9.78 new_esEs11(xuu3110001, xuu6001, ty_Double) -> new_esEs22(xuu3110001, xuu6001) 25.69/9.78 new_esEs29(xuu470, xuu480, app(ty_Maybe, bcb)) -> new_esEs25(xuu470, xuu480, bcb) 25.69/9.78 new_esEs25(Just(xuu31100000), Just(xuu60000), app(ty_Maybe, fha)) -> new_esEs25(xuu31100000, xuu60000, fha) 25.69/9.78 new_compare5(xuu311000, xuu600, app(app(ty_Either, bb), bc)) -> new_compare18(xuu311000, xuu600, bb, bc) 25.69/9.78 new_esEs13(xuu31100000, xuu60000, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.78 new_esEs19(xuu3110000, xuu6000) -> new_primEqInt(xuu3110000, xuu6000) 25.69/9.78 new_compare8(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ty_Integer) -> new_compare14(new_sr0(xuu3110000, xuu6001), new_sr0(xuu6000, xuu3110001)) 25.69/9.78 new_esEs32(xuu31100000, xuu60000, app(app(ty_Either, edh), eea)) -> new_esEs21(xuu31100000, xuu60000, edh, eea) 25.69/9.78 new_esEs36(xuu31100002, xuu60002, app(ty_[], fdg)) -> new_esEs12(xuu31100002, xuu60002, fdg) 25.69/9.78 new_ltEs23(xuu115, xuu117, app(ty_[], cee)) -> new_ltEs4(xuu115, xuu117, cee) 25.69/9.78 new_primCmpNat0(Succ(xuu31100000), Zero) -> GT 25.69/9.78 new_ltEs19(xuu472, xuu482, ty_Double) -> new_ltEs6(xuu472, xuu482) 25.69/9.78 new_compare16(Just(xuu3110000), Nothing, bhh) -> GT 25.69/9.78 new_esEs31(xuu471, xuu481, ty_Integer) -> new_esEs24(xuu471, xuu481) 25.69/9.78 new_pePe(False, xuu210) -> xuu210 25.69/9.78 new_esEs20(False, False) -> True 25.69/9.78 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.78 new_ltEs10(@2(xuu470, xuu471), @2(xuu480, xuu481), bce, bbe) -> new_pePe(new_lt8(xuu470, xuu480, bce), new_asAs(new_esEs29(xuu470, xuu480, bce), new_ltEs11(xuu471, xuu481, bbe))) 25.69/9.78 new_esEs11(xuu3110001, xuu6001, app(app(ty_@2, dch), dda)) -> new_esEs16(xuu3110001, xuu6001, dch, dda) 25.69/9.78 new_compare28(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), beb, bec, bed) -> new_compare210(xuu3110000, xuu3110001, xuu3110002, xuu6000, xuu6001, xuu6002, new_asAs(new_esEs6(xuu3110000, xuu6000, beb), new_asAs(new_esEs7(xuu3110001, xuu6001, bec), new_esEs8(xuu3110002, xuu6002, bed))), beb, bec, bed) 25.69/9.78 new_compare5(xuu311000, xuu600, ty_Ordering) -> new_compare13(xuu311000, xuu600) 25.69/9.78 new_lt22(xuu101, xuu104, app(ty_Maybe, beh)) -> new_lt15(xuu101, xuu104, beh) 25.69/9.78 new_esEs11(xuu3110001, xuu6001, ty_Float) -> new_esEs18(xuu3110001, xuu6001) 25.69/9.78 new_compare11(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, xuu180, dbb, dbc, dbd) -> new_compare12(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, dbb, dbc, dbd) 25.69/9.78 new_esEs34(xuu31100000, xuu60000, app(ty_Ratio, fbb)) -> new_esEs23(xuu31100000, xuu60000, fbb) 25.69/9.78 new_compare6(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhf) -> new_primCompAux1(xuu3110000, xuu6000, xuu3110001, xuu6001, bhf) 25.69/9.78 new_esEs32(xuu31100000, xuu60000, app(app(app(ty_@3, ede), edf), edg)) -> new_esEs17(xuu31100000, xuu60000, ede, edf, edg) 25.69/9.78 new_compare16(Nothing, Nothing, bhh) -> EQ 25.69/9.78 new_lt21(xuu114, xuu116, ty_Double) -> new_lt12(xuu114, xuu116) 25.69/9.78 new_primEqInt(Pos(Zero), Neg(Succ(xuu600000))) -> False 25.69/9.78 new_primEqInt(Neg(Zero), Pos(Succ(xuu600000))) -> False 25.69/9.78 new_esEs5(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.78 new_esEs7(xuu3110001, xuu6001, ty_Ordering) -> new_esEs26(xuu3110001, xuu6001) 25.69/9.78 new_compare19(xuu154, xuu155, True, fec) -> LT 25.69/9.78 new_lt23(xuu102, xuu105, ty_Ordering) -> new_lt6(xuu102, xuu105) 25.69/9.78 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, app(ty_Ratio, ehh)) -> new_esEs23(xuu31100000, xuu60000, ehh) 25.69/9.78 new_esEs4(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.78 new_esEs34(xuu31100000, xuu60000, app(ty_[], fbc)) -> new_esEs12(xuu31100000, xuu60000, fbc) 25.69/9.78 new_esEs11(xuu3110001, xuu6001, app(ty_[], ddh)) -> new_esEs12(xuu3110001, xuu6001, ddh) 25.69/9.78 new_compare111(xuu188, xuu189, xuu190, xuu191, True, xuu193, fff, ffg) -> new_compare112(xuu188, xuu189, xuu190, xuu191, True, fff, ffg) 25.69/9.78 new_ltEs12(Left(xuu470), Left(xuu480), app(app(ty_Either, bd), be), bf) -> new_ltEs12(xuu470, xuu480, bd, be) 25.69/9.78 new_ltEs15(Nothing, Nothing, ecd) -> True 25.69/9.78 new_primCompAux00(xuu37, xuu38, EQ, ty_@0) -> new_compare31(xuu37, xuu38) 25.69/9.78 new_ltEs14(GT, EQ) -> False 25.69/9.78 new_lt22(xuu101, xuu104, app(app(app(ty_@3, bdg), bdh), bea)) -> new_lt11(xuu101, xuu104, bdg, bdh, bea) 25.69/9.78 new_ltEs15(Just(xuu470), Nothing, ecd) -> False 25.69/9.78 new_esEs6(xuu3110000, xuu6000, app(ty_Maybe, dag)) -> new_esEs25(xuu3110000, xuu6000, dag) 25.69/9.78 new_lt22(xuu101, xuu104, ty_Bool) -> new_lt16(xuu101, xuu104) 25.69/9.78 new_ltEs12(Left(xuu470), Left(xuu480), ty_Integer, bf) -> new_ltEs7(xuu470, xuu480) 25.69/9.78 new_esEs36(xuu31100002, xuu60002, ty_Float) -> new_esEs18(xuu31100002, xuu60002) 25.69/9.78 new_esEs8(xuu3110002, xuu6002, ty_Double) -> new_esEs22(xuu3110002, xuu6002) 25.69/9.78 new_esEs29(xuu470, xuu480, ty_Double) -> new_esEs22(xuu470, xuu480) 25.69/9.78 new_esEs13(xuu31100000, xuu60000, ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.78 new_esEs4(xuu3110000, xuu6000, app(app(ty_Either, dhb), dhc)) -> new_esEs21(xuu3110000, xuu6000, dhb, dhc) 25.69/9.78 new_ltEs12(Left(xuu470), Left(xuu480), ty_Ordering, bf) -> new_ltEs14(xuu470, xuu480) 25.69/9.78 new_esEs9(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.78 new_esEs6(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.78 new_ltEs24(xuu103, xuu106, ty_Int) -> new_ltEs9(xuu103, xuu106) 25.69/9.78 new_esEs38(xuu101, xuu104, ty_Char) -> new_esEs15(xuu101, xuu104) 25.69/9.78 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.78 new_esEs31(xuu471, xuu481, app(ty_Maybe, ge)) -> new_esEs25(xuu471, xuu481, ge) 25.69/9.78 new_ltEs12(Right(xuu470), Right(xuu480), cg, app(app(ty_@2, dh), ea)) -> new_ltEs10(xuu470, xuu480, dh, ea) 25.69/9.78 new_ltEs21(xuu76, xuu77, app(ty_Maybe, ccb)) -> new_ltEs15(xuu76, xuu77, ccb) 25.69/9.78 new_esEs33(xuu31100001, xuu60001, ty_Integer) -> new_esEs24(xuu31100001, xuu60001) 25.69/9.78 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.78 new_lt19(xuu470, xuu480, app(app(ty_Either, eb), ec)) -> new_lt9(xuu470, xuu480, eb, ec) 25.69/9.78 new_ltEs19(xuu472, xuu482, ty_Char) -> new_ltEs17(xuu472, xuu482) 25.69/9.78 new_ltEs12(Left(xuu470), Left(xuu480), ty_Bool, bf) -> new_ltEs16(xuu470, xuu480) 25.69/9.78 new_esEs28(xuu31100001, xuu60001, ty_Int) -> new_esEs19(xuu31100001, xuu60001) 25.69/9.78 new_esEs26(GT, GT) -> True 25.69/9.78 new_lt8(xuu470, xuu480, ty_Double) -> new_lt12(xuu470, xuu480) 25.69/9.78 new_lt23(xuu102, xuu105, ty_Integer) -> new_lt13(xuu102, xuu105) 25.69/9.78 new_esEs38(xuu101, xuu104, ty_Bool) -> new_esEs20(xuu101, xuu104) 25.69/9.78 new_esEs8(xuu3110002, xuu6002, app(ty_Maybe, ecc)) -> new_esEs25(xuu3110002, xuu6002, ecc) 25.69/9.78 new_compare17(xuu140, xuu141, True, ech, eda) -> LT 25.69/9.78 new_compare5(xuu311000, xuu600, ty_@0) -> new_compare31(xuu311000, xuu600) 25.69/9.78 new_esEs31(xuu471, xuu481, app(app(ty_@2, gf), gg)) -> new_esEs16(xuu471, xuu481, gf, gg) 25.69/9.78 new_esEs6(xuu3110000, xuu6000, app(app(ty_Either, dac), dad)) -> new_esEs21(xuu3110000, xuu6000, dac, dad) 25.69/9.78 new_ltEs22(xuu47, xuu48, ty_Char) -> new_ltEs17(xuu47, xuu48) 25.69/9.78 new_esEs8(xuu3110002, xuu6002, ty_Integer) -> new_esEs24(xuu3110002, xuu6002) 25.69/9.78 new_compare18(Left(xuu3110000), Right(xuu6000), bb, bc) -> LT 25.69/9.78 new_compare8(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ty_Int) -> new_compare15(new_sr(xuu3110000, xuu6001), new_sr(xuu6000, xuu3110001)) 25.69/9.78 new_lt8(xuu470, xuu480, app(ty_Maybe, bcb)) -> new_lt15(xuu470, xuu480, bcb) 25.69/9.78 new_esEs30(xuu470, xuu480, ty_@0) -> new_esEs14(xuu470, xuu480) 25.69/9.78 new_compare5(xuu311000, xuu600, ty_Bool) -> new_compare29(xuu311000, xuu600) 25.69/9.78 new_lt22(xuu101, xuu104, ty_Integer) -> new_lt13(xuu101, xuu104) 25.69/9.78 new_esEs12(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), cgc) -> new_asAs(new_esEs13(xuu31100000, xuu60000, cgc), new_esEs12(xuu31100001, xuu60001, cgc)) 25.69/9.78 new_esEs4(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.78 new_esEs31(xuu471, xuu481, ty_Double) -> new_esEs22(xuu471, xuu481) 25.69/9.78 new_esEs7(xuu3110001, xuu6001, ty_Integer) -> new_esEs24(xuu3110001, xuu6001) 25.69/9.78 new_esEs29(xuu470, xuu480, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs17(xuu470, xuu480, bbf, bbg, bbh) 25.69/9.78 new_esEs38(xuu101, xuu104, ty_Int) -> new_esEs19(xuu101, xuu104) 25.69/9.78 new_primMulInt(Neg(xuu60000), Neg(xuu31100010)) -> Pos(new_primMulNat0(xuu60000, xuu31100010)) 25.69/9.78 new_primCmpInt(Pos(Zero), Pos(Succ(xuu60000))) -> new_primCmpNat0(Zero, Succ(xuu60000)) 25.69/9.78 new_ltEs20(xuu54, xuu55, ty_Bool) -> new_ltEs16(xuu54, xuu55) 25.69/9.78 new_ltEs23(xuu115, xuu117, ty_@0) -> new_ltEs18(xuu115, xuu117) 25.69/9.78 new_ltEs23(xuu115, xuu117, app(ty_Ratio, feb)) -> new_ltEs8(xuu115, xuu117, feb) 25.69/9.78 new_ltEs19(xuu472, xuu482, app(ty_Maybe, hf)) -> new_ltEs15(xuu472, xuu482, hf) 25.69/9.78 new_fsEs(xuu205) -> new_not(new_esEs26(xuu205, GT)) 25.69/9.78 new_ltEs21(xuu76, xuu77, ty_Char) -> new_ltEs17(xuu76, xuu77) 25.69/9.78 new_esEs35(xuu31100001, xuu60001, ty_Float) -> new_esEs18(xuu31100001, xuu60001) 25.69/9.78 new_ltEs15(Just(xuu470), Just(xuu480), app(ty_Maybe, bah)) -> new_ltEs15(xuu470, xuu480, bah) 25.69/9.78 new_esEs7(xuu3110001, xuu6001, app(app(ty_@2, fed), fee)) -> new_esEs16(xuu3110001, xuu6001, fed, fee) 25.69/9.78 new_ltEs15(Just(xuu470), Just(xuu480), ty_Float) -> new_ltEs5(xuu470, xuu480) 25.69/9.78 new_ltEs19(xuu472, xuu482, ty_Float) -> new_ltEs5(xuu472, xuu482) 25.69/9.78 new_esEs32(xuu31100000, xuu60000, ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.78 new_ltEs14(GT, LT) -> False 25.69/9.78 new_ltEs24(xuu103, xuu106, ty_Integer) -> new_ltEs7(xuu103, xuu106) 25.69/9.78 new_esEs7(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) 25.69/9.78 new_esEs38(xuu101, xuu104, ty_Double) -> new_esEs22(xuu101, xuu104) 25.69/9.78 new_esEs35(xuu31100001, xuu60001, app(app(ty_@2, fbe), fbf)) -> new_esEs16(xuu31100001, xuu60001, fbe, fbf) 25.69/9.78 new_ltEs23(xuu115, xuu117, app(app(app(ty_@3, ceb), cec), ced)) -> new_ltEs13(xuu115, xuu117, ceb, cec, ced) 25.69/9.78 new_lt8(xuu470, xuu480, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_lt11(xuu470, xuu480, bbf, bbg, bbh) 25.69/9.78 new_ltEs12(Right(xuu470), Right(xuu480), cg, app(app(ty_Either, da), db)) -> new_ltEs12(xuu470, xuu480, da, db) 25.69/9.78 new_primMulInt(Pos(xuu60000), Neg(xuu31100010)) -> Neg(new_primMulNat0(xuu60000, xuu31100010)) 25.69/9.78 new_primMulInt(Neg(xuu60000), Pos(xuu31100010)) -> Neg(new_primMulNat0(xuu60000, xuu31100010)) 25.69/9.78 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, app(ty_Maybe, fab)) -> new_esEs25(xuu31100000, xuu60000, fab) 25.69/9.78 new_ltEs12(Right(xuu470), Left(xuu480), cg, bf) -> False 25.69/9.78 new_ltEs19(xuu472, xuu482, ty_Int) -> new_ltEs9(xuu472, xuu482) 25.69/9.78 new_esEs8(xuu3110002, xuu6002, ty_Bool) -> new_esEs20(xuu3110002, xuu6002) 25.69/9.78 new_esEs30(xuu470, xuu480, ty_Integer) -> new_esEs24(xuu470, xuu480) 25.69/9.78 new_lt18(xuu101, xuu104) -> new_esEs26(new_compare31(xuu101, xuu104), LT) 25.69/9.78 new_esEs8(xuu3110002, xuu6002, app(app(app(ty_@3, ebd), ebe), ebf)) -> new_esEs17(xuu3110002, xuu6002, ebd, ebe, ebf) 25.69/9.78 new_esEs13(xuu31100000, xuu60000, ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.78 new_sr0(Integer(xuu60000), Integer(xuu31100010)) -> Integer(new_primMulInt(xuu60000, xuu31100010)) 25.69/9.78 new_esEs25(Just(xuu31100000), Just(xuu60000), app(ty_Ratio, fgg)) -> new_esEs23(xuu31100000, xuu60000, fgg) 25.69/9.78 new_esEs8(xuu3110002, xuu6002, app(ty_Ratio, eca)) -> new_esEs23(xuu3110002, xuu6002, eca) 25.69/9.78 new_lt20(xuu471, xuu481, app(ty_[], gd)) -> new_lt7(xuu471, xuu481, gd) 25.69/9.78 new_esEs10(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.78 new_lt19(xuu470, xuu480, app(ty_Ratio, dfh)) -> new_lt4(xuu470, xuu480, dfh) 25.69/9.78 new_esEs4(xuu3110000, xuu6000, app(ty_Ratio, dba)) -> new_esEs23(xuu3110000, xuu6000, dba) 25.69/9.78 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Double, dhc) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.78 new_compare10(Double(xuu3110000, Pos(xuu31100010)), Double(xuu6000, Pos(xuu60010))) -> new_compare15(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) 25.69/9.78 new_lt20(xuu471, xuu481, ty_Int) -> new_lt10(xuu471, xuu481) 25.69/9.78 new_ltEs21(xuu76, xuu77, app(app(ty_Either, cbd), cbe)) -> new_ltEs12(xuu76, xuu77, cbd, cbe) 25.69/9.78 new_lt22(xuu101, xuu104, ty_Double) -> new_lt12(xuu101, xuu104) 25.69/9.78 new_asAs(True, xuu149) -> xuu149 25.69/9.78 new_lt8(xuu470, xuu480, app(ty_Ratio, dfd)) -> new_lt4(xuu470, xuu480, dfd) 25.69/9.78 new_lt20(xuu471, xuu481, app(ty_Ratio, dga)) -> new_lt4(xuu471, xuu481, dga) 25.69/9.78 new_esEs4(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.78 new_ltEs22(xuu47, xuu48, ty_Ordering) -> new_ltEs14(xuu47, xuu48) 25.69/9.78 new_lt19(xuu470, xuu480, app(ty_[], fa)) -> new_lt7(xuu470, xuu480, fa) 25.69/9.78 new_esEs5(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.78 new_ltEs24(xuu103, xuu106, ty_Bool) -> new_ltEs16(xuu103, xuu106) 25.69/9.78 new_ltEs21(xuu76, xuu77, ty_Float) -> new_ltEs5(xuu76, xuu77) 25.69/9.78 new_esEs31(xuu471, xuu481, ty_Float) -> new_esEs18(xuu471, xuu481) 25.69/9.78 new_esEs10(xuu3110000, xuu6000, app(app(ty_@2, dbf), dbg)) -> new_esEs16(xuu3110000, xuu6000, dbf, dbg) 25.69/9.78 new_ltEs9(xuu47, xuu48) -> new_fsEs(new_compare15(xuu47, xuu48)) 25.69/9.78 new_compare16(Just(xuu3110000), Just(xuu6000), bhh) -> new_compare25(xuu3110000, xuu6000, new_esEs9(xuu3110000, xuu6000, bhh), bhh) 25.69/9.78 new_primPlusNat1(xuu222, xuu311000100) -> new_primPlusNat0(xuu222, Succ(xuu311000100)) 25.69/9.78 new_lt19(xuu470, xuu480, ty_Int) -> new_lt10(xuu470, xuu480) 25.69/9.78 new_ltEs15(Just(xuu470), Just(xuu480), ty_Char) -> new_ltEs17(xuu470, xuu480) 25.69/9.78 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, app(app(ty_Either, ehf), ehg)) -> new_esEs21(xuu31100000, xuu60000, ehf, ehg) 25.69/9.78 new_ltEs22(xuu47, xuu48, app(ty_Ratio, dbe)) -> new_ltEs8(xuu47, xuu48, dbe) 25.69/9.78 new_sr(xuu6000, xuu3110001) -> new_primMulInt(xuu6000, xuu3110001) 25.69/9.78 new_esEs8(xuu3110002, xuu6002, ty_Char) -> new_esEs15(xuu3110002, xuu6002) 25.69/9.78 new_esEs29(xuu470, xuu480, ty_Integer) -> new_esEs24(xuu470, xuu480) 25.69/9.78 new_ltEs11(xuu471, xuu481, app(ty_[], bdc)) -> new_ltEs4(xuu471, xuu481, bdc) 25.69/9.78 new_primMulNat0(Zero, Zero) -> Zero 25.69/9.78 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, app(ty_[], faa)) -> new_esEs12(xuu31100000, xuu60000, faa) 25.69/9.78 new_esEs21(Left(xuu31100000), Left(xuu60000), app(app(ty_Either, egd), ege), dhc) -> new_esEs21(xuu31100000, xuu60000, egd, ege) 25.69/9.78 new_ltEs20(xuu54, xuu55, ty_Integer) -> new_ltEs7(xuu54, xuu55) 25.69/9.78 new_lt10(xuu101, xuu104) -> new_esEs26(new_compare15(xuu101, xuu104), LT) 25.69/9.78 new_ltEs21(xuu76, xuu77, app(ty_Ratio, eah)) -> new_ltEs8(xuu76, xuu77, eah) 25.69/9.78 new_esEs4(xuu3110000, xuu6000, app(app(ty_@2, dge), dgf)) -> new_esEs16(xuu3110000, xuu6000, dge, dgf) 25.69/9.78 new_esEs7(xuu3110001, xuu6001, ty_Char) -> new_esEs15(xuu3110001, xuu6001) 25.69/9.78 new_esEs33(xuu31100001, xuu60001, ty_Double) -> new_esEs22(xuu31100001, xuu60001) 25.69/9.78 new_ltEs22(xuu47, xuu48, ty_Float) -> new_ltEs5(xuu47, xuu48) 25.69/9.78 new_ltEs15(Just(xuu470), Just(xuu480), app(app(ty_@2, bba), bbb)) -> new_ltEs10(xuu470, xuu480, bba, bbb) 25.69/9.78 new_ltEs21(xuu76, xuu77, ty_Ordering) -> new_ltEs14(xuu76, xuu77) 25.69/9.78 new_esEs21(Left(xuu31100000), Left(xuu60000), app(ty_[], egg), dhc) -> new_esEs12(xuu31100000, xuu60000, egg) 25.69/9.78 new_esEs28(xuu31100001, xuu60001, ty_Integer) -> new_esEs24(xuu31100001, xuu60001) 25.69/9.78 new_esEs39(xuu102, xuu105, app(app(ty_@2, bgc), bgd)) -> new_esEs16(xuu102, xuu105, bgc, bgd) 25.69/9.78 new_esEs25(Just(xuu31100000), Just(xuu60000), app(app(ty_@2, ffh), fga)) -> new_esEs16(xuu31100000, xuu60000, ffh, fga) 25.69/9.78 new_esEs39(xuu102, xuu105, app(ty_Ratio, fhd)) -> new_esEs23(xuu102, xuu105, fhd) 25.69/9.78 new_ltEs23(xuu115, xuu117, app(ty_Maybe, cef)) -> new_ltEs15(xuu115, xuu117, cef) 25.69/9.78 new_ltEs19(xuu472, xuu482, app(app(ty_Either, gh), ha)) -> new_ltEs12(xuu472, xuu482, gh, ha) 25.69/9.78 new_esEs7(xuu3110001, xuu6001, app(app(ty_Either, ffa), ffb)) -> new_esEs21(xuu3110001, xuu6001, ffa, ffb) 25.69/9.78 new_lt21(xuu114, xuu116, app(ty_Ratio, fea)) -> new_lt4(xuu114, xuu116, fea) 25.69/9.78 new_compare5(xuu311000, xuu600, ty_Double) -> new_compare10(xuu311000, xuu600) 25.69/9.78 new_esEs9(xuu3110000, xuu6000, app(app(app(ty_@3, ded), dee), def)) -> new_esEs17(xuu3110000, xuu6000, ded, dee, def) 25.69/9.78 new_lt17(xuu101, xuu104) -> new_esEs26(new_compare30(xuu101, xuu104), LT) 25.69/9.78 new_ltEs22(xuu47, xuu48, app(ty_Maybe, ecd)) -> new_ltEs15(xuu47, xuu48, ecd) 25.69/9.78 new_primCompAux00(xuu37, xuu38, EQ, app(app(app(ty_@3, cae), caf), cag)) -> new_compare28(xuu37, xuu38, cae, caf, cag) 25.69/9.78 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.78 new_primEqInt(Neg(Succ(xuu311000000)), Neg(Zero)) -> False 25.69/9.78 new_primEqInt(Neg(Zero), Neg(Succ(xuu600000))) -> False 25.69/9.78 new_esEs9(xuu3110000, xuu6000, app(ty_Ratio, dfa)) -> new_esEs23(xuu3110000, xuu6000, dfa) 25.69/9.78 new_ltEs20(xuu54, xuu55, app(app(ty_Either, cfb), cfc)) -> new_ltEs12(xuu54, xuu55, cfb, cfc) 25.69/9.78 new_esEs33(xuu31100001, xuu60001, app(ty_[], efe)) -> new_esEs12(xuu31100001, xuu60001, efe) 25.69/9.78 new_primEqInt(Pos(Succ(xuu311000000)), Pos(Succ(xuu600000))) -> new_primEqNat0(xuu311000000, xuu600000) 25.69/9.78 new_lt8(xuu470, xuu480, ty_Int) -> new_lt10(xuu470, xuu480) 25.69/9.78 new_primCompAux00(xuu37, xuu38, EQ, ty_Bool) -> new_compare29(xuu37, xuu38) 25.69/9.78 new_compare19(xuu154, xuu155, False, fec) -> GT 25.69/9.78 new_esEs8(xuu3110002, xuu6002, app(app(ty_Either, ebg), ebh)) -> new_esEs21(xuu3110002, xuu6002, ebg, ebh) 25.69/9.78 new_esEs34(xuu31100000, xuu60000, app(app(ty_@2, fac), fad)) -> new_esEs16(xuu31100000, xuu60000, fac, fad) 25.69/9.78 new_primEqInt(Pos(Succ(xuu311000000)), Neg(xuu60000)) -> False 25.69/9.78 new_primEqInt(Neg(Succ(xuu311000000)), Pos(xuu60000)) -> False 25.69/9.78 new_esEs34(xuu31100000, xuu60000, ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.78 new_primCmpInt(Neg(Zero), Neg(Succ(xuu60000))) -> new_primCmpNat0(Succ(xuu60000), Zero) 25.69/9.78 new_lt8(xuu470, xuu480, app(ty_[], bca)) -> new_lt7(xuu470, xuu480, bca) 25.69/9.78 new_esEs6(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.78 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.69/9.78 new_esEs16(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), dge, dgf) -> new_asAs(new_esEs32(xuu31100000, xuu60000, dge), new_esEs33(xuu31100001, xuu60001, dgf)) 25.69/9.78 new_ltEs15(Just(xuu470), Just(xuu480), ty_@0) -> new_ltEs18(xuu470, xuu480) 25.69/9.78 new_primCompAux00(xuu37, xuu38, LT, ecf) -> LT 25.69/9.78 new_esEs7(xuu3110001, xuu6001, ty_Bool) -> new_esEs20(xuu3110001, xuu6001) 25.69/9.78 new_esEs39(xuu102, xuu105, ty_Double) -> new_esEs22(xuu102, xuu105) 25.69/9.78 new_ltEs24(xuu103, xuu106, app(app(ty_Either, bge), bgf)) -> new_ltEs12(xuu103, xuu106, bge, bgf) 25.69/9.78 new_esEs7(xuu3110001, xuu6001, app(ty_Ratio, ffc)) -> new_esEs23(xuu3110001, xuu6001, ffc) 25.69/9.78 new_esEs37(xuu114, xuu116, ty_Double) -> new_esEs22(xuu114, xuu116) 25.69/9.78 new_ltEs19(xuu472, xuu482, app(ty_Ratio, dgb)) -> new_ltEs8(xuu472, xuu482, dgb) 25.69/9.78 new_esEs13(xuu31100000, xuu60000, app(app(ty_@2, cgd), cge)) -> new_esEs16(xuu31100000, xuu60000, cgd, cge) 25.69/9.78 new_not(False) -> True 25.69/9.78 new_ltEs22(xuu47, xuu48, app(app(ty_Either, cg), bf)) -> new_ltEs12(xuu47, xuu48, cg, bf) 25.69/9.78 new_ltEs24(xuu103, xuu106, app(app(app(ty_@3, bgg), bgh), bha)) -> new_ltEs13(xuu103, xuu106, bgg, bgh, bha) 25.69/9.78 new_esEs36(xuu31100002, xuu60002, app(app(ty_@2, fcg), fch)) -> new_esEs16(xuu31100002, xuu60002, fcg, fch) 25.69/9.78 new_esEs8(xuu3110002, xuu6002, ty_@0) -> new_esEs14(xuu3110002, xuu6002) 25.69/9.78 new_ltEs23(xuu115, xuu117, ty_Bool) -> new_ltEs16(xuu115, xuu117) 25.69/9.78 new_lt20(xuu471, xuu481, app(app(ty_@2, gf), gg)) -> new_lt5(xuu471, xuu481, gf, gg) 25.69/9.78 new_esEs9(xuu3110000, xuu6000, app(app(ty_Either, deg), deh)) -> new_esEs21(xuu3110000, xuu6000, deg, deh) 25.69/9.78 new_esEs38(xuu101, xuu104, app(app(ty_@2, bfa), bfb)) -> new_esEs16(xuu101, xuu104, bfa, bfb) 25.69/9.78 new_ltEs12(Right(xuu470), Right(xuu480), cg, ty_Double) -> new_ltEs6(xuu470, xuu480) 25.69/9.78 new_esEs5(xuu3110000, xuu6000, app(ty_Ratio, ead)) -> new_esEs23(xuu3110000, xuu6000, ead) 25.69/9.78 new_esEs35(xuu31100001, xuu60001, ty_Double) -> new_esEs22(xuu31100001, xuu60001) 25.69/9.78 new_ltEs12(Left(xuu470), Left(xuu480), app(ty_Maybe, cd), bf) -> new_ltEs15(xuu470, xuu480, cd) 25.69/9.78 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.69/9.78 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.69/9.78 new_esEs24(Integer(xuu31100000), Integer(xuu60000)) -> new_primEqInt(xuu31100000, xuu60000) 25.69/9.78 new_ltEs14(LT, EQ) -> True 25.69/9.78 new_ltEs22(xuu47, xuu48, app(app(app(ty_@3, ff), ed), ee)) -> new_ltEs13(xuu47, xuu48, ff, ed, ee) 25.69/9.78 new_lt8(xuu470, xuu480, app(app(ty_@2, bcc), bcd)) -> new_lt5(xuu470, xuu480, bcc, bcd) 25.69/9.78 new_esEs27(xuu31100000, xuu60000, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.78 new_esEs32(xuu31100000, xuu60000, app(ty_[], eec)) -> new_esEs12(xuu31100000, xuu60000, eec) 25.69/9.78 new_esEs31(xuu471, xuu481, app(ty_[], gd)) -> new_esEs12(xuu471, xuu481, gd) 25.69/9.78 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.69/9.78 new_esEs26(EQ, EQ) -> True 25.69/9.78 new_esEs30(xuu470, xuu480, ty_Float) -> new_esEs18(xuu470, xuu480) 25.69/9.78 new_esEs9(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.78 new_ltEs24(xuu103, xuu106, app(ty_Maybe, bhc)) -> new_ltEs15(xuu103, xuu106, bhc) 25.69/9.78 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, app(app(app(ty_@3, ehc), ehd), ehe)) -> new_esEs17(xuu31100000, xuu60000, ehc, ehd, ehe) 25.69/9.78 new_lt22(xuu101, xuu104, ty_Int) -> new_lt10(xuu101, xuu104) 25.69/9.78 new_primCompAux00(xuu37, xuu38, EQ, ty_Double) -> new_compare10(xuu37, xuu38) 25.69/9.78 new_lt23(xuu102, xuu105, app(app(ty_@2, bgc), bgd)) -> new_lt5(xuu102, xuu105, bgc, bgd) 25.69/9.78 new_compare31(@0, @0) -> EQ 25.69/9.78 new_esEs26(LT, LT) -> True 25.69/9.78 new_esEs9(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.78 new_compare30(Char(xuu3110000), Char(xuu6000)) -> new_primCmpNat0(xuu3110000, xuu6000) 25.69/9.78 new_esEs30(xuu470, xuu480, app(ty_[], fa)) -> new_esEs12(xuu470, xuu480, fa) 25.69/9.78 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.78 new_compare5(xuu311000, xuu600, app(ty_[], bhf)) -> new_compare6(xuu311000, xuu600, bhf) 25.69/9.78 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.78 new_ltEs12(Left(xuu470), Left(xuu480), ty_@0, bf) -> new_ltEs18(xuu470, xuu480) 25.69/9.78 new_esEs12([], [], cgc) -> True 25.69/9.78 new_ltEs21(xuu76, xuu77, ty_Int) -> new_ltEs9(xuu76, xuu77) 25.69/9.78 new_ltEs6(xuu47, xuu48) -> new_fsEs(new_compare10(xuu47, xuu48)) 25.69/9.78 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.69/9.78 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.69/9.78 new_esEs8(xuu3110002, xuu6002, ty_Int) -> new_esEs19(xuu3110002, xuu6002) 25.69/9.78 new_compare110(xuu133, xuu134, False, fhb, fhc) -> GT 25.69/9.78 new_esEs9(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.78 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.78 new_esEs25(Nothing, Nothing, dhd) -> True 25.69/9.78 new_primEqNat0(Zero, Zero) -> True 25.69/9.78 new_ltEs11(xuu471, xuu481, app(app(ty_@2, bde), bdf)) -> new_ltEs10(xuu471, xuu481, bde, bdf) 25.69/9.78 new_ltEs20(xuu54, xuu55, ty_Int) -> new_ltEs9(xuu54, xuu55) 25.69/9.78 new_lt11(xuu101, xuu104, bdg, bdh, bea) -> new_esEs26(new_compare28(xuu101, xuu104, bdg, bdh, bea), LT) 25.69/9.78 new_esEs25(Nothing, Just(xuu60000), dhd) -> False 25.69/9.78 new_esEs25(Just(xuu31100000), Nothing, dhd) -> False 25.69/9.78 new_compare16(Nothing, Just(xuu6000), bhh) -> LT 25.69/9.78 new_esEs37(xuu114, xuu116, app(app(ty_@2, cde), cdf)) -> new_esEs16(xuu114, xuu116, cde, cdf) 25.69/9.78 new_lt21(xuu114, xuu116, app(ty_[], cdc)) -> new_lt7(xuu114, xuu116, cdc) 25.69/9.78 new_ltEs15(Just(xuu470), Just(xuu480), app(ty_[], bag)) -> new_ltEs4(xuu470, xuu480, bag) 25.69/9.78 new_asAs(False, xuu149) -> False 25.69/9.78 new_lt22(xuu101, xuu104, app(app(ty_@2, bfa), bfb)) -> new_lt5(xuu101, xuu104, bfa, bfb) 25.69/9.78 new_ltEs12(Right(xuu470), Right(xuu480), cg, app(ty_Ratio, dfg)) -> new_ltEs8(xuu470, xuu480, dfg) 25.69/9.78 new_ltEs23(xuu115, xuu117, ty_Integer) -> new_ltEs7(xuu115, xuu117) 25.69/9.78 new_lt21(xuu114, xuu116, ty_Int) -> new_lt10(xuu114, xuu116) 25.69/9.78 new_esEs29(xuu470, xuu480, ty_Float) -> new_esEs18(xuu470, xuu480) 25.69/9.78 new_ltEs23(xuu115, xuu117, ty_Ordering) -> new_ltEs14(xuu115, xuu117) 25.69/9.78 new_esEs21(Right(xuu31100000), Right(xuu60000), dhb, ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.78 new_esEs6(xuu3110000, xuu6000, app(ty_Ratio, dae)) -> new_esEs23(xuu3110000, xuu6000, dae) 25.69/9.78 25.69/9.78 The set Q consists of the following terms: 25.69/9.78 25.69/9.78 new_lt23(x0, x1, app(ty_[], x2)) 25.69/9.78 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 25.69/9.78 new_esEs32(x0, x1, ty_Char) 25.69/9.78 new_lt21(x0, x1, ty_Bool) 25.69/9.78 new_lt19(x0, x1, ty_Ordering) 25.69/9.78 new_primCmpNat0(Succ(x0), Succ(x1)) 25.69/9.78 new_esEs36(x0, x1, ty_@0) 25.69/9.78 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_esEs36(x0, x1, ty_Bool) 25.69/9.78 new_esEs10(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_lt20(x0, x1, ty_Integer) 25.69/9.78 new_lt22(x0, x1, ty_Char) 25.69/9.78 new_lt21(x0, x1, ty_@0) 25.69/9.78 new_lt19(x0, x1, ty_Double) 25.69/9.78 new_esEs35(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_esEs12(:(x0, x1), :(x2, x3), x4) 25.69/9.78 new_esEs33(x0, x1, ty_@0) 25.69/9.78 new_esEs5(x0, x1, ty_Int) 25.69/9.78 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.78 new_esEs31(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_ltEs23(x0, x1, ty_Double) 25.69/9.78 new_esEs37(x0, x1, ty_Ordering) 25.69/9.78 new_esEs21(Left(x0), Right(x1), x2, x3) 25.69/9.78 new_esEs21(Right(x0), Left(x1), x2, x3) 25.69/9.78 new_lt23(x0, x1, ty_Bool) 25.69/9.78 new_esEs32(x0, x1, app(ty_Maybe, x2)) 25.69/9.78 new_compare5(x0, x1, ty_Integer) 25.69/9.78 new_lt21(x0, x1, ty_Integer) 25.69/9.78 new_primEqInt(Pos(Zero), Pos(Zero)) 25.69/9.78 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_primCompAux00(x0, x1, EQ, ty_Bool) 25.69/9.78 new_esEs33(x0, x1, ty_Bool) 25.69/9.78 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.78 new_compare16(Just(x0), Just(x1), x2) 25.69/9.78 new_ltEs24(x0, x1, ty_Float) 25.69/9.78 new_esEs6(x0, x1, ty_Float) 25.69/9.78 new_esEs20(False, True) 25.69/9.78 new_esEs20(True, False) 25.69/9.78 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs38(x0, x1, app(ty_[], x2)) 25.69/9.78 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_esEs9(x0, x1, ty_Int) 25.69/9.78 new_asAs(False, x0) 25.69/9.78 new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.69/9.78 new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.69/9.78 new_esEs10(x0, x1, ty_Float) 25.69/9.78 new_primEqInt(Neg(Zero), Neg(Zero)) 25.69/9.78 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.78 new_ltEs23(x0, x1, ty_Ordering) 25.69/9.78 new_lt20(x0, x1, ty_@0) 25.69/9.78 new_esEs32(x0, x1, ty_Double) 25.69/9.78 new_esEs25(Just(x0), Just(x1), app(ty_[], x2)) 25.69/9.78 new_esEs13(x0, x1, app(ty_[], x2)) 25.69/9.78 new_lt23(x0, x1, ty_Integer) 25.69/9.78 new_ltEs11(x0, x1, app(ty_Ratio, x2)) 25.69/9.78 new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 25.69/9.78 new_esEs5(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_esEs33(x0, x1, ty_Integer) 25.69/9.79 new_ltEs11(x0, x1, ty_Double) 25.69/9.79 new_lt20(x0, x1, ty_Float) 25.69/9.79 new_lt22(x0, x1, ty_Double) 25.69/9.79 new_esEs31(x0, x1, ty_Float) 25.69/9.79 new_ltEs20(x0, x1, ty_Char) 25.69/9.79 new_ltEs19(x0, x1, app(ty_[], x2)) 25.69/9.79 new_esEs36(x0, x1, ty_Integer) 25.69/9.79 new_esEs34(x0, x1, app(ty_[], x2)) 25.69/9.79 new_lt22(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_lt19(x0, x1, ty_Char) 25.69/9.79 new_esEs5(x0, x1, ty_@0) 25.69/9.79 new_compare112(x0, x1, x2, x3, True, x4, x5) 25.69/9.79 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.69/9.79 new_esEs30(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_compare24(x0, x1, x2, x3, False, x4, x5) 25.69/9.79 new_primCompAux00(x0, x1, EQ, ty_Integer) 25.69/9.79 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_esEs12([], [], x0) 25.69/9.79 new_ltEs6(x0, x1) 25.69/9.79 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_ltEs23(x0, x1, ty_Char) 25.69/9.79 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 25.69/9.79 new_compare29(False, False) 25.69/9.79 new_primEqInt(Pos(Zero), Neg(Zero)) 25.69/9.79 new_primEqInt(Neg(Zero), Pos(Zero)) 25.69/9.79 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_compare111(x0, x1, x2, x3, False, x4, x5, x6) 25.69/9.79 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_ltEs21(x0, x1, ty_Double) 25.69/9.79 new_esEs35(x0, x1, ty_Double) 25.69/9.79 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_ltEs11(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_ltEs21(x0, x1, ty_Char) 25.69/9.79 new_esEs35(x0, x1, ty_Char) 25.69/9.79 new_compare5(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_lt21(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.69/9.79 new_primEqNat0(Succ(x0), Succ(x1)) 25.69/9.79 new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.69/9.79 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_primMulInt(Neg(x0), Neg(x1)) 25.69/9.79 new_esEs39(x0, x1, ty_Ordering) 25.69/9.79 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_esEs30(x0, x1, app(ty_[], x2)) 25.69/9.79 new_primPlusNat0(Succ(x0), Succ(x1)) 25.69/9.79 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 25.69/9.79 new_ltEs11(x0, x1, ty_Char) 25.69/9.79 new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) 25.69/9.79 new_lt22(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 25.69/9.79 new_esEs29(x0, x1, ty_Float) 25.69/9.79 new_lt23(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_esEs8(x0, x1, ty_Double) 25.69/9.79 new_esEs21(Right(x0), Right(x1), x2, ty_Integer) 25.69/9.79 new_esEs9(x0, x1, ty_Integer) 25.69/9.79 new_esEs29(x0, x1, ty_Ordering) 25.69/9.79 new_ltEs15(Just(x0), Just(x1), ty_Float) 25.69/9.79 new_lt23(x0, x1, ty_Float) 25.69/9.79 new_esEs34(x0, x1, ty_Integer) 25.69/9.79 new_lt12(x0, x1) 25.69/9.79 new_lt21(x0, x1, ty_Int) 25.69/9.79 new_ltEs19(x0, x1, ty_Char) 25.69/9.79 new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.69/9.79 new_esEs26(LT, EQ) 25.69/9.79 new_esEs26(EQ, LT) 25.69/9.79 new_esEs13(x0, x1, ty_Ordering) 25.69/9.79 new_esEs9(x0, x1, ty_@0) 25.69/9.79 new_ltEs21(x0, x1, ty_Ordering) 25.69/9.79 new_esEs25(Just(x0), Just(x1), ty_Double) 25.69/9.79 new_ltEs11(x0, x1, app(ty_[], x2)) 25.69/9.79 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_esEs23(:%(x0, x1), :%(x2, x3), x4) 25.69/9.79 new_primMulNat0(Succ(x0), Zero) 25.69/9.79 new_esEs8(x0, x1, ty_Ordering) 25.69/9.79 new_ltEs15(Nothing, Just(x0), x1) 25.69/9.79 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_lt20(x0, x1, ty_Int) 25.69/9.79 new_esEs5(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_esEs27(x0, x1, ty_Int) 25.69/9.79 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_ltEs24(x0, x1, ty_Int) 25.69/9.79 new_lt21(x0, x1, ty_Float) 25.69/9.79 new_ltEs16(True, False) 25.69/9.79 new_ltEs16(False, True) 25.69/9.79 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_esEs29(x0, x1, ty_Char) 25.69/9.79 new_esEs10(x0, x1, app(ty_[], x2)) 25.69/9.79 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_esEs21(Right(x0), Right(x1), x2, ty_Float) 25.69/9.79 new_compare5(x0, x1, ty_Float) 25.69/9.79 new_lt22(x0, x1, ty_Ordering) 25.69/9.79 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_primMulInt(Pos(x0), Neg(x1)) 25.69/9.79 new_primMulInt(Neg(x0), Pos(x1)) 25.69/9.79 new_compare5(x0, x1, ty_Bool) 25.69/9.79 new_esEs34(x0, x1, ty_Float) 25.69/9.79 new_ltEs24(x0, x1, ty_Integer) 25.69/9.79 new_esEs27(x0, x1, ty_Integer) 25.69/9.79 new_compare27(x0, x1, True, x2, x3) 25.69/9.79 new_esEs30(x0, x1, ty_Char) 25.69/9.79 new_primMulInt(Pos(x0), Pos(x1)) 25.69/9.79 new_esEs10(x0, x1, ty_@0) 25.69/9.79 new_esEs39(x0, x1, ty_Double) 25.69/9.79 new_esEs34(x0, x1, ty_Bool) 25.69/9.79 new_esEs21(Right(x0), Right(x1), x2, ty_Bool) 25.69/9.79 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_ltEs19(x0, x1, ty_Ordering) 25.69/9.79 new_primCompAux00(x0, x1, EQ, ty_Float) 25.69/9.79 new_compare5(x0, x1, ty_Int) 25.69/9.79 new_esEs21(Left(x0), Left(x1), ty_Integer, x2) 25.69/9.79 new_compare6(:(x0, x1), [], x2) 25.69/9.79 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.69/9.79 new_ltEs11(x0, x1, ty_Ordering) 25.69/9.79 new_esEs29(x0, x1, ty_Integer) 25.69/9.79 new_esEs21(Right(x0), Right(x1), x2, ty_Int) 25.69/9.79 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_primCmpNat0(Zero, Succ(x0)) 25.69/9.79 new_ltEs24(x0, x1, ty_Bool) 25.69/9.79 new_ltEs18(x0, x1) 25.69/9.79 new_esEs13(x0, x1, ty_Char) 25.69/9.79 new_lt20(x0, x1, ty_Bool) 25.69/9.79 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_esEs10(x0, x1, ty_Double) 25.69/9.79 new_esEs15(Char(x0), Char(x1)) 25.69/9.79 new_esEs34(x0, x1, ty_Int) 25.69/9.79 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_esEs10(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_esEs26(EQ, EQ) 25.69/9.79 new_esEs37(x0, x1, ty_Double) 25.69/9.79 new_lt23(x0, x1, ty_Int) 25.69/9.79 new_primCompAux00(x0, x1, EQ, ty_Int) 25.69/9.79 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_esEs33(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_esEs35(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_esEs8(x0, x1, ty_@0) 25.69/9.79 new_ltEs15(Just(x0), Just(x1), ty_Bool) 25.69/9.79 new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.69/9.79 new_esEs30(x0, x1, ty_Double) 25.69/9.79 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_esEs29(x0, x1, ty_Bool) 25.69/9.79 new_lt15(x0, x1, x2) 25.69/9.79 new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.69/9.79 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_ltEs15(Just(x0), Just(x1), ty_Integer) 25.69/9.79 new_ltEs22(x0, x1, ty_@0) 25.69/9.79 new_esEs38(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_compare16(Just(x0), Nothing, x1) 25.69/9.79 new_lt21(x0, x1, app(ty_[], x2)) 25.69/9.79 new_compare13(GT, GT) 25.69/9.79 new_compare13(EQ, LT) 25.69/9.79 new_compare13(LT, EQ) 25.69/9.79 new_lt8(x0, x1, ty_Ordering) 25.69/9.79 new_primCmpNat0(Succ(x0), Zero) 25.69/9.79 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.69/9.79 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.69/9.79 new_ltEs15(Just(x0), Just(x1), ty_@0) 25.69/9.79 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.69/9.79 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.69/9.79 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 25.69/9.79 new_ltEs24(x0, x1, ty_Ordering) 25.69/9.79 new_primPlusNat0(Zero, Zero) 25.69/9.79 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 25.69/9.79 new_esEs6(x0, x1, ty_Ordering) 25.69/9.79 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 25.69/9.79 new_compare12(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 25.69/9.79 new_esEs7(x0, x1, ty_Ordering) 25.69/9.79 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.69/9.79 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_not(True) 25.69/9.79 new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.69/9.79 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_lt8(x0, x1, ty_Double) 25.69/9.79 new_ltEs4(x0, x1, x2) 25.69/9.79 new_esEs29(x0, x1, app(ty_[], x2)) 25.69/9.79 new_esEs32(x0, x1, ty_Float) 25.69/9.79 new_ltEs11(x0, x1, ty_@0) 25.69/9.79 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 25.69/9.79 new_esEs37(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_ltEs17(x0, x1) 25.69/9.79 new_compare19(x0, x1, True, x2) 25.69/9.79 new_ltEs15(Just(x0), Just(x1), ty_Char) 25.69/9.79 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_esEs6(x0, x1, ty_Double) 25.69/9.79 new_esEs31(x0, x1, ty_Double) 25.69/9.79 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 25.69/9.79 new_esEs10(x0, x1, ty_Ordering) 25.69/9.79 new_esEs11(x0, x1, ty_@0) 25.69/9.79 new_esEs35(x0, x1, ty_Float) 25.69/9.79 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_esEs8(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_esEs11(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_lt5(x0, x1, x2, x3) 25.69/9.79 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_compare6(:(x0, x1), :(x2, x3), x4) 25.69/9.79 new_esEs21(Left(x0), Left(x1), ty_@0, x2) 25.69/9.79 new_ltEs21(x0, x1, app(ty_[], x2)) 25.69/9.79 new_esEs4(x0, x1, ty_Ordering) 25.69/9.79 new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.69/9.79 new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.69/9.79 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_compare25(x0, x1, True, x2) 25.69/9.79 new_esEs12(:(x0, x1), [], x2) 25.69/9.79 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 25.69/9.79 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_lt19(x0, x1, ty_Float) 25.69/9.79 new_esEs5(x0, x1, ty_Float) 25.69/9.79 new_esEs30(x0, x1, ty_Ordering) 25.69/9.79 new_lt20(x0, x1, app(ty_[], x2)) 25.69/9.79 new_esEs5(x0, x1, ty_Integer) 25.69/9.79 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_esEs36(x0, x1, ty_Float) 25.69/9.79 new_lt7(x0, x1, x2) 25.69/9.79 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_esEs5(x0, x1, app(ty_[], x2)) 25.69/9.79 new_lt10(x0, x1) 25.69/9.79 new_sr(x0, x1) 25.69/9.79 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_lt8(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_ltEs14(GT, GT) 25.69/9.79 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_esEs20(True, True) 25.69/9.79 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 25.69/9.79 new_compare5(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_lt4(x0, x1, x2) 25.69/9.79 new_esEs26(EQ, GT) 25.69/9.79 new_esEs26(GT, EQ) 25.69/9.79 new_lt17(x0, x1) 25.69/9.79 new_lt8(x0, x1, app(ty_[], x2)) 25.69/9.79 new_compare31(@0, @0) 25.69/9.79 new_ltEs21(x0, x1, ty_Float) 25.69/9.79 new_esEs5(x0, x1, ty_Bool) 25.69/9.79 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_compare14(Integer(x0), Integer(x1)) 25.69/9.79 new_compare17(x0, x1, False, x2, x3) 25.69/9.79 new_compare6([], [], x0) 25.69/9.79 new_esEs7(x0, x1, app(ty_[], x2)) 25.69/9.79 new_esEs25(Just(x0), Just(x1), ty_Ordering) 25.69/9.79 new_esEs25(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.69/9.79 new_lt19(x0, x1, ty_Bool) 25.69/9.79 new_esEs29(x0, x1, ty_Double) 25.69/9.79 new_primEqNat0(Zero, Zero) 25.69/9.79 new_lt19(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_esEs36(x0, x1, ty_Char) 25.69/9.79 new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_esEs6(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_esEs21(Right(x0), Right(x1), x2, ty_@0) 25.69/9.79 new_esEs25(Just(x0), Nothing, x1) 25.69/9.79 new_not(False) 25.69/9.79 new_esEs32(x0, x1, ty_Bool) 25.69/9.79 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_esEs34(x0, x1, ty_@0) 25.69/9.79 new_esEs37(x0, x1, app(ty_[], x2)) 25.69/9.79 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_esEs36(x0, x1, app(ty_[], x2)) 25.69/9.79 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_esEs33(x0, x1, ty_Int) 25.69/9.79 new_esEs13(x0, x1, ty_@0) 25.69/9.79 new_compare5(x0, x1, ty_@0) 25.69/9.79 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.69/9.79 new_compare112(x0, x1, x2, x3, False, x4, x5) 25.69/9.79 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_esEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.69/9.79 new_esEs6(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_compare25(x0, x1, False, x2) 25.69/9.79 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.69/9.79 new_compare6([], :(x0, x1), x2) 25.69/9.79 new_ltEs24(x0, x1, ty_Double) 25.69/9.79 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_esEs35(x0, x1, ty_Integer) 25.69/9.79 new_lt19(x0, x1, ty_Integer) 25.69/9.79 new_esEs33(x0, x1, ty_Float) 25.69/9.79 new_lt9(x0, x1, x2, x3) 25.69/9.79 new_esEs32(x0, x1, app(ty_[], x2)) 25.69/9.79 new_compare29(True, True) 25.69/9.79 new_ltEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_primPlusNat0(Zero, Succ(x0)) 25.69/9.79 new_esEs32(x0, x1, ty_Integer) 25.69/9.79 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.69/9.79 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.69/9.79 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 25.69/9.79 new_ltEs14(EQ, LT) 25.69/9.79 new_primCompAux00(x0, x1, EQ, ty_@0) 25.69/9.79 new_ltEs14(LT, EQ) 25.69/9.79 new_lt23(x0, x1, ty_@0) 25.69/9.79 new_primMulNat0(Zero, Succ(x0)) 25.69/9.79 new_esEs38(x0, x1, ty_Ordering) 25.69/9.79 new_esEs31(x0, x1, ty_Ordering) 25.69/9.79 new_esEs25(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.69/9.79 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.69/9.79 new_esEs36(x0, x1, ty_Int) 25.69/9.79 new_esEs21(Right(x0), Right(x1), x2, ty_Char) 25.69/9.79 new_esEs34(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_esEs25(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.69/9.79 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.69/9.79 new_esEs31(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_esEs18(Float(x0, x1), Float(x2, x3)) 25.69/9.79 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.69/9.79 new_esEs34(x0, x1, ty_Char) 25.69/9.79 new_esEs9(x0, x1, ty_Ordering) 25.69/9.79 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_compare18(Right(x0), Left(x1), x2, x3) 25.69/9.79 new_compare18(Left(x0), Right(x1), x2, x3) 25.69/9.79 new_ltEs23(x0, x1, app(ty_[], x2)) 25.69/9.79 new_ltEs20(x0, x1, ty_@0) 25.69/9.79 new_ltEs19(x0, x1, ty_Integer) 25.69/9.79 new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 25.69/9.79 new_esEs30(x0, x1, ty_Float) 25.69/9.79 new_esEs39(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_compare17(x0, x1, True, x2, x3) 25.69/9.79 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_ltEs20(x0, x1, ty_Bool) 25.69/9.79 new_ltEs21(x0, x1, ty_@0) 25.69/9.79 new_esEs13(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_fsEs(x0) 25.69/9.79 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_esEs36(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.69/9.79 new_compare13(GT, LT) 25.69/9.79 new_compare13(LT, GT) 25.69/9.79 new_esEs9(x0, x1, ty_Double) 25.69/9.79 new_esEs32(x0, x1, ty_Int) 25.69/9.79 new_compare24(x0, x1, x2, x3, True, x4, x5) 25.69/9.79 new_esEs9(x0, x1, ty_Char) 25.69/9.79 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.69/9.79 new_ltEs14(LT, LT) 25.69/9.79 new_esEs26(LT, GT) 25.69/9.79 new_esEs26(GT, LT) 25.69/9.79 new_ltEs23(x0, x1, ty_Int) 25.69/9.79 new_esEs33(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_esEs25(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.69/9.79 new_esEs5(x0, x1, ty_Char) 25.69/9.79 new_esEs4(x0, x1, app(ty_[], x2)) 25.69/9.79 new_esEs5(x0, x1, ty_Double) 25.69/9.79 new_esEs25(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_ltEs19(x0, x1, ty_Bool) 25.69/9.79 new_esEs33(x0, x1, ty_Char) 25.69/9.79 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_esEs13(x0, x1, ty_Integer) 25.69/9.79 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_ltEs21(x0, x1, ty_Int) 25.69/9.79 new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) 25.69/9.79 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_lt22(x0, x1, ty_Bool) 25.69/9.79 new_ltEs16(False, False) 25.69/9.79 new_esEs7(x0, x1, ty_Float) 25.69/9.79 new_lt22(x0, x1, ty_@0) 25.69/9.79 new_esEs22(Double(x0, x1), Double(x2, x3)) 25.69/9.79 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_esEs28(x0, x1, ty_Integer) 25.69/9.79 new_esEs38(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.69/9.79 new_asAs(True, x0) 25.69/9.79 new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) 25.69/9.79 new_esEs35(x0, x1, ty_Bool) 25.69/9.79 new_esEs39(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_esEs33(x0, x1, ty_Ordering) 25.69/9.79 new_ltEs20(x0, x1, ty_Integer) 25.69/9.79 new_esEs32(x0, x1, ty_@0) 25.69/9.79 new_esEs8(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_ltEs21(x0, x1, ty_Bool) 25.69/9.79 new_esEs9(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_lt22(x0, x1, ty_Int) 25.69/9.79 new_esEs35(x0, x1, ty_@0) 25.69/9.79 new_esEs38(x0, x1, ty_Double) 25.69/9.79 new_lt23(x0, x1, ty_Ordering) 25.69/9.79 new_primCompAux00(x0, x1, EQ, ty_Ordering) 25.69/9.79 new_lt19(x0, x1, ty_Int) 25.69/9.79 new_compare10(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.69/9.79 new_esEs30(x0, x1, ty_Integer) 25.69/9.79 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_ltEs19(x0, x1, ty_Float) 25.69/9.79 new_esEs34(x0, x1, ty_Ordering) 25.69/9.79 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_primCompAux1(x0, x1, x2, x3, x4) 25.69/9.79 new_esEs4(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_esEs36(x0, x1, ty_Ordering) 25.69/9.79 new_lt19(x0, x1, ty_@0) 25.69/9.79 new_ltEs11(x0, x1, ty_Int) 25.69/9.79 new_esEs20(False, False) 25.69/9.79 new_primCompAux00(x0, x1, LT, x2) 25.69/9.79 new_ltEs19(x0, x1, ty_@0) 25.69/9.79 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 25.69/9.79 new_esEs35(x0, x1, ty_Int) 25.69/9.79 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 25.69/9.79 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.69/9.79 new_lt21(x0, x1, ty_Ordering) 25.69/9.79 new_esEs36(x0, x1, ty_Double) 25.69/9.79 new_ltEs22(x0, x1, app(ty_[], x2)) 25.69/9.79 new_esEs7(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_esEs30(x0, x1, ty_Bool) 25.69/9.79 new_ltEs19(x0, x1, ty_Int) 25.69/9.79 new_lt14(x0, x1) 25.69/9.79 new_esEs21(Left(x0), Left(x1), ty_Int, x2) 25.69/9.79 new_esEs37(x0, x1, ty_@0) 25.69/9.79 new_compare10(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.69/9.79 new_esEs24(Integer(x0), Integer(x1)) 25.69/9.79 new_ltEs22(x0, x1, ty_Double) 25.69/9.79 new_esEs19(x0, x1) 25.69/9.79 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_lt20(x0, x1, ty_Char) 25.69/9.79 new_ltEs20(x0, x1, ty_Float) 25.69/9.79 new_esEs13(x0, x1, ty_Int) 25.69/9.79 new_lt22(x0, x1, ty_Integer) 25.69/9.79 new_ltEs24(x0, x1, ty_Char) 25.69/9.79 new_ltEs14(LT, GT) 25.69/9.79 new_ltEs14(GT, LT) 25.69/9.79 new_compare29(True, False) 25.69/9.79 new_compare29(False, True) 25.69/9.79 new_esEs16(@2(x0, x1), @2(x2, x3), x4, x5) 25.69/9.79 new_esEs26(GT, GT) 25.69/9.79 new_lt18(x0, x1) 25.69/9.79 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.69/9.79 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.69/9.79 new_lt21(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 25.69/9.79 new_esEs29(x0, x1, ty_Int) 25.69/9.79 new_esEs11(x0, x1, ty_Integer) 25.69/9.79 new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.69/9.79 new_primMulNat0(Succ(x0), Succ(x1)) 25.69/9.79 new_primEqNat0(Succ(x0), Zero) 25.69/9.79 new_lt22(x0, x1, app(ty_[], x2)) 25.69/9.79 new_compare5(x0, x1, app(ty_[], x2)) 25.69/9.79 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_lt6(x0, x1) 25.69/9.79 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_ltEs15(Just(x0), Just(x1), ty_Int) 25.69/9.79 new_ltEs22(x0, x1, ty_Ordering) 25.69/9.79 new_ltEs23(x0, x1, ty_@0) 25.69/9.79 new_ltEs21(x0, x1, ty_Integer) 25.69/9.79 new_esEs33(x0, x1, ty_Double) 25.69/9.79 new_ltEs20(x0, x1, ty_Int) 25.69/9.79 new_esEs8(x0, x1, app(ty_[], x2)) 25.69/9.79 new_lt20(x0, x1, ty_Ordering) 25.69/9.79 new_esEs13(x0, x1, ty_Float) 25.69/9.79 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.69/9.79 new_sr0(Integer(x0), Integer(x1)) 25.69/9.79 new_ltEs14(EQ, GT) 25.69/9.79 new_ltEs14(GT, EQ) 25.69/9.79 new_compare16(Nothing, Just(x0), x1) 25.69/9.79 new_esEs4(x0, x1, ty_@0) 25.69/9.79 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.69/9.79 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.69/9.79 new_esEs4(x0, x1, ty_Double) 25.69/9.79 new_primPlusNat1(x0, x1) 25.69/9.79 new_esEs25(Nothing, Nothing, x0) 25.69/9.79 new_esEs7(x0, x1, ty_Double) 25.69/9.79 new_lt23(x0, x1, ty_Char) 25.69/9.79 new_compare13(GT, EQ) 25.69/9.79 new_compare13(EQ, GT) 25.69/9.79 new_esEs11(x0, x1, ty_Ordering) 25.69/9.79 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_lt8(x0, x1, ty_Float) 25.69/9.79 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.69/9.79 new_compare30(Char(x0), Char(x1)) 25.69/9.79 new_esEs9(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_ltEs20(x0, x1, app(ty_[], x2)) 25.69/9.79 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_esEs12([], :(x0, x1), x2) 25.69/9.79 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_esEs13(x0, x1, ty_Bool) 25.69/9.79 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_primCompAux00(x0, x1, EQ, ty_Char) 25.69/9.79 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.69/9.79 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.69/9.79 new_ltEs12(Left(x0), Right(x1), x2, x3) 25.69/9.79 new_ltEs12(Right(x0), Left(x1), x2, x3) 25.69/9.79 new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.69/9.79 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.69/9.79 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.69/9.79 new_lt21(x0, x1, ty_Char) 25.69/9.79 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.69/9.79 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_lt13(x0, x1) 25.69/9.79 new_esEs30(x0, x1, ty_Int) 25.69/9.79 new_compare5(x0, x1, ty_Char) 25.69/9.79 new_primPlusNat0(Succ(x0), Zero) 25.69/9.79 new_ltEs15(Just(x0), Nothing, x1) 25.69/9.79 new_compare110(x0, x1, False, x2, x3) 25.69/9.79 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_esEs9(x0, x1, app(ty_[], x2)) 25.69/9.79 new_esEs39(x0, x1, ty_@0) 25.69/9.79 new_esEs6(x0, x1, app(ty_[], x2)) 25.69/9.79 new_lt8(x0, x1, ty_Char) 25.69/9.79 new_esEs6(x0, x1, ty_Int) 25.69/9.79 new_esEs13(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_esEs26(LT, LT) 25.69/9.79 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 25.69/9.79 new_esEs4(x0, x1, ty_Char) 25.69/9.79 new_esEs36(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_esEs32(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 25.69/9.79 new_esEs37(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_primCompAux00(x0, x1, GT, x2) 25.69/9.79 new_esEs9(x0, x1, ty_Float) 25.69/9.79 new_primMulNat0(Zero, Zero) 25.69/9.79 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.69/9.79 new_compare26(x0, x1, False, x2, x3) 25.69/9.79 new_esEs10(x0, x1, ty_Int) 25.69/9.79 new_esEs38(x0, x1, ty_Integer) 25.69/9.79 new_ltEs14(EQ, EQ) 25.69/9.79 new_ltEs11(x0, x1, ty_Integer) 25.69/9.79 new_esEs29(x0, x1, ty_@0) 25.69/9.79 new_esEs31(x0, x1, ty_Char) 25.69/9.79 new_esEs6(x0, x1, ty_Char) 25.69/9.79 new_compare111(x0, x1, x2, x3, True, x4, x5, x6) 25.69/9.79 new_esEs7(x0, x1, ty_Char) 25.69/9.79 new_esEs38(x0, x1, ty_Bool) 25.69/9.79 new_ltEs5(x0, x1) 25.69/9.79 new_esEs28(x0, x1, ty_Int) 25.69/9.79 new_esEs37(x0, x1, ty_Float) 25.69/9.79 new_esEs7(x0, x1, ty_Int) 25.69/9.79 new_ltEs22(x0, x1, ty_Integer) 25.69/9.79 new_esEs25(Just(x0), Just(x1), ty_Char) 25.69/9.79 new_esEs34(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_compare16(Nothing, Nothing, x0) 25.69/9.79 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_ltEs23(x0, x1, ty_Float) 25.69/9.79 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_esEs11(x0, x1, app(ty_[], x2)) 25.69/9.79 new_esEs7(x0, x1, ty_@0) 25.69/9.79 new_esEs25(Just(x0), Just(x1), ty_@0) 25.69/9.79 new_lt8(x0, x1, ty_Int) 25.69/9.79 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_esEs25(Just(x0), Just(x1), ty_Int) 25.69/9.79 new_esEs21(Left(x0), Left(x1), ty_Bool, x2) 25.69/9.79 new_compare9(@2(x0, x1), @2(x2, x3), x4, x5) 25.69/9.79 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.69/9.79 new_lt11(x0, x1, x2, x3, x4) 25.69/9.79 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.69/9.79 new_esEs30(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_lt22(x0, x1, ty_Float) 25.69/9.79 new_compare110(x0, x1, True, x2, x3) 25.69/9.79 new_esEs37(x0, x1, ty_Integer) 25.69/9.79 new_esEs31(x0, x1, app(ty_[], x2)) 25.69/9.79 new_esEs31(x0, x1, ty_@0) 25.69/9.79 new_compare12(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 25.69/9.79 new_ltEs15(Nothing, Nothing, x0) 25.69/9.79 new_esEs8(x0, x1, ty_Integer) 25.69/9.79 new_lt23(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_ltEs9(x0, x1) 25.69/9.79 new_esEs33(x0, x1, app(ty_[], x2)) 25.69/9.79 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 25.69/9.79 new_primEqNat0(Zero, Succ(x0)) 25.69/9.79 new_ltEs23(x0, x1, ty_Integer) 25.69/9.79 new_ltEs19(x0, x1, ty_Double) 25.69/9.79 new_esEs11(x0, x1, ty_Bool) 25.69/9.79 new_compare19(x0, x1, False, x2) 25.69/9.79 new_esEs8(x0, x1, ty_Int) 25.69/9.79 new_pePe(False, x0) 25.69/9.79 new_ltEs11(x0, x1, ty_Float) 25.69/9.79 new_esEs11(x0, x1, ty_Int) 25.69/9.79 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_compare27(x0, x1, False, x2, x3) 25.69/9.79 new_pePe(True, x0) 25.69/9.79 new_esEs21(Left(x0), Left(x1), ty_Char, x2) 25.69/9.79 new_esEs8(x0, x1, ty_Char) 25.69/9.79 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 25.69/9.79 new_lt8(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_lt8(x0, x1, ty_Bool) 25.69/9.79 new_ltEs11(x0, x1, ty_Bool) 25.69/9.79 new_compare5(x0, x1, ty_Ordering) 25.69/9.79 new_compare13(LT, LT) 25.69/9.79 new_esEs6(x0, x1, ty_Bool) 25.69/9.79 new_esEs39(x0, x1, ty_Integer) 25.69/9.79 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_esEs38(x0, x1, ty_Float) 25.69/9.79 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_esEs31(x0, x1, ty_Int) 25.69/9.79 new_ltEs22(x0, x1, ty_Bool) 25.69/9.79 new_esEs21(Left(x0), Left(x1), ty_Float, x2) 25.69/9.79 new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.69/9.79 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.69/9.79 new_esEs38(x0, x1, ty_@0) 25.69/9.79 new_ltEs23(x0, x1, ty_Bool) 25.69/9.79 new_ltEs8(x0, x1, x2) 25.69/9.79 new_esEs8(x0, x1, ty_Bool) 25.69/9.79 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.69/9.79 new_esEs11(x0, x1, ty_Char) 25.69/9.79 new_esEs11(x0, x1, ty_Double) 25.69/9.79 new_compare13(EQ, EQ) 25.69/9.79 new_esEs38(x0, x1, ty_Int) 25.69/9.79 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_esEs10(x0, x1, ty_Integer) 25.69/9.79 new_esEs14(@0, @0) 25.69/9.79 new_ltEs15(Just(x0), Just(x1), ty_Ordering) 25.69/9.79 new_esEs4(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_esEs31(x0, x1, ty_Integer) 25.69/9.79 new_esEs6(x0, x1, ty_Integer) 25.69/9.79 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_esEs39(x0, x1, ty_Char) 25.69/9.79 new_ltEs20(x0, x1, ty_Double) 25.69/9.79 new_esEs9(x0, x1, ty_Bool) 25.69/9.79 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.69/9.79 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.69/9.79 new_esEs21(Left(x0), Left(x1), ty_Double, x2) 25.69/9.79 new_lt8(x0, x1, ty_Integer) 25.69/9.79 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 25.69/9.79 new_ltEs15(Just(x0), Just(x1), ty_Double) 25.69/9.79 new_esEs38(x0, x1, ty_Char) 25.69/9.79 new_ltEs22(x0, x1, ty_Float) 25.69/9.79 new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) 25.69/9.79 new_lt23(x0, x1, ty_Double) 25.69/9.79 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.69/9.79 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.69/9.79 new_esEs25(Nothing, Just(x0), x1) 25.69/9.79 new_lt19(x0, x1, app(ty_[], x2)) 25.69/9.79 new_compare10(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.69/9.79 new_compare10(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.69/9.79 new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) 25.69/9.79 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.69/9.79 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 25.69/9.79 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_esEs4(x0, x1, ty_Integer) 25.69/9.79 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 25.69/9.79 new_esEs7(x0, x1, ty_Integer) 25.69/9.79 new_ltEs24(x0, x1, ty_@0) 25.69/9.79 new_esEs25(Just(x0), Just(x1), ty_Float) 25.69/9.79 new_esEs7(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_ltEs20(x0, x1, ty_Ordering) 25.69/9.79 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_esEs39(x0, x1, app(ty_[], x2)) 25.69/9.79 new_ltEs22(x0, x1, ty_Char) 25.69/9.79 new_compare26(x0, x1, True, x2, x3) 25.69/9.79 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_esEs11(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_esEs11(x0, x1, ty_Float) 25.69/9.79 new_esEs8(x0, x1, ty_Float) 25.69/9.79 new_esEs31(x0, x1, ty_Bool) 25.69/9.79 new_ltEs22(x0, x1, ty_Int) 25.69/9.79 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 25.69/9.79 new_ltEs11(x0, x1, app(ty_Maybe, x2)) 25.69/9.79 new_compare18(Left(x0), Left(x1), x2, x3) 25.69/9.79 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.79 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.69/9.79 new_esEs6(x0, x1, ty_@0) 25.69/9.79 new_lt8(x0, x1, ty_@0) 25.69/9.79 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_esEs35(x0, x1, app(ty_[], x2)) 25.69/9.79 new_esEs37(x0, x1, ty_Int) 25.69/9.79 new_esEs21(Right(x0), Right(x1), x2, ty_Double) 25.69/9.79 new_esEs39(x0, x1, ty_Float) 25.69/9.79 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_esEs39(x0, x1, ty_Bool) 25.69/9.79 new_esEs35(x0, x1, ty_Ordering) 25.69/9.79 new_esEs34(x0, x1, ty_Double) 25.69/9.79 new_ltEs16(True, True) 25.69/9.79 new_esEs4(x0, x1, ty_Float) 25.69/9.79 new_compare15(x0, x1) 25.69/9.79 new_esEs4(x0, x1, ty_Bool) 25.69/9.79 new_esEs25(Just(x0), Just(x1), ty_Integer) 25.69/9.79 new_compare28(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.69/9.79 new_lt20(x0, x1, ty_Double) 25.69/9.79 new_esEs32(x0, x1, ty_Ordering) 25.69/9.79 new_esEs5(x0, x1, ty_Ordering) 25.69/9.79 new_ltEs11(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_ltEs24(x0, x1, app(ty_[], x2)) 25.69/9.79 new_lt16(x0, x1) 25.69/9.79 new_primCompAux00(x0, x1, EQ, ty_Double) 25.69/9.79 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_esEs39(x0, x1, ty_Int) 25.69/9.79 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_lt19(x0, x1, app(ty_Ratio, x2)) 25.69/9.79 new_esEs25(Just(x0), Just(x1), ty_Bool) 25.69/9.79 new_compare18(Right(x0), Right(x1), x2, x3) 25.69/9.79 new_esEs37(x0, x1, ty_Bool) 25.69/9.79 new_esEs13(x0, x1, ty_Double) 25.69/9.79 new_esEs10(x0, x1, ty_Bool) 25.69/9.79 new_ltEs7(x0, x1) 25.69/9.79 new_esEs37(x0, x1, ty_Char) 25.69/9.79 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 25.69/9.79 new_esEs4(x0, x1, ty_Int) 25.69/9.79 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_lt21(x0, x1, ty_Double) 25.69/9.79 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_esEs10(x0, x1, ty_Char) 25.69/9.79 new_esEs30(x0, x1, ty_@0) 25.69/9.79 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.79 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.79 new_esEs7(x0, x1, ty_Bool) 25.69/9.79 new_compare5(x0, x1, ty_Double) 25.69/9.79 new_primCmpNat0(Zero, Zero) 25.69/9.79 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 25.69/9.79 new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 25.69/9.79 25.69/9.79 We have to consider all minimal (P,Q,R)-chains. 25.69/9.79 ---------------------------------------- 25.69/9.79 25.69/9.79 (32) QDPSizeChangeProof (EQUIVALENT) 25.69/9.79 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. 25.69/9.79 25.69/9.79 From the DPs we obtained the following set of size-change graphs: 25.69/9.79 *new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, ed, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs0(xuu472, xuu482, hb, hc, hd) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_lt0(xuu101, xuu104, bdg, bdh, bea) -> new_compare1(xuu101, xuu104, bdg, bdh, bea) 25.69/9.79 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare1(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), beb, bec, bed) -> new_compare21(xuu3110000, xuu3110001, xuu3110002, xuu6000, xuu6001, xuu6002, new_asAs(new_esEs6(xuu3110000, xuu6000, beb), new_asAs(new_esEs7(xuu3110001, xuu6001, bec), new_esEs8(xuu3110002, xuu6002, bed))), beb, bec, bed) 25.69/9.79 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, bee, app(app(app(ty_@3, bgg), bgh), bha)) -> new_ltEs0(xuu103, xuu106, bgg, bgh, bha) 25.69/9.79 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, app(app(app(ty_@3, bff), bfg), bfh), bef) -> new_lt0(xuu102, xuu105, bff, bfg, bfh) 25.69/9.79 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(app(app(ty_@3, bdg), bdh), bea), bee, bef) -> new_compare1(xuu101, xuu104, bdg, bdh, bea) 25.69/9.79 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare4(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), caa, cab) -> new_compare23(xuu3110000, xuu3110001, xuu6000, xuu6001, new_asAs(new_esEs10(xuu3110000, xuu6000, caa), new_esEs11(xuu3110001, xuu6001, cab)), caa, cab) 25.69/9.79 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 25.69/9.79 25.69/9.79 25.69/9.79 *new_primCompAux(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), xuu311001, xuu601, app(app(app(ty_@3, beb), bec), bed)) -> new_compare21(xuu3110000, xuu3110001, xuu3110002, xuu6000, xuu6001, xuu6002, new_asAs(new_esEs6(xuu3110000, xuu6000, beb), new_asAs(new_esEs7(xuu3110001, xuu6001, bec), new_esEs8(xuu3110002, xuu6002, bed))), beb, bec, bed) 25.69/9.79 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 5 > 8, 5 > 9, 5 > 10 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(app(app(ty_@3, ceb), cec), ced)) -> new_ltEs0(xuu115, xuu117, ceb, cec, ced) 25.69/9.79 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(app(app(ty_@3, cch), cda), cdb), ccg) -> new_lt0(xuu114, xuu116, cch, cda, cdb) 25.69/9.79 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(app(ty_@2, bfa), bfb), bee, bef) -> new_compare4(xuu101, xuu104, bfa, bfb) 25.69/9.79 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_lt3(xuu101, xuu104, bfa, bfb) -> new_compare4(xuu101, xuu104, bfa, bfb) 25.69/9.79 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_lt2(xuu101, xuu104, beh) -> new_compare3(xuu101, xuu104, beh) 25.69/9.79 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_primCompAux(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), xuu311001, xuu601, app(app(ty_@2, caa), cab)) -> new_compare23(xuu3110000, xuu3110001, xuu6000, xuu6001, new_asAs(new_esEs10(xuu3110000, xuu6000, caa), new_esEs11(xuu3110001, xuu6001, cab)), caa, cab) 25.69/9.79 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 5 > 6, 5 > 7 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, app(ty_Maybe, bgb), bef) -> new_lt2(xuu102, xuu105, bgb) 25.69/9.79 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(ty_Maybe, cdd), ccg) -> new_lt2(xuu114, xuu116, cdd) 25.69/9.79 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare3(Just(xuu3110000), Just(xuu6000), bhh) -> new_compare22(xuu3110000, xuu6000, new_esEs9(xuu3110000, xuu6000, bhh), bhh) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare22(xuu76, xuu77, False, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs0(xuu76, xuu77, cbf, cbg, cbh) 25.69/9.79 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(ty_Maybe, beh), bee, bef) -> new_compare3(xuu101, xuu104, beh) 25.69/9.79 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), bce, app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs0(xuu471, xuu481, bch, bda, bdb) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), app(app(app(ty_@3, bbf), bbg), bbh), bbe) -> new_lt0(xuu470, xuu480, bbf, bbg, bbh) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), app(ty_Maybe, bcb), bbe) -> new_lt2(xuu470, xuu480, bcb) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_primCompAux(Just(xuu3110000), Just(xuu6000), xuu311001, xuu601, app(ty_Maybe, bhh)) -> new_compare22(xuu3110000, xuu6000, new_esEs9(xuu3110000, xuu6000, bhh), bhh) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 5 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, ed, app(app(ty_@2, hg), hh)) -> new_ltEs3(xuu472, xuu482, hg, hh) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, bee, app(app(ty_@2, bhd), bhe)) -> new_ltEs3(xuu103, xuu106, bhd, bhe) 25.69/9.79 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(app(ty_@2, ceg), ceh)) -> new_ltEs3(xuu115, xuu117, ceg, ceh) 25.69/9.79 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare22(xuu76, xuu77, False, app(app(ty_@2, ccc), ccd)) -> new_ltEs3(xuu76, xuu77, ccc, ccd) 25.69/9.79 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), bce, app(app(ty_@2, bde), bdf)) -> new_ltEs3(xuu471, xuu481, bde, bdf) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, ed, app(app(ty_Either, gh), ha)) -> new_ltEs(xuu472, xuu482, gh, ha) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, bee, app(app(ty_Either, bge), bgf)) -> new_ltEs(xuu103, xuu106, bge, bgf) 25.69/9.79 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(app(ty_Either, cdh), cea)) -> new_ltEs(xuu115, xuu117, cdh, cea) 25.69/9.79 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare22(xuu76, xuu77, False, app(app(ty_Either, cbd), cbe)) -> new_ltEs(xuu76, xuu77, cbd, cbe) 25.69/9.79 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), bce, app(app(ty_Either, bcf), bcg)) -> new_ltEs(xuu471, xuu481, bcf, bcg) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs1(xuu47, xuu48, baa) -> new_compare0(xuu47, xuu48, baa) 25.69/9.79 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, ed, app(ty_[], he)) -> new_ltEs1(xuu472, xuu482, he) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, bee, app(ty_[], bhb)) -> new_ltEs1(xuu103, xuu106, bhb) 25.69/9.79 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(ty_[], cee)) -> new_ltEs1(xuu115, xuu117, cee) 25.69/9.79 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare22(xuu76, xuu77, False, app(ty_[], cca)) -> new_ltEs1(xuu76, xuu77, cca) 25.69/9.79 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare22(xuu76, xuu77, False, app(ty_Maybe, ccb)) -> new_ltEs2(xuu76, xuu77, ccb) 25.69/9.79 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), bce, app(ty_[], bdc)) -> new_ltEs1(xuu471, xuu481, bdc) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare0(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhf) -> new_primCompAux(xuu3110000, xuu6000, xuu3110001, xuu6001, bhf) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 1 > 3, 2 > 4, 3 >= 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(ty_[], beg), bee, bef) -> new_compare0(xuu101, xuu104, beg) 25.69/9.79 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_primCompAux(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), xuu311001, xuu601, app(ty_[], bhf)) -> new_primCompAux(xuu3110000, xuu6000, xuu3110001, xuu6001, bhf) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 1 > 3, 2 > 4, 5 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_primCompAux0(xuu37, xuu38, EQ, app(ty_[], cah)) -> new_compare0(xuu37, xuu38, cah) 25.69/9.79 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_primCompAux(xuu311000, xuu600, xuu311001, xuu601, bhg) -> new_primCompAux0(xuu311001, xuu601, new_compare5(xuu311000, xuu600, bhg), app(ty_[], bhg)) 25.69/9.79 The graph contains the following edges 3 >= 1, 4 >= 2 25.69/9.79 25.69/9.79 25.69/9.79 *new_lt(xuu101, xuu104, h, ba) -> new_compare(xuu101, xuu104, h, ba) 25.69/9.79 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, app(app(ty_Either, bfd), bfe), bef) -> new_lt(xuu102, xuu105, bfd, bfe) 25.69/9.79 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(app(ty_Either, cce), ccf), ccg) -> new_lt(xuu114, xuu116, cce, ccf) 25.69/9.79 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), app(app(ty_Either, bbc), bbd), bbe) -> new_lt(xuu470, xuu480, bbc, bbd) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(app(ty_Either, h), ba), bee, bef) -> new_compare(xuu101, xuu104, h, ba) 25.69/9.79 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(xuu47, xuu48, False, app(ty_[], baa), bg) -> new_compare0(xuu47, xuu48, baa) 25.69/9.79 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_lt1(xuu101, xuu104, beg) -> new_compare0(xuu101, xuu104, beg) 25.69/9.79 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_primCompAux(Left(xuu3110000), Left(xuu6000), xuu311001, xuu601, app(app(ty_Either, bb), bc)) -> new_compare2(xuu3110000, xuu6000, new_esEs4(xuu3110000, xuu6000, bb), bb, bc) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 5 > 4, 5 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_primCompAux(Right(xuu3110000), Right(xuu6000), xuu311001, xuu601, app(app(ty_Either, bb), bc)) -> new_compare20(xuu3110000, xuu6000, new_esEs5(xuu3110000, xuu6000, bc), bb, bc) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 5 > 4, 5 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare(Left(xuu3110000), Left(xuu6000), bb, bc) -> new_compare2(xuu3110000, xuu6000, new_esEs4(xuu3110000, xuu6000, bb), bb, bc) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare(Right(xuu3110000), Right(xuu6000), bb, bc) -> new_compare20(xuu3110000, xuu6000, new_esEs5(xuu3110000, xuu6000, bc), bb, bc) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, app(ty_[], bga), bef) -> new_lt1(xuu102, xuu105, bga) 25.69/9.79 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(ty_[], cdc), ccg) -> new_lt1(xuu114, xuu116, cdc) 25.69/9.79 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), app(ty_[], bca), bbe) -> new_lt1(xuu470, xuu480, bca) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, ed, app(ty_Maybe, hf)) -> new_ltEs2(xuu472, xuu482, hf) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, app(app(ty_@2, bgc), bgd), bef) -> new_lt3(xuu102, xuu105, bgc, bgd) 25.69/9.79 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare21(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, bfc, bee, app(ty_Maybe, bhc)) -> new_ltEs2(xuu103, xuu106, bhc) 25.69/9.79 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(app(ty_@2, cde), cdf), ccg) -> new_lt3(xuu114, xuu116, cde, cdf) 25.69/9.79 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(ty_Maybe, cef)) -> new_ltEs2(xuu115, xuu117, cef) 25.69/9.79 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), app(app(ty_@2, bcc), bcd), bbe) -> new_lt3(xuu470, xuu480, bcc, bcd) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs3(@2(xuu470, xuu471), @2(xuu480, xuu481), bce, app(ty_Maybe, bdd)) -> new_ltEs2(xuu471, xuu481, bdd) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs2(Just(xuu470), Just(xuu480), app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs0(xuu470, xuu480, bad, bae, baf) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare20(xuu54, xuu55, False, cfa, app(app(app(ty_@3, cfd), cfe), cff)) -> new_ltEs0(xuu54, xuu55, cfd, cfe, cff) 25.69/9.79 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs2(Just(xuu470), Just(xuu480), app(app(ty_@2, bba), bbb)) -> new_ltEs3(xuu470, xuu480, bba, bbb) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare20(xuu54, xuu55, False, cfa, app(app(ty_@2, cga), cgb)) -> new_ltEs3(xuu54, xuu55, cga, cgb) 25.69/9.79 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs2(Just(xuu470), Just(xuu480), app(app(ty_Either, bab), bac)) -> new_ltEs(xuu470, xuu480, bab, bac) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare20(xuu54, xuu55, False, cfa, app(app(ty_Either, cfb), cfc)) -> new_ltEs(xuu54, xuu55, cfb, cfc) 25.69/9.79 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs2(Just(xuu470), Just(xuu480), app(ty_[], bag)) -> new_ltEs1(xuu470, xuu480, bag) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare20(xuu54, xuu55, False, cfa, app(ty_[], cfg)) -> new_ltEs1(xuu54, xuu55, cfg) 25.69/9.79 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs2(Just(xuu470), Just(xuu480), app(ty_Maybe, bah)) -> new_ltEs2(xuu470, xuu480, bah) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare20(xuu54, xuu55, False, cfa, app(ty_Maybe, cfh)) -> new_ltEs2(xuu54, xuu55, cfh) 25.69/9.79 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), app(app(app(ty_@3, ef), eg), eh), ed, ee) -> new_lt0(xuu470, xuu480, ef, eg, eh) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, app(app(app(ty_@3, ga), gb), gc), ee) -> new_lt0(xuu471, xuu481, ga, gb, gc) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), app(ty_Maybe, fb), ed, ee) -> new_lt2(xuu470, xuu480, fb) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, app(ty_Maybe, ge), ee) -> new_lt2(xuu471, xuu481, ge) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, app(app(ty_Either, fg), fh), ee) -> new_lt(xuu471, xuu481, fg, fh) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), app(app(ty_Either, eb), ec), ed, ee) -> new_lt(xuu470, xuu480, eb, ec) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, app(ty_[], gd), ee) -> new_lt1(xuu471, xuu481, gd) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), app(ty_[], fa), ed, ee) -> new_lt1(xuu470, xuu480, fa) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), app(app(ty_@2, fc), fd), ed, ee) -> new_lt3(xuu470, xuu480, fc, fd) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs0(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), ff, app(app(ty_@2, gf), gg), ee) -> new_lt3(xuu471, xuu481, gf, gg) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs(Left(xuu470), Left(xuu480), app(app(app(ty_@3, bh), ca), cb), bf) -> new_ltEs0(xuu470, xuu480, bh, ca, cb) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs(Right(xuu470), Right(xuu480), cg, app(app(app(ty_@3, dc), dd), de)) -> new_ltEs0(xuu470, xuu480, dc, dd, de) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(Just(xuu470), Just(xuu480), False, app(ty_Maybe, app(app(app(ty_@3, bad), bae), baf)), bg) -> new_ltEs0(xuu470, xuu480, bad, bae, baf) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(Right(xuu470), Right(xuu480), False, app(app(ty_Either, cg), app(app(app(ty_@3, dc), dd), de)), bg) -> new_ltEs0(xuu470, xuu480, dc, dd, de) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(Left(xuu470), Left(xuu480), False, app(app(ty_Either, app(app(app(ty_@3, bh), ca), cb)), bf), bg) -> new_ltEs0(xuu470, xuu480, bh, ca, cb) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), ed), app(app(app(ty_@3, hb), hc), hd)), bg) -> new_ltEs0(xuu472, xuu482, hb, hc, hd) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, bce), app(app(app(ty_@3, bch), bda), bdb)), bg) -> new_ltEs0(xuu471, xuu481, bch, bda, bdb) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), app(app(app(ty_@3, ga), gb), gc)), ee), bg) -> new_lt0(xuu471, xuu481, ga, gb, gc) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, app(app(app(ty_@3, bbf), bbg), bbh)), bbe), bg) -> new_lt0(xuu470, xuu480, bbf, bbg, bbh) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, app(app(app(ty_@3, ef), eg), eh)), ed), ee), bg) -> new_lt0(xuu470, xuu480, ef, eg, eh) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, app(ty_Maybe, bcb)), bbe), bg) -> new_lt2(xuu470, xuu480, bcb) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), app(ty_Maybe, ge)), ee), bg) -> new_lt2(xuu471, xuu481, ge) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, app(ty_Maybe, fb)), ed), ee), bg) -> new_lt2(xuu470, xuu480, fb) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs(Left(xuu470), Left(xuu480), app(app(ty_@2, ce), cf), bf) -> new_ltEs3(xuu470, xuu480, ce, cf) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs(Right(xuu470), Right(xuu480), cg, app(app(ty_@2, dh), ea)) -> new_ltEs3(xuu470, xuu480, dh, ea) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), ed), app(app(ty_@2, hg), hh)), bg) -> new_ltEs3(xuu472, xuu482, hg, hh) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(Just(xuu470), Just(xuu480), False, app(ty_Maybe, app(app(ty_@2, bba), bbb)), bg) -> new_ltEs3(xuu470, xuu480, bba, bbb) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(Left(xuu470), Left(xuu480), False, app(app(ty_Either, app(app(ty_@2, ce), cf)), bf), bg) -> new_ltEs3(xuu470, xuu480, ce, cf) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, bce), app(app(ty_@2, bde), bdf)), bg) -> new_ltEs3(xuu471, xuu481, bde, bdf) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(Right(xuu470), Right(xuu480), False, app(app(ty_Either, cg), app(app(ty_@2, dh), ea)), bg) -> new_ltEs3(xuu470, xuu480, dh, ea) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs(Left(xuu470), Left(xuu480), app(app(ty_Either, bd), be), bf) -> new_ltEs(xuu470, xuu480, bd, be) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs(Right(xuu470), Right(xuu480), cg, app(app(ty_Either, da), db)) -> new_ltEs(xuu470, xuu480, da, db) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs(Left(xuu470), Left(xuu480), app(ty_[], cc), bf) -> new_ltEs1(xuu470, xuu480, cc) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs(Right(xuu470), Right(xuu480), cg, app(ty_[], df)) -> new_ltEs1(xuu470, xuu480, df) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs(Right(xuu470), Right(xuu480), cg, app(ty_Maybe, dg)) -> new_ltEs2(xuu470, xuu480, dg) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_ltEs(Left(xuu470), Left(xuu480), app(ty_Maybe, cd), bf) -> new_ltEs2(xuu470, xuu480, cd) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, bce), app(app(ty_Either, bcf), bcg)), bg) -> new_ltEs(xuu471, xuu481, bcf, bcg) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(Right(xuu470), Right(xuu480), False, app(app(ty_Either, cg), app(app(ty_Either, da), db)), bg) -> new_ltEs(xuu470, xuu480, da, db) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(Just(xuu470), Just(xuu480), False, app(ty_Maybe, app(app(ty_Either, bab), bac)), bg) -> new_ltEs(xuu470, xuu480, bab, bac) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(Left(xuu470), Left(xuu480), False, app(app(ty_Either, app(app(ty_Either, bd), be)), bf), bg) -> new_ltEs(xuu470, xuu480, bd, be) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), ed), app(app(ty_Either, gh), ha)), bg) -> new_ltEs(xuu472, xuu482, gh, ha) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, bce), app(ty_[], bdc)), bg) -> new_ltEs1(xuu471, xuu481, bdc) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(Left(xuu470), Left(xuu480), False, app(app(ty_Either, app(ty_[], cc)), bf), bg) -> new_ltEs1(xuu470, xuu480, cc) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), ed), app(ty_[], he)), bg) -> new_ltEs1(xuu472, xuu482, he) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(Just(xuu470), Just(xuu480), False, app(ty_Maybe, app(ty_[], bag)), bg) -> new_ltEs1(xuu470, xuu480, bag) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(Right(xuu470), Right(xuu480), False, app(app(ty_Either, cg), app(ty_[], df)), bg) -> new_ltEs1(xuu470, xuu480, df) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), app(app(ty_Either, fg), fh)), ee), bg) -> new_lt(xuu471, xuu481, fg, fh) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, app(app(ty_Either, bbc), bbd)), bbe), bg) -> new_lt(xuu470, xuu480, bbc, bbd) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, app(app(ty_Either, eb), ec)), ed), ee), bg) -> new_lt(xuu470, xuu480, eb, ec) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), app(ty_[], gd)), ee), bg) -> new_lt1(xuu471, xuu481, gd) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, app(ty_[], fa)), ed), ee), bg) -> new_lt1(xuu470, xuu480, fa) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, app(ty_[], bca)), bbe), bg) -> new_lt1(xuu470, xuu480, bca) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, app(app(ty_@2, fc), fd)), ed), ee), bg) -> new_lt3(xuu470, xuu480, fc, fd) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), app(app(ty_@2, gf), gg)), ee), bg) -> new_lt3(xuu471, xuu481, gf, gg) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, app(app(ty_@2, bcc), bcd)), bbe), bg) -> new_lt3(xuu470, xuu480, bcc, bcd) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(Right(xuu470), Right(xuu480), False, app(app(ty_Either, cg), app(ty_Maybe, dg)), bg) -> new_ltEs2(xuu470, xuu480, dg) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(Just(xuu470), Just(xuu480), False, app(ty_Maybe, app(ty_Maybe, bah)), bg) -> new_ltEs2(xuu470, xuu480, bah) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), False, app(app(app(ty_@3, ff), ed), app(ty_Maybe, hf)), bg) -> new_ltEs2(xuu472, xuu482, hf) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(@2(xuu470, xuu471), @2(xuu480, xuu481), False, app(app(ty_@2, bce), app(ty_Maybe, bdd)), bg) -> new_ltEs2(xuu471, xuu481, bdd) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 *new_compare2(Left(xuu470), Left(xuu480), False, app(app(ty_Either, app(ty_Maybe, cd)), bf), bg) -> new_ltEs2(xuu470, xuu480, cd) 25.69/9.79 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.79 25.69/9.79 25.69/9.79 ---------------------------------------- 25.69/9.79 25.69/9.79 (33) 25.69/9.79 YES 25.69/9.79 25.69/9.79 ---------------------------------------- 25.69/9.79 25.69/9.79 (34) 25.69/9.79 Obligation: 25.69/9.79 Q DP problem: 25.69/9.79 The TRS P consists of the following rules: 25.69/9.79 25.69/9.79 new_foldl(xuu6, :(xuu3110, xuu3111), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu6, xuu3110, h, ba), xuu3111, h, ba) 25.69/9.79 25.69/9.79 The TRS R consists of the following rules: 25.69/9.79 25.69/9.79 new_lt20(xuu471, xuu481, ty_Double) -> new_lt12(xuu471, xuu481) 25.69/9.79 new_compare5(xuu311000, xuu600, ty_Integer) -> new_compare14(xuu311000, xuu600) 25.69/9.79 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.69/9.79 new_esEs33(xuu31100001, xuu60001, app(ty_Ratio, fce)) -> new_esEs23(xuu31100001, xuu60001, fce) 25.69/9.79 new_primPlusNat0(Zero, Zero) -> Zero 25.69/9.79 new_esEs30(xuu470, xuu480, app(ty_Maybe, dhd)) -> new_esEs25(xuu470, xuu480, dhd) 25.69/9.79 new_pePe(True, xuu210) -> True 25.69/9.79 new_ltEs20(xuu54, xuu55, app(ty_Maybe, edd)) -> new_ltEs15(xuu54, xuu55, edd) 25.69/9.79 new_compare7(Float(xuu3110000, Pos(xuu31100010)), Float(xuu6000, Neg(xuu60010))) -> new_compare15(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) 25.69/9.79 new_compare7(Float(xuu3110000, Neg(xuu31100010)), Float(xuu6000, Pos(xuu60010))) -> new_compare15(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) 25.69/9.79 new_esEs32(xuu31100000, xuu60000, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.79 new_esEs33(xuu31100001, xuu60001, app(app(app(ty_@3, fbh), fca), fcb)) -> new_esEs17(xuu31100001, xuu60001, fbh, fca, fcb) 25.69/9.79 new_esEs6(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.79 new_ltEs24(xuu103, xuu106, app(app(ty_@2, fhh), gaa)) -> new_ltEs10(xuu103, xuu106, fhh, gaa) 25.69/9.79 new_ltEs24(xuu103, xuu106, ty_Ordering) -> new_ltEs14(xuu103, xuu106) 25.69/9.79 new_ltEs4(xuu47, xuu48, bb) -> new_fsEs(new_compare6(xuu47, xuu48, bb)) 25.69/9.79 new_esEs26(LT, GT) -> False 25.69/9.79 new_esEs26(GT, LT) -> False 25.69/9.79 new_esEs35(xuu31100001, xuu60001, app(ty_[], cbf)) -> new_esEs12(xuu31100001, xuu60001, cbf) 25.69/9.79 new_esEs8(xuu3110002, xuu6002, ty_Ordering) -> new_esEs26(xuu3110002, xuu6002) 25.69/9.79 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.69/9.79 new_compare24(xuu114, xuu115, xuu116, xuu117, True, cdb, cdc) -> EQ 25.69/9.79 new_lt8(xuu470, xuu480, ty_Bool) -> new_lt16(xuu470, xuu480) 25.69/9.79 new_esEs26(LT, EQ) -> False 25.69/9.79 new_esEs26(EQ, LT) -> False 25.69/9.79 new_ltEs24(xuu103, xuu106, app(ty_[], fhf)) -> new_ltEs4(xuu103, xuu106, fhf) 25.69/9.79 new_compare26(xuu54, xuu55, True, ecd, ece) -> EQ 25.69/9.79 new_esEs39(xuu102, xuu105, ty_Int) -> new_esEs19(xuu102, xuu105) 25.69/9.79 new_lt14(xuu101, xuu104) -> new_esEs26(new_compare7(xuu101, xuu104), LT) 25.69/9.79 new_esEs6(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.79 new_ltEs7(xuu47, xuu48) -> new_fsEs(new_compare14(xuu47, xuu48)) 25.69/9.79 new_emptyFM(h, ba) -> EmptyFM 25.69/9.79 new_ltEs12(Left(xuu470), Right(xuu480), bce, bbd) -> True 25.69/9.79 new_lt23(xuu102, xuu105, app(ty_Maybe, fge)) -> new_lt15(xuu102, xuu105, fge) 25.69/9.79 new_compare27(xuu47, xuu48, False, fab, fac) -> new_compare110(xuu47, xuu48, new_ltEs22(xuu47, xuu48, fab), fab, fac) 25.69/9.79 new_ltEs24(xuu103, xuu106, app(ty_Ratio, gab)) -> new_ltEs8(xuu103, xuu106, gab) 25.69/9.79 new_primMulNat0(Succ(xuu600000), Succ(xuu311000100)) -> new_primPlusNat1(new_primMulNat0(xuu600000, Succ(xuu311000100)), xuu311000100) 25.69/9.79 new_esEs11(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) 25.69/9.79 new_lt6(xuu101, xuu104) -> new_esEs26(new_compare13(xuu101, xuu104), LT) 25.69/9.79 new_lt19(xuu470, xuu480, ty_Bool) -> new_lt16(xuu470, xuu480) 25.69/9.79 new_esEs6(xuu3110000, xuu6000, app(app(ty_@2, cgf), cgg)) -> new_esEs16(xuu3110000, xuu6000, cgf, cgg) 25.69/9.79 new_esEs36(xuu31100002, xuu60002, ty_@0) -> new_esEs14(xuu31100002, xuu60002) 25.69/9.79 new_addToFM_C17(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, cf, cg) -> Branch(:(xuu25, xuu26), new_addListToFM0(xuu21, xuu27, cg), xuu22, xuu23, xuu24) 25.69/9.79 new_esEs32(xuu31100000, xuu60000, ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.79 new_esEs21(Left(xuu31100000), Right(xuu60000), eed, eee) -> False 25.69/9.79 new_esEs21(Right(xuu31100000), Left(xuu60000), eed, eee) -> False 25.69/9.79 new_mkBalBranch6MkBalBranch110(xuu61, xuu630, xuu631, xuu632, xuu633, Branch(xuu6340, xuu6341, xuu6342, xuu6343, xuu6344), xuu41, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu6340, xuu6341, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu630, xuu631, xuu633, xuu6343, app(ty_[], h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), [], xuu61, xuu6344, xuu41, app(ty_[], h), ba), app(ty_[], h), ba) 25.69/9.79 new_primCompAux00(xuu37, xuu38, EQ, ty_Integer) -> new_compare14(xuu37, xuu38) 25.69/9.79 new_esEs37(xuu114, xuu116, ty_Bool) -> new_esEs20(xuu114, xuu116) 25.69/9.79 new_primEqNat0(Succ(xuu311000000), Succ(xuu600000)) -> new_primEqNat0(xuu311000000, xuu600000) 25.69/9.79 new_ltEs22(xuu47, xuu48, ty_Double) -> new_ltEs6(xuu47, xuu48) 25.69/9.79 new_not(True) -> False 25.69/9.79 new_lt22(xuu101, xuu104, app(ty_[], da)) -> new_lt7(xuu101, xuu104, da) 25.69/9.79 new_esEs35(xuu31100001, xuu60001, app(ty_Maybe, cbg)) -> new_esEs25(xuu31100001, xuu60001, cbg) 25.69/9.79 new_ltEs19(xuu472, xuu482, ty_@0) -> new_ltEs18(xuu472, xuu482) 25.69/9.79 new_lt7(xuu101, xuu104, da) -> new_esEs26(new_compare6(xuu101, xuu104, da), LT) 25.69/9.79 new_esEs9(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.79 new_esEs10(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.79 new_compare17(xuu140, xuu141, False, ehh, faa) -> GT 25.69/9.79 new_esEs39(xuu102, xuu105, ty_Ordering) -> new_esEs26(xuu102, xuu105) 25.69/9.79 new_esEs38(xuu101, xuu104, app(ty_Ratio, ded)) -> new_esEs23(xuu101, xuu104, ded) 25.69/9.79 new_esEs38(xuu101, xuu104, app(app(app(ty_@3, egb), egc), egd)) -> new_esEs17(xuu101, xuu104, egb, egc, egd) 25.69/9.79 new_addToFM_C21(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, EQ, cf, cg) -> new_addToFM_C22(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, cf, cg) 25.69/9.79 new_esEs4(xuu3110000, xuu6000, app(ty_[], bc)) -> new_esEs12(xuu3110000, xuu6000, bc) 25.69/9.79 new_mkBalBranch6MkBalBranch5(xuu600, xuu601, xuu61, xuu29, xuu64, h, ba) -> new_mkBalBranch6MkBalBranch40(xuu600, xuu601, xuu61, xuu29, xuu64, new_gt(new_mkBalBranch6Size_r0(xuu600, xuu601, xuu61, xuu29, xuu64, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l0(xuu600, xuu601, xuu61, xuu29, xuu64, h, ba))), h, ba) 25.69/9.79 new_esEs33(xuu31100001, xuu60001, app(app(ty_Either, fcc), fcd)) -> new_esEs21(xuu31100001, xuu60001, fcc, fcd) 25.69/9.79 new_compare11(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, False, xuu180, dcd, dce, dcf) -> new_compare12(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, xuu180, dcd, dce, dcf) 25.69/9.79 new_lt22(xuu101, xuu104, app(app(ty_Either, bdh), bea)) -> new_lt9(xuu101, xuu104, bdh, bea) 25.69/9.79 new_lt22(xuu101, xuu104, app(ty_Ratio, ded)) -> new_lt4(xuu101, xuu104, ded) 25.69/9.79 new_compare6([], :(xuu6000, xuu6001), efh) -> LT 25.69/9.79 new_compare10(Double(xuu3110000, Pos(xuu31100010)), Double(xuu6000, Neg(xuu60010))) -> new_compare15(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) 25.69/9.79 new_compare10(Double(xuu3110000, Neg(xuu31100010)), Double(xuu6000, Pos(xuu60010))) -> new_compare15(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) 25.69/9.79 new_primEqNat0(Succ(xuu311000000), Zero) -> False 25.69/9.79 new_primEqNat0(Zero, Succ(xuu600000)) -> False 25.69/9.79 new_esEs14(@0, @0) -> True 25.69/9.79 new_lt23(xuu102, xuu105, ty_Char) -> new_lt17(xuu102, xuu105) 25.69/9.79 new_lt23(xuu102, xuu105, ty_Int) -> new_lt10(xuu102, xuu105) 25.69/9.79 new_ltEs21(xuu76, xuu77, ty_Integer) -> new_ltEs7(xuu76, xuu77) 25.69/9.79 new_esEs29(xuu470, xuu480, ty_Int) -> new_esEs19(xuu470, xuu480) 25.69/9.79 new_esEs37(xuu114, xuu116, ty_Float) -> new_esEs18(xuu114, xuu116) 25.69/9.79 new_ltEs23(xuu115, xuu117, ty_Char) -> new_ltEs17(xuu115, xuu117) 25.69/9.79 new_esEs6(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.79 new_lt5(xuu101, xuu104, dee, def) -> new_esEs26(new_compare9(xuu101, xuu104, dee, def), LT) 25.69/9.79 new_ltEs23(xuu115, xuu117, ty_Float) -> new_ltEs5(xuu115, xuu117) 25.69/9.79 new_esEs32(xuu31100000, xuu60000, ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.79 new_mkBalBranch6Size_r0(xuu600, xuu601, xuu61, xuu29, xuu64, h, ba) -> new_sizeFM(xuu64, h, ba) 25.69/9.79 new_ltEs14(EQ, EQ) -> True 25.69/9.79 new_esEs9(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.79 new_esEs37(xuu114, xuu116, ty_Char) -> new_esEs15(xuu114, xuu116) 25.69/9.79 new_primPlusInt(Pos(xuu2120), Pos(xuu2110)) -> Pos(new_primPlusNat0(xuu2120, xuu2110)) 25.69/9.79 new_lt21(xuu114, xuu116, ty_Bool) -> new_lt16(xuu114, xuu116) 25.69/9.79 new_esEs4(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.79 new_compare210(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, True, ffd, ffe, fff) -> EQ 25.69/9.79 new_ltEs20(xuu54, xuu55, app(app(app(ty_@3, ech), eda), edb)) -> new_ltEs13(xuu54, xuu55, ech, eda, edb) 25.69/9.79 new_compare13(LT, LT) -> EQ 25.69/9.79 new_primCmpInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> GT 25.69/9.79 new_lt13(xuu101, xuu104) -> new_esEs26(new_compare14(xuu101, xuu104), LT) 25.69/9.79 new_compare112(xuu188, xuu189, xuu190, xuu191, True, cga, cgb) -> LT 25.69/9.79 new_esEs21(Left(xuu31100000), Left(xuu60000), app(ty_Ratio, fdg), eee) -> new_esEs23(xuu31100000, xuu60000, fdg) 25.69/9.79 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.79 new_esEs10(xuu3110000, xuu6000, app(ty_[], eg)) -> new_esEs12(xuu3110000, xuu6000, eg) 25.69/9.79 new_esEs29(xuu470, xuu480, ty_Ordering) -> new_esEs26(xuu470, xuu480) 25.69/9.79 new_compare13(GT, EQ) -> GT 25.69/9.79 new_mkBalBranch6MkBalBranch30(xuu600, xuu601, xuu61, EmptyFM, xuu64, True, h, ba) -> error([]) 25.69/9.79 new_mkBalBranch6Size_l0(xuu600, xuu601, xuu61, xuu29, xuu64, h, ba) -> new_sizeFM(xuu29, h, ba) 25.69/9.79 new_primCompAux00(xuu37, xuu38, GT, ege) -> GT 25.69/9.79 new_lt19(xuu470, xuu480, ty_Integer) -> new_lt13(xuu470, xuu480) 25.69/9.79 new_primCmpNat0(Zero, Succ(xuu60000)) -> LT 25.69/9.79 new_ltEs11(xuu471, xuu481, ty_Bool) -> new_ltEs16(xuu471, xuu481) 25.69/9.79 new_lt23(xuu102, xuu105, app(app(app(ty_@3, fga), fgb), fgc)) -> new_lt11(xuu102, xuu105, fga, fgb, fgc) 25.69/9.79 new_ltEs23(xuu115, xuu117, ty_Int) -> new_ltEs9(xuu115, xuu117) 25.69/9.79 new_sizeFM(EmptyFM, h, ba) -> Pos(Zero) 25.69/9.79 new_addToFM_C13(xuu61, xuu62, xuu63, xuu64, xuu31101, EQ, h, ba) -> new_addToFM_C14(xuu61, xuu62, xuu63, xuu64, xuu31101, h, ba) 25.69/9.79 new_esEs11(xuu3110001, xuu6001, ty_Ordering) -> new_esEs26(xuu3110001, xuu6001) 25.69/9.79 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 25.69/9.79 new_ltEs12(Left(xuu470), Left(xuu480), ty_Float, bbd) -> new_ltEs5(xuu470, xuu480) 25.69/9.79 new_compare26(xuu54, xuu55, False, ecd, ece) -> new_compare17(xuu54, xuu55, new_ltEs20(xuu54, xuu55, ece), ecd, ece) 25.69/9.79 new_esEs9(xuu3110000, xuu6000, app(ty_[], dga)) -> new_esEs12(xuu3110000, xuu6000, dga) 25.69/9.79 new_esEs34(xuu31100000, xuu60000, ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.79 new_esEs38(xuu101, xuu104, app(app(ty_Either, bdh), bea)) -> new_esEs21(xuu101, xuu104, bdh, bea) 25.69/9.79 new_ltEs12(Left(xuu470), Left(xuu480), ty_Char, bbd) -> new_ltEs17(xuu470, xuu480) 25.69/9.79 new_ltEs21(xuu76, xuu77, ty_@0) -> new_ltEs18(xuu76, xuu77) 25.69/9.79 new_lt8(xuu470, xuu480, ty_Ordering) -> new_lt6(xuu470, xuu480) 25.69/9.79 new_ltEs19(xuu472, xuu482, app(app(ty_@2, eca), ecb)) -> new_ltEs10(xuu472, xuu482, eca, ecb) 25.69/9.79 new_esEs11(xuu3110001, xuu6001, app(ty_Ratio, ga)) -> new_esEs23(xuu3110001, xuu6001, ga) 25.69/9.79 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.79 new_esEs5(xuu3110000, xuu6000, app(app(app(ty_@3, eeh), efa), efb)) -> new_esEs17(xuu3110000, xuu6000, eeh, efa, efb) 25.69/9.79 new_esEs9(xuu3110000, xuu6000, app(app(ty_@2, dfa), dfb)) -> new_esEs16(xuu3110000, xuu6000, dfa, dfb) 25.69/9.79 new_ltEs19(xuu472, xuu482, ty_Ordering) -> new_ltEs14(xuu472, xuu482) 25.69/9.79 new_ltEs12(Left(xuu470), Left(xuu480), ty_Double, bbd) -> new_ltEs6(xuu470, xuu480) 25.69/9.79 new_compare5(xuu311000, xuu600, ty_Float) -> new_compare7(xuu311000, xuu600) 25.69/9.79 new_esEs34(xuu31100000, xuu60000, ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.79 new_esEs38(xuu101, xuu104, app(ty_[], da)) -> new_esEs12(xuu101, xuu104, da) 25.69/9.79 new_esEs10(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.79 new_ltEs14(EQ, GT) -> True 25.69/9.79 new_esEs31(xuu471, xuu481, app(app(ty_Either, dhh), eaa)) -> new_esEs21(xuu471, xuu481, dhh, eaa) 25.69/9.79 new_ltEs12(Right(xuu470), Right(xuu480), bce, app(ty_Maybe, bdd)) -> new_ltEs15(xuu470, xuu480, bdd) 25.69/9.79 new_ltEs15(Just(xuu470), Just(xuu480), ty_Integer) -> new_ltEs7(xuu470, xuu480) 25.69/9.79 new_compare5(xuu311000, xuu600, app(app(ty_@2, de), df)) -> new_compare9(xuu311000, xuu600, de, df) 25.69/9.79 new_ltEs19(xuu472, xuu482, ty_Integer) -> new_ltEs7(xuu472, xuu482) 25.69/9.79 new_primEqInt(Neg(Succ(xuu311000000)), Neg(Succ(xuu600000))) -> new_primEqNat0(xuu311000000, xuu600000) 25.69/9.79 new_esEs33(xuu31100001, xuu60001, app(ty_Maybe, fcg)) -> new_esEs25(xuu31100001, xuu60001, fcg) 25.69/9.79 new_esEs31(xuu471, xuu481, ty_@0) -> new_esEs14(xuu471, xuu481) 25.69/9.79 new_esEs21(Right(xuu31100000), Right(xuu60000), eed, ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.79 new_ltEs12(Left(xuu470), Left(xuu480), app(ty_[], bbh), bbd) -> new_ltEs4(xuu470, xuu480, bbh) 25.69/9.79 new_primCmpInt(Neg(Zero), Pos(Succ(xuu60000))) -> LT 25.69/9.79 new_compare15(xuu311000, xuu600) -> new_primCmpInt(xuu311000, xuu600) 25.69/9.79 new_ltEs20(xuu54, xuu55, ty_Char) -> new_ltEs17(xuu54, xuu55) 25.69/9.79 new_primMulInt(Pos(xuu60000), Pos(xuu31100010)) -> Pos(new_primMulNat0(xuu60000, xuu31100010)) 25.69/9.79 new_mkBalBranch6MkBalBranch40(xuu600, xuu601, xuu61, xuu29, EmptyFM, True, h, ba) -> error([]) 25.69/9.79 new_compare13(EQ, LT) -> GT 25.69/9.79 new_ltEs14(LT, GT) -> True 25.69/9.79 new_ltEs14(GT, GT) -> True 25.69/9.79 new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_@2, ehe), ehf)) -> new_compare9(xuu37, xuu38, ehe, ehf) 25.69/9.79 new_ltEs21(xuu76, xuu77, ty_Bool) -> new_ltEs16(xuu76, xuu77) 25.69/9.79 new_esEs30(xuu470, xuu480, ty_Double) -> new_esEs22(xuu470, xuu480) 25.69/9.79 new_primCompAux00(xuu37, xuu38, EQ, ty_Float) -> new_compare7(xuu37, xuu38) 25.69/9.79 new_esEs9(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.79 new_mkBalBranch6MkBalBranch01(xuu61, xuu63, xuu410, xuu411, xuu412, xuu413, xuu414, True, h, ba) -> new_mkBranch(Succ(Succ(Zero)), xuu410, xuu411, new_mkBranch(Succ(Succ(Succ(Zero))), [], xuu61, xuu63, xuu413, app(ty_[], h), ba), xuu414, app(ty_[], h), ba) 25.69/9.79 new_primMulNat0(Succ(xuu600000), Zero) -> Zero 25.69/9.79 new_primMulNat0(Zero, Succ(xuu311000100)) -> Zero 25.69/9.79 new_esEs9(xuu3110000, xuu6000, app(ty_Maybe, dgb)) -> new_esEs25(xuu3110000, xuu6000, dgb) 25.69/9.79 new_lt21(xuu114, xuu116, ty_Integer) -> new_lt13(xuu114, xuu116) 25.69/9.79 new_esEs6(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.79 new_esEs7(xuu3110001, xuu6001, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs17(xuu3110001, xuu6001, dab, dac, dad) 25.69/9.79 new_compare13(GT, LT) -> GT 25.69/9.79 new_addListToFM_CAdd(xuu6, @2(xuu31100, xuu31101), h, ba) -> new_addToFM_C0(xuu6, xuu31100, xuu31101, h, ba) 25.69/9.79 new_esEs22(Double(xuu31100000, xuu31100001), Double(xuu60000, xuu60001)) -> new_esEs19(new_sr(xuu31100000, xuu60001), new_sr(xuu31100001, xuu60000)) 25.69/9.79 new_lt20(xuu471, xuu481, app(app(app(ty_@3, eab), eac), ead)) -> new_lt11(xuu471, xuu481, eab, eac, ead) 25.69/9.79 new_primPlusNat0(Succ(xuu21200), Zero) -> Succ(xuu21200) 25.69/9.79 new_primPlusNat0(Zero, Succ(xuu21100)) -> Succ(xuu21100) 25.69/9.79 new_compare7(Float(xuu3110000, Pos(xuu31100010)), Float(xuu6000, Pos(xuu60010))) -> new_compare15(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) 25.69/9.79 new_esEs26(EQ, GT) -> False 25.69/9.79 new_esEs26(GT, EQ) -> False 25.69/9.79 new_ltEs12(Left(xuu470), Left(xuu480), app(ty_Ratio, bcd), bbd) -> new_ltEs8(xuu470, xuu480, bcd) 25.69/9.79 new_esEs6(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.79 new_addToFM_C21(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, cf, cg) -> new_addToFM_C22(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, cf, cg) 25.69/9.79 new_compare13(EQ, EQ) -> EQ 25.69/9.79 new_compare5(xuu311000, xuu600, app(app(app(ty_@3, cgc), cgd), cge)) -> new_compare28(xuu311000, xuu600, cgc, cgd, cge) 25.69/9.79 new_esEs39(xuu102, xuu105, ty_@0) -> new_esEs14(xuu102, xuu105) 25.69/9.79 new_compare29(False, False) -> EQ 25.69/9.79 new_mkBalBranch6MkBalBranch11(xuu600, xuu601, xuu61, xuu290, xuu291, xuu292, xuu293, EmptyFM, xuu64, False, h, ba) -> error([]) 25.69/9.79 new_esEs7(xuu3110001, xuu6001, app(ty_Maybe, dba)) -> new_esEs25(xuu3110001, xuu6001, dba) 25.69/9.79 new_esEs31(xuu471, xuu481, ty_Ordering) -> new_esEs26(xuu471, xuu481) 25.69/9.79 new_lt21(xuu114, xuu116, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_lt11(xuu114, xuu116, cdf, cdg, cdh) 25.69/9.79 new_ltEs11(xuu471, xuu481, ty_@0) -> new_ltEs18(xuu471, xuu481) 25.69/9.79 new_esEs32(xuu31100000, xuu60000, app(app(ty_@2, fad), fae)) -> new_esEs16(xuu31100000, xuu60000, fad, fae) 25.69/9.79 new_esEs39(xuu102, xuu105, ty_Bool) -> new_esEs20(xuu102, xuu105) 25.69/9.79 new_lt8(xuu470, xuu480, ty_Integer) -> new_lt13(xuu470, xuu480) 25.69/9.79 new_esEs10(xuu3110000, xuu6000, app(ty_Maybe, eh)) -> new_esEs25(xuu3110000, xuu6000, eh) 25.69/9.79 new_esEs32(xuu31100000, xuu60000, ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.79 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Char, eee) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.79 new_ltEs20(xuu54, xuu55, ty_Float) -> new_ltEs5(xuu54, xuu55) 25.69/9.79 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Bool, eee) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.79 new_ltEs24(xuu103, xuu106, ty_@0) -> new_ltEs18(xuu103, xuu106) 25.69/9.79 new_esEs29(xuu470, xuu480, app(app(ty_Either, gf), gg)) -> new_esEs21(xuu470, xuu480, gf, gg) 25.69/9.79 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.79 new_esEs25(Just(xuu31100000), Just(xuu60000), app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs17(xuu31100000, xuu60000, ddd, dde, ddf) 25.69/9.79 new_esEs5(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.79 new_esEs25(Just(xuu31100000), Just(xuu60000), app(app(ty_Either, ddg), ddh)) -> new_esEs21(xuu31100000, xuu60000, ddg, ddh) 25.69/9.79 new_compare9(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), de, df) -> new_compare24(xuu3110000, xuu3110001, xuu6000, xuu6001, new_asAs(new_esEs10(xuu3110000, xuu6000, de), new_esEs11(xuu3110001, xuu6001, df)), de, df) 25.69/9.79 new_esEs29(xuu470, xuu480, ty_@0) -> new_esEs14(xuu470, xuu480) 25.69/9.79 new_esEs32(xuu31100000, xuu60000, app(ty_Maybe, fbe)) -> new_esEs25(xuu31100000, xuu60000, fbe) 25.69/9.79 new_compare25(xuu76, xuu77, True, bec) -> EQ 25.69/9.79 new_esEs36(xuu31100002, xuu60002, app(ty_Ratio, ccg)) -> new_esEs23(xuu31100002, xuu60002, ccg) 25.69/9.79 new_addListToFM0(xuu61, xuu31101, ba) -> xuu31101 25.69/9.79 new_esEs13(xuu31100000, xuu60000, app(ty_Ratio, cc)) -> new_esEs23(xuu31100000, xuu60000, cc) 25.69/9.79 new_ltEs5(xuu47, xuu48) -> new_fsEs(new_compare7(xuu47, xuu48)) 25.69/9.79 new_esEs27(xuu31100000, xuu60000, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.79 new_esEs30(xuu470, xuu480, app(app(app(ty_@3, dgh), dha), dhb)) -> new_esEs17(xuu470, xuu480, dgh, dha, dhb) 25.69/9.79 new_lt23(xuu102, xuu105, ty_Double) -> new_lt12(xuu102, xuu105) 25.69/9.79 new_esEs13(xuu31100000, xuu60000, app(ty_[], cd)) -> new_esEs12(xuu31100000, xuu60000, cd) 25.69/9.79 new_esEs5(xuu3110000, xuu6000, app(app(ty_Either, efc), efd)) -> new_esEs21(xuu3110000, xuu6000, efc, efd) 25.69/9.79 new_compare29(True, False) -> GT 25.69/9.79 new_mkBalBranch6MkBalBranch110(xuu61, xuu630, xuu631, xuu632, xuu633, xuu634, xuu41, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu630, xuu631, xuu633, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), [], xuu61, xuu634, xuu41, app(ty_[], h), ba), app(ty_[], h), ba) 25.69/9.79 new_esEs7(xuu3110001, xuu6001, ty_Double) -> new_esEs22(xuu3110001, xuu6001) 25.69/9.79 new_gt(xuu202, xuu201) -> new_esEs26(new_compare15(xuu202, xuu201), GT) 25.69/9.79 new_ltEs15(Just(xuu470), Just(xuu480), ty_Bool) -> new_ltEs16(xuu470, xuu480) 25.69/9.79 new_ltEs19(xuu472, xuu482, ty_Bool) -> new_ltEs16(xuu472, xuu482) 25.69/9.79 new_esEs4(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.79 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Int, eee) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.79 new_esEs30(xuu470, xuu480, ty_Char) -> new_esEs15(xuu470, xuu480) 25.69/9.79 new_esEs10(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.79 new_ltEs11(xuu471, xuu481, ty_Char) -> new_ltEs17(xuu471, xuu481) 25.69/9.79 new_esEs21(Left(xuu31100000), Left(xuu60000), app(ty_Maybe, fea), eee) -> new_esEs25(xuu31100000, xuu60000, fea) 25.69/9.79 new_esEs10(xuu3110000, xuu6000, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs17(xuu3110000, xuu6000, ea, eb, ec) 25.69/9.79 new_lt20(xuu471, xuu481, ty_Char) -> new_lt17(xuu471, xuu481) 25.69/9.79 new_esEs34(xuu31100000, xuu60000, ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.79 new_esEs8(xuu3110002, xuu6002, ty_Float) -> new_esEs18(xuu3110002, xuu6002) 25.69/9.79 new_ltEs11(xuu471, xuu481, ty_Float) -> new_ltEs5(xuu471, xuu481) 25.69/9.79 new_esEs39(xuu102, xuu105, ty_Char) -> new_esEs15(xuu102, xuu105) 25.69/9.79 new_esEs10(xuu3110000, xuu6000, app(ty_Ratio, ef)) -> new_esEs23(xuu3110000, xuu6000, ef) 25.69/9.79 new_ltEs12(Left(xuu470), Left(xuu480), ty_Int, bbd) -> new_ltEs9(xuu470, xuu480) 25.69/9.79 new_mkBalBranch6MkBalBranch51(xuu600, xuu601, xuu61, xuu29, xuu64, LT, h, ba) -> new_mkBranch(Zero, :(xuu600, xuu601), xuu61, xuu29, xuu64, app(ty_[], h), ba) 25.69/9.79 new_esEs8(xuu3110002, xuu6002, app(app(ty_@2, dbb), dbc)) -> new_esEs16(xuu3110002, xuu6002, dbb, dbc) 25.69/9.79 new_compare25(xuu76, xuu77, False, bec) -> new_compare19(xuu76, xuu77, new_ltEs21(xuu76, xuu77, bec), bec) 25.69/9.79 new_esEs37(xuu114, xuu116, app(ty_[], cea)) -> new_esEs12(xuu114, xuu116, cea) 25.69/9.79 new_mkBalBranch6MkBalBranch50(xuu61, xuu63, xuu41, True, h, ba) -> new_mkBranch(Zero, [], xuu61, xuu63, xuu41, app(ty_[], h), ba) 25.69/9.79 new_esEs30(xuu470, xuu480, app(app(ty_Either, dgf), dgg)) -> new_esEs21(xuu470, xuu480, dgf, dgg) 25.69/9.79 new_esEs29(xuu470, xuu480, app(app(ty_@2, he), hf)) -> new_esEs16(xuu470, xuu480, he, hf) 25.69/9.79 new_primPlusInt(Neg(xuu2120), Neg(xuu2110)) -> Neg(new_primPlusNat0(xuu2120, xuu2110)) 25.69/9.79 new_primCompAux00(xuu37, xuu38, EQ, ty_Char) -> new_compare30(xuu37, xuu38) 25.69/9.79 new_lt23(xuu102, xuu105, ty_Bool) -> new_lt16(xuu102, xuu105) 25.69/9.79 new_esEs35(xuu31100001, xuu60001, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs17(xuu31100001, xuu60001, cah, cba, cbb) 25.69/9.79 new_addToFM_C12(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, h, ba) -> Branch(:(xuu311000, xuu311001), new_addListToFM0(xuu61, xuu31101, ba), xuu62, xuu63, xuu64) 25.69/9.79 new_esEs35(xuu31100001, xuu60001, ty_Bool) -> new_esEs20(xuu31100001, xuu60001) 25.69/9.79 new_mkBalBranch6MkBalBranch11(xuu600, xuu601, xuu61, xuu290, xuu291, xuu292, xuu293, Branch(xuu2940, xuu2941, xuu2942, xuu2943, xuu2944), xuu64, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu2940, xuu2941, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu290, xuu291, xuu293, xuu2943, app(ty_[], h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), :(xuu600, xuu601), xuu61, xuu2944, xuu64, app(ty_[], h), ba), app(ty_[], h), ba) 25.69/9.79 new_ltEs24(xuu103, xuu106, ty_Double) -> new_ltEs6(xuu103, xuu106) 25.69/9.79 new_lt19(xuu470, xuu480, app(app(app(ty_@3, dgh), dha), dhb)) -> new_lt11(xuu470, xuu480, dgh, dha, dhb) 25.69/9.79 new_esEs31(xuu471, xuu481, app(ty_Ratio, eba)) -> new_esEs23(xuu471, xuu481, eba) 25.69/9.79 new_ltEs12(Left(xuu470), Left(xuu480), app(app(ty_@2, bcb), bcc), bbd) -> new_ltEs10(xuu470, xuu480, bcb, bcc) 25.69/9.79 new_ltEs15(Just(xuu470), Just(xuu480), app(app(ty_Either, bfg), bfh)) -> new_ltEs12(xuu470, xuu480, bfg, bfh) 25.69/9.79 new_addToFM_C16(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, EQ, cf, cg) -> new_addToFM_C17(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, cf, cg) 25.69/9.79 new_ltEs12(Right(xuu470), Right(xuu480), bce, ty_@0) -> new_ltEs18(xuu470, xuu480) 25.69/9.79 new_esEs31(xuu471, xuu481, app(app(app(ty_@3, eab), eac), ead)) -> new_esEs17(xuu471, xuu481, eab, eac, ead) 25.69/9.79 new_ltEs11(xuu471, xuu481, app(ty_Ratio, bba)) -> new_ltEs8(xuu471, xuu481, bba) 25.69/9.79 new_esEs31(xuu471, xuu481, ty_Bool) -> new_esEs20(xuu471, xuu481) 25.69/9.79 new_esEs35(xuu31100001, xuu60001, app(ty_Ratio, cbe)) -> new_esEs23(xuu31100001, xuu60001, cbe) 25.69/9.79 new_mkBalBranch6MkBalBranch30(xuu600, xuu601, xuu61, Branch(xuu290, xuu291, xuu292, xuu293, xuu294), xuu64, True, h, ba) -> new_mkBalBranch6MkBalBranch11(xuu600, xuu601, xuu61, xuu290, xuu291, xuu292, xuu293, xuu294, xuu64, new_lt10(new_sizeFM(xuu294, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu293, h, ba))), h, ba) 25.69/9.79 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_@0, eee) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.79 new_lt15(xuu101, xuu104, beb) -> new_esEs26(new_compare16(xuu101, xuu104, beb), LT) 25.69/9.79 new_lt21(xuu114, xuu116, ty_@0) -> new_lt18(xuu114, xuu116) 25.69/9.79 new_esEs6(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.79 new_compare18(Right(xuu3110000), Right(xuu6000), edh, eea) -> new_compare26(xuu3110000, xuu6000, new_esEs5(xuu3110000, xuu6000, eea), edh, eea) 25.69/9.79 new_ltEs22(xuu47, xuu48, app(app(ty_@2, gd), ge)) -> new_ltEs10(xuu47, xuu48, gd, ge) 25.69/9.79 new_esEs39(xuu102, xuu105, ty_Integer) -> new_esEs24(xuu102, xuu105) 25.69/9.79 new_lt8(xuu470, xuu480, ty_@0) -> new_lt18(xuu470, xuu480) 25.69/9.79 new_esEs4(xuu3110000, xuu6000, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs17(xuu3110000, xuu6000, bha, bhb, bhc) 25.69/9.79 new_esEs32(xuu31100000, xuu60000, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.79 new_esEs23(:%(xuu31100000, xuu31100001), :%(xuu60000, xuu60001), deg) -> new_asAs(new_esEs27(xuu31100000, xuu60000, deg), new_esEs28(xuu31100001, xuu60001, deg)) 25.69/9.79 new_ltEs12(Right(xuu470), Right(xuu480), bce, app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs13(xuu470, xuu480, bch, bda, bdb) 25.69/9.79 new_esEs33(xuu31100001, xuu60001, ty_Ordering) -> new_esEs26(xuu31100001, xuu60001) 25.69/9.79 new_addToFM_C13(xuu61, xuu62, xuu63, xuu64, xuu31101, GT, h, ba) -> new_mkBalBranch(xuu61, xuu63, new_addToFM_C0(xuu64, [], xuu31101, h, ba), h, ba) 25.69/9.79 new_esEs4(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.79 new_ltEs16(True, False) -> False 25.69/9.79 new_primMinusNat0(Zero, Zero) -> Pos(Zero) 25.69/9.79 new_compare5(xuu311000, xuu600, app(ty_Ratio, ega)) -> new_compare8(xuu311000, xuu600, ega) 25.69/9.79 new_esEs39(xuu102, xuu105, app(app(ty_Either, ffg), ffh)) -> new_esEs21(xuu102, xuu105, ffg, ffh) 25.69/9.79 new_esEs21(Left(xuu31100000), Left(xuu60000), app(app(ty_@2, fch), fda), eee) -> new_esEs16(xuu31100000, xuu60000, fch, fda) 25.69/9.79 new_esEs30(xuu470, xuu480, app(app(ty_@2, dhe), dhf)) -> new_esEs16(xuu470, xuu480, dhe, dhf) 25.69/9.79 new_addToFM_C13(xuu61, xuu62, xuu63, xuu64, xuu31101, LT, h, ba) -> new_addToFM_C14(xuu61, xuu62, xuu63, xuu64, xuu31101, h, ba) 25.69/9.79 new_ltEs22(xuu47, xuu48, ty_@0) -> new_ltEs18(xuu47, xuu48) 25.69/9.79 new_esEs37(xuu114, xuu116, ty_Int) -> new_esEs19(xuu114, xuu116) 25.69/9.79 new_primCmpInt(Pos(Succ(xuu31100000)), Pos(xuu6000)) -> new_primCmpNat0(Succ(xuu31100000), xuu6000) 25.69/9.79 new_esEs29(xuu470, xuu480, ty_Char) -> new_esEs15(xuu470, xuu480) 25.69/9.79 new_lt19(xuu470, xuu480, app(ty_Maybe, dhd)) -> new_lt15(xuu470, xuu480, dhd) 25.69/9.79 new_esEs13(xuu31100000, xuu60000, ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.79 new_esEs10(xuu3110000, xuu6000, app(app(ty_Either, ed), ee)) -> new_esEs21(xuu3110000, xuu6000, ed, ee) 25.69/9.79 new_lt8(xuu470, xuu480, ty_Char) -> new_lt17(xuu470, xuu480) 25.69/9.79 new_ltEs15(Just(xuu470), Just(xuu480), app(ty_Ratio, bgh)) -> new_ltEs8(xuu470, xuu480, bgh) 25.69/9.79 new_esEs11(xuu3110001, xuu6001, app(ty_Maybe, gc)) -> new_esEs25(xuu3110001, xuu6001, gc) 25.69/9.79 new_compare13(GT, GT) -> EQ 25.69/9.79 new_ltEs20(xuu54, xuu55, ty_Double) -> new_ltEs6(xuu54, xuu55) 25.69/9.79 new_lt20(xuu471, xuu481, app(app(ty_Either, dhh), eaa)) -> new_lt9(xuu471, xuu481, dhh, eaa) 25.69/9.79 new_lt16(xuu101, xuu104) -> new_esEs26(new_compare29(xuu101, xuu104), LT) 25.69/9.79 new_ltEs21(xuu76, xuu77, app(app(ty_@2, bfc), bfd)) -> new_ltEs10(xuu76, xuu77, bfc, bfd) 25.69/9.79 new_ltEs15(Just(xuu470), Just(xuu480), ty_Ordering) -> new_ltEs14(xuu470, xuu480) 25.69/9.79 new_esEs39(xuu102, xuu105, app(app(app(ty_@3, fga), fgb), fgc)) -> new_esEs17(xuu102, xuu105, fga, fgb, fgc) 25.69/9.79 new_compare7(Float(xuu3110000, Neg(xuu31100010)), Float(xuu6000, Neg(xuu60010))) -> new_compare15(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) 25.69/9.79 new_esEs35(xuu31100001, xuu60001, ty_Integer) -> new_esEs24(xuu31100001, xuu60001) 25.69/9.79 new_lt20(xuu471, xuu481, ty_@0) -> new_lt18(xuu471, xuu481) 25.69/9.79 new_esEs13(xuu31100000, xuu60000, ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.79 new_esEs38(xuu101, xuu104, ty_@0) -> new_esEs14(xuu101, xuu104) 25.69/9.79 new_compare29(False, True) -> LT 25.69/9.79 new_esEs21(Right(xuu31100000), Right(xuu60000), eed, app(app(ty_@2, feb), fec)) -> new_esEs16(xuu31100000, xuu60000, feb, fec) 25.69/9.79 new_primCompAux00(xuu37, xuu38, EQ, app(ty_Ratio, ehg)) -> new_compare8(xuu37, xuu38, ehg) 25.69/9.79 new_esEs29(xuu470, xuu480, ty_Bool) -> new_esEs20(xuu470, xuu480) 25.69/9.79 new_esEs34(xuu31100000, xuu60000, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.79 new_esEs36(xuu31100002, xuu60002, ty_Bool) -> new_esEs20(xuu31100002, xuu60002) 25.69/9.79 new_ltEs11(xuu471, xuu481, app(ty_Maybe, baf)) -> new_ltEs15(xuu471, xuu481, baf) 25.69/9.79 new_lt22(xuu101, xuu104, ty_Ordering) -> new_lt6(xuu101, xuu104) 25.69/9.79 new_primCompAux00(xuu37, xuu38, EQ, app(ty_Maybe, ehd)) -> new_compare16(xuu37, xuu38, ehd) 25.69/9.79 new_esEs30(xuu470, xuu480, ty_Bool) -> new_esEs20(xuu470, xuu480) 25.69/9.79 new_esEs36(xuu31100002, xuu60002, ty_Int) -> new_esEs19(xuu31100002, xuu60002) 25.69/9.79 new_esEs5(xuu3110000, xuu6000, app(ty_Maybe, efg)) -> new_esEs25(xuu3110000, xuu6000, efg) 25.69/9.79 new_lt21(xuu114, xuu116, app(ty_Maybe, ceb)) -> new_lt15(xuu114, xuu116, ceb) 25.69/9.79 new_lt19(xuu470, xuu480, ty_@0) -> new_lt18(xuu470, xuu480) 25.69/9.79 new_esEs5(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.79 new_esEs31(xuu471, xuu481, ty_Char) -> new_esEs15(xuu471, xuu481) 25.69/9.79 new_ltEs22(xuu47, xuu48, app(ty_[], bb)) -> new_ltEs4(xuu47, xuu48, bb) 25.69/9.79 new_compare18(Right(xuu3110000), Left(xuu6000), edh, eea) -> GT 25.69/9.79 new_compare5(xuu311000, xuu600, ty_Char) -> new_compare30(xuu311000, xuu600) 25.69/9.79 new_compare6([], [], efh) -> EQ 25.69/9.79 new_ltEs18(xuu47, xuu48) -> new_fsEs(new_compare31(xuu47, xuu48)) 25.69/9.79 new_sizeFM0(Branch(xuu3110, xuu3111, xuu3112, xuu3113, xuu3114), dc, dd) -> xuu3112 25.69/9.79 new_ltEs11(xuu471, xuu481, ty_Int) -> new_ltEs9(xuu471, xuu481) 25.69/9.79 new_lt8(xuu470, xuu480, ty_Float) -> new_lt14(xuu470, xuu480) 25.69/9.79 new_esEs34(xuu31100000, xuu60000, ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.79 new_esEs7(xuu3110001, xuu6001, ty_Float) -> new_esEs18(xuu3110001, xuu6001) 25.69/9.79 new_compare10(Double(xuu3110000, Neg(xuu31100010)), Double(xuu6000, Neg(xuu60010))) -> new_compare15(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) 25.69/9.79 new_esEs4(xuu3110000, xuu6000, app(ty_Maybe, dda)) -> new_esEs25(xuu3110000, xuu6000, dda) 25.69/9.79 new_sizeFM(Branch(xuu640, xuu641, xuu642, xuu643, xuu644), h, ba) -> xuu642 25.69/9.79 new_lt9(xuu101, xuu104, bdh, bea) -> new_esEs26(new_compare18(xuu101, xuu104, bdh, bea), LT) 25.69/9.79 new_addToFM_C14(xuu61, xuu62, xuu63, xuu64, xuu31101, h, ba) -> Branch([], new_addListToFM0(xuu61, xuu31101, ba), xuu62, xuu63, xuu64) 25.69/9.79 new_esEs10(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.79 new_mkBalBranch6MkBalBranch010(xuu600, xuu601, xuu61, xuu29, xuu640, xuu641, xuu642, Branch(xuu6430, xuu6431, xuu6432, xuu6433, xuu6434), xuu644, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu6430, xuu6431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), :(xuu600, xuu601), xuu61, xuu29, xuu6433, app(ty_[], h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu640, xuu641, xuu6434, xuu644, app(ty_[], h), ba), app(ty_[], h), ba) 25.69/9.79 new_lt8(xuu470, xuu480, app(app(ty_Either, gf), gg)) -> new_lt9(xuu470, xuu480, gf, gg) 25.69/9.79 new_ltEs12(Right(xuu470), Right(xuu480), bce, ty_Char) -> new_ltEs17(xuu470, xuu480) 25.69/9.79 new_compare112(xuu188, xuu189, xuu190, xuu191, False, cga, cgb) -> GT 25.69/9.79 new_esEs35(xuu31100001, xuu60001, ty_@0) -> new_esEs14(xuu31100001, xuu60001) 25.69/9.79 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Float, eee) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.79 new_lt19(xuu470, xuu480, ty_Float) -> new_lt14(xuu470, xuu480) 25.69/9.79 new_esEs32(xuu31100000, xuu60000, ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.79 new_ltEs15(Nothing, Just(xuu480), bff) -> True 25.69/9.79 new_esEs31(xuu471, xuu481, ty_Int) -> new_esEs19(xuu471, xuu481) 25.69/9.79 new_esEs4(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.79 new_primPlusNat0(Succ(xuu21200), Succ(xuu21100)) -> Succ(Succ(new_primPlusNat0(xuu21200, xuu21100))) 25.69/9.79 new_compare18(Left(xuu3110000), Left(xuu6000), edh, eea) -> new_compare27(xuu3110000, xuu6000, new_esEs4(xuu3110000, xuu6000, edh), edh, eea) 25.69/9.79 new_mkBalBranch6MkBalBranch01(xuu61, xuu63, xuu410, xuu411, xuu412, EmptyFM, xuu414, False, h, ba) -> error([]) 25.69/9.79 new_esEs7(xuu3110001, xuu6001, app(ty_[], dah)) -> new_esEs12(xuu3110001, xuu6001, dah) 25.69/9.79 new_compare27(xuu47, xuu48, True, fab, fac) -> EQ 25.69/9.79 new_primCompAux00(xuu37, xuu38, EQ, ty_Ordering) -> new_compare13(xuu37, xuu38) 25.69/9.79 new_esEs38(xuu101, xuu104, ty_Integer) -> new_esEs24(xuu101, xuu104) 25.69/9.79 new_lt4(xuu101, xuu104, ded) -> new_esEs26(new_compare8(xuu101, xuu104, ded), LT) 25.69/9.79 new_mkBalBranch6MkBalBranch51(xuu600, xuu601, xuu61, xuu29, xuu64, GT, h, ba) -> new_mkBalBranch6MkBalBranch5(xuu600, xuu601, xuu61, xuu29, xuu64, h, ba) 25.69/9.79 new_esEs13(xuu31100000, xuu60000, ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.79 new_lt23(xuu102, xuu105, ty_Float) -> new_lt14(xuu102, xuu105) 25.69/9.79 new_esEs36(xuu31100002, xuu60002, app(app(ty_Either, cce), ccf)) -> new_esEs21(xuu31100002, xuu60002, cce, ccf) 25.69/9.79 new_esEs13(xuu31100000, xuu60000, app(app(ty_Either, ca), cb)) -> new_esEs21(xuu31100000, xuu60000, ca, cb) 25.69/9.79 new_ltEs16(False, False) -> True 25.69/9.79 new_mkBalBranch6MkBalBranch11(xuu600, xuu601, xuu61, xuu290, xuu291, xuu292, xuu293, xuu294, xuu64, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu290, xuu291, xuu293, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), :(xuu600, xuu601), xuu61, xuu294, xuu64, app(ty_[], h), ba), app(ty_[], h), ba) 25.69/9.79 new_ltEs21(xuu76, xuu77, app(ty_[], bfa)) -> new_ltEs4(xuu76, xuu77, bfa) 25.69/9.79 new_esEs13(xuu31100000, xuu60000, app(ty_Maybe, ce)) -> new_esEs25(xuu31100000, xuu60000, ce) 25.69/9.79 new_lt20(xuu471, xuu481, app(ty_Maybe, eaf)) -> new_lt15(xuu471, xuu481, eaf) 25.69/9.79 new_esEs11(xuu3110001, xuu6001, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs17(xuu3110001, xuu6001, fc, fd, ff) 25.69/9.79 new_lt21(xuu114, xuu116, ty_Char) -> new_lt17(xuu114, xuu116) 25.69/9.79 new_esEs32(xuu31100000, xuu60000, app(ty_Ratio, fbc)) -> new_esEs23(xuu31100000, xuu60000, fbc) 25.69/9.79 new_esEs36(xuu31100002, xuu60002, app(ty_Maybe, cda)) -> new_esEs25(xuu31100002, xuu60002, cda) 25.69/9.79 new_esEs11(xuu3110001, xuu6001, ty_Bool) -> new_esEs20(xuu3110001, xuu6001) 25.69/9.79 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Ordering, eee) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.79 new_esEs33(xuu31100001, xuu60001, ty_@0) -> new_esEs14(xuu31100001, xuu60001) 25.69/9.79 new_lt20(xuu471, xuu481, ty_Bool) -> new_lt16(xuu471, xuu481) 25.69/9.79 new_ltEs12(Right(xuu470), Right(xuu480), bce, ty_Ordering) -> new_ltEs14(xuu470, xuu480) 25.69/9.79 new_esEs34(xuu31100000, xuu60000, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs17(xuu31100000, xuu60000, bhf, bhg, bhh) 25.69/9.79 new_esEs13(xuu31100000, xuu60000, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.79 new_mkBalBranch6Size_r(xuu61, xuu63, xuu41, h, ba) -> new_sizeFM(xuu41, h, ba) 25.69/9.79 new_addToFM_C15(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, EQ, h, ba) -> new_addToFM_C12(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, h, ba) 25.69/9.79 new_compare12(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, dcd, dce, dcf) -> LT 25.69/9.79 new_mkBalBranch6MkBalBranch51(xuu600, xuu601, xuu61, xuu29, xuu64, EQ, h, ba) -> new_mkBalBranch6MkBalBranch5(xuu600, xuu601, xuu61, xuu29, xuu64, h, ba) 25.69/9.79 new_esEs18(Float(xuu31100000, xuu31100001), Float(xuu60000, xuu60001)) -> new_esEs19(new_sr(xuu31100000, xuu60001), new_sr(xuu31100001, xuu60000)) 25.69/9.79 new_lt20(xuu471, xuu481, ty_Float) -> new_lt14(xuu471, xuu481) 25.69/9.79 new_esEs36(xuu31100002, xuu60002, ty_Ordering) -> new_esEs26(xuu31100002, xuu60002) 25.69/9.79 new_lt21(xuu114, xuu116, ty_Ordering) -> new_lt6(xuu114, xuu116) 25.69/9.79 new_ltEs12(Right(xuu470), Right(xuu480), bce, app(ty_[], bdc)) -> new_ltEs4(xuu470, xuu480, bdc) 25.69/9.79 new_ltEs16(True, True) -> True 25.69/9.79 new_esEs39(xuu102, xuu105, ty_Float) -> new_esEs18(xuu102, xuu105) 25.69/9.79 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Integer, eee) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.79 new_ltEs11(xuu471, xuu481, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs13(xuu471, xuu481, bab, bac, bad) 25.69/9.79 new_ltEs11(xuu471, xuu481, app(app(ty_Either, hh), baa)) -> new_ltEs12(xuu471, xuu481, hh, baa) 25.69/9.79 new_esEs35(xuu31100001, xuu60001, ty_Char) -> new_esEs15(xuu31100001, xuu60001) 25.69/9.79 new_esEs11(xuu3110001, xuu6001, ty_Char) -> new_esEs15(xuu3110001, xuu6001) 25.69/9.79 new_esEs5(xuu3110000, xuu6000, app(ty_[], eff)) -> new_esEs12(xuu3110000, xuu6000, eff) 25.69/9.79 new_esEs36(xuu31100002, xuu60002, ty_Integer) -> new_esEs24(xuu31100002, xuu60002) 25.69/9.79 new_esEs17(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), bha, bhb, bhc) -> new_asAs(new_esEs34(xuu31100000, xuu60000, bha), new_asAs(new_esEs35(xuu31100001, xuu60001, bhb), new_esEs36(xuu31100002, xuu60002, bhc))) 25.69/9.79 new_lt21(xuu114, xuu116, ty_Float) -> new_lt14(xuu114, xuu116) 25.69/9.79 new_esEs20(True, True) -> True 25.69/9.79 new_esEs34(xuu31100000, xuu60000, ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.79 new_primCmpNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primCmpNat0(xuu31100000, xuu60000) 25.69/9.79 new_esEs25(Just(xuu31100000), Just(xuu60000), app(ty_[], deb)) -> new_esEs12(xuu31100000, xuu60000, deb) 25.69/9.79 new_esEs38(xuu101, xuu104, ty_Ordering) -> new_esEs26(xuu101, xuu104) 25.69/9.79 new_ltEs15(Just(xuu470), Just(xuu480), ty_Int) -> new_ltEs9(xuu470, xuu480) 25.69/9.79 new_mkBalBranch0(xuu600, xuu601, xuu61, xuu29, xuu64, h, ba) -> new_mkBalBranch6MkBalBranch51(xuu600, xuu601, xuu61, xuu29, xuu64, new_compare15(new_primPlusInt(new_mkBalBranch6Size_l0(xuu600, xuu601, xuu61, xuu29, xuu64, h, ba), new_mkBalBranch6Size_r0(xuu600, xuu601, xuu61, xuu29, xuu64, h, ba)), Pos(Succ(Succ(Zero)))), h, ba) 25.69/9.79 new_compare5(xuu311000, xuu600, app(ty_Maybe, deh)) -> new_compare16(xuu311000, xuu600, deh) 25.69/9.79 new_esEs34(xuu31100000, xuu60000, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.79 new_lt22(xuu101, xuu104, ty_Float) -> new_lt14(xuu101, xuu104) 25.69/9.79 new_esEs11(xuu3110001, xuu6001, app(app(ty_Either, fg), fh)) -> new_esEs21(xuu3110001, xuu6001, fg, fh) 25.69/9.79 new_primMinusNat0(Zero, Succ(xuu21100)) -> Neg(Succ(xuu21100)) 25.69/9.79 new_esEs11(xuu3110001, xuu6001, ty_Int) -> new_esEs19(xuu3110001, xuu6001) 25.69/9.79 new_esEs10(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.79 new_ltEs11(xuu471, xuu481, ty_Ordering) -> new_ltEs14(xuu471, xuu481) 25.69/9.79 new_esEs29(xuu470, xuu480, app(ty_Ratio, hg)) -> new_esEs23(xuu470, xuu480, hg) 25.69/9.79 new_esEs34(xuu31100000, xuu60000, app(app(ty_Either, caa), cab)) -> new_esEs21(xuu31100000, xuu60000, caa, cab) 25.69/9.79 new_esEs33(xuu31100001, xuu60001, ty_Char) -> new_esEs15(xuu31100001, xuu60001) 25.69/9.79 new_lt23(xuu102, xuu105, app(app(ty_Either, ffg), ffh)) -> new_lt9(xuu102, xuu105, ffg, ffh) 25.69/9.79 new_compare12(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, False, dcd, dce, dcf) -> GT 25.69/9.79 new_addToFM_C0(Branch(:(xuu600, xuu601), xuu61, xuu62, xuu63, xuu64), [], xuu31101, h, ba) -> new_mkBalBranch0(xuu600, xuu601, xuu61, new_addToFM_C0(xuu63, [], xuu31101, h, ba), xuu64, h, ba) 25.69/9.79 new_ltEs11(xuu471, xuu481, ty_Integer) -> new_ltEs7(xuu471, xuu481) 25.69/9.79 new_ltEs20(xuu54, xuu55, app(ty_[], edc)) -> new_ltEs4(xuu54, xuu55, edc) 25.69/9.79 new_compare13(LT, GT) -> LT 25.69/9.79 new_esEs37(xuu114, xuu116, ty_Ordering) -> new_esEs26(xuu114, xuu116) 25.69/9.79 new_esEs33(xuu31100001, xuu60001, ty_Int) -> new_esEs19(xuu31100001, xuu60001) 25.69/9.79 new_lt19(xuu470, xuu480, ty_Ordering) -> new_lt6(xuu470, xuu480) 25.69/9.79 new_esEs37(xuu114, xuu116, app(ty_Maybe, ceb)) -> new_esEs25(xuu114, xuu116, ceb) 25.69/9.79 new_esEs5(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.79 new_esEs15(Char(xuu31100000), Char(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) 25.69/9.79 new_esEs36(xuu31100002, xuu60002, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs17(xuu31100002, xuu60002, ccb, ccc, ccd) 25.69/9.79 new_ltEs23(xuu115, xuu117, ty_Double) -> new_ltEs6(xuu115, xuu117) 25.69/9.79 new_ltEs12(Right(xuu470), Right(xuu480), bce, ty_Bool) -> new_ltEs16(xuu470, xuu480) 25.69/9.79 new_esEs30(xuu470, xuu480, app(ty_Ratio, dhg)) -> new_esEs23(xuu470, xuu480, dhg) 25.69/9.79 new_esEs38(xuu101, xuu104, app(ty_Maybe, beb)) -> new_esEs25(xuu101, xuu104, beb) 25.69/9.79 new_esEs13(xuu31100000, xuu60000, app(app(app(ty_@3, bf), bg), bh)) -> new_esEs17(xuu31100000, xuu60000, bf, bg, bh) 25.69/9.79 new_ltEs12(Right(xuu470), Right(xuu480), bce, ty_Float) -> new_ltEs5(xuu470, xuu480) 25.69/9.79 new_ltEs19(xuu472, xuu482, app(ty_[], ebg)) -> new_ltEs4(xuu472, xuu482, ebg) 25.69/9.79 new_ltEs14(LT, LT) -> True 25.69/9.79 new_mkBalBranch6MkBalBranch40(xuu600, xuu601, xuu61, xuu29, xuu64, False, h, ba) -> new_mkBalBranch6MkBalBranch30(xuu600, xuu601, xuu61, xuu29, xuu64, new_gt(new_mkBalBranch6Size_l0(xuu600, xuu601, xuu61, xuu29, xuu64, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r0(xuu600, xuu601, xuu61, xuu29, xuu64, h, ba))), h, ba) 25.69/9.79 new_lt22(xuu101, xuu104, ty_@0) -> new_lt18(xuu101, xuu104) 25.69/9.79 new_lt20(xuu471, xuu481, ty_Ordering) -> new_lt6(xuu471, xuu481) 25.69/9.79 new_compare210(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, ffd, ffe, fff) -> new_compare11(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, new_lt22(xuu101, xuu104, ffd), new_asAs(new_esEs38(xuu101, xuu104, ffd), new_pePe(new_lt23(xuu102, xuu105, ffe), new_asAs(new_esEs39(xuu102, xuu105, ffe), new_ltEs24(xuu103, xuu106, fff)))), ffd, ffe, fff) 25.69/9.79 new_esEs35(xuu31100001, xuu60001, app(app(ty_Either, cbc), cbd)) -> new_esEs21(xuu31100001, xuu60001, cbc, cbd) 25.69/9.79 new_esEs6(xuu3110000, xuu6000, app(ty_[], chf)) -> new_esEs12(xuu3110000, xuu6000, chf) 25.69/9.79 new_esEs37(xuu114, xuu116, ty_Integer) -> new_esEs24(xuu114, xuu116) 25.69/9.79 new_ltEs12(Left(xuu470), Left(xuu480), app(app(app(ty_@3, bbe), bbf), bbg), bbd) -> new_ltEs13(xuu470, xuu480, bbe, bbf, bbg) 25.69/9.79 new_sizeFM0(EmptyFM, dc, dd) -> Pos(Zero) 25.69/9.79 new_esEs10(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.79 new_lt19(xuu470, xuu480, ty_Char) -> new_lt17(xuu470, xuu480) 25.69/9.79 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.79 new_ltEs16(False, True) -> True 25.69/9.79 new_primCompAux1(xuu311000, xuu600, xuu311001, xuu601, h) -> new_primCompAux00(xuu311001, xuu601, new_compare5(xuu311000, xuu600, h), app(ty_[], h)) 25.69/9.79 new_ltEs23(xuu115, xuu117, app(app(ty_@2, cfe), cff)) -> new_ltEs10(xuu115, xuu117, cfe, cff) 25.69/9.79 new_compare14(Integer(xuu3110000), Integer(xuu6000)) -> new_primCmpInt(xuu3110000, xuu6000) 25.69/9.79 new_ltEs23(xuu115, xuu117, app(app(ty_Either, cef), ceg)) -> new_ltEs12(xuu115, xuu117, cef, ceg) 25.69/9.79 new_mkBalBranch6MkBalBranch40(xuu600, xuu601, xuu61, xuu29, Branch(xuu640, xuu641, xuu642, xuu643, xuu644), True, h, ba) -> new_mkBalBranch6MkBalBranch010(xuu600, xuu601, xuu61, xuu29, xuu640, xuu641, xuu642, xuu643, xuu644, new_lt10(new_sizeFM(xuu643, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu644, h, ba))), h, ba) 25.69/9.79 new_lt23(xuu102, xuu105, ty_@0) -> new_lt18(xuu102, xuu105) 25.69/9.79 new_primCmpInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> LT 25.69/9.79 new_esEs29(xuu470, xuu480, app(ty_[], hc)) -> new_esEs12(xuu470, xuu480, hc) 25.69/9.79 new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_Either, egf), egg)) -> new_compare18(xuu37, xuu38, egf, egg) 25.69/9.79 new_esEs33(xuu31100001, xuu60001, ty_Bool) -> new_esEs20(xuu31100001, xuu60001) 25.69/9.79 new_esEs21(Right(xuu31100000), Right(xuu60000), eed, ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.79 new_esEs6(xuu3110000, xuu6000, app(app(app(ty_@3, cgh), cha), chb)) -> new_esEs17(xuu3110000, xuu6000, cgh, cha, chb) 25.69/9.79 new_esEs5(xuu3110000, xuu6000, ty_Integer) -> new_esEs24(xuu3110000, xuu6000) 25.69/9.79 new_esEs30(xuu470, xuu480, ty_Int) -> new_esEs19(xuu470, xuu480) 25.69/9.79 new_compare13(EQ, GT) -> LT 25.69/9.79 new_compare24(xuu114, xuu115, xuu116, xuu117, False, cdb, cdc) -> new_compare111(xuu114, xuu115, xuu116, xuu117, new_lt21(xuu114, xuu116, cdb), new_asAs(new_esEs37(xuu114, xuu116, cdb), new_ltEs23(xuu115, xuu117, cdc)), cdb, cdc) 25.69/9.79 new_mkBalBranch6MkBalBranch110(xuu61, xuu630, xuu631, xuu632, xuu633, EmptyFM, xuu41, False, h, ba) -> error([]) 25.69/9.79 new_esEs35(xuu31100001, xuu60001, ty_Ordering) -> new_esEs26(xuu31100001, xuu60001) 25.69/9.79 new_ltEs22(xuu47, xuu48, ty_Bool) -> new_ltEs16(xuu47, xuu48) 25.69/9.79 new_mkBalBranch6MkBalBranch3(xuu61, xuu63, xuu41, False, h, ba) -> new_mkBranch(Succ(Zero), [], xuu61, xuu63, xuu41, app(ty_[], h), ba) 25.69/9.79 new_ltEs12(Right(xuu470), Right(xuu480), bce, ty_Int) -> new_ltEs9(xuu470, xuu480) 25.69/9.79 new_esEs8(xuu3110002, xuu6002, app(ty_[], dcb)) -> new_esEs12(xuu3110002, xuu6002, dcb) 25.69/9.79 new_esEs12(:(xuu31100000, xuu31100001), [], bc) -> False 25.69/9.79 new_esEs12([], :(xuu60000, xuu60001), bc) -> False 25.69/9.79 new_primCmpInt(Pos(Zero), Neg(Succ(xuu60000))) -> GT 25.69/9.79 new_ltEs15(Just(xuu470), Just(xuu480), app(app(app(ty_@3, bga), bgb), bgc)) -> new_ltEs13(xuu470, xuu480, bga, bgb, bgc) 25.69/9.79 new_esEs10(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.79 new_compare5(xuu311000, xuu600, ty_Int) -> new_compare15(xuu311000, xuu600) 25.69/9.79 new_compare111(xuu188, xuu189, xuu190, xuu191, False, xuu193, cga, cgb) -> new_compare112(xuu188, xuu189, xuu190, xuu191, xuu193, cga, cgb) 25.69/9.79 new_compare29(True, True) -> EQ 25.69/9.79 new_esEs33(xuu31100001, xuu60001, ty_Float) -> new_esEs18(xuu31100001, xuu60001) 25.69/9.79 new_ltEs21(xuu76, xuu77, app(app(app(ty_@3, bef), beg), beh)) -> new_ltEs13(xuu76, xuu77, bef, beg, beh) 25.69/9.79 new_esEs37(xuu114, xuu116, app(app(ty_Either, cdd), cde)) -> new_esEs21(xuu114, xuu116, cdd, cde) 25.69/9.79 new_primCmpInt(Neg(Succ(xuu31100000)), Neg(xuu6000)) -> new_primCmpNat0(xuu6000, Succ(xuu31100000)) 25.69/9.79 new_esEs36(xuu31100002, xuu60002, ty_Double) -> new_esEs22(xuu31100002, xuu60002) 25.69/9.79 new_ltEs20(xuu54, xuu55, ty_@0) -> new_ltEs18(xuu54, xuu55) 25.69/9.79 new_esEs33(xuu31100001, xuu60001, app(app(ty_@2, fbf), fbg)) -> new_esEs16(xuu31100001, xuu60001, fbf, fbg) 25.69/9.79 new_ltEs22(xuu47, xuu48, ty_Integer) -> new_ltEs7(xuu47, xuu48) 25.69/9.79 new_esEs9(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.79 new_esEs5(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.79 new_primEqInt(Pos(Succ(xuu311000000)), Pos(Zero)) -> False 25.69/9.79 new_primEqInt(Pos(Zero), Pos(Succ(xuu600000))) -> False 25.69/9.79 new_esEs7(xuu3110001, xuu6001, ty_Int) -> new_esEs19(xuu3110001, xuu6001) 25.69/9.79 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.79 new_ltEs11(xuu471, xuu481, ty_Double) -> new_ltEs6(xuu471, xuu481) 25.69/9.79 new_lt21(xuu114, xuu116, app(app(ty_@2, cec), ced)) -> new_lt5(xuu114, xuu116, cec, ced) 25.69/9.79 new_ltEs17(xuu47, xuu48) -> new_fsEs(new_compare30(xuu47, xuu48)) 25.69/9.79 new_ltEs24(xuu103, xuu106, ty_Float) -> new_ltEs5(xuu103, xuu106) 25.69/9.79 new_primCompAux00(xuu37, xuu38, EQ, app(ty_[], ehc)) -> new_compare6(xuu37, xuu38, ehc) 25.69/9.79 new_lt23(xuu102, xuu105, app(ty_Ratio, fgh)) -> new_lt4(xuu102, xuu105, fgh) 25.69/9.79 new_esEs37(xuu114, xuu116, app(ty_Ratio, cee)) -> new_esEs23(xuu114, xuu116, cee) 25.69/9.79 new_esEs37(xuu114, xuu116, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_esEs17(xuu114, xuu116, cdf, cdg, cdh) 25.69/9.79 new_compare6(:(xuu3110000, xuu3110001), [], efh) -> GT 25.69/9.79 new_mkBalBranch6MkBalBranch3(xuu61, Branch(xuu630, xuu631, xuu632, xuu633, xuu634), xuu41, True, h, ba) -> new_mkBalBranch6MkBalBranch110(xuu61, xuu630, xuu631, xuu632, xuu633, xuu634, xuu41, new_lt10(new_sizeFM(xuu634, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu633, h, ba))), h, ba) 25.69/9.79 new_esEs39(xuu102, xuu105, app(ty_Maybe, fge)) -> new_esEs25(xuu102, xuu105, fge) 25.69/9.79 new_ltEs8(xuu47, xuu48, db) -> new_fsEs(new_compare8(xuu47, xuu48, db)) 25.69/9.79 new_lt21(xuu114, xuu116, app(app(ty_Either, cdd), cde)) -> new_lt9(xuu114, xuu116, cdd, cde) 25.69/9.79 new_ltEs20(xuu54, xuu55, ty_Ordering) -> new_ltEs14(xuu54, xuu55) 25.69/9.79 new_ltEs20(xuu54, xuu55, app(app(ty_@2, ede), edf)) -> new_ltEs10(xuu54, xuu55, ede, edf) 25.69/9.79 new_esEs30(xuu470, xuu480, ty_Ordering) -> new_esEs26(xuu470, xuu480) 25.69/9.79 new_esEs35(xuu31100001, xuu60001, ty_Int) -> new_esEs19(xuu31100001, xuu60001) 25.69/9.79 new_primCmpNat0(Zero, Zero) -> EQ 25.69/9.79 new_ltEs15(Just(xuu470), Just(xuu480), ty_Double) -> new_ltEs6(xuu470, xuu480) 25.69/9.79 new_ltEs12(Right(xuu470), Right(xuu480), bce, ty_Integer) -> new_ltEs7(xuu470, xuu480) 25.69/9.79 new_ltEs22(xuu47, xuu48, ty_Int) -> new_ltEs9(xuu47, xuu48) 25.69/9.79 new_esEs21(Left(xuu31100000), Left(xuu60000), app(app(app(ty_@3, fdb), fdc), fdd), eee) -> new_esEs17(xuu31100000, xuu60000, fdb, fdc, fdd) 25.69/9.79 new_ltEs21(xuu76, xuu77, ty_Double) -> new_ltEs6(xuu76, xuu77) 25.69/9.79 new_lt23(xuu102, xuu105, app(ty_[], fgd)) -> new_lt7(xuu102, xuu105, fgd) 25.69/9.79 new_compare13(LT, EQ) -> LT 25.69/9.79 new_ltEs19(xuu472, xuu482, app(app(app(ty_@3, ebd), ebe), ebf)) -> new_ltEs13(xuu472, xuu482, ebd, ebe, ebf) 25.69/9.79 new_esEs5(xuu3110000, xuu6000, app(app(ty_@2, eef), eeg)) -> new_esEs16(xuu3110000, xuu6000, eef, eeg) 25.69/9.79 new_esEs36(xuu31100002, xuu60002, ty_Char) -> new_esEs15(xuu31100002, xuu60002) 25.69/9.79 new_esEs38(xuu101, xuu104, ty_Float) -> new_esEs18(xuu101, xuu104) 25.69/9.79 new_esEs11(xuu3110001, xuu6001, ty_Integer) -> new_esEs24(xuu3110001, xuu6001) 25.69/9.79 new_lt19(xuu470, xuu480, ty_Double) -> new_lt12(xuu470, xuu480) 25.69/9.79 new_esEs4(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.79 new_esEs34(xuu31100000, xuu60000, app(ty_Maybe, cae)) -> new_esEs25(xuu31100000, xuu60000, cae) 25.69/9.79 new_esEs21(Right(xuu31100000), Right(xuu60000), eed, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.79 new_esEs5(xuu3110000, xuu6000, ty_Double) -> new_esEs22(xuu3110000, xuu6000) 25.69/9.79 new_lt12(xuu101, xuu104) -> new_esEs26(new_compare10(xuu101, xuu104), LT) 25.69/9.79 new_ltEs20(xuu54, xuu55, app(ty_Ratio, edg)) -> new_ltEs8(xuu54, xuu55, edg) 25.69/9.79 new_primMinusNat0(Succ(xuu21200), Zero) -> Pos(Succ(xuu21200)) 25.69/9.79 new_lt22(xuu101, xuu104, ty_Char) -> new_lt17(xuu101, xuu104) 25.69/9.79 new_esEs20(False, True) -> False 25.69/9.79 new_esEs20(True, False) -> False 25.69/9.79 new_ltEs13(@3(xuu470, xuu471, xuu472), @3(xuu480, xuu481, xuu482), dgc, dgd, dge) -> new_pePe(new_lt19(xuu470, xuu480, dgc), new_asAs(new_esEs30(xuu470, xuu480, dgc), new_pePe(new_lt20(xuu471, xuu481, dgd), new_asAs(new_esEs31(xuu471, xuu481, dgd), new_ltEs19(xuu472, xuu482, dge))))) 25.69/9.79 new_primCompAux00(xuu37, xuu38, EQ, ty_Int) -> new_compare15(xuu37, xuu38) 25.69/9.79 new_lt20(xuu471, xuu481, ty_Integer) -> new_lt13(xuu471, xuu481) 25.69/9.79 new_esEs32(xuu31100000, xuu60000, ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.79 new_lt19(xuu470, xuu480, app(app(ty_@2, dhe), dhf)) -> new_lt5(xuu470, xuu480, dhe, dhf) 25.69/9.79 new_esEs13(xuu31100000, xuu60000, ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.79 new_esEs37(xuu114, xuu116, ty_@0) -> new_esEs14(xuu114, xuu116) 25.69/9.79 new_ltEs14(EQ, LT) -> False 25.69/9.79 new_compare110(xuu133, xuu134, True, dcg, dch) -> LT 25.69/9.79 new_esEs39(xuu102, xuu105, app(ty_[], fgd)) -> new_esEs12(xuu102, xuu105, fgd) 25.69/9.79 new_ltEs24(xuu103, xuu106, ty_Char) -> new_ltEs17(xuu103, xuu106) 25.69/9.79 new_esEs11(xuu3110001, xuu6001, ty_Double) -> new_esEs22(xuu3110001, xuu6001) 25.69/9.79 new_esEs29(xuu470, xuu480, app(ty_Maybe, hd)) -> new_esEs25(xuu470, xuu480, hd) 25.69/9.79 new_esEs25(Just(xuu31100000), Just(xuu60000), app(ty_Maybe, dec)) -> new_esEs25(xuu31100000, xuu60000, dec) 25.69/9.79 new_compare5(xuu311000, xuu600, app(app(ty_Either, edh), eea)) -> new_compare18(xuu311000, xuu600, edh, eea) 25.69/9.79 new_esEs13(xuu31100000, xuu60000, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.79 new_esEs19(xuu3110000, xuu6000) -> new_primEqInt(xuu3110000, xuu6000) 25.69/9.79 new_compare8(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ty_Integer) -> new_compare14(new_sr0(xuu3110000, xuu6001), new_sr0(xuu6000, xuu3110001)) 25.69/9.79 new_esEs32(xuu31100000, xuu60000, app(app(ty_Either, fba), fbb)) -> new_esEs21(xuu31100000, xuu60000, fba, fbb) 25.69/9.79 new_esEs36(xuu31100002, xuu60002, app(ty_[], cch)) -> new_esEs12(xuu31100002, xuu60002, cch) 25.69/9.79 new_ltEs23(xuu115, xuu117, app(ty_[], cfc)) -> new_ltEs4(xuu115, xuu117, cfc) 25.69/9.79 new_primCmpNat0(Succ(xuu31100000), Zero) -> GT 25.69/9.79 new_ltEs19(xuu472, xuu482, ty_Double) -> new_ltEs6(xuu472, xuu482) 25.69/9.79 new_compare16(Just(xuu3110000), Nothing, deh) -> GT 25.69/9.79 new_mkBalBranch6MkBalBranch4(xuu61, xuu63, Branch(xuu410, xuu411, xuu412, xuu413, xuu414), True, h, ba) -> new_mkBalBranch6MkBalBranch01(xuu61, xuu63, xuu410, xuu411, xuu412, xuu413, xuu414, new_lt10(new_sizeFM(xuu413, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu414, h, ba))), h, ba) 25.69/9.79 new_pePe(False, xuu210) -> xuu210 25.69/9.79 new_esEs31(xuu471, xuu481, ty_Integer) -> new_esEs24(xuu471, xuu481) 25.69/9.79 new_esEs20(False, False) -> True 25.69/9.79 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.79 new_ltEs10(@2(xuu470, xuu471), @2(xuu480, xuu481), gd, ge) -> new_pePe(new_lt8(xuu470, xuu480, gd), new_asAs(new_esEs29(xuu470, xuu480, gd), new_ltEs11(xuu471, xuu481, ge))) 25.69/9.79 new_mkBalBranch6MkBalBranch50(xuu61, xuu63, xuu41, False, h, ba) -> new_mkBalBranch6MkBalBranch4(xuu61, xuu63, xuu41, new_gt(new_mkBalBranch6Size_r(xuu61, xuu63, xuu41, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(xuu61, xuu63, xuu41, h, ba))), h, ba) 25.69/9.79 new_esEs11(xuu3110001, xuu6001, app(app(ty_@2, fa), fb)) -> new_esEs16(xuu3110001, xuu6001, fa, fb) 25.69/9.79 new_compare28(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), cgc, cgd, cge) -> new_compare210(xuu3110000, xuu3110001, xuu3110002, xuu6000, xuu6001, xuu6002, new_asAs(new_esEs6(xuu3110000, xuu6000, cgc), new_asAs(new_esEs7(xuu3110001, xuu6001, cgd), new_esEs8(xuu3110002, xuu6002, cge))), cgc, cgd, cge) 25.69/9.79 new_addToFM_C0(Branch([], xuu61, xuu62, xuu63, xuu64), :(xuu311000, xuu311001), xuu31101, h, ba) -> new_addToFM_C15(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, GT, h, ba) 25.69/9.79 new_compare5(xuu311000, xuu600, ty_Ordering) -> new_compare13(xuu311000, xuu600) 25.69/9.79 new_lt22(xuu101, xuu104, app(ty_Maybe, beb)) -> new_lt15(xuu101, xuu104, beb) 25.69/9.79 new_esEs11(xuu3110001, xuu6001, ty_Float) -> new_esEs18(xuu3110001, xuu6001) 25.69/9.79 new_primMinusNat0(Succ(xuu21200), Succ(xuu21100)) -> new_primMinusNat0(xuu21200, xuu21100) 25.69/9.79 new_compare11(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, xuu180, dcd, dce, dcf) -> new_compare12(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, dcd, dce, dcf) 25.69/9.79 new_esEs34(xuu31100000, xuu60000, app(ty_Ratio, cac)) -> new_esEs23(xuu31100000, xuu60000, cac) 25.69/9.79 new_compare6(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), efh) -> new_primCompAux1(xuu3110000, xuu6000, xuu3110001, xuu6001, efh) 25.69/9.79 new_esEs32(xuu31100000, xuu60000, app(app(app(ty_@3, faf), fag), fah)) -> new_esEs17(xuu31100000, xuu60000, faf, fag, fah) 25.69/9.79 new_compare16(Nothing, Nothing, deh) -> EQ 25.69/9.79 new_lt21(xuu114, xuu116, ty_Double) -> new_lt12(xuu114, xuu116) 25.69/9.79 new_primEqInt(Pos(Zero), Neg(Succ(xuu600000))) -> False 25.69/9.79 new_primEqInt(Neg(Zero), Pos(Succ(xuu600000))) -> False 25.69/9.79 new_esEs5(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.79 new_esEs7(xuu3110001, xuu6001, ty_Ordering) -> new_esEs26(xuu3110001, xuu6001) 25.69/9.79 new_compare19(xuu154, xuu155, True, cfh) -> LT 25.69/9.79 new_lt23(xuu102, xuu105, ty_Ordering) -> new_lt6(xuu102, xuu105) 25.69/9.79 new_esEs21(Right(xuu31100000), Right(xuu60000), eed, app(ty_Ratio, ffa)) -> new_esEs23(xuu31100000, xuu60000, ffa) 25.69/9.79 new_esEs4(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.79 new_esEs34(xuu31100000, xuu60000, app(ty_[], cad)) -> new_esEs12(xuu31100000, xuu60000, cad) 25.69/9.79 new_esEs11(xuu3110001, xuu6001, app(ty_[], gb)) -> new_esEs12(xuu3110001, xuu6001, gb) 25.69/9.79 new_compare111(xuu188, xuu189, xuu190, xuu191, True, xuu193, cga, cgb) -> new_compare112(xuu188, xuu189, xuu190, xuu191, True, cga, cgb) 25.69/9.79 new_ltEs12(Left(xuu470), Left(xuu480), app(app(ty_Either, bbb), bbc), bbd) -> new_ltEs12(xuu470, xuu480, bbb, bbc) 25.69/9.79 new_ltEs15(Nothing, Nothing, bff) -> True 25.69/9.79 new_ltEs14(GT, EQ) -> False 25.69/9.79 new_primCompAux00(xuu37, xuu38, EQ, ty_@0) -> new_compare31(xuu37, xuu38) 25.69/9.79 new_lt22(xuu101, xuu104, app(app(app(ty_@3, egb), egc), egd)) -> new_lt11(xuu101, xuu104, egb, egc, egd) 25.69/9.79 new_ltEs15(Just(xuu470), Nothing, bff) -> False 25.69/9.79 new_esEs6(xuu3110000, xuu6000, app(ty_Maybe, chg)) -> new_esEs25(xuu3110000, xuu6000, chg) 25.69/9.79 new_mkBalBranch6MkBalBranch30(xuu600, xuu601, xuu61, xuu29, xuu64, False, h, ba) -> new_mkBranch(Succ(Zero), :(xuu600, xuu601), xuu61, xuu29, xuu64, app(ty_[], h), ba) 25.69/9.79 new_lt22(xuu101, xuu104, ty_Bool) -> new_lt16(xuu101, xuu104) 25.69/9.79 new_ltEs12(Left(xuu470), Left(xuu480), ty_Integer, bbd) -> new_ltEs7(xuu470, xuu480) 25.69/9.79 new_esEs36(xuu31100002, xuu60002, ty_Float) -> new_esEs18(xuu31100002, xuu60002) 25.69/9.79 new_esEs8(xuu3110002, xuu6002, ty_Double) -> new_esEs22(xuu3110002, xuu6002) 25.69/9.79 new_esEs29(xuu470, xuu480, ty_Double) -> new_esEs22(xuu470, xuu480) 25.69/9.79 new_esEs13(xuu31100000, xuu60000, ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.79 new_esEs4(xuu3110000, xuu6000, app(app(ty_Either, eed), eee)) -> new_esEs21(xuu3110000, xuu6000, eed, eee) 25.69/9.79 new_ltEs12(Left(xuu470), Left(xuu480), ty_Ordering, bbd) -> new_ltEs14(xuu470, xuu480) 25.69/9.79 new_esEs9(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) 25.69/9.79 new_esEs6(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.79 new_ltEs24(xuu103, xuu106, ty_Int) -> new_ltEs9(xuu103, xuu106) 25.69/9.79 new_esEs38(xuu101, xuu104, ty_Char) -> new_esEs15(xuu101, xuu104) 25.69/9.79 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.79 new_esEs31(xuu471, xuu481, app(ty_Maybe, eaf)) -> new_esEs25(xuu471, xuu481, eaf) 25.69/9.79 new_ltEs12(Right(xuu470), Right(xuu480), bce, app(app(ty_@2, bde), bdf)) -> new_ltEs10(xuu470, xuu480, bde, bdf) 25.69/9.79 new_ltEs21(xuu76, xuu77, app(ty_Maybe, bfb)) -> new_ltEs15(xuu76, xuu77, bfb) 25.69/9.79 new_esEs33(xuu31100001, xuu60001, ty_Integer) -> new_esEs24(xuu31100001, xuu60001) 25.69/9.79 new_esEs21(Right(xuu31100000), Right(xuu60000), eed, ty_Float) -> new_esEs18(xuu31100000, xuu60000) 25.69/9.79 new_lt19(xuu470, xuu480, app(app(ty_Either, dgf), dgg)) -> new_lt9(xuu470, xuu480, dgf, dgg) 25.69/9.80 new_ltEs19(xuu472, xuu482, ty_Char) -> new_ltEs17(xuu472, xuu482) 25.69/9.80 new_ltEs12(Left(xuu470), Left(xuu480), ty_Bool, bbd) -> new_ltEs16(xuu470, xuu480) 25.69/9.80 new_esEs28(xuu31100001, xuu60001, ty_Int) -> new_esEs19(xuu31100001, xuu60001) 25.69/9.80 new_lt8(xuu470, xuu480, ty_Double) -> new_lt12(xuu470, xuu480) 25.69/9.80 new_esEs26(GT, GT) -> True 25.69/9.80 new_lt23(xuu102, xuu105, ty_Integer) -> new_lt13(xuu102, xuu105) 25.69/9.80 new_esEs38(xuu101, xuu104, ty_Bool) -> new_esEs20(xuu101, xuu104) 25.69/9.80 new_esEs8(xuu3110002, xuu6002, app(ty_Maybe, dcc)) -> new_esEs25(xuu3110002, xuu6002, dcc) 25.69/9.80 new_compare17(xuu140, xuu141, True, ehh, faa) -> LT 25.69/9.80 new_compare5(xuu311000, xuu600, ty_@0) -> new_compare31(xuu311000, xuu600) 25.69/9.80 new_esEs31(xuu471, xuu481, app(app(ty_@2, eag), eah)) -> new_esEs16(xuu471, xuu481, eag, eah) 25.69/9.80 new_esEs6(xuu3110000, xuu6000, app(app(ty_Either, chc), chd)) -> new_esEs21(xuu3110000, xuu6000, chc, chd) 25.69/9.80 new_ltEs22(xuu47, xuu48, ty_Char) -> new_ltEs17(xuu47, xuu48) 25.69/9.80 new_esEs8(xuu3110002, xuu6002, ty_Integer) -> new_esEs24(xuu3110002, xuu6002) 25.69/9.80 new_compare18(Left(xuu3110000), Right(xuu6000), edh, eea) -> LT 25.69/9.80 new_compare8(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ty_Int) -> new_compare15(new_sr(xuu3110000, xuu6001), new_sr(xuu6000, xuu3110001)) 25.69/9.80 new_lt8(xuu470, xuu480, app(ty_Maybe, hd)) -> new_lt15(xuu470, xuu480, hd) 25.69/9.80 new_esEs30(xuu470, xuu480, ty_@0) -> new_esEs14(xuu470, xuu480) 25.69/9.80 new_compare5(xuu311000, xuu600, ty_Bool) -> new_compare29(xuu311000, xuu600) 25.69/9.80 new_lt22(xuu101, xuu104, ty_Integer) -> new_lt13(xuu101, xuu104) 25.69/9.80 new_esEs12(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), bc) -> new_asAs(new_esEs13(xuu31100000, xuu60000, bc), new_esEs12(xuu31100001, xuu60001, bc)) 25.69/9.80 new_esEs4(xuu3110000, xuu6000, ty_@0) -> new_esEs14(xuu3110000, xuu6000) 25.69/9.80 new_mkBalBranch6MkBalBranch01(xuu61, xuu63, xuu410, xuu411, xuu412, Branch(xuu4130, xuu4131, xuu4132, xuu4133, xuu4134), xuu414, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu4130, xuu4131, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), [], xuu61, xuu63, xuu4133, app(ty_[], h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu410, xuu411, xuu4134, xuu414, app(ty_[], h), ba), app(ty_[], h), ba) 25.69/9.80 new_esEs31(xuu471, xuu481, ty_Double) -> new_esEs22(xuu471, xuu481) 25.69/9.80 new_esEs7(xuu3110001, xuu6001, ty_Integer) -> new_esEs24(xuu3110001, xuu6001) 25.69/9.80 new_esEs29(xuu470, xuu480, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs17(xuu470, xuu480, gh, ha, hb) 25.69/9.80 new_esEs38(xuu101, xuu104, ty_Int) -> new_esEs19(xuu101, xuu104) 25.69/9.80 new_primMulInt(Neg(xuu60000), Neg(xuu31100010)) -> Pos(new_primMulNat0(xuu60000, xuu31100010)) 25.69/9.80 new_primCmpInt(Pos(Zero), Pos(Succ(xuu60000))) -> new_primCmpNat0(Zero, Succ(xuu60000)) 25.69/9.80 new_mkBalBranch6MkBalBranch4(xuu61, xuu63, xuu41, False, h, ba) -> new_mkBalBranch6MkBalBranch3(xuu61, xuu63, xuu41, new_gt(new_mkBalBranch6Size_l(xuu61, xuu63, xuu41, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(xuu61, xuu63, xuu41, h, ba))), h, ba) 25.69/9.80 new_ltEs20(xuu54, xuu55, ty_Bool) -> new_ltEs16(xuu54, xuu55) 25.69/9.80 new_ltEs23(xuu115, xuu117, ty_@0) -> new_ltEs18(xuu115, xuu117) 25.69/9.80 new_ltEs23(xuu115, xuu117, app(ty_Ratio, cfg)) -> new_ltEs8(xuu115, xuu117, cfg) 25.69/9.80 new_ltEs19(xuu472, xuu482, app(ty_Maybe, ebh)) -> new_ltEs15(xuu472, xuu482, ebh) 25.69/9.80 new_fsEs(xuu205) -> new_not(new_esEs26(xuu205, GT)) 25.69/9.80 new_ltEs21(xuu76, xuu77, ty_Char) -> new_ltEs17(xuu76, xuu77) 25.69/9.80 new_esEs35(xuu31100001, xuu60001, ty_Float) -> new_esEs18(xuu31100001, xuu60001) 25.69/9.80 new_ltEs15(Just(xuu470), Just(xuu480), app(ty_Maybe, bge)) -> new_ltEs15(xuu470, xuu480, bge) 25.69/9.80 new_esEs7(xuu3110001, xuu6001, app(app(ty_@2, chh), daa)) -> new_esEs16(xuu3110001, xuu6001, chh, daa) 25.69/9.80 new_ltEs15(Just(xuu470), Just(xuu480), ty_Float) -> new_ltEs5(xuu470, xuu480) 25.69/9.80 new_ltEs19(xuu472, xuu482, ty_Float) -> new_ltEs5(xuu472, xuu482) 25.69/9.80 new_esEs32(xuu31100000, xuu60000, ty_Ordering) -> new_esEs26(xuu31100000, xuu60000) 25.69/9.80 new_ltEs14(GT, LT) -> False 25.69/9.80 new_ltEs24(xuu103, xuu106, ty_Integer) -> new_ltEs7(xuu103, xuu106) 25.69/9.80 new_esEs7(xuu3110001, xuu6001, ty_@0) -> new_esEs14(xuu3110001, xuu6001) 25.69/9.80 new_esEs38(xuu101, xuu104, ty_Double) -> new_esEs22(xuu101, xuu104) 25.69/9.80 new_esEs35(xuu31100001, xuu60001, app(app(ty_@2, caf), cag)) -> new_esEs16(xuu31100001, xuu60001, caf, cag) 25.69/9.80 new_ltEs23(xuu115, xuu117, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_ltEs13(xuu115, xuu117, ceh, cfa, cfb) 25.69/9.80 new_lt8(xuu470, xuu480, app(app(app(ty_@3, gh), ha), hb)) -> new_lt11(xuu470, xuu480, gh, ha, hb) 25.69/9.80 new_ltEs12(Right(xuu470), Right(xuu480), bce, app(app(ty_Either, bcf), bcg)) -> new_ltEs12(xuu470, xuu480, bcf, bcg) 25.69/9.80 new_primMulInt(Pos(xuu60000), Neg(xuu31100010)) -> Neg(new_primMulNat0(xuu60000, xuu31100010)) 25.69/9.80 new_primMulInt(Neg(xuu60000), Pos(xuu31100010)) -> Neg(new_primMulNat0(xuu60000, xuu31100010)) 25.69/9.80 new_esEs21(Right(xuu31100000), Right(xuu60000), eed, app(ty_Maybe, ffc)) -> new_esEs25(xuu31100000, xuu60000, ffc) 25.69/9.80 new_ltEs12(Right(xuu470), Left(xuu480), bce, bbd) -> False 25.69/9.80 new_ltEs19(xuu472, xuu482, ty_Int) -> new_ltEs9(xuu472, xuu482) 25.69/9.80 new_esEs8(xuu3110002, xuu6002, ty_Bool) -> new_esEs20(xuu3110002, xuu6002) 25.69/9.80 new_lt18(xuu101, xuu104) -> new_esEs26(new_compare31(xuu101, xuu104), LT) 25.69/9.80 new_esEs30(xuu470, xuu480, ty_Integer) -> new_esEs24(xuu470, xuu480) 25.69/9.80 new_esEs8(xuu3110002, xuu6002, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs17(xuu3110002, xuu6002, dbd, dbe, dbf) 25.69/9.80 new_esEs13(xuu31100000, xuu60000, ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.80 new_sr0(Integer(xuu60000), Integer(xuu31100010)) -> Integer(new_primMulInt(xuu60000, xuu31100010)) 25.69/9.80 new_esEs25(Just(xuu31100000), Just(xuu60000), app(ty_Ratio, dea)) -> new_esEs23(xuu31100000, xuu60000, dea) 25.69/9.80 new_esEs8(xuu3110002, xuu6002, app(ty_Ratio, dca)) -> new_esEs23(xuu3110002, xuu6002, dca) 25.69/9.80 new_lt20(xuu471, xuu481, app(ty_[], eae)) -> new_lt7(xuu471, xuu481, eae) 25.69/9.80 new_esEs10(xuu3110000, xuu6000, ty_Float) -> new_esEs18(xuu3110000, xuu6000) 25.69/9.80 new_lt19(xuu470, xuu480, app(ty_Ratio, dhg)) -> new_lt4(xuu470, xuu480, dhg) 25.69/9.80 new_esEs4(xuu3110000, xuu6000, app(ty_Ratio, deg)) -> new_esEs23(xuu3110000, xuu6000, deg) 25.69/9.80 new_esEs21(Left(xuu31100000), Left(xuu60000), ty_Double, eee) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.80 new_compare10(Double(xuu3110000, Pos(xuu31100010)), Double(xuu6000, Pos(xuu60010))) -> new_compare15(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) 25.69/9.80 new_lt20(xuu471, xuu481, ty_Int) -> new_lt10(xuu471, xuu481) 25.69/9.80 new_ltEs21(xuu76, xuu77, app(app(ty_Either, bed), bee)) -> new_ltEs12(xuu76, xuu77, bed, bee) 25.69/9.80 new_lt22(xuu101, xuu104, ty_Double) -> new_lt12(xuu101, xuu104) 25.69/9.80 new_asAs(True, xuu149) -> xuu149 25.69/9.80 new_addToFM_C16(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, LT, cf, cg) -> new_addToFM_C17(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, cf, cg) 25.69/9.80 new_lt8(xuu470, xuu480, app(ty_Ratio, hg)) -> new_lt4(xuu470, xuu480, hg) 25.69/9.80 new_lt20(xuu471, xuu481, app(ty_Ratio, eba)) -> new_lt4(xuu471, xuu481, eba) 25.69/9.80 new_esEs4(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.80 new_ltEs22(xuu47, xuu48, ty_Ordering) -> new_ltEs14(xuu47, xuu48) 25.69/9.80 new_lt19(xuu470, xuu480, app(ty_[], dhc)) -> new_lt7(xuu470, xuu480, dhc) 25.69/9.80 new_esEs5(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.80 new_ltEs24(xuu103, xuu106, ty_Bool) -> new_ltEs16(xuu103, xuu106) 25.69/9.80 new_ltEs21(xuu76, xuu77, ty_Float) -> new_ltEs5(xuu76, xuu77) 25.69/9.80 new_primPlusInt(Pos(xuu2120), Neg(xuu2110)) -> new_primMinusNat0(xuu2120, xuu2110) 25.69/9.80 new_primPlusInt(Neg(xuu2120), Pos(xuu2110)) -> new_primMinusNat0(xuu2110, xuu2120) 25.69/9.80 new_mkBalBranch6MkBalBranch3(xuu61, EmptyFM, xuu41, True, h, ba) -> error([]) 25.69/9.80 new_esEs31(xuu471, xuu481, ty_Float) -> new_esEs18(xuu471, xuu481) 25.69/9.80 new_esEs10(xuu3110000, xuu6000, app(app(ty_@2, dg), dh)) -> new_esEs16(xuu3110000, xuu6000, dg, dh) 25.69/9.80 new_ltEs9(xuu47, xuu48) -> new_fsEs(new_compare15(xuu47, xuu48)) 25.69/9.80 new_compare16(Just(xuu3110000), Just(xuu6000), deh) -> new_compare25(xuu3110000, xuu6000, new_esEs9(xuu3110000, xuu6000, deh), deh) 25.69/9.80 new_primPlusNat1(xuu222, xuu311000100) -> new_primPlusNat0(xuu222, Succ(xuu311000100)) 25.69/9.80 new_lt19(xuu470, xuu480, ty_Int) -> new_lt10(xuu470, xuu480) 25.69/9.80 new_ltEs15(Just(xuu470), Just(xuu480), ty_Char) -> new_ltEs17(xuu470, xuu480) 25.69/9.80 new_esEs21(Right(xuu31100000), Right(xuu60000), eed, app(app(ty_Either, feg), feh)) -> new_esEs21(xuu31100000, xuu60000, feg, feh) 25.69/9.80 new_sr(xuu6000, xuu3110001) -> new_primMulInt(xuu6000, xuu3110001) 25.69/9.80 new_ltEs22(xuu47, xuu48, app(ty_Ratio, db)) -> new_ltEs8(xuu47, xuu48, db) 25.69/9.80 new_esEs8(xuu3110002, xuu6002, ty_Char) -> new_esEs15(xuu3110002, xuu6002) 25.69/9.80 new_esEs29(xuu470, xuu480, ty_Integer) -> new_esEs24(xuu470, xuu480) 25.69/9.80 new_ltEs11(xuu471, xuu481, app(ty_[], bae)) -> new_ltEs4(xuu471, xuu481, bae) 25.69/9.80 new_mkBalBranch6MkBalBranch4(xuu61, xuu63, EmptyFM, True, h, ba) -> error([]) 25.69/9.80 new_primMulNat0(Zero, Zero) -> Zero 25.69/9.80 new_esEs21(Right(xuu31100000), Right(xuu60000), eed, app(ty_[], ffb)) -> new_esEs12(xuu31100000, xuu60000, ffb) 25.69/9.80 new_esEs21(Left(xuu31100000), Left(xuu60000), app(app(ty_Either, fde), fdf), eee) -> new_esEs21(xuu31100000, xuu60000, fde, fdf) 25.69/9.80 new_ltEs20(xuu54, xuu55, ty_Integer) -> new_ltEs7(xuu54, xuu55) 25.69/9.80 new_lt10(xuu101, xuu104) -> new_esEs26(new_compare15(xuu101, xuu104), LT) 25.69/9.80 new_ltEs21(xuu76, xuu77, app(ty_Ratio, bfe)) -> new_ltEs8(xuu76, xuu77, bfe) 25.69/9.80 new_esEs7(xuu3110001, xuu6001, ty_Char) -> new_esEs15(xuu3110001, xuu6001) 25.69/9.80 new_esEs4(xuu3110000, xuu6000, app(app(ty_@2, eeb), eec)) -> new_esEs16(xuu3110000, xuu6000, eeb, eec) 25.69/9.80 new_esEs33(xuu31100001, xuu60001, ty_Double) -> new_esEs22(xuu31100001, xuu60001) 25.69/9.80 new_ltEs22(xuu47, xuu48, ty_Float) -> new_ltEs5(xuu47, xuu48) 25.69/9.80 new_ltEs15(Just(xuu470), Just(xuu480), app(app(ty_@2, bgf), bgg)) -> new_ltEs10(xuu470, xuu480, bgf, bgg) 25.69/9.80 new_ltEs21(xuu76, xuu77, ty_Ordering) -> new_ltEs14(xuu76, xuu77) 25.69/9.80 new_esEs21(Left(xuu31100000), Left(xuu60000), app(ty_[], fdh), eee) -> new_esEs12(xuu31100000, xuu60000, fdh) 25.69/9.80 new_esEs28(xuu31100001, xuu60001, ty_Integer) -> new_esEs24(xuu31100001, xuu60001) 25.69/9.80 new_esEs39(xuu102, xuu105, app(app(ty_@2, fgf), fgg)) -> new_esEs16(xuu102, xuu105, fgf, fgg) 25.69/9.80 new_esEs25(Just(xuu31100000), Just(xuu60000), app(app(ty_@2, ddb), ddc)) -> new_esEs16(xuu31100000, xuu60000, ddb, ddc) 25.69/9.80 new_esEs39(xuu102, xuu105, app(ty_Ratio, fgh)) -> new_esEs23(xuu102, xuu105, fgh) 25.69/9.80 new_mkBalBranch6MkBalBranch010(xuu600, xuu601, xuu61, xuu29, xuu640, xuu641, xuu642, xuu643, xuu644, True, h, ba) -> new_mkBranch(Succ(Succ(Zero)), xuu640, xuu641, new_mkBranch(Succ(Succ(Succ(Zero))), :(xuu600, xuu601), xuu61, xuu29, xuu643, app(ty_[], h), ba), xuu644, app(ty_[], h), ba) 25.69/9.80 new_ltEs23(xuu115, xuu117, app(ty_Maybe, cfd)) -> new_ltEs15(xuu115, xuu117, cfd) 25.69/9.80 new_ltEs19(xuu472, xuu482, app(app(ty_Either, ebb), ebc)) -> new_ltEs12(xuu472, xuu482, ebb, ebc) 25.69/9.80 new_esEs7(xuu3110001, xuu6001, app(app(ty_Either, dae), daf)) -> new_esEs21(xuu3110001, xuu6001, dae, daf) 25.69/9.80 new_lt21(xuu114, xuu116, app(ty_Ratio, cee)) -> new_lt4(xuu114, xuu116, cee) 25.69/9.80 new_compare5(xuu311000, xuu600, ty_Double) -> new_compare10(xuu311000, xuu600) 25.69/9.80 new_esEs9(xuu3110000, xuu6000, app(app(app(ty_@3, dfc), dfd), dfe)) -> new_esEs17(xuu3110000, xuu6000, dfc, dfd, dfe) 25.69/9.80 new_mkBalBranch6Size_l(xuu61, xuu63, xuu41, h, ba) -> new_sizeFM(xuu63, h, ba) 25.69/9.80 new_lt17(xuu101, xuu104) -> new_esEs26(new_compare30(xuu101, xuu104), LT) 25.69/9.80 new_ltEs22(xuu47, xuu48, app(ty_Maybe, bff)) -> new_ltEs15(xuu47, xuu48, bff) 25.69/9.80 new_primCompAux00(xuu37, xuu38, EQ, app(app(app(ty_@3, egh), eha), ehb)) -> new_compare28(xuu37, xuu38, egh, eha, ehb) 25.69/9.80 new_esEs25(Just(xuu31100000), Just(xuu60000), ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.80 new_primEqInt(Neg(Succ(xuu311000000)), Neg(Zero)) -> False 25.69/9.80 new_primEqInt(Neg(Zero), Neg(Succ(xuu600000))) -> False 25.69/9.80 new_esEs9(xuu3110000, xuu6000, app(ty_Ratio, dfh)) -> new_esEs23(xuu3110000, xuu6000, dfh) 25.69/9.80 new_ltEs20(xuu54, xuu55, app(app(ty_Either, ecf), ecg)) -> new_ltEs12(xuu54, xuu55, ecf, ecg) 25.69/9.80 new_esEs33(xuu31100001, xuu60001, app(ty_[], fcf)) -> new_esEs12(xuu31100001, xuu60001, fcf) 25.69/9.80 new_primEqInt(Pos(Succ(xuu311000000)), Pos(Succ(xuu600000))) -> new_primEqNat0(xuu311000000, xuu600000) 25.69/9.80 new_lt8(xuu470, xuu480, ty_Int) -> new_lt10(xuu470, xuu480) 25.69/9.80 new_primCompAux00(xuu37, xuu38, EQ, ty_Bool) -> new_compare29(xuu37, xuu38) 25.69/9.80 new_compare19(xuu154, xuu155, False, cfh) -> GT 25.69/9.80 new_esEs8(xuu3110002, xuu6002, app(app(ty_Either, dbg), dbh)) -> new_esEs21(xuu3110002, xuu6002, dbg, dbh) 25.69/9.80 new_esEs34(xuu31100000, xuu60000, app(app(ty_@2, bhd), bhe)) -> new_esEs16(xuu31100000, xuu60000, bhd, bhe) 25.69/9.80 new_addToFM_C22(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, cf, cg) -> new_addToFM_C16(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare6(:(xuu25, xuu26), :(xuu19, xuu20), cf), cf, cg) 25.69/9.80 new_primEqInt(Pos(Succ(xuu311000000)), Neg(xuu60000)) -> False 25.69/9.80 new_primEqInt(Neg(Succ(xuu311000000)), Pos(xuu60000)) -> False 25.69/9.80 new_esEs34(xuu31100000, xuu60000, ty_Double) -> new_esEs22(xuu31100000, xuu60000) 25.69/9.80 new_primCmpInt(Neg(Zero), Neg(Succ(xuu60000))) -> new_primCmpNat0(Succ(xuu60000), Zero) 25.69/9.80 new_lt8(xuu470, xuu480, app(ty_[], hc)) -> new_lt7(xuu470, xuu480, hc) 25.69/9.80 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.69/9.80 new_esEs6(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.80 new_esEs16(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), eeb, eec) -> new_asAs(new_esEs32(xuu31100000, xuu60000, eeb), new_esEs33(xuu31100001, xuu60001, eec)) 25.69/9.80 new_ltEs15(Just(xuu470), Just(xuu480), ty_@0) -> new_ltEs18(xuu470, xuu480) 25.69/9.80 new_esEs7(xuu3110001, xuu6001, ty_Bool) -> new_esEs20(xuu3110001, xuu6001) 25.69/9.80 new_primCompAux00(xuu37, xuu38, LT, ege) -> LT 25.69/9.80 new_esEs39(xuu102, xuu105, ty_Double) -> new_esEs22(xuu102, xuu105) 25.69/9.80 new_ltEs24(xuu103, xuu106, app(app(ty_Either, fha), fhb)) -> new_ltEs12(xuu103, xuu106, fha, fhb) 25.69/9.80 new_esEs7(xuu3110001, xuu6001, app(ty_Ratio, dag)) -> new_esEs23(xuu3110001, xuu6001, dag) 25.69/9.80 new_esEs37(xuu114, xuu116, ty_Double) -> new_esEs22(xuu114, xuu116) 25.69/9.80 new_ltEs19(xuu472, xuu482, app(ty_Ratio, ecc)) -> new_ltEs8(xuu472, xuu482, ecc) 25.69/9.80 new_esEs13(xuu31100000, xuu60000, app(app(ty_@2, bd), be)) -> new_esEs16(xuu31100000, xuu60000, bd, be) 25.69/9.80 new_not(False) -> True 25.69/9.80 new_ltEs22(xuu47, xuu48, app(app(ty_Either, bce), bbd)) -> new_ltEs12(xuu47, xuu48, bce, bbd) 25.69/9.80 new_ltEs24(xuu103, xuu106, app(app(app(ty_@3, fhc), fhd), fhe)) -> new_ltEs13(xuu103, xuu106, fhc, fhd, fhe) 25.69/9.80 new_esEs36(xuu31100002, xuu60002, app(app(ty_@2, cbh), cca)) -> new_esEs16(xuu31100002, xuu60002, cbh, cca) 25.69/9.80 new_esEs8(xuu3110002, xuu6002, ty_@0) -> new_esEs14(xuu3110002, xuu6002) 25.69/9.80 new_ltEs23(xuu115, xuu117, ty_Bool) -> new_ltEs16(xuu115, xuu117) 25.69/9.80 new_lt20(xuu471, xuu481, app(app(ty_@2, eag), eah)) -> new_lt5(xuu471, xuu481, eag, eah) 25.69/9.80 new_addToFM_C15(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, GT, h, ba) -> new_mkBalBranch(xuu61, xuu63, new_addToFM_C0(xuu64, :(xuu311000, xuu311001), xuu31101, h, ba), h, ba) 25.69/9.80 new_mkBranch(xuu307, xuu308, xuu309, xuu310, xuu311, dc, dd) -> Branch(xuu308, xuu309, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM0(xuu310, dc, dd)), new_sizeFM0(xuu311, dc, dd)), xuu310, xuu311) 25.69/9.80 new_esEs9(xuu3110000, xuu6000, app(app(ty_Either, dff), dfg)) -> new_esEs21(xuu3110000, xuu6000, dff, dfg) 25.69/9.80 new_esEs38(xuu101, xuu104, app(app(ty_@2, dee), def)) -> new_esEs16(xuu101, xuu104, dee, def) 25.69/9.80 new_ltEs12(Right(xuu470), Right(xuu480), bce, ty_Double) -> new_ltEs6(xuu470, xuu480) 25.69/9.80 new_addToFM_C16(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, cf, cg) -> new_mkBalBranch0(xuu19, xuu20, xuu21, xuu23, new_addToFM_C0(xuu24, :(xuu25, xuu26), xuu27, cf, cg), cf, cg) 25.69/9.80 new_esEs5(xuu3110000, xuu6000, app(ty_Ratio, efe)) -> new_esEs23(xuu3110000, xuu6000, efe) 25.69/9.80 new_esEs35(xuu31100001, xuu60001, ty_Double) -> new_esEs22(xuu31100001, xuu60001) 25.69/9.80 new_ltEs12(Left(xuu470), Left(xuu480), app(ty_Maybe, bca), bbd) -> new_ltEs15(xuu470, xuu480, bca) 25.69/9.80 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.69/9.80 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.69/9.80 new_ltEs14(LT, EQ) -> True 25.69/9.80 new_esEs24(Integer(xuu31100000), Integer(xuu60000)) -> new_primEqInt(xuu31100000, xuu60000) 25.69/9.80 new_ltEs22(xuu47, xuu48, app(app(app(ty_@3, dgc), dgd), dge)) -> new_ltEs13(xuu47, xuu48, dgc, dgd, dge) 25.69/9.80 new_lt8(xuu470, xuu480, app(app(ty_@2, he), hf)) -> new_lt5(xuu470, xuu480, he, hf) 25.69/9.80 new_esEs27(xuu31100000, xuu60000, ty_Integer) -> new_esEs24(xuu31100000, xuu60000) 25.69/9.80 new_esEs32(xuu31100000, xuu60000, app(ty_[], fbd)) -> new_esEs12(xuu31100000, xuu60000, fbd) 25.69/9.80 new_addToFM_C21(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, LT, cf, cg) -> new_mkBalBranch0(xuu19, xuu20, xuu21, new_addToFM_C0(xuu23, :(xuu25, xuu26), xuu27, cf, cg), xuu24, cf, cg) 25.69/9.80 new_esEs31(xuu471, xuu481, app(ty_[], eae)) -> new_esEs12(xuu471, xuu481, eae) 25.69/9.80 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.69/9.80 new_esEs26(EQ, EQ) -> True 25.69/9.80 new_esEs30(xuu470, xuu480, ty_Float) -> new_esEs18(xuu470, xuu480) 25.69/9.80 new_mkBalBranch6MkBalBranch010(xuu600, xuu601, xuu61, xuu29, xuu640, xuu641, xuu642, EmptyFM, xuu644, False, h, ba) -> error([]) 25.69/9.80 new_esEs9(xuu3110000, xuu6000, ty_Int) -> new_esEs19(xuu3110000, xuu6000) 25.69/9.80 new_ltEs24(xuu103, xuu106, app(ty_Maybe, fhg)) -> new_ltEs15(xuu103, xuu106, fhg) 25.69/9.80 new_esEs21(Right(xuu31100000), Right(xuu60000), eed, app(app(app(ty_@3, fed), fee), fef)) -> new_esEs17(xuu31100000, xuu60000, fed, fee, fef) 25.69/9.80 new_lt22(xuu101, xuu104, ty_Int) -> new_lt10(xuu101, xuu104) 25.69/9.80 new_primCompAux00(xuu37, xuu38, EQ, ty_Double) -> new_compare10(xuu37, xuu38) 25.69/9.80 new_lt23(xuu102, xuu105, app(app(ty_@2, fgf), fgg)) -> new_lt5(xuu102, xuu105, fgf, fgg) 25.69/9.80 new_compare31(@0, @0) -> EQ 25.69/9.80 new_esEs26(LT, LT) -> True 25.69/9.80 new_esEs9(xuu3110000, xuu6000, ty_Char) -> new_esEs15(xuu3110000, xuu6000) 25.69/9.80 new_compare30(Char(xuu3110000), Char(xuu6000)) -> new_primCmpNat0(xuu3110000, xuu6000) 25.69/9.80 new_esEs30(xuu470, xuu480, app(ty_[], dhc)) -> new_esEs12(xuu470, xuu480, dhc) 25.69/9.80 new_esEs21(Right(xuu31100000), Right(xuu60000), eed, ty_@0) -> new_esEs14(xuu31100000, xuu60000) 25.69/9.80 new_compare5(xuu311000, xuu600, app(ty_[], efh)) -> new_compare6(xuu311000, xuu600, efh) 25.69/9.80 new_addToFM_C0(EmptyFM, xuu31100, xuu31101, h, ba) -> Branch(xuu31100, xuu31101, Pos(Succ(Zero)), new_emptyFM(h, ba), new_emptyFM(h, ba)) 25.69/9.80 new_esEs21(Right(xuu31100000), Right(xuu60000), eed, ty_Bool) -> new_esEs20(xuu31100000, xuu60000) 25.69/9.80 new_ltEs12(Left(xuu470), Left(xuu480), ty_@0, bbd) -> new_ltEs18(xuu470, xuu480) 25.69/9.80 new_esEs12([], [], bc) -> True 25.69/9.80 new_ltEs21(xuu76, xuu77, ty_Int) -> new_ltEs9(xuu76, xuu77) 25.69/9.80 new_ltEs6(xuu47, xuu48) -> new_fsEs(new_compare10(xuu47, xuu48)) 25.69/9.80 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.69/9.80 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.69/9.80 new_addToFM_C0(Branch(:(xuu600, xuu601), xuu61, xuu62, xuu63, xuu64), :(xuu311000, xuu311001), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu601, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, new_primCompAux1(xuu311000, xuu600, xuu311001, xuu601, h), h, ba) 25.69/9.80 new_esEs8(xuu3110002, xuu6002, ty_Int) -> new_esEs19(xuu3110002, xuu6002) 25.69/9.80 new_mkBalBranch(xuu61, xuu63, xuu41, h, ba) -> new_mkBalBranch6MkBalBranch50(xuu61, xuu63, xuu41, new_esEs26(new_compare15(new_primPlusInt(new_mkBalBranch6Size_l(xuu61, xuu63, xuu41, h, ba), new_mkBalBranch6Size_r(xuu61, xuu63, xuu41, h, ba)), Pos(Succ(Succ(Zero)))), LT), h, ba) 25.69/9.80 new_compare110(xuu133, xuu134, False, dcg, dch) -> GT 25.69/9.80 new_esEs9(xuu3110000, xuu6000, ty_Bool) -> new_esEs20(xuu3110000, xuu6000) 25.69/9.80 new_esEs21(Right(xuu31100000), Right(xuu60000), eed, ty_Int) -> new_esEs19(xuu31100000, xuu60000) 25.69/9.80 new_esEs25(Nothing, Nothing, dda) -> True 25.69/9.80 new_primEqNat0(Zero, Zero) -> True 25.69/9.80 new_ltEs11(xuu471, xuu481, app(app(ty_@2, bag), bah)) -> new_ltEs10(xuu471, xuu481, bag, bah) 25.69/9.80 new_ltEs20(xuu54, xuu55, ty_Int) -> new_ltEs9(xuu54, xuu55) 25.69/9.80 new_lt11(xuu101, xuu104, egb, egc, egd) -> new_esEs26(new_compare28(xuu101, xuu104, egb, egc, egd), LT) 25.69/9.80 new_esEs25(Nothing, Just(xuu60000), dda) -> False 25.69/9.80 new_esEs25(Just(xuu31100000), Nothing, dda) -> False 25.69/9.80 new_esEs37(xuu114, xuu116, app(app(ty_@2, cec), ced)) -> new_esEs16(xuu114, xuu116, cec, ced) 25.69/9.80 new_compare16(Nothing, Just(xuu6000), deh) -> LT 25.69/9.80 new_lt21(xuu114, xuu116, app(ty_[], cea)) -> new_lt7(xuu114, xuu116, cea) 25.69/9.80 new_ltEs15(Just(xuu470), Just(xuu480), app(ty_[], bgd)) -> new_ltEs4(xuu470, xuu480, bgd) 25.69/9.80 new_asAs(False, xuu149) -> False 25.69/9.80 new_addToFM_C15(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, LT, h, ba) -> new_addToFM_C12(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, h, ba) 25.69/9.80 new_lt22(xuu101, xuu104, app(app(ty_@2, dee), def)) -> new_lt5(xuu101, xuu104, dee, def) 25.69/9.80 new_ltEs12(Right(xuu470), Right(xuu480), bce, app(ty_Ratio, bdg)) -> new_ltEs8(xuu470, xuu480, bdg) 25.69/9.80 new_ltEs23(xuu115, xuu117, ty_Integer) -> new_ltEs7(xuu115, xuu117) 25.69/9.80 new_lt21(xuu114, xuu116, ty_Int) -> new_lt10(xuu114, xuu116) 25.69/9.80 new_esEs29(xuu470, xuu480, ty_Float) -> new_esEs18(xuu470, xuu480) 25.69/9.80 new_ltEs23(xuu115, xuu117, ty_Ordering) -> new_ltEs14(xuu115, xuu117) 25.69/9.80 new_esEs21(Right(xuu31100000), Right(xuu60000), eed, ty_Char) -> new_esEs15(xuu31100000, xuu60000) 25.69/9.80 new_esEs6(xuu3110000, xuu6000, app(ty_Ratio, che)) -> new_esEs23(xuu3110000, xuu6000, che) 25.69/9.80 new_addToFM_C0(Branch([], xuu61, xuu62, xuu63, xuu64), [], xuu31101, h, ba) -> new_addToFM_C13(xuu61, xuu62, xuu63, xuu64, xuu31101, EQ, h, ba) 25.69/9.80 25.69/9.80 The set Q consists of the following terms: 25.69/9.80 25.69/9.80 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 25.69/9.80 new_esEs32(x0, x1, ty_Char) 25.69/9.80 new_lt21(x0, x1, ty_Bool) 25.69/9.80 new_ltEs11(x0, x1, app(ty_[], x2)) 25.69/9.80 new_esEs32(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_lt19(x0, x1, ty_Ordering) 25.69/9.80 new_ltEs15(Nothing, Nothing, x0) 25.69/9.80 new_primCmpNat0(Succ(x0), Succ(x1)) 25.69/9.80 new_esEs36(x0, x1, ty_@0) 25.69/9.80 new_esEs36(x0, x1, ty_Bool) 25.69/9.80 new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.69/9.80 new_ltEs12(Left(x0), Right(x1), x2, x3) 25.69/9.80 new_ltEs12(Right(x0), Left(x1), x2, x3) 25.69/9.80 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_lt20(x0, x1, ty_Integer) 25.69/9.80 new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.69/9.80 new_lt22(x0, x1, ty_Char) 25.69/9.80 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_lt21(x0, x1, ty_@0) 25.69/9.80 new_lt19(x0, x1, ty_Double) 25.69/9.80 new_primPlusInt(Pos(x0), Pos(x1)) 25.69/9.80 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_esEs33(x0, x1, ty_@0) 25.69/9.80 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_esEs5(x0, x1, ty_Int) 25.69/9.80 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_ltEs23(x0, x1, ty_Double) 25.69/9.80 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 25.69/9.80 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_esEs37(x0, x1, ty_Ordering) 25.69/9.80 new_esEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.69/9.80 new_esEs21(Right(x0), Right(x1), x2, ty_Double) 25.69/9.80 new_ltEs21(x0, x1, app(ty_[], x2)) 25.69/9.80 new_lt23(x0, x1, ty_Bool) 25.69/9.80 new_addToFM_C21(x0, x1, x2, x3, x4, x5, x6, x7, x8, LT, x9, x10) 25.69/9.80 new_compare5(x0, x1, ty_Integer) 25.69/9.80 new_mkBalBranch6Size_l0(x0, x1, x2, x3, x4, x5, x6) 25.69/9.80 new_lt21(x0, x1, ty_Integer) 25.69/9.80 new_primEqInt(Pos(Zero), Pos(Zero)) 25.69/9.80 new_esEs8(x0, x1, app(ty_[], x2)) 25.69/9.80 new_primCompAux00(x0, x1, EQ, ty_Bool) 25.69/9.80 new_esEs33(x0, x1, ty_Bool) 25.69/9.80 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_ltEs24(x0, x1, ty_Float) 25.69/9.80 new_ltEs24(x0, x1, app(ty_[], x2)) 25.69/9.80 new_esEs6(x0, x1, ty_Float) 25.69/9.80 new_lt23(x0, x1, app(ty_[], x2)) 25.69/9.80 new_esEs20(False, True) 25.69/9.80 new_esEs20(True, False) 25.69/9.80 new_primPlusInt(Pos(x0), Neg(x1)) 25.69/9.80 new_primPlusInt(Neg(x0), Pos(x1)) 25.69/9.80 new_compare25(x0, x1, False, x2) 25.69/9.80 new_lt19(x0, x1, app(ty_[], x2)) 25.69/9.80 new_compare28(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.69/9.80 new_esEs9(x0, x1, ty_Int) 25.69/9.80 new_asAs(False, x0) 25.69/9.80 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_esEs10(x0, x1, ty_Float) 25.69/9.80 new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 25.69/9.80 new_primEqInt(Neg(Zero), Neg(Zero)) 25.69/9.80 new_ltEs23(x0, x1, ty_Ordering) 25.69/9.80 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_primCompAux1(x0, x1, x2, x3, x4) 25.69/9.80 new_lt20(x0, x1, ty_@0) 25.69/9.80 new_esEs32(x0, x1, ty_Double) 25.69/9.80 new_lt23(x0, x1, ty_Integer) 25.69/9.80 new_esEs13(x0, x1, app(ty_[], x2)) 25.69/9.80 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_esEs33(x0, x1, ty_Integer) 25.69/9.80 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 25.69/9.80 new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 25.69/9.80 new_ltEs11(x0, x1, ty_Double) 25.69/9.80 new_lt20(x0, x1, ty_Float) 25.69/9.80 new_lt22(x0, x1, ty_Double) 25.69/9.80 new_esEs31(x0, x1, ty_Float) 25.69/9.80 new_ltEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_ltEs20(x0, x1, ty_Char) 25.69/9.80 new_esEs11(x0, x1, app(ty_[], x2)) 25.69/9.80 new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, x6, Branch(x7, x8, x9, x10, x11), x12, False, x13, x14) 25.69/9.80 new_esEs36(x0, x1, ty_Integer) 25.69/9.80 new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_lt19(x0, x1, ty_Char) 25.69/9.80 new_esEs5(x0, x1, ty_@0) 25.69/9.80 new_compare5(x0, x1, app(ty_[], x2)) 25.69/9.80 new_sizeFM0(EmptyFM, x0, x1) 25.69/9.80 new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) 25.69/9.80 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.69/9.80 new_esEs31(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_primCompAux00(x0, x1, EQ, ty_Integer) 25.69/9.80 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_ltEs6(x0, x1) 25.69/9.80 new_ltEs23(x0, x1, ty_Char) 25.69/9.80 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 25.69/9.80 new_compare29(False, False) 25.69/9.80 new_primEqInt(Pos(Zero), Neg(Zero)) 25.69/9.80 new_primEqInt(Neg(Zero), Pos(Zero)) 25.69/9.80 new_ltEs21(x0, x1, ty_Double) 25.69/9.80 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_esEs35(x0, x1, ty_Double) 25.69/9.80 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 25.69/9.80 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 25.69/9.80 new_ltEs21(x0, x1, ty_Char) 25.69/9.80 new_esEs35(x0, x1, ty_Char) 25.69/9.80 new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) 25.69/9.80 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_lt8(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_primEqNat0(Succ(x0), Succ(x1)) 25.69/9.80 new_esEs12(:(x0, x1), :(x2, x3), x4) 25.69/9.80 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_addToFM_C0(Branch([], x0, x1, x2, x3), :(x4, x5), x6, x7, x8) 25.69/9.80 new_esEs38(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_primMulInt(Neg(x0), Neg(x1)) 25.69/9.80 new_esEs39(x0, x1, ty_Ordering) 25.69/9.80 new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, GT, x7, x8) 25.69/9.80 new_addToFM_C21(x0, x1, x2, x3, x4, x5, x6, x7, x8, EQ, x9, x10) 25.69/9.80 new_primPlusNat0(Succ(x0), Succ(x1)) 25.69/9.80 new_esEs37(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_ltEs11(x0, x1, ty_Char) 25.69/9.80 new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) 25.69/9.80 new_addToFM_C17(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) 25.69/9.80 new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.69/9.80 new_primMinusNat0(Succ(x0), Succ(x1)) 25.69/9.80 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_esEs21(Left(x0), Right(x1), x2, x3) 25.69/9.80 new_esEs21(Right(x0), Left(x1), x2, x3) 25.69/9.80 new_esEs29(x0, x1, ty_Float) 25.69/9.80 new_esEs8(x0, x1, ty_Double) 25.69/9.80 new_compare24(x0, x1, x2, x3, False, x4, x5) 25.69/9.80 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_esEs9(x0, x1, ty_Integer) 25.69/9.80 new_esEs29(x0, x1, ty_Ordering) 25.69/9.80 new_ltEs15(Just(x0), Just(x1), ty_Float) 25.69/9.80 new_lt23(x0, x1, ty_Float) 25.69/9.80 new_esEs34(x0, x1, ty_Integer) 25.69/9.80 new_lt12(x0, x1) 25.69/9.80 new_lt21(x0, x1, ty_Int) 25.69/9.80 new_addToFM_C14(x0, x1, x2, x3, x4, x5, x6) 25.69/9.80 new_ltEs19(x0, x1, ty_Char) 25.69/9.80 new_esEs12([], [], x0) 25.69/9.80 new_esEs26(LT, EQ) 25.69/9.80 new_esEs26(EQ, LT) 25.69/9.80 new_esEs13(x0, x1, ty_Ordering) 25.69/9.80 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_esEs9(x0, x1, ty_@0) 25.69/9.80 new_ltEs4(x0, x1, x2) 25.69/9.80 new_ltEs21(x0, x1, ty_Ordering) 25.69/9.80 new_esEs25(Just(x0), Just(x1), ty_Double) 25.69/9.80 new_esEs5(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 25.69/9.80 new_primMulNat0(Succ(x0), Zero) 25.69/9.80 new_esEs8(x0, x1, ty_Ordering) 25.69/9.80 new_mkBalBranch6MkBalBranch3(x0, EmptyFM, x1, True, x2, x3) 25.69/9.80 new_compare6([], :(x0, x1), x2) 25.69/9.80 new_ltEs15(Nothing, Just(x0), x1) 25.69/9.80 new_lt20(x0, x1, ty_Int) 25.69/9.80 new_mkBalBranch6MkBalBranch50(x0, x1, x2, True, x3, x4) 25.69/9.80 new_esEs27(x0, x1, ty_Int) 25.69/9.80 new_ltEs11(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_ltEs24(x0, x1, ty_Int) 25.69/9.80 new_esEs6(x0, x1, app(ty_[], x2)) 25.69/9.80 new_lt21(x0, x1, ty_Float) 25.69/9.80 new_ltEs16(True, False) 25.69/9.80 new_ltEs16(False, True) 25.69/9.80 new_esEs29(x0, x1, ty_Char) 25.69/9.80 new_compare12(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 25.69/9.80 new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.69/9.80 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_compare5(x0, x1, ty_Float) 25.69/9.80 new_lt22(x0, x1, ty_Ordering) 25.69/9.80 new_esEs34(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_primMulInt(Pos(x0), Neg(x1)) 25.69/9.80 new_primMulInt(Neg(x0), Pos(x1)) 25.69/9.80 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_compare5(x0, x1, ty_Bool) 25.69/9.80 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_esEs34(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_esEs34(x0, x1, ty_Float) 25.69/9.80 new_ltEs24(x0, x1, ty_Integer) 25.69/9.80 new_esEs27(x0, x1, ty_Integer) 25.69/9.80 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 25.69/9.80 new_esEs32(x0, x1, app(ty_[], x2)) 25.69/9.80 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_ltEs19(x0, x1, app(ty_[], x2)) 25.69/9.80 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_mkBalBranch6MkBalBranch3(x0, x1, x2, False, x3, x4) 25.69/9.80 new_esEs30(x0, x1, ty_Char) 25.69/9.80 new_primMulInt(Pos(x0), Pos(x1)) 25.69/9.80 new_esEs10(x0, x1, ty_@0) 25.69/9.80 new_mkBalBranch6MkBalBranch51(x0, x1, x2, x3, x4, EQ, x5, x6) 25.69/9.80 new_esEs39(x0, x1, ty_Double) 25.69/9.80 new_esEs9(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_esEs34(x0, x1, ty_Bool) 25.69/9.80 new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) 25.69/9.80 new_ltEs19(x0, x1, ty_Ordering) 25.69/9.80 new_primCompAux00(x0, x1, EQ, ty_Float) 25.69/9.80 new_compare5(x0, x1, ty_Int) 25.69/9.80 new_esEs32(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_esEs29(x0, x1, app(ty_[], x2)) 25.69/9.80 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, False, x11, x12) 25.69/9.80 new_ltEs11(x0, x1, ty_Ordering) 25.69/9.80 new_esEs29(x0, x1, ty_Integer) 25.69/9.80 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_esEs37(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_primCmpNat0(Zero, Succ(x0)) 25.69/9.80 new_ltEs24(x0, x1, ty_Bool) 25.69/9.80 new_ltEs18(x0, x1) 25.69/9.80 new_esEs13(x0, x1, ty_Char) 25.69/9.80 new_lt20(x0, x1, ty_Bool) 25.69/9.80 new_esEs10(x0, x1, ty_Double) 25.69/9.80 new_esEs15(Char(x0), Char(x1)) 25.69/9.80 new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.69/9.80 new_esEs34(x0, x1, ty_Int) 25.69/9.80 new_esEs25(Nothing, Nothing, x0) 25.69/9.80 new_esEs4(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.69/9.80 new_esEs26(EQ, EQ) 25.69/9.80 new_esEs37(x0, x1, ty_Double) 25.69/9.80 new_lt23(x0, x1, ty_Int) 25.69/9.80 new_primCompAux00(x0, x1, EQ, ty_Int) 25.69/9.80 new_esEs38(x0, x1, app(ty_[], x2)) 25.69/9.80 new_sizeFM(EmptyFM, x0, x1) 25.69/9.80 new_esEs34(x0, x1, app(ty_[], x2)) 25.69/9.80 new_esEs30(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_esEs8(x0, x1, ty_@0) 25.69/9.80 new_esEs7(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_ltEs15(Just(x0), Just(x1), ty_Bool) 25.69/9.80 new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.69/9.80 new_esEs35(x0, x1, app(ty_[], x2)) 25.69/9.80 new_mkBalBranch6MkBalBranch30(x0, x1, x2, EmptyFM, x3, True, x4, x5) 25.69/9.80 new_compare5(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_esEs30(x0, x1, ty_Double) 25.69/9.80 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.69/9.80 new_esEs12(:(x0, x1), [], x2) 25.69/9.80 new_esEs29(x0, x1, ty_Bool) 25.69/9.80 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_compare24(x0, x1, x2, x3, True, x4, x5) 25.69/9.80 new_mkBalBranch6Size_r(x0, x1, x2, x3, x4) 25.69/9.80 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_compare18(Right(x0), Left(x1), x2, x3) 25.69/9.80 new_compare18(Left(x0), Right(x1), x2, x3) 25.69/9.80 new_ltEs15(Just(x0), Just(x1), ty_Integer) 25.69/9.80 new_ltEs22(x0, x1, ty_@0) 25.69/9.80 new_esEs33(x0, x1, app(ty_[], x2)) 25.69/9.80 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.69/9.80 new_compare13(GT, GT) 25.69/9.80 new_compare13(EQ, LT) 25.69/9.80 new_compare13(LT, EQ) 25.69/9.80 new_lt8(x0, x1, ty_Ordering) 25.69/9.80 new_primCmpNat0(Succ(x0), Zero) 25.69/9.80 new_esEs7(x0, x1, app(ty_[], x2)) 25.69/9.80 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_ltEs15(Just(x0), Just(x1), ty_@0) 25.69/9.80 new_esEs13(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_primCompAux00(x0, x1, GT, x2) 25.69/9.80 new_esEs4(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.69/9.80 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_esEs21(Left(x0), Left(x1), ty_Double, x2) 25.69/9.80 new_ltEs24(x0, x1, ty_Ordering) 25.69/9.80 new_primPlusNat0(Zero, Zero) 25.69/9.80 new_esEs6(x0, x1, ty_Ordering) 25.69/9.80 new_esEs7(x0, x1, ty_Ordering) 25.69/9.80 new_lt21(x0, x1, app(ty_[], x2)) 25.69/9.80 new_addToFM_C0(Branch([], x0, x1, x2, x3), [], x4, x5, x6) 25.69/9.80 new_not(True) 25.69/9.80 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_lt8(x0, x1, ty_Double) 25.69/9.80 new_esEs38(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_esEs32(x0, x1, ty_Float) 25.69/9.80 new_ltEs11(x0, x1, ty_@0) 25.69/9.80 new_ltEs17(x0, x1) 25.69/9.80 new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, x7, x8, GT, x9, x10) 25.69/9.80 new_esEs9(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, EQ, x7, x8) 25.69/9.80 new_ltEs15(Just(x0), Just(x1), ty_Char) 25.69/9.80 new_compare5(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_esEs6(x0, x1, ty_Double) 25.69/9.80 new_compare17(x0, x1, False, x2, x3) 25.69/9.80 new_esEs31(x0, x1, ty_Double) 25.69/9.80 new_compare6([], [], x0) 25.69/9.80 new_esEs10(x0, x1, ty_Ordering) 25.69/9.80 new_esEs11(x0, x1, ty_@0) 25.69/9.80 new_esEs35(x0, x1, ty_Float) 25.69/9.80 new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) 25.69/9.80 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 25.69/9.80 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_esEs4(x0, x1, ty_Ordering) 25.69/9.80 new_compare19(x0, x1, False, x2) 25.69/9.80 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_lt20(x0, x1, app(ty_[], x2)) 25.69/9.80 new_lt19(x0, x1, ty_Float) 25.69/9.80 new_esEs5(x0, x1, ty_Float) 25.69/9.80 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_esEs30(x0, x1, ty_Ordering) 25.69/9.80 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_esEs5(x0, x1, ty_Integer) 25.69/9.80 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_esEs36(x0, x1, ty_Float) 25.69/9.80 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.69/9.80 new_lt10(x0, x1) 25.69/9.80 new_sr(x0, x1) 25.69/9.80 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_ltEs14(GT, GT) 25.69/9.80 new_esEs11(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.69/9.80 new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.69/9.80 new_esEs20(True, True) 25.69/9.80 new_esEs36(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_esEs25(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.69/9.80 new_compare16(Just(x0), Nothing, x1) 25.69/9.80 new_esEs10(x0, x1, app(ty_[], x2)) 25.69/9.80 new_esEs26(EQ, GT) 25.69/9.80 new_esEs26(GT, EQ) 25.69/9.80 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_compare26(x0, x1, False, x2, x3) 25.69/9.80 new_lt17(x0, x1) 25.69/9.80 new_compare31(@0, @0) 25.69/9.80 new_compare6(:(x0, x1), :(x2, x3), x4) 25.69/9.80 new_ltEs21(x0, x1, ty_Float) 25.69/9.80 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 25.69/9.80 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 25.69/9.80 new_esEs5(x0, x1, ty_Bool) 25.69/9.80 new_addToFM_C13(x0, x1, x2, x3, x4, GT, x5, x6) 25.69/9.80 new_esEs11(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_compare14(Integer(x0), Integer(x1)) 25.69/9.80 new_addToFM_C0(Branch(:(x0, x1), x2, x3, x4, x5), :(x6, x7), x8, x9, x10) 25.69/9.80 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.69/9.80 new_lt8(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_esEs25(Just(x0), Just(x1), ty_Ordering) 25.69/9.80 new_esEs25(Just(x0), Just(x1), app(ty_[], x2)) 25.69/9.80 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_compare6(:(x0, x1), [], x2) 25.69/9.80 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_lt19(x0, x1, ty_Bool) 25.69/9.80 new_ltEs8(x0, x1, x2) 25.69/9.80 new_compare19(x0, x1, True, x2) 25.69/9.80 new_esEs29(x0, x1, ty_Double) 25.69/9.80 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.69/9.80 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 25.69/9.80 new_primEqNat0(Zero, Zero) 25.69/9.80 new_esEs36(x0, x1, ty_Char) 25.69/9.80 new_mkBranch(x0, x1, x2, x3, x4, x5, x6) 25.69/9.80 new_ltEs11(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_not(False) 25.69/9.80 new_esEs32(x0, x1, ty_Bool) 25.69/9.80 new_lt7(x0, x1, x2) 25.69/9.80 new_esEs34(x0, x1, ty_@0) 25.69/9.80 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_esEs33(x0, x1, ty_Int) 25.69/9.80 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_esEs13(x0, x1, ty_@0) 25.69/9.80 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 25.69/9.80 new_compare5(x0, x1, ty_@0) 25.69/9.80 new_lt23(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_mkBalBranch6MkBalBranch30(x0, x1, x2, Branch(x3, x4, x5, x6, x7), x8, True, x9, x10) 25.69/9.80 new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) 25.69/9.80 new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.69/9.80 new_ltEs24(x0, x1, ty_Double) 25.69/9.80 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_compare9(@2(x0, x1), @2(x2, x3), x4, x5) 25.69/9.80 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_esEs35(x0, x1, ty_Integer) 25.69/9.80 new_lt19(x0, x1, ty_Integer) 25.69/9.80 new_esEs33(x0, x1, ty_Float) 25.69/9.80 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_mkBalBranch6MkBalBranch40(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), True, x9, x10) 25.69/9.80 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, x4, x5, x6) 25.69/9.80 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_compare29(True, True) 25.69/9.80 new_ltEs22(x0, x1, app(ty_[], x2)) 25.69/9.80 new_primPlusNat0(Zero, Succ(x0)) 25.69/9.80 new_esEs32(x0, x1, ty_Integer) 25.69/9.80 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.69/9.80 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.69/9.80 new_ltEs14(EQ, LT) 25.69/9.80 new_primCompAux00(x0, x1, EQ, ty_@0) 25.69/9.80 new_ltEs14(LT, EQ) 25.69/9.80 new_lt22(x0, x1, app(ty_[], x2)) 25.69/9.80 new_mkBalBranch6MkBalBranch50(x0, x1, x2, False, x3, x4) 25.69/9.80 new_lt23(x0, x1, ty_@0) 25.69/9.80 new_primMulNat0(Zero, Succ(x0)) 25.69/9.80 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_esEs38(x0, x1, ty_Ordering) 25.69/9.80 new_esEs31(x0, x1, ty_Ordering) 25.69/9.80 new_lt15(x0, x1, x2) 25.69/9.80 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.69/9.80 new_esEs36(x0, x1, ty_Int) 25.69/9.80 new_primPlusInt(Neg(x0), Neg(x1)) 25.69/9.80 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, x8, True, x9, x10) 25.69/9.80 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.69/9.80 new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, x6, x7, x8, True, x9, x10) 25.69/9.80 new_esEs25(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.69/9.80 new_esEs18(Float(x0, x1), Float(x2, x3)) 25.69/9.80 new_esEs34(x0, x1, ty_Char) 25.69/9.80 new_esEs9(x0, x1, ty_Ordering) 25.69/9.80 new_ltEs20(x0, x1, ty_@0) 25.69/9.80 new_ltEs19(x0, x1, ty_Integer) 25.69/9.80 new_esEs30(x0, x1, ty_Float) 25.69/9.80 new_esEs33(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_esEs39(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_ltEs20(x0, x1, ty_Bool) 25.69/9.80 new_ltEs21(x0, x1, ty_@0) 25.69/9.80 new_esEs6(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_lt21(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_fsEs(x0) 25.69/9.80 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.69/9.80 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 25.69/9.80 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_addToFM_C22(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) 25.69/9.80 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.69/9.80 new_esEs25(Just(x0), Nothing, x1) 25.69/9.80 new_primMinusNat0(Zero, Zero) 25.69/9.80 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_addListToFM_CAdd(x0, @2(x1, x2), x3, x4) 25.69/9.80 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) 25.69/9.80 new_compare13(GT, LT) 25.69/9.80 new_compare13(LT, GT) 25.69/9.80 new_esEs9(x0, x1, ty_Double) 25.69/9.80 new_esEs32(x0, x1, ty_Int) 25.69/9.80 new_emptyFM(x0, x1) 25.69/9.80 new_esEs9(x0, x1, ty_Char) 25.69/9.80 new_lt23(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.69/9.80 new_ltEs14(LT, LT) 25.69/9.80 new_esEs26(LT, GT) 25.69/9.80 new_esEs26(GT, LT) 25.69/9.80 new_ltEs23(x0, x1, ty_Int) 25.69/9.80 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, EmptyFM, x7, False, x8, x9) 25.69/9.80 new_esEs5(x0, x1, ty_Char) 25.69/9.80 new_esEs5(x0, x1, ty_Double) 25.69/9.80 new_ltEs19(x0, x1, ty_Bool) 25.69/9.80 new_esEs33(x0, x1, ty_Char) 25.69/9.80 new_lt19(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_esEs13(x0, x1, ty_Integer) 25.69/9.80 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_ltEs21(x0, x1, ty_Int) 25.69/9.80 new_sIZE_RATIO 25.69/9.80 new_lt22(x0, x1, ty_Bool) 25.69/9.80 new_ltEs16(False, False) 25.69/9.80 new_esEs7(x0, x1, ty_Float) 25.69/9.80 new_esEs35(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_lt22(x0, x1, ty_@0) 25.69/9.80 new_esEs21(Left(x0), Left(x1), ty_Float, x2) 25.69/9.80 new_esEs22(Double(x0, x1), Double(x2, x3)) 25.69/9.80 new_esEs25(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.69/9.80 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, EmptyFM, x5, False, x6, x7) 25.69/9.80 new_esEs28(x0, x1, ty_Integer) 25.69/9.80 new_esEs8(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_asAs(True, x0) 25.69/9.80 new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6) 25.69/9.80 new_lt9(x0, x1, x2, x3) 25.69/9.80 new_esEs35(x0, x1, ty_Bool) 25.69/9.80 new_lt4(x0, x1, x2) 25.69/9.80 new_esEs33(x0, x1, ty_Ordering) 25.69/9.80 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_ltEs20(x0, x1, ty_Integer) 25.69/9.80 new_esEs32(x0, x1, ty_@0) 25.69/9.80 new_ltEs21(x0, x1, ty_Bool) 25.69/9.80 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_lt22(x0, x1, ty_Int) 25.69/9.80 new_esEs4(x0, x1, app(ty_[], x2)) 25.69/9.80 new_esEs9(x0, x1, app(ty_[], x2)) 25.69/9.80 new_esEs35(x0, x1, ty_@0) 25.69/9.80 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_esEs38(x0, x1, ty_Double) 25.69/9.80 new_lt23(x0, x1, ty_Ordering) 25.69/9.80 new_primCompAux00(x0, x1, EQ, ty_Ordering) 25.69/9.80 new_lt19(x0, x1, ty_Int) 25.69/9.80 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.69/9.80 new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.69/9.80 new_compare10(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.69/9.80 new_esEs30(x0, x1, ty_Integer) 25.69/9.80 new_ltEs19(x0, x1, ty_Float) 25.69/9.80 new_esEs34(x0, x1, ty_Ordering) 25.69/9.80 new_esEs5(x0, x1, app(ty_[], x2)) 25.69/9.80 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_mkBalBranch6Size_r0(x0, x1, x2, x3, x4, x5, x6) 25.69/9.80 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 25.69/9.80 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_esEs30(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_esEs13(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_esEs36(x0, x1, ty_Ordering) 25.69/9.80 new_lt22(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_lt19(x0, x1, ty_@0) 25.69/9.80 new_ltEs11(x0, x1, ty_Int) 25.69/9.80 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, False, x11, x12) 25.69/9.80 new_esEs20(False, False) 25.69/9.80 new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, x7, x8, EQ, x9, x10) 25.69/9.80 new_ltEs19(x0, x1, ty_@0) 25.69/9.80 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 25.69/9.80 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 25.69/9.80 new_esEs35(x0, x1, ty_Int) 25.69/9.80 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_esEs12([], :(x0, x1), x2) 25.69/9.80 new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, x7, x8, LT, x9, x10) 25.69/9.80 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.69/9.80 new_lt21(x0, x1, ty_Ordering) 25.69/9.80 new_esEs36(x0, x1, ty_Double) 25.69/9.80 new_addToFM_C0(EmptyFM, x0, x1, x2, x3) 25.69/9.80 new_esEs30(x0, x1, ty_Bool) 25.69/9.80 new_ltEs23(x0, x1, app(ty_[], x2)) 25.69/9.80 new_ltEs19(x0, x1, ty_Int) 25.69/9.80 new_lt8(x0, x1, app(ty_[], x2)) 25.69/9.80 new_lt14(x0, x1) 25.69/9.80 new_esEs37(x0, x1, ty_@0) 25.69/9.80 new_compare10(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.69/9.80 new_esEs24(Integer(x0), Integer(x1)) 25.69/9.80 new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.69/9.80 new_ltEs22(x0, x1, ty_Double) 25.69/9.80 new_mkBalBranch6MkBalBranch3(x0, Branch(x1, x2, x3, x4, x5), x6, True, x7, x8) 25.69/9.80 new_esEs19(x0, x1) 25.69/9.80 new_addToFM_C13(x0, x1, x2, x3, x4, LT, x5, x6) 25.69/9.80 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_lt20(x0, x1, ty_Char) 25.69/9.80 new_ltEs20(x0, x1, ty_Float) 25.69/9.80 new_esEs13(x0, x1, ty_Int) 25.69/9.80 new_lt22(x0, x1, ty_Integer) 25.69/9.80 new_compare18(Left(x0), Left(x1), x2, x3) 25.69/9.80 new_ltEs24(x0, x1, ty_Char) 25.69/9.80 new_ltEs14(LT, GT) 25.69/9.80 new_ltEs14(GT, LT) 25.69/9.80 new_esEs35(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.69/9.80 new_compare29(True, False) 25.69/9.80 new_compare29(False, True) 25.69/9.80 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_esEs26(GT, GT) 25.69/9.80 new_lt18(x0, x1) 25.69/9.80 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.69/9.80 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.69/9.80 new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, x6, EmptyFM, x7, False, x8, x9) 25.69/9.80 new_esEs29(x0, x1, ty_Int) 25.69/9.80 new_esEs11(x0, x1, ty_Integer) 25.69/9.80 new_primMulNat0(Succ(x0), Succ(x1)) 25.69/9.80 new_primEqNat0(Succ(x0), Zero) 25.69/9.80 new_ltEs20(x0, x1, app(ty_[], x2)) 25.69/9.80 new_mkBalBranch6MkBalBranch4(x0, x1, Branch(x2, x3, x4, x5, x6), True, x7, x8) 25.69/9.80 new_compare110(x0, x1, False, x2, x3) 25.69/9.80 new_esEs39(x0, x1, app(ty_[], x2)) 25.69/9.80 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_lt6(x0, x1) 25.69/9.80 new_lt5(x0, x1, x2, x3) 25.69/9.80 new_ltEs15(Just(x0), Just(x1), ty_Int) 25.69/9.80 new_ltEs22(x0, x1, ty_Ordering) 25.69/9.80 new_ltEs23(x0, x1, ty_@0) 25.69/9.80 new_ltEs21(x0, x1, ty_Integer) 25.69/9.80 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_esEs33(x0, x1, ty_Double) 25.69/9.80 new_ltEs20(x0, x1, ty_Int) 25.69/9.80 new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.69/9.80 new_esEs10(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_lt20(x0, x1, ty_Ordering) 25.69/9.80 new_esEs13(x0, x1, ty_Float) 25.69/9.80 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.69/9.80 new_addToFM_C12(x0, x1, x2, x3, x4, x5, x6, x7, x8) 25.69/9.80 new_sr0(Integer(x0), Integer(x1)) 25.69/9.80 new_ltEs14(EQ, GT) 25.69/9.80 new_ltEs14(GT, EQ) 25.69/9.80 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 25.69/9.80 new_primCompAux00(x0, x1, LT, x2) 25.69/9.80 new_esEs4(x0, x1, ty_@0) 25.69/9.80 new_addToFM_C13(x0, x1, x2, x3, x4, EQ, x5, x6) 25.69/9.80 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.69/9.80 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.69/9.80 new_esEs4(x0, x1, ty_Double) 25.69/9.80 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_primPlusNat1(x0, x1) 25.69/9.80 new_esEs7(x0, x1, ty_Double) 25.69/9.80 new_lt23(x0, x1, ty_Char) 25.69/9.80 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_compare13(GT, EQ) 25.69/9.80 new_compare13(EQ, GT) 25.69/9.80 new_esEs6(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_esEs11(x0, x1, ty_Ordering) 25.69/9.80 new_lt8(x0, x1, ty_Float) 25.69/9.80 new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.69/9.80 new_compare30(Char(x0), Char(x1)) 25.69/9.80 new_compare16(Nothing, Nothing, x0) 25.69/9.80 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_compare112(x0, x1, x2, x3, False, x4, x5) 25.69/9.80 new_esEs13(x0, x1, ty_Bool) 25.69/9.80 new_compare26(x0, x1, True, x2, x3) 25.69/9.80 new_mkBalBranch6MkBalBranch51(x0, x1, x2, x3, x4, LT, x5, x6) 25.69/9.80 new_primCompAux00(x0, x1, EQ, ty_Char) 25.69/9.80 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_esEs23(:%(x0, x1), :%(x2, x3), x4) 25.69/9.80 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.69/9.80 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.69/9.80 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.69/9.80 new_esEs5(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.69/9.80 new_lt21(x0, x1, ty_Char) 25.69/9.80 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.69/9.80 new_lt13(x0, x1) 25.69/9.80 new_esEs30(x0, x1, ty_Int) 25.69/9.80 new_compare5(x0, x1, ty_Char) 25.69/9.80 new_esEs21(Right(x0), Right(x1), x2, ty_@0) 25.69/9.80 new_primPlusNat0(Succ(x0), Zero) 25.69/9.80 new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 25.69/9.80 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 25.69/9.80 new_esEs39(x0, x1, ty_@0) 25.69/9.80 new_primMinusNat0(Succ(x0), Zero) 25.69/9.80 new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 25.69/9.80 new_lt11(x0, x1, x2, x3, x4) 25.69/9.80 new_lt8(x0, x1, ty_Char) 25.69/9.80 new_esEs21(Left(x0), Left(x1), ty_Char, x2) 25.69/9.80 new_addListToFM0(x0, x1, x2) 25.69/9.80 new_esEs6(x0, x1, ty_Int) 25.69/9.80 new_esEs26(LT, LT) 25.69/9.80 new_esEs4(x0, x1, ty_Char) 25.69/9.80 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_esEs36(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_esEs25(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.69/9.80 new_esEs9(x0, x1, ty_Float) 25.69/9.80 new_compare5(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_primMulNat0(Zero, Zero) 25.69/9.80 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.69/9.80 new_esEs8(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_esEs10(x0, x1, ty_Int) 25.69/9.80 new_esEs38(x0, x1, ty_Integer) 25.69/9.80 new_compare111(x0, x1, x2, x3, False, x4, x5, x6) 25.69/9.80 new_ltEs14(EQ, EQ) 25.69/9.80 new_ltEs11(x0, x1, ty_Integer) 25.69/9.80 new_esEs29(x0, x1, ty_@0) 25.69/9.80 new_esEs31(x0, x1, ty_Char) 25.69/9.80 new_esEs6(x0, x1, ty_Char) 25.69/9.80 new_esEs7(x0, x1, ty_Char) 25.69/9.80 new_esEs38(x0, x1, ty_Bool) 25.69/9.80 new_ltEs5(x0, x1) 25.69/9.80 new_compare5(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_esEs28(x0, x1, ty_Int) 25.69/9.80 new_esEs30(x0, x1, app(ty_[], x2)) 25.69/9.80 new_esEs37(x0, x1, ty_Float) 25.69/9.80 new_esEs7(x0, x1, ty_Int) 25.69/9.80 new_ltEs22(x0, x1, ty_Integer) 25.69/9.80 new_esEs25(Just(x0), Just(x1), ty_Char) 25.69/9.80 new_esEs31(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_esEs21(Left(x0), Left(x1), ty_Int, x2) 25.69/9.80 new_mkBalBranch6Size_l(x0, x1, x2, x3, x4) 25.69/9.80 new_ltEs23(x0, x1, ty_Float) 25.69/9.80 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_mkBalBranch6MkBalBranch40(x0, x1, x2, x3, x4, False, x5, x6) 25.69/9.80 new_esEs39(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_esEs7(x0, x1, ty_@0) 25.69/9.80 new_esEs25(Just(x0), Just(x1), ty_@0) 25.69/9.80 new_lt8(x0, x1, ty_Int) 25.69/9.80 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_esEs25(Just(x0), Just(x1), ty_Int) 25.69/9.80 new_lt22(x0, x1, ty_Float) 25.69/9.80 new_esEs21(Left(x0), Left(x1), ty_@0, x2) 25.69/9.80 new_esEs37(x0, x1, ty_Integer) 25.69/9.80 new_esEs31(x0, x1, ty_@0) 25.69/9.80 new_ltEs15(Just(x0), Nothing, x1) 25.69/9.80 new_mkBalBranch6MkBalBranch4(x0, x1, x2, False, x3, x4) 25.69/9.80 new_esEs8(x0, x1, ty_Integer) 25.69/9.80 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.69/9.80 new_ltEs11(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_ltEs9(x0, x1) 25.69/9.80 new_esEs21(Right(x0), Right(x1), x2, ty_Integer) 25.69/9.80 new_primEqNat0(Zero, Succ(x0)) 25.69/9.80 new_compare18(Right(x0), Right(x1), x2, x3) 25.69/9.80 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.69/9.80 new_ltEs23(x0, x1, ty_Integer) 25.69/9.80 new_ltEs19(x0, x1, ty_Double) 25.69/9.80 new_esEs11(x0, x1, ty_Bool) 25.69/9.80 new_esEs8(x0, x1, ty_Int) 25.69/9.80 new_pePe(False, x0) 25.69/9.80 new_ltEs11(x0, x1, ty_Float) 25.69/9.80 new_esEs11(x0, x1, ty_Int) 25.69/9.80 new_addToFM_C21(x0, x1, x2, x3, x4, x5, x6, x7, x8, GT, x9, x10) 25.69/9.80 new_compare17(x0, x1, True, x2, x3) 25.69/9.80 new_esEs33(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_pePe(True, x0) 25.69/9.80 new_esEs8(x0, x1, ty_Char) 25.69/9.80 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_compare16(Nothing, Just(x0), x1) 25.69/9.80 new_compare27(x0, x1, False, x2, x3) 25.69/9.80 new_compare16(Just(x0), Just(x1), x2) 25.69/9.80 new_lt8(x0, x1, ty_Bool) 25.69/9.80 new_ltEs11(x0, x1, ty_Bool) 25.69/9.80 new_compare5(x0, x1, ty_Ordering) 25.69/9.80 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_ltEs11(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_compare13(LT, LT) 25.69/9.80 new_esEs6(x0, x1, ty_Bool) 25.69/9.80 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.69/9.80 new_esEs39(x0, x1, ty_Integer) 25.69/9.80 new_lt22(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_esEs37(x0, x1, app(ty_[], x2)) 25.69/9.80 new_esEs38(x0, x1, ty_Float) 25.69/9.80 new_lt21(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_mkBalBranch0(x0, x1, x2, x3, x4, x5, x6) 25.69/9.80 new_esEs36(x0, x1, app(ty_[], x2)) 25.69/9.80 new_esEs31(x0, x1, ty_Int) 25.69/9.80 new_compare110(x0, x1, True, x2, x3) 25.69/9.80 new_ltEs22(x0, x1, ty_Bool) 25.69/9.80 new_esEs38(x0, x1, ty_@0) 25.69/9.80 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 25.69/9.80 new_ltEs23(x0, x1, ty_Bool) 25.69/9.80 new_mkBalBranch6MkBalBranch30(x0, x1, x2, x3, x4, False, x5, x6) 25.69/9.80 new_gt(x0, x1) 25.69/9.80 new_esEs8(x0, x1, ty_Bool) 25.69/9.80 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.69/9.80 new_esEs11(x0, x1, ty_Char) 25.69/9.80 new_esEs10(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_compare12(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 25.69/9.80 new_esEs11(x0, x1, ty_Double) 25.69/9.80 new_compare13(EQ, EQ) 25.69/9.80 new_esEs38(x0, x1, ty_Int) 25.69/9.80 new_esEs10(x0, x1, ty_Integer) 25.69/9.80 new_esEs14(@0, @0) 25.69/9.80 new_ltEs15(Just(x0), Just(x1), ty_Ordering) 25.69/9.80 new_esEs31(x0, x1, ty_Integer) 25.69/9.80 new_esEs7(x0, x1, app(ty_Ratio, x2)) 25.69/9.80 new_addToFM_C0(Branch(:(x0, x1), x2, x3, x4, x5), [], x6, x7, x8) 25.69/9.80 new_esEs6(x0, x1, ty_Integer) 25.69/9.80 new_esEs39(x0, x1, ty_Char) 25.69/9.80 new_ltEs20(x0, x1, ty_Double) 25.69/9.80 new_esEs9(x0, x1, ty_Bool) 25.69/9.80 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.69/9.80 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.69/9.80 new_esEs21(Left(x0), Left(x1), ty_Integer, x2) 25.69/9.80 new_lt8(x0, x1, ty_Integer) 25.69/9.80 new_ltEs15(Just(x0), Just(x1), ty_Double) 25.69/9.80 new_esEs38(x0, x1, ty_Char) 25.69/9.80 new_ltEs22(x0, x1, ty_Float) 25.69/9.80 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_lt23(x0, x1, ty_Double) 25.69/9.80 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.69/9.80 new_compare10(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.69/9.80 new_compare10(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.69/9.80 new_compare25(x0, x1, True, x2) 25.69/9.80 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.69/9.80 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 25.69/9.80 new_esEs4(x0, x1, ty_Integer) 25.69/9.80 new_esEs7(x0, x1, ty_Integer) 25.69/9.80 new_ltEs24(x0, x1, ty_@0) 25.69/9.80 new_esEs25(Just(x0), Just(x1), ty_Float) 25.69/9.80 new_compare112(x0, x1, x2, x3, True, x4, x5) 25.69/9.80 new_ltEs20(x0, x1, ty_Ordering) 25.69/9.80 new_esEs21(Right(x0), Right(x1), x2, ty_Bool) 25.69/9.80 new_ltEs22(x0, x1, ty_Char) 25.69/9.80 new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) 25.69/9.80 new_compare111(x0, x1, x2, x3, True, x4, x5, x6) 25.69/9.80 new_esEs11(x0, x1, ty_Float) 25.69/9.80 new_esEs8(x0, x1, ty_Float) 25.69/9.80 new_esEs31(x0, x1, ty_Bool) 25.69/9.80 new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, LT, x7, x8) 25.69/9.80 new_ltEs22(x0, x1, ty_Int) 25.69/9.80 new_esEs31(x0, x1, app(ty_[], x2)) 25.69/9.80 new_mkBalBranch(x0, x1, x2, x3, x4) 25.69/9.80 new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, EmptyFM, x5, False, x6, x7) 25.69/9.80 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.69/9.80 new_esEs6(x0, x1, ty_@0) 25.69/9.80 new_lt8(x0, x1, ty_@0) 25.69/9.80 new_esEs37(x0, x1, ty_Int) 25.69/9.80 new_esEs39(x0, x1, ty_Float) 25.69/9.80 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_esEs39(x0, x1, ty_Bool) 25.69/9.80 new_esEs35(x0, x1, ty_Ordering) 25.69/9.80 new_esEs21(Right(x0), Right(x1), x2, ty_Int) 25.69/9.80 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 25.69/9.80 new_esEs34(x0, x1, ty_Double) 25.69/9.80 new_ltEs16(True, True) 25.69/9.80 new_esEs4(x0, x1, ty_Float) 25.69/9.80 new_compare27(x0, x1, True, x2, x3) 25.69/9.80 new_compare15(x0, x1) 25.69/9.80 new_esEs4(x0, x1, ty_Bool) 25.69/9.80 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_esEs21(Left(x0), Left(x1), ty_Bool, x2) 25.69/9.80 new_esEs25(Just(x0), Just(x1), ty_Integer) 25.69/9.80 new_lt20(x0, x1, ty_Double) 25.69/9.80 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_esEs21(Right(x0), Right(x1), x2, ty_Char) 25.69/9.80 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_esEs32(x0, x1, ty_Ordering) 25.69/9.80 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 25.69/9.80 new_esEs5(x0, x1, ty_Ordering) 25.69/9.80 new_esEs21(Right(x0), Right(x1), x2, ty_Float) 25.69/9.80 new_esEs16(@2(x0, x1), @2(x2, x3), x4, x5) 25.69/9.80 new_lt16(x0, x1) 25.69/9.80 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_mkBalBranch6MkBalBranch4(x0, x1, EmptyFM, True, x2, x3) 25.69/9.80 new_primCompAux00(x0, x1, EQ, ty_Double) 25.69/9.80 new_esEs39(x0, x1, ty_Int) 25.69/9.80 new_mkBalBranch6MkBalBranch40(x0, x1, x2, x3, EmptyFM, True, x4, x5) 25.69/9.80 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.69/9.80 new_lt19(x0, x1, app(ty_Maybe, x2)) 25.69/9.80 new_primMinusNat0(Zero, Succ(x0)) 25.69/9.80 new_esEs25(Just(x0), Just(x1), ty_Bool) 25.69/9.80 new_esEs25(Nothing, Just(x0), x1) 25.69/9.80 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 25.69/9.80 new_esEs37(x0, x1, ty_Bool) 25.69/9.80 new_esEs13(x0, x1, ty_Double) 25.69/9.80 new_esEs10(x0, x1, ty_Bool) 25.69/9.80 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, Branch(x7, x8, x9, x10, x11), x12, False, x13, x14) 25.69/9.80 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 25.69/9.80 new_ltEs7(x0, x1) 25.69/9.80 new_esEs37(x0, x1, ty_Char) 25.69/9.80 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.69/9.80 new_esEs4(x0, x1, ty_Int) 25.69/9.80 new_lt21(x0, x1, ty_Double) 25.69/9.80 new_esEs10(x0, x1, ty_Char) 25.69/9.80 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 new_mkBalBranch6MkBalBranch51(x0, x1, x2, x3, x4, GT, x5, x6) 25.69/9.80 new_esEs30(x0, x1, ty_@0) 25.69/9.80 new_esEs7(x0, x1, ty_Bool) 25.69/9.80 new_compare5(x0, x1, ty_Double) 25.69/9.80 new_primCmpNat0(Zero, Zero) 25.69/9.80 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.69/9.80 new_esEs25(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.69/9.80 25.69/9.80 We have to consider all minimal (P,Q,R)-chains. 25.69/9.80 ---------------------------------------- 25.69/9.80 25.69/9.80 (35) QDPSizeChangeProof (EQUIVALENT) 25.69/9.80 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. 25.69/9.80 25.69/9.80 From the DPs we obtained the following set of size-change graphs: 25.69/9.80 *new_foldl(xuu6, :(xuu3110, xuu3111), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu6, xuu3110, h, ba), xuu3111, h, ba) 25.69/9.80 The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 25.69/9.80 25.69/9.80 25.69/9.80 ---------------------------------------- 25.69/9.80 25.69/9.80 (36) 25.69/9.80 YES 25.69/9.80 25.69/9.80 ---------------------------------------- 25.69/9.80 25.69/9.80 (37) 25.69/9.80 Obligation: 25.69/9.80 Q DP problem: 25.69/9.80 The TRS P consists of the following rules: 25.69/9.80 25.69/9.80 new_primMulNat(Succ(xuu600000), Succ(xuu311000100)) -> new_primMulNat(xuu600000, Succ(xuu311000100)) 25.69/9.80 25.69/9.80 R is empty. 25.69/9.80 Q is empty. 25.69/9.80 We have to consider all minimal (P,Q,R)-chains. 25.69/9.80 ---------------------------------------- 25.69/9.80 25.69/9.80 (38) QDPSizeChangeProof (EQUIVALENT) 25.69/9.80 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. 25.69/9.80 25.69/9.80 From the DPs we obtained the following set of size-change graphs: 25.69/9.80 *new_primMulNat(Succ(xuu600000), Succ(xuu311000100)) -> new_primMulNat(xuu600000, Succ(xuu311000100)) 25.69/9.80 The graph contains the following edges 1 > 1, 2 >= 2 25.69/9.80 25.69/9.80 25.69/9.80 ---------------------------------------- 25.69/9.80 25.69/9.80 (39) 25.69/9.80 YES 25.69/9.80 25.69/9.80 ---------------------------------------- 25.69/9.80 25.69/9.80 (40) 25.69/9.80 Obligation: 25.69/9.80 Q DP problem: 25.69/9.80 The TRS P consists of the following rules: 25.69/9.80 25.69/9.80 new_primEqNat(Succ(xuu311000000), Succ(xuu600000)) -> new_primEqNat(xuu311000000, xuu600000) 25.69/9.80 25.69/9.80 R is empty. 25.69/9.80 Q is empty. 25.69/9.80 We have to consider all minimal (P,Q,R)-chains. 25.69/9.80 ---------------------------------------- 25.69/9.80 25.69/9.80 (41) QDPSizeChangeProof (EQUIVALENT) 25.69/9.80 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. 25.69/9.80 25.69/9.80 From the DPs we obtained the following set of size-change graphs: 25.69/9.80 *new_primEqNat(Succ(xuu311000000), Succ(xuu600000)) -> new_primEqNat(xuu311000000, xuu600000) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2 25.69/9.80 25.69/9.80 25.69/9.80 ---------------------------------------- 25.69/9.80 25.69/9.80 (42) 25.69/9.80 YES 25.69/9.80 25.69/9.80 ---------------------------------------- 25.69/9.80 25.69/9.80 (43) 25.69/9.80 Obligation: 25.69/9.80 Q DP problem: 25.69/9.80 The TRS P consists of the following rules: 25.69/9.80 25.69/9.80 new_primMinusNat(Succ(xuu21200), Succ(xuu21100)) -> new_primMinusNat(xuu21200, xuu21100) 25.69/9.80 25.69/9.80 R is empty. 25.69/9.80 Q is empty. 25.69/9.80 We have to consider all minimal (P,Q,R)-chains. 25.69/9.80 ---------------------------------------- 25.69/9.80 25.69/9.80 (44) QDPSizeChangeProof (EQUIVALENT) 25.69/9.80 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. 25.69/9.80 25.69/9.80 From the DPs we obtained the following set of size-change graphs: 25.69/9.80 *new_primMinusNat(Succ(xuu21200), Succ(xuu21100)) -> new_primMinusNat(xuu21200, xuu21100) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2 25.69/9.80 25.69/9.80 25.69/9.80 ---------------------------------------- 25.69/9.80 25.69/9.80 (45) 25.69/9.80 YES 25.69/9.80 25.69/9.80 ---------------------------------------- 25.69/9.80 25.69/9.80 (46) 25.69/9.80 Obligation: 25.69/9.80 Q DP problem: 25.69/9.80 The TRS P consists of the following rules: 25.69/9.80 25.69/9.80 new_primPlusNat(Succ(xuu21200), Succ(xuu21100)) -> new_primPlusNat(xuu21200, xuu21100) 25.69/9.80 25.69/9.80 R is empty. 25.69/9.80 Q is empty. 25.69/9.80 We have to consider all minimal (P,Q,R)-chains. 25.69/9.80 ---------------------------------------- 25.69/9.80 25.69/9.80 (47) QDPSizeChangeProof (EQUIVALENT) 25.69/9.80 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. 25.69/9.80 25.69/9.80 From the DPs we obtained the following set of size-change graphs: 25.69/9.80 *new_primPlusNat(Succ(xuu21200), Succ(xuu21100)) -> new_primPlusNat(xuu21200, xuu21100) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2 25.69/9.80 25.69/9.80 25.69/9.80 ---------------------------------------- 25.69/9.80 25.69/9.80 (48) 25.69/9.80 YES 25.69/9.80 25.69/9.80 ---------------------------------------- 25.69/9.80 25.69/9.80 (49) 25.69/9.80 Obligation: 25.69/9.80 Q DP problem: 25.69/9.80 The TRS P consists of the following rules: 25.69/9.80 25.69/9.80 new_esEs3(Just(xuu31100000), Just(xuu60000), app(app(ty_Either, bdg), bdh)) -> new_esEs1(xuu31100000, xuu60000, bdg, bdh) 25.69/9.80 new_esEs1(Left(xuu31100000), Left(xuu60000), app(app(ty_Either, bab), bac), hf) -> new_esEs1(xuu31100000, xuu60000, bab, bac) 25.69/9.80 new_esEs1(Right(xuu31100000), Right(xuu60000), baf, app(ty_Maybe, bbg)) -> new_esEs3(xuu31100000, xuu60000, bbg) 25.69/9.80 new_esEs2(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), bda) -> new_esEs2(xuu31100001, xuu60001, bda) 25.69/9.80 new_esEs3(Just(xuu31100000), Just(xuu60000), app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs0(xuu31100000, xuu60000, bdd, bde, bdf) 25.69/9.80 new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), eh, app(app(app(ty_@3, fc), fd), ff), dh) -> new_esEs0(xuu31100001, xuu60001, fc, fd, ff) 25.69/9.80 new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), eh, app(ty_Maybe, gb), dh) -> new_esEs3(xuu31100001, xuu60001, gb) 25.69/9.80 new_esEs(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), app(app(ty_@2, h), ba), bb) -> new_esEs(xuu31100000, xuu60000, h, ba) 25.69/9.80 new_esEs(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), cb, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs0(xuu31100001, xuu60001, ce, cf, cg) 25.69/9.80 new_esEs2(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), app(app(ty_@2, bbh), bca)) -> new_esEs(xuu31100000, xuu60000, bbh, bca) 25.69/9.80 new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), eh, dg, app(ty_Maybe, hc)) -> new_esEs3(xuu31100002, xuu60002, hc) 25.69/9.80 new_esEs2(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs0(xuu31100000, xuu60000, bcb, bcc, bcd) 25.69/9.80 new_esEs3(Just(xuu31100000), Just(xuu60000), app(ty_Maybe, beb)) -> new_esEs3(xuu31100000, xuu60000, beb) 25.69/9.80 new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), app(app(ty_@2, de), df), dg, dh) -> new_esEs(xuu31100000, xuu60000, de, df) 25.69/9.80 new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), app(app(ty_Either, ed), ee), dg, dh) -> new_esEs1(xuu31100000, xuu60000, ed, ee) 25.69/9.80 new_esEs1(Right(xuu31100000), Right(xuu60000), baf, app(ty_[], bbf)) -> new_esEs2(xuu31100000, xuu60000, bbf) 25.69/9.80 new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), app(ty_Maybe, eg), dg, dh) -> new_esEs3(xuu31100000, xuu60000, eg) 25.69/9.80 new_esEs(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), cb, app(ty_Maybe, dd)) -> new_esEs3(xuu31100001, xuu60001, dd) 25.69/9.80 new_esEs1(Left(xuu31100000), Left(xuu60000), app(ty_Maybe, bae), hf) -> new_esEs3(xuu31100000, xuu60000, bae) 25.69/9.80 new_esEs(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), app(ty_Maybe, ca), bb) -> new_esEs3(xuu31100000, xuu60000, ca) 25.69/9.80 new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), eh, dg, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs0(xuu31100002, xuu60002, ge, gf, gg) 25.69/9.80 new_esEs(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), cb, app(app(ty_@2, cc), cd)) -> new_esEs(xuu31100001, xuu60001, cc, cd) 25.69/9.80 new_esEs1(Left(xuu31100000), Left(xuu60000), app(app(app(ty_@3, hg), hh), baa), hf) -> new_esEs0(xuu31100000, xuu60000, hg, hh, baa) 25.69/9.80 new_esEs3(Just(xuu31100000), Just(xuu60000), app(ty_[], bea)) -> new_esEs2(xuu31100000, xuu60000, bea) 25.69/9.80 new_esEs1(Left(xuu31100000), Left(xuu60000), app(app(ty_@2, hd), he), hf) -> new_esEs(xuu31100000, xuu60000, hd, he) 25.69/9.80 new_esEs(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), cb, app(app(ty_Either, da), db)) -> new_esEs1(xuu31100001, xuu60001, da, db) 25.69/9.80 new_esEs2(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), app(app(ty_Either, bce), bcf)) -> new_esEs1(xuu31100000, xuu60000, bce, bcf) 25.69/9.80 new_esEs2(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), app(ty_Maybe, bch)) -> new_esEs3(xuu31100000, xuu60000, bch) 25.69/9.80 new_esEs(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), app(app(ty_Either, bf), bg), bb) -> new_esEs1(xuu31100000, xuu60000, bf, bg) 25.69/9.80 new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), eh, app(app(ty_Either, fg), fh), dh) -> new_esEs1(xuu31100001, xuu60001, fg, fh) 25.69/9.80 new_esEs3(Just(xuu31100000), Just(xuu60000), app(app(ty_@2, bdb), bdc)) -> new_esEs(xuu31100000, xuu60000, bdb, bdc) 25.69/9.80 new_esEs1(Right(xuu31100000), Right(xuu60000), baf, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs0(xuu31100000, xuu60000, bba, bbb, bbc) 25.69/9.80 new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), eh, app(app(ty_@2, fa), fb), dh) -> new_esEs(xuu31100001, xuu60001, fa, fb) 25.69/9.80 new_esEs2(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), app(ty_[], bcg)) -> new_esEs2(xuu31100000, xuu60000, bcg) 25.69/9.80 new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), eh, dg, app(ty_[], hb)) -> new_esEs2(xuu31100002, xuu60002, hb) 25.69/9.80 new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), eh, dg, app(app(ty_@2, gc), gd)) -> new_esEs(xuu31100002, xuu60002, gc, gd) 25.69/9.80 new_esEs(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), app(app(app(ty_@3, bc), bd), be), bb) -> new_esEs0(xuu31100000, xuu60000, bc, bd, be) 25.69/9.80 new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), eh, app(ty_[], ga), dh) -> new_esEs2(xuu31100001, xuu60001, ga) 25.69/9.80 new_esEs1(Right(xuu31100000), Right(xuu60000), baf, app(app(ty_@2, bag), bah)) -> new_esEs(xuu31100000, xuu60000, bag, bah) 25.69/9.80 new_esEs1(Left(xuu31100000), Left(xuu60000), app(ty_[], bad), hf) -> new_esEs2(xuu31100000, xuu60000, bad) 25.69/9.80 new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), app(ty_[], ef), dg, dh) -> new_esEs2(xuu31100000, xuu60000, ef) 25.69/9.80 new_esEs1(Right(xuu31100000), Right(xuu60000), baf, app(app(ty_Either, bbd), bbe)) -> new_esEs1(xuu31100000, xuu60000, bbd, bbe) 25.69/9.80 new_esEs(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), cb, app(ty_[], dc)) -> new_esEs2(xuu31100001, xuu60001, dc) 25.69/9.80 new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), app(app(app(ty_@3, ea), eb), ec), dg, dh) -> new_esEs0(xuu31100000, xuu60000, ea, eb, ec) 25.69/9.80 new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), eh, dg, app(app(ty_Either, gh), ha)) -> new_esEs1(xuu31100002, xuu60002, gh, ha) 25.69/9.80 new_esEs(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), app(ty_[], bh), bb) -> new_esEs2(xuu31100000, xuu60000, bh) 25.69/9.80 25.69/9.80 R is empty. 25.69/9.80 Q is empty. 25.69/9.80 We have to consider all minimal (P,Q,R)-chains. 25.69/9.80 ---------------------------------------- 25.69/9.80 25.69/9.80 (50) QDPSizeChangeProof (EQUIVALENT) 25.69/9.80 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. 25.69/9.80 25.69/9.80 From the DPs we obtained the following set of size-change graphs: 25.69/9.80 *new_esEs3(Just(xuu31100000), Just(xuu60000), app(ty_Maybe, beb)) -> new_esEs3(xuu31100000, xuu60000, beb) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs3(Just(xuu31100000), Just(xuu60000), app(app(ty_Either, bdg), bdh)) -> new_esEs1(xuu31100000, xuu60000, bdg, bdh) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs2(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), app(ty_Maybe, bch)) -> new_esEs3(xuu31100000, xuu60000, bch) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs2(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), app(app(ty_Either, bce), bcf)) -> new_esEs1(xuu31100000, xuu60000, bce, bcf) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs3(Just(xuu31100000), Just(xuu60000), app(ty_[], bea)) -> new_esEs2(xuu31100000, xuu60000, bea) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs3(Just(xuu31100000), Just(xuu60000), app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs0(xuu31100000, xuu60000, bdd, bde, bdf) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs3(Just(xuu31100000), Just(xuu60000), app(app(ty_@2, bdb), bdc)) -> new_esEs(xuu31100000, xuu60000, bdb, bdc) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs2(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs0(xuu31100000, xuu60000, bcb, bcc, bcd) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs2(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), app(app(ty_@2, bbh), bca)) -> new_esEs(xuu31100000, xuu60000, bbh, bca) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs1(Right(xuu31100000), Right(xuu60000), baf, app(ty_Maybe, bbg)) -> new_esEs3(xuu31100000, xuu60000, bbg) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs1(Left(xuu31100000), Left(xuu60000), app(ty_Maybe, bae), hf) -> new_esEs3(xuu31100000, xuu60000, bae) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs1(Left(xuu31100000), Left(xuu60000), app(app(ty_Either, bab), bac), hf) -> new_esEs1(xuu31100000, xuu60000, bab, bac) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs1(Right(xuu31100000), Right(xuu60000), baf, app(app(ty_Either, bbd), bbe)) -> new_esEs1(xuu31100000, xuu60000, bbd, bbe) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs1(Right(xuu31100000), Right(xuu60000), baf, app(ty_[], bbf)) -> new_esEs2(xuu31100000, xuu60000, bbf) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs1(Left(xuu31100000), Left(xuu60000), app(ty_[], bad), hf) -> new_esEs2(xuu31100000, xuu60000, bad) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs1(Left(xuu31100000), Left(xuu60000), app(app(app(ty_@3, hg), hh), baa), hf) -> new_esEs0(xuu31100000, xuu60000, hg, hh, baa) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs1(Right(xuu31100000), Right(xuu60000), baf, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs0(xuu31100000, xuu60000, bba, bbb, bbc) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs1(Left(xuu31100000), Left(xuu60000), app(app(ty_@2, hd), he), hf) -> new_esEs(xuu31100000, xuu60000, hd, he) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs1(Right(xuu31100000), Right(xuu60000), baf, app(app(ty_@2, bag), bah)) -> new_esEs(xuu31100000, xuu60000, bag, bah) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), eh, app(ty_Maybe, gb), dh) -> new_esEs3(xuu31100001, xuu60001, gb) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), eh, dg, app(ty_Maybe, hc)) -> new_esEs3(xuu31100002, xuu60002, hc) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), app(ty_Maybe, eg), dg, dh) -> new_esEs3(xuu31100000, xuu60000, eg) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), cb, app(ty_Maybe, dd)) -> new_esEs3(xuu31100001, xuu60001, dd) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), app(ty_Maybe, ca), bb) -> new_esEs3(xuu31100000, xuu60000, ca) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), app(app(ty_Either, ed), ee), dg, dh) -> new_esEs1(xuu31100000, xuu60000, ed, ee) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), eh, app(app(ty_Either, fg), fh), dh) -> new_esEs1(xuu31100001, xuu60001, fg, fh) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), eh, dg, app(app(ty_Either, gh), ha)) -> new_esEs1(xuu31100002, xuu60002, gh, ha) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), cb, app(app(ty_Either, da), db)) -> new_esEs1(xuu31100001, xuu60001, da, db) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), app(app(ty_Either, bf), bg), bb) -> new_esEs1(xuu31100000, xuu60000, bf, bg) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs2(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), bda) -> new_esEs2(xuu31100001, xuu60001, bda) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs2(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), app(ty_[], bcg)) -> new_esEs2(xuu31100000, xuu60000, bcg) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), eh, dg, app(ty_[], hb)) -> new_esEs2(xuu31100002, xuu60002, hb) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), eh, app(ty_[], ga), dh) -> new_esEs2(xuu31100001, xuu60001, ga) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), app(ty_[], ef), dg, dh) -> new_esEs2(xuu31100000, xuu60000, ef) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), cb, app(ty_[], dc)) -> new_esEs2(xuu31100001, xuu60001, dc) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), app(ty_[], bh), bb) -> new_esEs2(xuu31100000, xuu60000, bh) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), eh, app(app(app(ty_@3, fc), fd), ff), dh) -> new_esEs0(xuu31100001, xuu60001, fc, fd, ff) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), eh, dg, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs0(xuu31100002, xuu60002, ge, gf, gg) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), app(app(app(ty_@3, ea), eb), ec), dg, dh) -> new_esEs0(xuu31100000, xuu60000, ea, eb, ec) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), app(app(ty_@2, de), df), dg, dh) -> new_esEs(xuu31100000, xuu60000, de, df) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), eh, app(app(ty_@2, fa), fb), dh) -> new_esEs(xuu31100001, xuu60001, fa, fb) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs0(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), eh, dg, app(app(ty_@2, gc), gd)) -> new_esEs(xuu31100002, xuu60002, gc, gd) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), cb, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs0(xuu31100001, xuu60001, ce, cf, cg) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), app(app(app(ty_@3, bc), bd), be), bb) -> new_esEs0(xuu31100000, xuu60000, bc, bd, be) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), app(app(ty_@2, h), ba), bb) -> new_esEs(xuu31100000, xuu60000, h, ba) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.69/9.80 25.69/9.80 25.69/9.80 *new_esEs(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), cb, app(app(ty_@2, cc), cd)) -> new_esEs(xuu31100001, xuu60001, cc, cd) 25.69/9.80 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.69/9.80 25.69/9.80 25.69/9.80 ---------------------------------------- 25.69/9.80 25.69/9.80 (51) 25.69/9.80 YES 25.83/11.57 EOF