/export/starexec/sandbox/solver/bin/starexec_run_standard /export/starexec/sandbox/benchmark/theBenchmark.hs /export/starexec/sandbox/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox/benchmark/theBenchmark.hs # AProVE Commit ID: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 0 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 0 ms] (12) HASKELL (13) NumRed [SOUND, 0 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] (22) YES (23) QDP (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] (25) YES (26) QDP (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] (28) YES (29) QDP (30) QDPSizeChangeProof [EQUIVALENT, 147 ms] (31) YES (32) QDP (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] (34) YES (35) QDP (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] (37) YES (38) QDP (39) QDPSizeChangeProof [EQUIVALENT, 0 ms] (40) YES (41) QDP (42) QDPSizeChangeProof [EQUIVALENT, 0 ms] (43) YES ---------------------------------------- (0) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; 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 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { 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); 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); 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; 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); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (1) LR (EQUIVALENT) Lambda Reductions: The following Lambda expression "\keyeltrest->(key,elt) : rest" is transformed to "fmToList0 key elt rest = (key,elt) : rest; " ---------------------------------------- (2) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; 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 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { 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); 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); 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; 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); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (3) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " The following Case expression "case fm_r of { EmptyFM -> True; Branch right_key _ _ _ _ -> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key} " is transformed to "right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; " The following Case expression "case fm_l of { EmptyFM -> True; Branch left_key _ _ _ _ -> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key} " is transformed to "left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; " The following Case expression "case fm_R of { Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} " is transformed to "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; " The following Case expression "case fm_L of { Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} " is transformed to "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; " ---------------------------------------- (4) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; 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 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { 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); 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); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; 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; 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); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (5) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (6) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; 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 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { 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); 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); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; 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; 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); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (7) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (8) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; 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 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { 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); 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); 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 | otherwise = double_L fm_L fm_R; 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 | otherwise = double_R fm_L fm_R; 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; 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); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (9) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal0 x True = `negate` x; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x vzw = gcd'2 x vzw; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x vzw = x; gcd'1 vzx vzy vzz = gcd'0 vzy vzz; " "gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; gcd'2 wuu wuv = gcd'0 wuu wuv; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd wuw wux = gcd3 wuw wux; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x vzw = gcd'2 x vzw; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vzw = x; gcd'1 vzx vzy vzz = gcd'0 vzy vzz; ; gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; gcd'2 wuu wuv = gcd'0 wuu wuv; } ; " "gcd1 True wuw wux = error []; gcd1 wuy wuz wvu = gcd0 wuz wvu; " "gcd2 True wuw wux = gcd1 (wux == 0) wuw wux; gcd2 wvv wvw wvx = gcd0 wvw wvx; " "gcd3 wuw wux = gcd2 (wuw == 0) wuw wux; gcd3 wvy wvz = gcd0 wvy wvz; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare0 x y True = GT; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "addToFM_C combiner EmptyFM key elt = unitFM key elt; 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; " is transformed to "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 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; " "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; " "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; 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); " "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); 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; " "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); " "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; " The following Function with conditions "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; " is transformed to "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); " "mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; " "mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 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; " "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); " The following Function with conditions "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; " is transformed to "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); " "mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; " "mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 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; " "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); " The following Function with conditions "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 { 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); ; 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); ; 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; ; 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; ; 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; ; 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); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } ; " is transformed to "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; " "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 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); ; 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); ; 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); ; mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 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; ; 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); ; 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); ; mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 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; ; 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); ; mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; ; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; ; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); ; mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); ; 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; ; 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); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } ; " ---------------------------------------- (10) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 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; 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; 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); 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; 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; 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); 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); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 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); 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); 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); mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 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; 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); 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); mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 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; 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); mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 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; 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); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (11) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x vzw = gcd'2 x vzw; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vzw = x; gcd'1 vzx vzy vzz = gcd'0 vzy vzz; ; gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; gcd'2 wuu wuv = gcd'0 wuu wuv; } " are unpacked to the following functions on top level "gcd0Gcd' x vzw = gcd0Gcd'2 x vzw; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'2 x vzw = gcd0Gcd'1 (vzw == 0) x vzw; gcd0Gcd'2 wuu wuv = gcd0Gcd'0 wuu wuv; " "gcd0Gcd'1 True x vzw = x; gcd0Gcd'1 vzx vzy vzz = gcd0Gcd'0 vzy vzz; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2Reduce0 wxw wxx x y True = x `quot` reduce2D wxw wxx :% (y `quot` reduce2D wxw wxx); " "reduce2D wxw wxx = gcd wxw wxx; " "reduce2Reduce1 wxw wxx x y True = error []; reduce2Reduce1 wxw wxx x y False = reduce2Reduce0 wxw wxx x y otherwise; " The bindings of the following Let/Where expression "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 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); ; 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); ; 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); ; mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 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; ; 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); ; 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); ; mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 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; ; 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); ; mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; ; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; ; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); ; mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); ; 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; ; 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); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } " are unpacked to the following functions on top level "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); " "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); " "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); " "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; 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; " "mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 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); " "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; " "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); " "mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; " "mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; " "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); " "mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; " "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; " "mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; " "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; 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; " "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; " "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); " "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); " "mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 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); " The bindings of the following Let/Where expression "foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; } " are unpacked to the following functions on top level "addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; " The bindings of the following Let/Where expression "let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; ; left_ok = left_ok0 fm_l key fm_l; ; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; ; left_size = sizeFM fm_l; ; right_ok = right_ok0 fm_r key fm_r; ; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; ; right_size = sizeFM fm_r; ; unbox x = x; } " are unpacked to the following functions on top level "mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyy wyx; " "mkBranchBalance_ok wyx wyy wyz = True; " "mkBranchUnbox wyx wyy wyz x = x; " "mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyz wyy wyz; " "mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; " "mkBranchRight_size wyx wyy wyz = sizeFM wyz; " "mkBranchLeft_size wyx wyy wyz = sizeFM wyx; " "mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; " The bindings of the following Let/Where expression "let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result" are unpacked to the following functions on top level "mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzw wzx; " The bindings of the following Let/Where expression "let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key" are unpacked to the following functions on top level "mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); " The bindings of the following Let/Where expression "let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key" are unpacked to the following functions on top level "mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 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; 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; 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); 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; 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; 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); 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); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 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); 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); 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); 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); 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; 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; 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; 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); 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); 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; 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; 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; 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); mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 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); mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 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); 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; 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); mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; mkBranchBalance_ok wyx wyy wyz = True; mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyy wyx; mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); mkBranchLeft_size wyx wyy wyz = sizeFM wyx; mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzw wzx; mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyz wyy wyz; mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); mkBranchRight_size wyx wyy wyz = sizeFM wyz; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox wyx wyy wyz x = x; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (13) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (14) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 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; 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; 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); 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; 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; 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); 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); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 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))); 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); 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); 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); 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; 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; 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; 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); 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); 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; 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; 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; 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); mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 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); mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 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); 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; 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); mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; mkBranchBalance_ok wyx wyy wyz = True; mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyy wyx; mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); mkBranchLeft_size wyx wyy wyz = sizeFM wyx; 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)) wzw wzx; mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyz wyy wyz; mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); mkBranchRight_size wyx wyy wyz = sizeFM wyz; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox wyx wyy wyz x = x; sIZE_RATIO :: Int; sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = Pos Zero; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (15) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="FiniteMap.addListToFM_C",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.addListToFM_C xuu3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="FiniteMap.addListToFM_C xuu3 xuu4",fontsize=16,color="grey",shape="box"];4 -> 5[label="",style="dashed", color="grey", weight=3]; 5[label="FiniteMap.addListToFM_C xuu3 xuu4 xuu5",fontsize=16,color="black",shape="triangle"];5 -> 6[label="",style="solid", color="black", weight=3]; 6[label="foldl (FiniteMap.addListToFM_CAdd xuu3) xuu4 xuu5",fontsize=16,color="burlywood",shape="triangle"];3208[label="xuu5/xuu50 : xuu51",fontsize=10,color="white",style="solid",shape="box"];6 -> 3208[label="",style="solid", color="burlywood", weight=9]; 3208 -> 7[label="",style="solid", color="burlywood", weight=3]; 3209[label="xuu5/[]",fontsize=10,color="white",style="solid",shape="box"];6 -> 3209[label="",style="solid", color="burlywood", weight=9]; 3209 -> 8[label="",style="solid", color="burlywood", weight=3]; 7[label="foldl (FiniteMap.addListToFM_CAdd xuu3) xuu4 (xuu50 : xuu51)",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 8[label="foldl (FiniteMap.addListToFM_CAdd xuu3) xuu4 []",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 9 -> 6[label="",style="dashed", color="red", weight=0]; 9[label="foldl (FiniteMap.addListToFM_CAdd xuu3) (FiniteMap.addListToFM_CAdd xuu3 xuu4 xuu50) xuu51",fontsize=16,color="magenta"];9 -> 11[label="",style="dashed", color="magenta", weight=3]; 9 -> 12[label="",style="dashed", color="magenta", weight=3]; 10[label="xuu4",fontsize=16,color="green",shape="box"];11[label="FiniteMap.addListToFM_CAdd xuu3 xuu4 xuu50",fontsize=16,color="burlywood",shape="box"];3210[label="xuu50/(xuu500,xuu501)",fontsize=10,color="white",style="solid",shape="box"];11 -> 3210[label="",style="solid", color="burlywood", weight=9]; 3210 -> 13[label="",style="solid", color="burlywood", weight=3]; 12[label="xuu51",fontsize=16,color="green",shape="box"];13[label="FiniteMap.addListToFM_CAdd xuu3 xuu4 (xuu500,xuu501)",fontsize=16,color="black",shape="box"];13 -> 14[label="",style="solid", color="black", weight=3]; 14[label="FiniteMap.addToFM_C xuu3 xuu4 xuu500 xuu501",fontsize=16,color="burlywood",shape="triangle"];3211[label="xuu4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];14 -> 3211[label="",style="solid", color="burlywood", weight=9]; 3211 -> 15[label="",style="solid", color="burlywood", weight=3]; 3212[label="xuu4/FiniteMap.Branch xuu40 xuu41 xuu42 xuu43 xuu44",fontsize=10,color="white",style="solid",shape="box"];14 -> 3212[label="",style="solid", color="burlywood", weight=9]; 3212 -> 16[label="",style="solid", color="burlywood", weight=3]; 15[label="FiniteMap.addToFM_C xuu3 FiniteMap.EmptyFM xuu500 xuu501",fontsize=16,color="black",shape="box"];15 -> 17[label="",style="solid", color="black", weight=3]; 16[label="FiniteMap.addToFM_C xuu3 (FiniteMap.Branch xuu40 xuu41 xuu42 xuu43 xuu44) xuu500 xuu501",fontsize=16,color="black",shape="box"];16 -> 18[label="",style="solid", color="black", weight=3]; 17[label="FiniteMap.addToFM_C4 xuu3 FiniteMap.EmptyFM xuu500 xuu501",fontsize=16,color="black",shape="box"];17 -> 19[label="",style="solid", color="black", weight=3]; 18[label="FiniteMap.addToFM_C3 xuu3 (FiniteMap.Branch xuu40 xuu41 xuu42 xuu43 xuu44) xuu500 xuu501",fontsize=16,color="black",shape="box"];18 -> 20[label="",style="solid", color="black", weight=3]; 19[label="FiniteMap.unitFM xuu500 xuu501",fontsize=16,color="black",shape="box"];19 -> 21[label="",style="solid", color="black", weight=3]; 20 -> 22[label="",style="dashed", color="red", weight=0]; 20[label="FiniteMap.addToFM_C2 xuu3 xuu40 xuu41 xuu42 xuu43 xuu44 xuu500 xuu501 (xuu500 < xuu40)",fontsize=16,color="magenta"];20 -> 23[label="",style="dashed", color="magenta", weight=3]; 20 -> 24[label="",style="dashed", color="magenta", weight=3]; 20 -> 25[label="",style="dashed", color="magenta", weight=3]; 20 -> 26[label="",style="dashed", color="magenta", weight=3]; 20 -> 27[label="",style="dashed", color="magenta", weight=3]; 20 -> 28[label="",style="dashed", color="magenta", weight=3]; 20 -> 29[label="",style="dashed", color="magenta", weight=3]; 20 -> 30[label="",style="dashed", color="magenta", weight=3]; 20 -> 31[label="",style="dashed", color="magenta", weight=3]; 21[label="FiniteMap.Branch xuu500 xuu501 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];21 -> 32[label="",style="dashed", color="green", weight=3]; 21 -> 33[label="",style="dashed", color="green", weight=3]; 23[label="xuu42",fontsize=16,color="green",shape="box"];24[label="xuu40",fontsize=16,color="green",shape="box"];25[label="xuu501",fontsize=16,color="green",shape="box"];26[label="xuu3",fontsize=16,color="green",shape="box"];27[label="xuu41",fontsize=16,color="green",shape="box"];28[label="xuu43",fontsize=16,color="green",shape="box"];29[label="xuu500",fontsize=16,color="green",shape="box"];30[label="xuu44",fontsize=16,color="green",shape="box"];31[label="xuu500 < xuu40",fontsize=16,color="blue",shape="box"];3213[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3213[label="",style="solid", color="blue", weight=9]; 3213 -> 34[label="",style="solid", color="blue", weight=3]; 3214[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3214[label="",style="solid", color="blue", weight=9]; 3214 -> 35[label="",style="solid", color="blue", weight=3]; 3215[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3215[label="",style="solid", color="blue", weight=9]; 3215 -> 36[label="",style="solid", color="blue", weight=3]; 3216[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3216[label="",style="solid", color="blue", weight=9]; 3216 -> 37[label="",style="solid", color="blue", weight=3]; 3217[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3217[label="",style="solid", color="blue", weight=9]; 3217 -> 38[label="",style="solid", color="blue", weight=3]; 3218[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3218[label="",style="solid", color="blue", weight=9]; 3218 -> 39[label="",style="solid", color="blue", weight=3]; 3219[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3219[label="",style="solid", color="blue", weight=9]; 3219 -> 40[label="",style="solid", color="blue", weight=3]; 3220[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3220[label="",style="solid", color="blue", weight=9]; 3220 -> 41[label="",style="solid", color="blue", weight=3]; 3221[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3221[label="",style="solid", color="blue", weight=9]; 3221 -> 42[label="",style="solid", color="blue", weight=3]; 3222[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3222[label="",style="solid", color="blue", weight=9]; 3222 -> 43[label="",style="solid", color="blue", weight=3]; 3223[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3223[label="",style="solid", color="blue", weight=9]; 3223 -> 44[label="",style="solid", color="blue", weight=3]; 3224[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3224[label="",style="solid", color="blue", weight=9]; 3224 -> 45[label="",style="solid", color="blue", weight=3]; 3225[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3225[label="",style="solid", color="blue", weight=9]; 3225 -> 46[label="",style="solid", color="blue", weight=3]; 3226[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];31 -> 3226[label="",style="solid", color="blue", weight=9]; 3226 -> 47[label="",style="solid", color="blue", weight=3]; 22[label="FiniteMap.addToFM_C2 xuu16 xuu17 xuu18 xuu19 xuu20 xuu21 xuu22 xuu23 xuu24",fontsize=16,color="burlywood",shape="triangle"];3227[label="xuu24/False",fontsize=10,color="white",style="solid",shape="box"];22 -> 3227[label="",style="solid", color="burlywood", weight=9]; 3227 -> 48[label="",style="solid", color="burlywood", weight=3]; 3228[label="xuu24/True",fontsize=10,color="white",style="solid",shape="box"];22 -> 3228[label="",style="solid", color="burlywood", weight=9]; 3228 -> 49[label="",style="solid", color="burlywood", weight=3]; 32[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];32 -> 50[label="",style="solid", color="black", weight=3]; 33 -> 32[label="",style="dashed", color="red", weight=0]; 33[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];34[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];34 -> 51[label="",style="solid", color="black", weight=3]; 35[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];35 -> 52[label="",style="solid", color="black", weight=3]; 36[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];36 -> 53[label="",style="solid", color="black", weight=3]; 37[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];37 -> 54[label="",style="solid", color="black", weight=3]; 38[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];38 -> 55[label="",style="solid", color="black", weight=3]; 39[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];39 -> 56[label="",style="solid", color="black", weight=3]; 40[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];40 -> 57[label="",style="solid", color="black", weight=3]; 41[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];41 -> 58[label="",style="solid", color="black", weight=3]; 42[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];42 -> 59[label="",style="solid", color="black", weight=3]; 43[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];43 -> 60[label="",style="solid", color="black", weight=3]; 44[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];44 -> 61[label="",style="solid", color="black", weight=3]; 45[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];45 -> 62[label="",style="solid", color="black", weight=3]; 46[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];46 -> 63[label="",style="solid", color="black", weight=3]; 47[label="xuu500 < xuu40",fontsize=16,color="black",shape="triangle"];47 -> 64[label="",style="solid", color="black", weight=3]; 48[label="FiniteMap.addToFM_C2 xuu16 xuu17 xuu18 xuu19 xuu20 xuu21 xuu22 xuu23 False",fontsize=16,color="black",shape="box"];48 -> 65[label="",style="solid", color="black", weight=3]; 49[label="FiniteMap.addToFM_C2 xuu16 xuu17 xuu18 xuu19 xuu20 xuu21 xuu22 xuu23 True",fontsize=16,color="black",shape="box"];49 -> 66[label="",style="solid", color="black", weight=3]; 50[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];51 -> 192[label="",style="dashed", color="red", weight=0]; 51[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];51 -> 193[label="",style="dashed", color="magenta", weight=3]; 52 -> 192[label="",style="dashed", color="red", weight=0]; 52[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];52 -> 194[label="",style="dashed", color="magenta", weight=3]; 53 -> 192[label="",style="dashed", color="red", weight=0]; 53[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];53 -> 195[label="",style="dashed", color="magenta", weight=3]; 54 -> 192[label="",style="dashed", color="red", weight=0]; 54[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];54 -> 196[label="",style="dashed", color="magenta", weight=3]; 55 -> 192[label="",style="dashed", color="red", weight=0]; 55[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];55 -> 197[label="",style="dashed", color="magenta", weight=3]; 56 -> 192[label="",style="dashed", color="red", weight=0]; 56[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];56 -> 198[label="",style="dashed", color="magenta", weight=3]; 57 -> 192[label="",style="dashed", color="red", weight=0]; 57[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];57 -> 199[label="",style="dashed", color="magenta", weight=3]; 58 -> 192[label="",style="dashed", color="red", weight=0]; 58[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];58 -> 200[label="",style="dashed", color="magenta", weight=3]; 59 -> 192[label="",style="dashed", color="red", weight=0]; 59[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];59 -> 201[label="",style="dashed", color="magenta", weight=3]; 60 -> 192[label="",style="dashed", color="red", weight=0]; 60[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];60 -> 202[label="",style="dashed", color="magenta", weight=3]; 61 -> 192[label="",style="dashed", color="red", weight=0]; 61[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];61 -> 203[label="",style="dashed", color="magenta", weight=3]; 62 -> 192[label="",style="dashed", color="red", weight=0]; 62[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];62 -> 204[label="",style="dashed", color="magenta", weight=3]; 63 -> 192[label="",style="dashed", color="red", weight=0]; 63[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];63 -> 205[label="",style="dashed", color="magenta", weight=3]; 64 -> 192[label="",style="dashed", color="red", weight=0]; 64[label="compare xuu500 xuu40 == LT",fontsize=16,color="magenta"];64 -> 206[label="",style="dashed", color="magenta", weight=3]; 65 -> 82[label="",style="dashed", color="red", weight=0]; 65[label="FiniteMap.addToFM_C1 xuu16 xuu17 xuu18 xuu19 xuu20 xuu21 xuu22 xuu23 (xuu22 > xuu17)",fontsize=16,color="magenta"];65 -> 83[label="",style="dashed", color="magenta", weight=3]; 65 -> 84[label="",style="dashed", color="magenta", weight=3]; 65 -> 85[label="",style="dashed", color="magenta", weight=3]; 65 -> 86[label="",style="dashed", color="magenta", weight=3]; 65 -> 87[label="",style="dashed", color="magenta", weight=3]; 65 -> 88[label="",style="dashed", color="magenta", weight=3]; 65 -> 89[label="",style="dashed", color="magenta", weight=3]; 65 -> 90[label="",style="dashed", color="magenta", weight=3]; 65 -> 91[label="",style="dashed", color="magenta", weight=3]; 66 -> 92[label="",style="dashed", color="red", weight=0]; 66[label="FiniteMap.mkBalBranch xuu17 xuu18 (FiniteMap.addToFM_C xuu16 xuu20 xuu22 xuu23) xuu21",fontsize=16,color="magenta"];66 -> 93[label="",style="dashed", color="magenta", weight=3]; 193[label="compare xuu500 xuu40",fontsize=16,color="burlywood",shape="triangle"];3229[label="xuu500/xuu5000 : xuu5001",fontsize=10,color="white",style="solid",shape="box"];193 -> 3229[label="",style="solid", color="burlywood", weight=9]; 3229 -> 231[label="",style="solid", color="burlywood", weight=3]; 3230[label="xuu500/[]",fontsize=10,color="white",style="solid",shape="box"];193 -> 3230[label="",style="solid", color="burlywood", weight=9]; 3230 -> 232[label="",style="solid", color="burlywood", weight=3]; 192[label="xuu47 == LT",fontsize=16,color="burlywood",shape="triangle"];3231[label="xuu47/LT",fontsize=10,color="white",style="solid",shape="box"];192 -> 3231[label="",style="solid", color="burlywood", weight=9]; 3231 -> 233[label="",style="solid", color="burlywood", weight=3]; 3232[label="xuu47/EQ",fontsize=10,color="white",style="solid",shape="box"];192 -> 3232[label="",style="solid", color="burlywood", weight=9]; 3232 -> 234[label="",style="solid", color="burlywood", weight=3]; 3233[label="xuu47/GT",fontsize=10,color="white",style="solid",shape="box"];192 -> 3233[label="",style="solid", color="burlywood", weight=9]; 3233 -> 235[label="",style="solid", color="burlywood", weight=3]; 194[label="compare xuu500 xuu40",fontsize=16,color="burlywood",shape="triangle"];3234[label="xuu500/()",fontsize=10,color="white",style="solid",shape="box"];194 -> 3234[label="",style="solid", color="burlywood", weight=9]; 3234 -> 236[label="",style="solid", color="burlywood", weight=3]; 195[label="compare xuu500 xuu40",fontsize=16,color="black",shape="triangle"];195 -> 237[label="",style="solid", color="black", weight=3]; 196[label="compare xuu500 xuu40",fontsize=16,color="black",shape="triangle"];196 -> 238[label="",style="solid", color="black", weight=3]; 197[label="compare xuu500 xuu40",fontsize=16,color="black",shape="triangle"];197 -> 239[label="",style="solid", color="black", weight=3]; 198[label="compare xuu500 xuu40",fontsize=16,color="burlywood",shape="triangle"];3235[label="xuu500/xuu5000 :% xuu5001",fontsize=10,color="white",style="solid",shape="box"];198 -> 3235[label="",style="solid", color="burlywood", weight=9]; 3235 -> 240[label="",style="solid", color="burlywood", weight=3]; 199[label="compare xuu500 xuu40",fontsize=16,color="black",shape="triangle"];199 -> 241[label="",style="solid", color="black", weight=3]; 200[label="compare xuu500 xuu40",fontsize=16,color="black",shape="triangle"];200 -> 242[label="",style="solid", color="black", weight=3]; 201[label="compare xuu500 xuu40",fontsize=16,color="black",shape="triangle"];201 -> 243[label="",style="solid", color="black", weight=3]; 202[label="compare xuu500 xuu40",fontsize=16,color="black",shape="triangle"];202 -> 244[label="",style="solid", color="black", weight=3]; 203[label="compare xuu500 xuu40",fontsize=16,color="black",shape="triangle"];203 -> 245[label="",style="solid", color="black", weight=3]; 204[label="compare xuu500 xuu40",fontsize=16,color="burlywood",shape="triangle"];3236[label="xuu500/Integer xuu5000",fontsize=10,color="white",style="solid",shape="box"];204 -> 3236[label="",style="solid", color="burlywood", weight=9]; 3236 -> 246[label="",style="solid", color="burlywood", weight=3]; 205[label="compare xuu500 xuu40",fontsize=16,color="black",shape="triangle"];205 -> 247[label="",style="solid", color="black", weight=3]; 206[label="compare xuu500 xuu40",fontsize=16,color="black",shape="triangle"];206 -> 248[label="",style="solid", color="black", weight=3]; 83[label="xuu23",fontsize=16,color="green",shape="box"];84[label="xuu20",fontsize=16,color="green",shape="box"];85[label="xuu22 > xuu17",fontsize=16,color="blue",shape="box"];3237[label="> :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3237[label="",style="solid", color="blue", weight=9]; 3237 -> 112[label="",style="solid", color="blue", weight=3]; 3238[label="> :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3238[label="",style="solid", color="blue", weight=9]; 3238 -> 113[label="",style="solid", color="blue", weight=3]; 3239[label="> :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3239[label="",style="solid", color="blue", weight=9]; 3239 -> 114[label="",style="solid", color="blue", weight=3]; 3240[label="> :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3240[label="",style="solid", color="blue", weight=9]; 3240 -> 115[label="",style="solid", color="blue", weight=3]; 3241[label="> :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3241[label="",style="solid", color="blue", weight=9]; 3241 -> 116[label="",style="solid", color="blue", weight=3]; 3242[label="> :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3242[label="",style="solid", color="blue", weight=9]; 3242 -> 117[label="",style="solid", color="blue", weight=3]; 3243[label="> :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3243[label="",style="solid", color="blue", weight=9]; 3243 -> 118[label="",style="solid", color="blue", weight=3]; 3244[label="> :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3244[label="",style="solid", color="blue", weight=9]; 3244 -> 119[label="",style="solid", color="blue", weight=3]; 3245[label="> :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3245[label="",style="solid", color="blue", weight=9]; 3245 -> 120[label="",style="solid", color="blue", weight=3]; 3246[label="> :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3246[label="",style="solid", color="blue", weight=9]; 3246 -> 121[label="",style="solid", color="blue", weight=3]; 3247[label="> :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3247[label="",style="solid", color="blue", weight=9]; 3247 -> 122[label="",style="solid", color="blue", weight=3]; 3248[label="> :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3248[label="",style="solid", color="blue", weight=9]; 3248 -> 123[label="",style="solid", color="blue", weight=3]; 3249[label="> :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3249[label="",style="solid", color="blue", weight=9]; 3249 -> 124[label="",style="solid", color="blue", weight=3]; 3250[label="> :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];85 -> 3250[label="",style="solid", color="blue", weight=9]; 3250 -> 125[label="",style="solid", color="blue", weight=3]; 86[label="xuu17",fontsize=16,color="green",shape="box"];87[label="xuu16",fontsize=16,color="green",shape="box"];88[label="xuu18",fontsize=16,color="green",shape="box"];89[label="xuu19",fontsize=16,color="green",shape="box"];90[label="xuu22",fontsize=16,color="green",shape="box"];91[label="xuu21",fontsize=16,color="green",shape="box"];82[label="FiniteMap.addToFM_C1 xuu35 xuu36 xuu37 xuu38 xuu39 xuu40 xuu41 xuu42 xuu43",fontsize=16,color="burlywood",shape="triangle"];3251[label="xuu43/False",fontsize=10,color="white",style="solid",shape="box"];82 -> 3251[label="",style="solid", color="burlywood", weight=9]; 3251 -> 126[label="",style="solid", color="burlywood", weight=3]; 3252[label="xuu43/True",fontsize=10,color="white",style="solid",shape="box"];82 -> 3252[label="",style="solid", color="burlywood", weight=9]; 3252 -> 127[label="",style="solid", color="burlywood", weight=3]; 93 -> 14[label="",style="dashed", color="red", weight=0]; 93[label="FiniteMap.addToFM_C xuu16 xuu20 xuu22 xuu23",fontsize=16,color="magenta"];93 -> 128[label="",style="dashed", color="magenta", weight=3]; 93 -> 129[label="",style="dashed", color="magenta", weight=3]; 93 -> 130[label="",style="dashed", color="magenta", weight=3]; 93 -> 131[label="",style="dashed", color="magenta", weight=3]; 92[label="FiniteMap.mkBalBranch xuu17 xuu18 xuu44 xuu21",fontsize=16,color="black",shape="triangle"];92 -> 132[label="",style="solid", color="black", weight=3]; 231[label="compare (xuu5000 : xuu5001) xuu40",fontsize=16,color="burlywood",shape="box"];3253[label="xuu40/xuu400 : xuu401",fontsize=10,color="white",style="solid",shape="box"];231 -> 3253[label="",style="solid", color="burlywood", weight=9]; 3253 -> 264[label="",style="solid", color="burlywood", weight=3]; 3254[label="xuu40/[]",fontsize=10,color="white",style="solid",shape="box"];231 -> 3254[label="",style="solid", color="burlywood", weight=9]; 3254 -> 265[label="",style="solid", color="burlywood", weight=3]; 232[label="compare [] xuu40",fontsize=16,color="burlywood",shape="box"];3255[label="xuu40/xuu400 : xuu401",fontsize=10,color="white",style="solid",shape="box"];232 -> 3255[label="",style="solid", color="burlywood", weight=9]; 3255 -> 266[label="",style="solid", color="burlywood", weight=3]; 3256[label="xuu40/[]",fontsize=10,color="white",style="solid",shape="box"];232 -> 3256[label="",style="solid", color="burlywood", weight=9]; 3256 -> 267[label="",style="solid", color="burlywood", weight=3]; 233[label="LT == LT",fontsize=16,color="black",shape="box"];233 -> 268[label="",style="solid", color="black", weight=3]; 234[label="EQ == LT",fontsize=16,color="black",shape="box"];234 -> 269[label="",style="solid", color="black", weight=3]; 235[label="GT == LT",fontsize=16,color="black",shape="box"];235 -> 270[label="",style="solid", color="black", weight=3]; 236[label="compare () xuu40",fontsize=16,color="burlywood",shape="box"];3257[label="xuu40/()",fontsize=10,color="white",style="solid",shape="box"];236 -> 3257[label="",style="solid", color="burlywood", weight=9]; 3257 -> 271[label="",style="solid", color="burlywood", weight=3]; 237[label="primCmpInt xuu500 xuu40",fontsize=16,color="burlywood",shape="triangle"];3258[label="xuu500/Pos xuu5000",fontsize=10,color="white",style="solid",shape="box"];237 -> 3258[label="",style="solid", color="burlywood", weight=9]; 3258 -> 272[label="",style="solid", color="burlywood", weight=3]; 3259[label="xuu500/Neg xuu5000",fontsize=10,color="white",style="solid",shape="box"];237 -> 3259[label="",style="solid", color="burlywood", weight=9]; 3259 -> 273[label="",style="solid", color="burlywood", weight=3]; 238[label="compare3 xuu500 xuu40",fontsize=16,color="black",shape="box"];238 -> 274[label="",style="solid", color="black", weight=3]; 239[label="primCmpFloat xuu500 xuu40",fontsize=16,color="burlywood",shape="box"];3260[label="xuu500/Float xuu5000 xuu5001",fontsize=10,color="white",style="solid",shape="box"];239 -> 3260[label="",style="solid", color="burlywood", weight=9]; 3260 -> 275[label="",style="solid", color="burlywood", weight=3]; 240[label="compare (xuu5000 :% xuu5001) xuu40",fontsize=16,color="burlywood",shape="box"];3261[label="xuu40/xuu400 :% xuu401",fontsize=10,color="white",style="solid",shape="box"];240 -> 3261[label="",style="solid", color="burlywood", weight=9]; 3261 -> 276[label="",style="solid", color="burlywood", weight=3]; 241[label="primCmpDouble xuu500 xuu40",fontsize=16,color="burlywood",shape="box"];3262[label="xuu500/Double xuu5000 xuu5001",fontsize=10,color="white",style="solid",shape="box"];241 -> 3262[label="",style="solid", color="burlywood", weight=9]; 3262 -> 277[label="",style="solid", color="burlywood", weight=3]; 242[label="compare3 xuu500 xuu40",fontsize=16,color="black",shape="box"];242 -> 278[label="",style="solid", color="black", weight=3]; 243[label="primCmpChar xuu500 xuu40",fontsize=16,color="burlywood",shape="box"];3263[label="xuu500/Char xuu5000",fontsize=10,color="white",style="solid",shape="box"];243 -> 3263[label="",style="solid", color="burlywood", weight=9]; 3263 -> 279[label="",style="solid", color="burlywood", weight=3]; 244[label="compare3 xuu500 xuu40",fontsize=16,color="black",shape="box"];244 -> 280[label="",style="solid", color="black", weight=3]; 245[label="compare3 xuu500 xuu40",fontsize=16,color="black",shape="box"];245 -> 281[label="",style="solid", color="black", weight=3]; 246[label="compare (Integer xuu5000) xuu40",fontsize=16,color="burlywood",shape="box"];3264[label="xuu40/Integer xuu400",fontsize=10,color="white",style="solid",shape="box"];246 -> 3264[label="",style="solid", color="burlywood", weight=9]; 3264 -> 282[label="",style="solid", color="burlywood", weight=3]; 247[label="compare3 xuu500 xuu40",fontsize=16,color="black",shape="box"];247 -> 283[label="",style="solid", color="black", weight=3]; 248[label="compare3 xuu500 xuu40",fontsize=16,color="black",shape="box"];248 -> 284[label="",style="solid", color="black", weight=3]; 112[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];112 -> 160[label="",style="solid", color="black", weight=3]; 113[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];113 -> 161[label="",style="solid", color="black", weight=3]; 114[label="xuu22 > xuu17",fontsize=16,color="black",shape="triangle"];114 -> 162[label="",style="solid", color="black", weight=3]; 115[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];115 -> 163[label="",style="solid", color="black", weight=3]; 116[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];116 -> 164[label="",style="solid", color="black", weight=3]; 117[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];117 -> 165[label="",style="solid", color="black", weight=3]; 118[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];118 -> 166[label="",style="solid", color="black", weight=3]; 119[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];119 -> 167[label="",style="solid", color="black", weight=3]; 120[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];120 -> 168[label="",style="solid", color="black", weight=3]; 121[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];121 -> 169[label="",style="solid", color="black", weight=3]; 122[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];122 -> 170[label="",style="solid", color="black", weight=3]; 123[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];123 -> 171[label="",style="solid", color="black", weight=3]; 124[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];124 -> 172[label="",style="solid", color="black", weight=3]; 125[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];125 -> 173[label="",style="solid", color="black", weight=3]; 126[label="FiniteMap.addToFM_C1 xuu35 xuu36 xuu37 xuu38 xuu39 xuu40 xuu41 xuu42 False",fontsize=16,color="black",shape="box"];126 -> 174[label="",style="solid", color="black", weight=3]; 127[label="FiniteMap.addToFM_C1 xuu35 xuu36 xuu37 xuu38 xuu39 xuu40 xuu41 xuu42 True",fontsize=16,color="black",shape="box"];127 -> 175[label="",style="solid", color="black", weight=3]; 128[label="xuu20",fontsize=16,color="green",shape="box"];129[label="xuu16",fontsize=16,color="green",shape="box"];130[label="xuu22",fontsize=16,color="green",shape="box"];131[label="xuu23",fontsize=16,color="green",shape="box"];132[label="FiniteMap.mkBalBranch6 xuu17 xuu18 xuu44 xuu21",fontsize=16,color="black",shape="box"];132 -> 176[label="",style="solid", color="black", weight=3]; 264[label="compare (xuu5000 : xuu5001) (xuu400 : xuu401)",fontsize=16,color="black",shape="box"];264 -> 292[label="",style="solid", color="black", weight=3]; 265[label="compare (xuu5000 : xuu5001) []",fontsize=16,color="black",shape="box"];265 -> 293[label="",style="solid", color="black", weight=3]; 266[label="compare [] (xuu400 : xuu401)",fontsize=16,color="black",shape="box"];266 -> 294[label="",style="solid", color="black", weight=3]; 267[label="compare [] []",fontsize=16,color="black",shape="box"];267 -> 295[label="",style="solid", color="black", weight=3]; 268[label="True",fontsize=16,color="green",shape="box"];269[label="False",fontsize=16,color="green",shape="box"];270[label="False",fontsize=16,color="green",shape="box"];271[label="compare () ()",fontsize=16,color="black",shape="box"];271 -> 296[label="",style="solid", color="black", weight=3]; 272[label="primCmpInt (Pos xuu5000) xuu40",fontsize=16,color="burlywood",shape="box"];3265[label="xuu5000/Succ xuu50000",fontsize=10,color="white",style="solid",shape="box"];272 -> 3265[label="",style="solid", color="burlywood", weight=9]; 3265 -> 297[label="",style="solid", color="burlywood", weight=3]; 3266[label="xuu5000/Zero",fontsize=10,color="white",style="solid",shape="box"];272 -> 3266[label="",style="solid", color="burlywood", weight=9]; 3266 -> 298[label="",style="solid", color="burlywood", weight=3]; 273[label="primCmpInt (Neg xuu5000) xuu40",fontsize=16,color="burlywood",shape="box"];3267[label="xuu5000/Succ xuu50000",fontsize=10,color="white",style="solid",shape="box"];273 -> 3267[label="",style="solid", color="burlywood", weight=9]; 3267 -> 299[label="",style="solid", color="burlywood", weight=3]; 3268[label="xuu5000/Zero",fontsize=10,color="white",style="solid",shape="box"];273 -> 3268[label="",style="solid", color="burlywood", weight=9]; 3268 -> 300[label="",style="solid", color="burlywood", weight=3]; 274[label="compare2 xuu500 xuu40 (xuu500 == xuu40)",fontsize=16,color="burlywood",shape="box"];3269[label="xuu500/(xuu5000,xuu5001,xuu5002)",fontsize=10,color="white",style="solid",shape="box"];274 -> 3269[label="",style="solid", color="burlywood", weight=9]; 3269 -> 301[label="",style="solid", color="burlywood", weight=3]; 275[label="primCmpFloat (Float xuu5000 xuu5001) xuu40",fontsize=16,color="burlywood",shape="box"];3270[label="xuu5001/Pos xuu50010",fontsize=10,color="white",style="solid",shape="box"];275 -> 3270[label="",style="solid", color="burlywood", weight=9]; 3270 -> 302[label="",style="solid", color="burlywood", weight=3]; 3271[label="xuu5001/Neg xuu50010",fontsize=10,color="white",style="solid",shape="box"];275 -> 3271[label="",style="solid", color="burlywood", weight=9]; 3271 -> 303[label="",style="solid", color="burlywood", weight=3]; 276[label="compare (xuu5000 :% xuu5001) (xuu400 :% xuu401)",fontsize=16,color="black",shape="box"];276 -> 304[label="",style="solid", color="black", weight=3]; 277[label="primCmpDouble (Double xuu5000 xuu5001) xuu40",fontsize=16,color="burlywood",shape="box"];3272[label="xuu5001/Pos xuu50010",fontsize=10,color="white",style="solid",shape="box"];277 -> 3272[label="",style="solid", color="burlywood", weight=9]; 3272 -> 305[label="",style="solid", color="burlywood", weight=3]; 3273[label="xuu5001/Neg xuu50010",fontsize=10,color="white",style="solid",shape="box"];277 -> 3273[label="",style="solid", color="burlywood", weight=9]; 3273 -> 306[label="",style="solid", color="burlywood", weight=3]; 278[label="compare2 xuu500 xuu40 (xuu500 == xuu40)",fontsize=16,color="burlywood",shape="box"];3274[label="xuu500/False",fontsize=10,color="white",style="solid",shape="box"];278 -> 3274[label="",style="solid", color="burlywood", weight=9]; 3274 -> 307[label="",style="solid", color="burlywood", weight=3]; 3275[label="xuu500/True",fontsize=10,color="white",style="solid",shape="box"];278 -> 3275[label="",style="solid", color="burlywood", weight=9]; 3275 -> 308[label="",style="solid", color="burlywood", weight=3]; 279[label="primCmpChar (Char xuu5000) xuu40",fontsize=16,color="burlywood",shape="box"];3276[label="xuu40/Char xuu400",fontsize=10,color="white",style="solid",shape="box"];279 -> 3276[label="",style="solid", color="burlywood", weight=9]; 3276 -> 309[label="",style="solid", color="burlywood", weight=3]; 280[label="compare2 xuu500 xuu40 (xuu500 == xuu40)",fontsize=16,color="burlywood",shape="box"];3277[label="xuu500/Left xuu5000",fontsize=10,color="white",style="solid",shape="box"];280 -> 3277[label="",style="solid", color="burlywood", weight=9]; 3277 -> 310[label="",style="solid", color="burlywood", weight=3]; 3278[label="xuu500/Right xuu5000",fontsize=10,color="white",style="solid",shape="box"];280 -> 3278[label="",style="solid", color="burlywood", weight=9]; 3278 -> 311[label="",style="solid", color="burlywood", weight=3]; 281[label="compare2 xuu500 xuu40 (xuu500 == xuu40)",fontsize=16,color="burlywood",shape="box"];3279[label="xuu500/Nothing",fontsize=10,color="white",style="solid",shape="box"];281 -> 3279[label="",style="solid", color="burlywood", weight=9]; 3279 -> 312[label="",style="solid", color="burlywood", weight=3]; 3280[label="xuu500/Just xuu5000",fontsize=10,color="white",style="solid",shape="box"];281 -> 3280[label="",style="solid", color="burlywood", weight=9]; 3280 -> 313[label="",style="solid", color="burlywood", weight=3]; 282[label="compare (Integer xuu5000) (Integer xuu400)",fontsize=16,color="black",shape="box"];282 -> 314[label="",style="solid", color="black", weight=3]; 283[label="compare2 xuu500 xuu40 (xuu500 == xuu40)",fontsize=16,color="burlywood",shape="box"];3281[label="xuu500/(xuu5000,xuu5001)",fontsize=10,color="white",style="solid",shape="box"];283 -> 3281[label="",style="solid", color="burlywood", weight=9]; 3281 -> 315[label="",style="solid", color="burlywood", weight=3]; 284[label="compare2 xuu500 xuu40 (xuu500 == xuu40)",fontsize=16,color="burlywood",shape="box"];3282[label="xuu500/LT",fontsize=10,color="white",style="solid",shape="box"];284 -> 3282[label="",style="solid", color="burlywood", weight=9]; 3282 -> 316[label="",style="solid", color="burlywood", weight=3]; 3283[label="xuu500/EQ",fontsize=10,color="white",style="solid",shape="box"];284 -> 3283[label="",style="solid", color="burlywood", weight=9]; 3283 -> 317[label="",style="solid", color="burlywood", weight=3]; 3284[label="xuu500/GT",fontsize=10,color="white",style="solid",shape="box"];284 -> 3284[label="",style="solid", color="burlywood", weight=9]; 3284 -> 318[label="",style="solid", color="burlywood", weight=3]; 160 -> 249[label="",style="dashed", color="red", weight=0]; 160[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];160 -> 250[label="",style="dashed", color="magenta", weight=3]; 161 -> 249[label="",style="dashed", color="red", weight=0]; 161[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];161 -> 251[label="",style="dashed", color="magenta", weight=3]; 162 -> 249[label="",style="dashed", color="red", weight=0]; 162[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];162 -> 252[label="",style="dashed", color="magenta", weight=3]; 163 -> 249[label="",style="dashed", color="red", weight=0]; 163[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];163 -> 253[label="",style="dashed", color="magenta", weight=3]; 164 -> 249[label="",style="dashed", color="red", weight=0]; 164[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];164 -> 254[label="",style="dashed", color="magenta", weight=3]; 165 -> 249[label="",style="dashed", color="red", weight=0]; 165[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];165 -> 255[label="",style="dashed", color="magenta", weight=3]; 166 -> 249[label="",style="dashed", color="red", weight=0]; 166[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];166 -> 256[label="",style="dashed", color="magenta", weight=3]; 167 -> 249[label="",style="dashed", color="red", weight=0]; 167[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];167 -> 257[label="",style="dashed", color="magenta", weight=3]; 168 -> 249[label="",style="dashed", color="red", weight=0]; 168[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];168 -> 258[label="",style="dashed", color="magenta", weight=3]; 169 -> 249[label="",style="dashed", color="red", weight=0]; 169[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];169 -> 259[label="",style="dashed", color="magenta", weight=3]; 170 -> 249[label="",style="dashed", color="red", weight=0]; 170[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];170 -> 260[label="",style="dashed", color="magenta", weight=3]; 171 -> 249[label="",style="dashed", color="red", weight=0]; 171[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];171 -> 261[label="",style="dashed", color="magenta", weight=3]; 172 -> 249[label="",style="dashed", color="red", weight=0]; 172[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];172 -> 262[label="",style="dashed", color="magenta", weight=3]; 173 -> 249[label="",style="dashed", color="red", weight=0]; 173[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];173 -> 263[label="",style="dashed", color="magenta", weight=3]; 174[label="FiniteMap.addToFM_C0 xuu35 xuu36 xuu37 xuu38 xuu39 xuu40 xuu41 xuu42 otherwise",fontsize=16,color="black",shape="box"];174 -> 285[label="",style="solid", color="black", weight=3]; 175 -> 92[label="",style="dashed", color="red", weight=0]; 175[label="FiniteMap.mkBalBranch xuu36 xuu37 xuu39 (FiniteMap.addToFM_C xuu35 xuu40 xuu41 xuu42)",fontsize=16,color="magenta"];175 -> 286[label="",style="dashed", color="magenta", weight=3]; 175 -> 287[label="",style="dashed", color="magenta", weight=3]; 175 -> 288[label="",style="dashed", color="magenta", weight=3]; 175 -> 289[label="",style="dashed", color="magenta", weight=3]; 176 -> 290[label="",style="dashed", color="red", weight=0]; 176[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 (FiniteMap.mkBalBranch6Size_l xuu17 xuu18 xuu44 xuu21 + FiniteMap.mkBalBranch6Size_r xuu17 xuu18 xuu44 xuu21 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];176 -> 291[label="",style="dashed", color="magenta", weight=3]; 292 -> 359[label="",style="dashed", color="red", weight=0]; 292[label="primCompAux xuu5000 xuu400 (compare xuu5001 xuu401)",fontsize=16,color="magenta"];292 -> 360[label="",style="dashed", color="magenta", weight=3]; 293[label="GT",fontsize=16,color="green",shape="box"];294[label="LT",fontsize=16,color="green",shape="box"];295[label="EQ",fontsize=16,color="green",shape="box"];296[label="EQ",fontsize=16,color="green",shape="box"];297[label="primCmpInt (Pos (Succ xuu50000)) xuu40",fontsize=16,color="burlywood",shape="box"];3285[label="xuu40/Pos xuu400",fontsize=10,color="white",style="solid",shape="box"];297 -> 3285[label="",style="solid", color="burlywood", weight=9]; 3285 -> 361[label="",style="solid", color="burlywood", weight=3]; 3286[label="xuu40/Neg xuu400",fontsize=10,color="white",style="solid",shape="box"];297 -> 3286[label="",style="solid", color="burlywood", weight=9]; 3286 -> 362[label="",style="solid", color="burlywood", weight=3]; 298[label="primCmpInt (Pos Zero) xuu40",fontsize=16,color="burlywood",shape="box"];3287[label="xuu40/Pos xuu400",fontsize=10,color="white",style="solid",shape="box"];298 -> 3287[label="",style="solid", color="burlywood", weight=9]; 3287 -> 363[label="",style="solid", color="burlywood", weight=3]; 3288[label="xuu40/Neg xuu400",fontsize=10,color="white",style="solid",shape="box"];298 -> 3288[label="",style="solid", color="burlywood", weight=9]; 3288 -> 364[label="",style="solid", color="burlywood", weight=3]; 299[label="primCmpInt (Neg (Succ xuu50000)) xuu40",fontsize=16,color="burlywood",shape="box"];3289[label="xuu40/Pos xuu400",fontsize=10,color="white",style="solid",shape="box"];299 -> 3289[label="",style="solid", color="burlywood", weight=9]; 3289 -> 365[label="",style="solid", color="burlywood", weight=3]; 3290[label="xuu40/Neg xuu400",fontsize=10,color="white",style="solid",shape="box"];299 -> 3290[label="",style="solid", color="burlywood", weight=9]; 3290 -> 366[label="",style="solid", color="burlywood", weight=3]; 300[label="primCmpInt (Neg Zero) xuu40",fontsize=16,color="burlywood",shape="box"];3291[label="xuu40/Pos xuu400",fontsize=10,color="white",style="solid",shape="box"];300 -> 3291[label="",style="solid", color="burlywood", weight=9]; 3291 -> 367[label="",style="solid", color="burlywood", weight=3]; 3292[label="xuu40/Neg xuu400",fontsize=10,color="white",style="solid",shape="box"];300 -> 3292[label="",style="solid", color="burlywood", weight=9]; 3292 -> 368[label="",style="solid", color="burlywood", weight=3]; 301[label="compare2 (xuu5000,xuu5001,xuu5002) xuu40 ((xuu5000,xuu5001,xuu5002) == xuu40)",fontsize=16,color="burlywood",shape="box"];3293[label="xuu40/(xuu400,xuu401,xuu402)",fontsize=10,color="white",style="solid",shape="box"];301 -> 3293[label="",style="solid", color="burlywood", weight=9]; 3293 -> 369[label="",style="solid", color="burlywood", weight=3]; 302[label="primCmpFloat (Float xuu5000 (Pos xuu50010)) xuu40",fontsize=16,color="burlywood",shape="box"];3294[label="xuu40/Float xuu400 xuu401",fontsize=10,color="white",style="solid",shape="box"];302 -> 3294[label="",style="solid", color="burlywood", weight=9]; 3294 -> 370[label="",style="solid", color="burlywood", weight=3]; 303[label="primCmpFloat (Float xuu5000 (Neg xuu50010)) xuu40",fontsize=16,color="burlywood",shape="box"];3295[label="xuu40/Float xuu400 xuu401",fontsize=10,color="white",style="solid",shape="box"];303 -> 3295[label="",style="solid", color="burlywood", weight=9]; 3295 -> 371[label="",style="solid", color="burlywood", weight=3]; 304[label="compare (xuu5000 * xuu401) (xuu400 * xuu5001)",fontsize=16,color="blue",shape="box"];3296[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 3296[label="",style="solid", color="blue", weight=9]; 3296 -> 372[label="",style="solid", color="blue", weight=3]; 3297[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 3297[label="",style="solid", color="blue", weight=9]; 3297 -> 373[label="",style="solid", color="blue", weight=3]; 305[label="primCmpDouble (Double xuu5000 (Pos xuu50010)) xuu40",fontsize=16,color="burlywood",shape="box"];3298[label="xuu40/Double xuu400 xuu401",fontsize=10,color="white",style="solid",shape="box"];305 -> 3298[label="",style="solid", color="burlywood", weight=9]; 3298 -> 374[label="",style="solid", color="burlywood", weight=3]; 306[label="primCmpDouble (Double xuu5000 (Neg xuu50010)) xuu40",fontsize=16,color="burlywood",shape="box"];3299[label="xuu40/Double xuu400 xuu401",fontsize=10,color="white",style="solid",shape="box"];306 -> 3299[label="",style="solid", color="burlywood", weight=9]; 3299 -> 375[label="",style="solid", color="burlywood", weight=3]; 307[label="compare2 False xuu40 (False == xuu40)",fontsize=16,color="burlywood",shape="box"];3300[label="xuu40/False",fontsize=10,color="white",style="solid",shape="box"];307 -> 3300[label="",style="solid", color="burlywood", weight=9]; 3300 -> 376[label="",style="solid", color="burlywood", weight=3]; 3301[label="xuu40/True",fontsize=10,color="white",style="solid",shape="box"];307 -> 3301[label="",style="solid", color="burlywood", weight=9]; 3301 -> 377[label="",style="solid", color="burlywood", weight=3]; 308[label="compare2 True xuu40 (True == xuu40)",fontsize=16,color="burlywood",shape="box"];3302[label="xuu40/False",fontsize=10,color="white",style="solid",shape="box"];308 -> 3302[label="",style="solid", color="burlywood", weight=9]; 3302 -> 378[label="",style="solid", color="burlywood", weight=3]; 3303[label="xuu40/True",fontsize=10,color="white",style="solid",shape="box"];308 -> 3303[label="",style="solid", color="burlywood", weight=9]; 3303 -> 379[label="",style="solid", color="burlywood", weight=3]; 309[label="primCmpChar (Char xuu5000) (Char xuu400)",fontsize=16,color="black",shape="box"];309 -> 380[label="",style="solid", color="black", weight=3]; 310[label="compare2 (Left xuu5000) xuu40 (Left xuu5000 == xuu40)",fontsize=16,color="burlywood",shape="box"];3304[label="xuu40/Left xuu400",fontsize=10,color="white",style="solid",shape="box"];310 -> 3304[label="",style="solid", color="burlywood", weight=9]; 3304 -> 381[label="",style="solid", color="burlywood", weight=3]; 3305[label="xuu40/Right xuu400",fontsize=10,color="white",style="solid",shape="box"];310 -> 3305[label="",style="solid", color="burlywood", weight=9]; 3305 -> 382[label="",style="solid", color="burlywood", weight=3]; 311[label="compare2 (Right xuu5000) xuu40 (Right xuu5000 == xuu40)",fontsize=16,color="burlywood",shape="box"];3306[label="xuu40/Left xuu400",fontsize=10,color="white",style="solid",shape="box"];311 -> 3306[label="",style="solid", color="burlywood", weight=9]; 3306 -> 383[label="",style="solid", color="burlywood", weight=3]; 3307[label="xuu40/Right xuu400",fontsize=10,color="white",style="solid",shape="box"];311 -> 3307[label="",style="solid", color="burlywood", weight=9]; 3307 -> 384[label="",style="solid", color="burlywood", weight=3]; 312[label="compare2 Nothing xuu40 (Nothing == xuu40)",fontsize=16,color="burlywood",shape="box"];3308[label="xuu40/Nothing",fontsize=10,color="white",style="solid",shape="box"];312 -> 3308[label="",style="solid", color="burlywood", weight=9]; 3308 -> 385[label="",style="solid", color="burlywood", weight=3]; 3309[label="xuu40/Just xuu400",fontsize=10,color="white",style="solid",shape="box"];312 -> 3309[label="",style="solid", color="burlywood", weight=9]; 3309 -> 386[label="",style="solid", color="burlywood", weight=3]; 313[label="compare2 (Just xuu5000) xuu40 (Just xuu5000 == xuu40)",fontsize=16,color="burlywood",shape="box"];3310[label="xuu40/Nothing",fontsize=10,color="white",style="solid",shape="box"];313 -> 3310[label="",style="solid", color="burlywood", weight=9]; 3310 -> 387[label="",style="solid", color="burlywood", weight=3]; 3311[label="xuu40/Just xuu400",fontsize=10,color="white",style="solid",shape="box"];313 -> 3311[label="",style="solid", color="burlywood", weight=9]; 3311 -> 388[label="",style="solid", color="burlywood", weight=3]; 314 -> 237[label="",style="dashed", color="red", weight=0]; 314[label="primCmpInt xuu5000 xuu400",fontsize=16,color="magenta"];314 -> 389[label="",style="dashed", color="magenta", weight=3]; 314 -> 390[label="",style="dashed", color="magenta", weight=3]; 315[label="compare2 (xuu5000,xuu5001) xuu40 ((xuu5000,xuu5001) == xuu40)",fontsize=16,color="burlywood",shape="box"];3312[label="xuu40/(xuu400,xuu401)",fontsize=10,color="white",style="solid",shape="box"];315 -> 3312[label="",style="solid", color="burlywood", weight=9]; 3312 -> 391[label="",style="solid", color="burlywood", weight=3]; 316[label="compare2 LT xuu40 (LT == xuu40)",fontsize=16,color="burlywood",shape="box"];3313[label="xuu40/LT",fontsize=10,color="white",style="solid",shape="box"];316 -> 3313[label="",style="solid", color="burlywood", weight=9]; 3313 -> 392[label="",style="solid", color="burlywood", weight=3]; 3314[label="xuu40/EQ",fontsize=10,color="white",style="solid",shape="box"];316 -> 3314[label="",style="solid", color="burlywood", weight=9]; 3314 -> 393[label="",style="solid", color="burlywood", weight=3]; 3315[label="xuu40/GT",fontsize=10,color="white",style="solid",shape="box"];316 -> 3315[label="",style="solid", color="burlywood", weight=9]; 3315 -> 394[label="",style="solid", color="burlywood", weight=3]; 317[label="compare2 EQ xuu40 (EQ == xuu40)",fontsize=16,color="burlywood",shape="box"];3316[label="xuu40/LT",fontsize=10,color="white",style="solid",shape="box"];317 -> 3316[label="",style="solid", color="burlywood", weight=9]; 3316 -> 395[label="",style="solid", color="burlywood", weight=3]; 3317[label="xuu40/EQ",fontsize=10,color="white",style="solid",shape="box"];317 -> 3317[label="",style="solid", color="burlywood", weight=9]; 3317 -> 396[label="",style="solid", color="burlywood", weight=3]; 3318[label="xuu40/GT",fontsize=10,color="white",style="solid",shape="box"];317 -> 3318[label="",style="solid", color="burlywood", weight=9]; 3318 -> 397[label="",style="solid", color="burlywood", weight=3]; 318[label="compare2 GT xuu40 (GT == xuu40)",fontsize=16,color="burlywood",shape="box"];3319[label="xuu40/LT",fontsize=10,color="white",style="solid",shape="box"];318 -> 3319[label="",style="solid", color="burlywood", weight=9]; 3319 -> 398[label="",style="solid", color="burlywood", weight=3]; 3320[label="xuu40/EQ",fontsize=10,color="white",style="solid",shape="box"];318 -> 3320[label="",style="solid", color="burlywood", weight=9]; 3320 -> 399[label="",style="solid", color="burlywood", weight=3]; 3321[label="xuu40/GT",fontsize=10,color="white",style="solid",shape="box"];318 -> 3321[label="",style="solid", color="burlywood", weight=9]; 3321 -> 400[label="",style="solid", color="burlywood", weight=3]; 250 -> 193[label="",style="dashed", color="red", weight=0]; 250[label="compare xuu22 xuu17",fontsize=16,color="magenta"];250 -> 319[label="",style="dashed", color="magenta", weight=3]; 250 -> 320[label="",style="dashed", color="magenta", weight=3]; 249[label="xuu48 == GT",fontsize=16,color="burlywood",shape="triangle"];3322[label="xuu48/LT",fontsize=10,color="white",style="solid",shape="box"];249 -> 3322[label="",style="solid", color="burlywood", weight=9]; 3322 -> 321[label="",style="solid", color="burlywood", weight=3]; 3323[label="xuu48/EQ",fontsize=10,color="white",style="solid",shape="box"];249 -> 3323[label="",style="solid", color="burlywood", weight=9]; 3323 -> 322[label="",style="solid", color="burlywood", weight=3]; 3324[label="xuu48/GT",fontsize=10,color="white",style="solid",shape="box"];249 -> 3324[label="",style="solid", color="burlywood", weight=9]; 3324 -> 323[label="",style="solid", color="burlywood", weight=3]; 251 -> 194[label="",style="dashed", color="red", weight=0]; 251[label="compare xuu22 xuu17",fontsize=16,color="magenta"];251 -> 324[label="",style="dashed", color="magenta", weight=3]; 251 -> 325[label="",style="dashed", color="magenta", weight=3]; 252 -> 195[label="",style="dashed", color="red", weight=0]; 252[label="compare xuu22 xuu17",fontsize=16,color="magenta"];252 -> 326[label="",style="dashed", color="magenta", weight=3]; 252 -> 327[label="",style="dashed", color="magenta", weight=3]; 253 -> 196[label="",style="dashed", color="red", weight=0]; 253[label="compare xuu22 xuu17",fontsize=16,color="magenta"];253 -> 328[label="",style="dashed", color="magenta", weight=3]; 253 -> 329[label="",style="dashed", color="magenta", weight=3]; 254 -> 197[label="",style="dashed", color="red", weight=0]; 254[label="compare xuu22 xuu17",fontsize=16,color="magenta"];254 -> 330[label="",style="dashed", color="magenta", weight=3]; 254 -> 331[label="",style="dashed", color="magenta", weight=3]; 255 -> 198[label="",style="dashed", color="red", weight=0]; 255[label="compare xuu22 xuu17",fontsize=16,color="magenta"];255 -> 332[label="",style="dashed", color="magenta", weight=3]; 255 -> 333[label="",style="dashed", color="magenta", weight=3]; 256 -> 199[label="",style="dashed", color="red", weight=0]; 256[label="compare xuu22 xuu17",fontsize=16,color="magenta"];256 -> 334[label="",style="dashed", color="magenta", weight=3]; 256 -> 335[label="",style="dashed", color="magenta", weight=3]; 257 -> 200[label="",style="dashed", color="red", weight=0]; 257[label="compare xuu22 xuu17",fontsize=16,color="magenta"];257 -> 336[label="",style="dashed", color="magenta", weight=3]; 257 -> 337[label="",style="dashed", color="magenta", weight=3]; 258 -> 201[label="",style="dashed", color="red", weight=0]; 258[label="compare xuu22 xuu17",fontsize=16,color="magenta"];258 -> 338[label="",style="dashed", color="magenta", weight=3]; 258 -> 339[label="",style="dashed", color="magenta", weight=3]; 259 -> 202[label="",style="dashed", color="red", weight=0]; 259[label="compare xuu22 xuu17",fontsize=16,color="magenta"];259 -> 340[label="",style="dashed", color="magenta", weight=3]; 259 -> 341[label="",style="dashed", color="magenta", weight=3]; 260 -> 203[label="",style="dashed", color="red", weight=0]; 260[label="compare xuu22 xuu17",fontsize=16,color="magenta"];260 -> 342[label="",style="dashed", color="magenta", weight=3]; 260 -> 343[label="",style="dashed", color="magenta", weight=3]; 261 -> 204[label="",style="dashed", color="red", weight=0]; 261[label="compare xuu22 xuu17",fontsize=16,color="magenta"];261 -> 344[label="",style="dashed", color="magenta", weight=3]; 261 -> 345[label="",style="dashed", color="magenta", weight=3]; 262 -> 205[label="",style="dashed", color="red", weight=0]; 262[label="compare xuu22 xuu17",fontsize=16,color="magenta"];262 -> 346[label="",style="dashed", color="magenta", weight=3]; 262 -> 347[label="",style="dashed", color="magenta", weight=3]; 263 -> 206[label="",style="dashed", color="red", weight=0]; 263[label="compare xuu22 xuu17",fontsize=16,color="magenta"];263 -> 348[label="",style="dashed", color="magenta", weight=3]; 263 -> 349[label="",style="dashed", color="magenta", weight=3]; 285[label="FiniteMap.addToFM_C0 xuu35 xuu36 xuu37 xuu38 xuu39 xuu40 xuu41 xuu42 True",fontsize=16,color="black",shape="box"];285 -> 350[label="",style="solid", color="black", weight=3]; 286[label="xuu36",fontsize=16,color="green",shape="box"];287[label="xuu37",fontsize=16,color="green",shape="box"];288[label="xuu39",fontsize=16,color="green",shape="box"];289 -> 14[label="",style="dashed", color="red", weight=0]; 289[label="FiniteMap.addToFM_C xuu35 xuu40 xuu41 xuu42",fontsize=16,color="magenta"];289 -> 351[label="",style="dashed", color="magenta", weight=3]; 289 -> 352[label="",style="dashed", color="magenta", weight=3]; 289 -> 353[label="",style="dashed", color="magenta", weight=3]; 289 -> 354[label="",style="dashed", color="magenta", weight=3]; 291 -> 36[label="",style="dashed", color="red", weight=0]; 291[label="FiniteMap.mkBalBranch6Size_l xuu17 xuu18 xuu44 xuu21 + FiniteMap.mkBalBranch6Size_r xuu17 xuu18 xuu44 xuu21 < Pos (Succ (Succ Zero))",fontsize=16,color="magenta"];291 -> 355[label="",style="dashed", color="magenta", weight=3]; 291 -> 356[label="",style="dashed", color="magenta", weight=3]; 290[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 xuu49",fontsize=16,color="burlywood",shape="triangle"];3325[label="xuu49/False",fontsize=10,color="white",style="solid",shape="box"];290 -> 3325[label="",style="solid", color="burlywood", weight=9]; 3325 -> 357[label="",style="solid", color="burlywood", weight=3]; 3326[label="xuu49/True",fontsize=10,color="white",style="solid",shape="box"];290 -> 3326[label="",style="solid", color="burlywood", weight=9]; 3326 -> 358[label="",style="solid", color="burlywood", weight=3]; 360 -> 193[label="",style="dashed", color="red", weight=0]; 360[label="compare xuu5001 xuu401",fontsize=16,color="magenta"];360 -> 401[label="",style="dashed", color="magenta", weight=3]; 360 -> 402[label="",style="dashed", color="magenta", weight=3]; 359[label="primCompAux xuu5000 xuu400 xuu50",fontsize=16,color="black",shape="triangle"];359 -> 403[label="",style="solid", color="black", weight=3]; 361[label="primCmpInt (Pos (Succ xuu50000)) (Pos xuu400)",fontsize=16,color="black",shape="box"];361 -> 411[label="",style="solid", color="black", weight=3]; 362[label="primCmpInt (Pos (Succ xuu50000)) (Neg xuu400)",fontsize=16,color="black",shape="box"];362 -> 412[label="",style="solid", color="black", weight=3]; 363[label="primCmpInt (Pos Zero) (Pos xuu400)",fontsize=16,color="burlywood",shape="box"];3327[label="xuu400/Succ xuu4000",fontsize=10,color="white",style="solid",shape="box"];363 -> 3327[label="",style="solid", color="burlywood", weight=9]; 3327 -> 413[label="",style="solid", color="burlywood", weight=3]; 3328[label="xuu400/Zero",fontsize=10,color="white",style="solid",shape="box"];363 -> 3328[label="",style="solid", color="burlywood", weight=9]; 3328 -> 414[label="",style="solid", color="burlywood", weight=3]; 364[label="primCmpInt (Pos Zero) (Neg xuu400)",fontsize=16,color="burlywood",shape="box"];3329[label="xuu400/Succ xuu4000",fontsize=10,color="white",style="solid",shape="box"];364 -> 3329[label="",style="solid", color="burlywood", weight=9]; 3329 -> 415[label="",style="solid", color="burlywood", weight=3]; 3330[label="xuu400/Zero",fontsize=10,color="white",style="solid",shape="box"];364 -> 3330[label="",style="solid", color="burlywood", weight=9]; 3330 -> 416[label="",style="solid", color="burlywood", weight=3]; 365[label="primCmpInt (Neg (Succ xuu50000)) (Pos xuu400)",fontsize=16,color="black",shape="box"];365 -> 417[label="",style="solid", color="black", weight=3]; 366[label="primCmpInt (Neg (Succ xuu50000)) (Neg xuu400)",fontsize=16,color="black",shape="box"];366 -> 418[label="",style="solid", color="black", weight=3]; 367[label="primCmpInt (Neg Zero) (Pos xuu400)",fontsize=16,color="burlywood",shape="box"];3331[label="xuu400/Succ xuu4000",fontsize=10,color="white",style="solid",shape="box"];367 -> 3331[label="",style="solid", color="burlywood", weight=9]; 3331 -> 419[label="",style="solid", color="burlywood", weight=3]; 3332[label="xuu400/Zero",fontsize=10,color="white",style="solid",shape="box"];367 -> 3332[label="",style="solid", color="burlywood", weight=9]; 3332 -> 420[label="",style="solid", color="burlywood", weight=3]; 368[label="primCmpInt (Neg Zero) (Neg xuu400)",fontsize=16,color="burlywood",shape="box"];3333[label="xuu400/Succ xuu4000",fontsize=10,color="white",style="solid",shape="box"];368 -> 3333[label="",style="solid", color="burlywood", weight=9]; 3333 -> 421[label="",style="solid", color="burlywood", weight=3]; 3334[label="xuu400/Zero",fontsize=10,color="white",style="solid",shape="box"];368 -> 3334[label="",style="solid", color="burlywood", weight=9]; 3334 -> 422[label="",style="solid", color="burlywood", weight=3]; 369[label="compare2 (xuu5000,xuu5001,xuu5002) (xuu400,xuu401,xuu402) ((xuu5000,xuu5001,xuu5002) == (xuu400,xuu401,xuu402))",fontsize=16,color="black",shape="box"];369 -> 423[label="",style="solid", color="black", weight=3]; 370[label="primCmpFloat (Float xuu5000 (Pos xuu50010)) (Float xuu400 xuu401)",fontsize=16,color="burlywood",shape="box"];3335[label="xuu401/Pos xuu4010",fontsize=10,color="white",style="solid",shape="box"];370 -> 3335[label="",style="solid", color="burlywood", weight=9]; 3335 -> 424[label="",style="solid", color="burlywood", weight=3]; 3336[label="xuu401/Neg xuu4010",fontsize=10,color="white",style="solid",shape="box"];370 -> 3336[label="",style="solid", color="burlywood", weight=9]; 3336 -> 425[label="",style="solid", color="burlywood", weight=3]; 371[label="primCmpFloat (Float xuu5000 (Neg xuu50010)) (Float xuu400 xuu401)",fontsize=16,color="burlywood",shape="box"];3337[label="xuu401/Pos xuu4010",fontsize=10,color="white",style="solid",shape="box"];371 -> 3337[label="",style="solid", color="burlywood", weight=9]; 3337 -> 426[label="",style="solid", color="burlywood", weight=3]; 3338[label="xuu401/Neg xuu4010",fontsize=10,color="white",style="solid",shape="box"];371 -> 3338[label="",style="solid", color="burlywood", weight=9]; 3338 -> 427[label="",style="solid", color="burlywood", weight=3]; 372 -> 195[label="",style="dashed", color="red", weight=0]; 372[label="compare (xuu5000 * xuu401) (xuu400 * xuu5001)",fontsize=16,color="magenta"];372 -> 428[label="",style="dashed", color="magenta", weight=3]; 372 -> 429[label="",style="dashed", color="magenta", weight=3]; 373 -> 204[label="",style="dashed", color="red", weight=0]; 373[label="compare (xuu5000 * xuu401) (xuu400 * xuu5001)",fontsize=16,color="magenta"];373 -> 430[label="",style="dashed", color="magenta", weight=3]; 373 -> 431[label="",style="dashed", color="magenta", weight=3]; 374[label="primCmpDouble (Double xuu5000 (Pos xuu50010)) (Double xuu400 xuu401)",fontsize=16,color="burlywood",shape="box"];3339[label="xuu401/Pos xuu4010",fontsize=10,color="white",style="solid",shape="box"];374 -> 3339[label="",style="solid", color="burlywood", weight=9]; 3339 -> 432[label="",style="solid", color="burlywood", weight=3]; 3340[label="xuu401/Neg xuu4010",fontsize=10,color="white",style="solid",shape="box"];374 -> 3340[label="",style="solid", color="burlywood", weight=9]; 3340 -> 433[label="",style="solid", color="burlywood", weight=3]; 375[label="primCmpDouble (Double xuu5000 (Neg xuu50010)) (Double xuu400 xuu401)",fontsize=16,color="burlywood",shape="box"];3341[label="xuu401/Pos xuu4010",fontsize=10,color="white",style="solid",shape="box"];375 -> 3341[label="",style="solid", color="burlywood", weight=9]; 3341 -> 434[label="",style="solid", color="burlywood", weight=3]; 3342[label="xuu401/Neg xuu4010",fontsize=10,color="white",style="solid",shape="box"];375 -> 3342[label="",style="solid", color="burlywood", weight=9]; 3342 -> 435[label="",style="solid", color="burlywood", weight=3]; 376[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];376 -> 436[label="",style="solid", color="black", weight=3]; 377[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];377 -> 437[label="",style="solid", color="black", weight=3]; 378[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];378 -> 438[label="",style="solid", color="black", weight=3]; 379[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];379 -> 439[label="",style="solid", color="black", weight=3]; 380[label="primCmpNat xuu5000 xuu400",fontsize=16,color="burlywood",shape="triangle"];3343[label="xuu5000/Succ xuu50000",fontsize=10,color="white",style="solid",shape="box"];380 -> 3343[label="",style="solid", color="burlywood", weight=9]; 3343 -> 440[label="",style="solid", color="burlywood", weight=3]; 3344[label="xuu5000/Zero",fontsize=10,color="white",style="solid",shape="box"];380 -> 3344[label="",style="solid", color="burlywood", weight=9]; 3344 -> 441[label="",style="solid", color="burlywood", weight=3]; 381[label="compare2 (Left xuu5000) (Left xuu400) (Left xuu5000 == Left xuu400)",fontsize=16,color="black",shape="box"];381 -> 442[label="",style="solid", color="black", weight=3]; 382[label="compare2 (Left xuu5000) (Right xuu400) (Left xuu5000 == Right xuu400)",fontsize=16,color="black",shape="box"];382 -> 443[label="",style="solid", color="black", weight=3]; 383[label="compare2 (Right xuu5000) (Left xuu400) (Right xuu5000 == Left xuu400)",fontsize=16,color="black",shape="box"];383 -> 444[label="",style="solid", color="black", weight=3]; 384[label="compare2 (Right xuu5000) (Right xuu400) (Right xuu5000 == Right xuu400)",fontsize=16,color="black",shape="box"];384 -> 445[label="",style="solid", color="black", weight=3]; 385[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];385 -> 446[label="",style="solid", color="black", weight=3]; 386[label="compare2 Nothing (Just xuu400) (Nothing == Just xuu400)",fontsize=16,color="black",shape="box"];386 -> 447[label="",style="solid", color="black", weight=3]; 387[label="compare2 (Just xuu5000) Nothing (Just xuu5000 == Nothing)",fontsize=16,color="black",shape="box"];387 -> 448[label="",style="solid", color="black", weight=3]; 388[label="compare2 (Just xuu5000) (Just xuu400) (Just xuu5000 == Just xuu400)",fontsize=16,color="black",shape="box"];388 -> 449[label="",style="solid", color="black", weight=3]; 389[label="xuu400",fontsize=16,color="green",shape="box"];390[label="xuu5000",fontsize=16,color="green",shape="box"];391[label="compare2 (xuu5000,xuu5001) (xuu400,xuu401) ((xuu5000,xuu5001) == (xuu400,xuu401))",fontsize=16,color="black",shape="box"];391 -> 450[label="",style="solid", color="black", weight=3]; 392[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];392 -> 451[label="",style="solid", color="black", weight=3]; 393[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];393 -> 452[label="",style="solid", color="black", weight=3]; 394[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];394 -> 453[label="",style="solid", color="black", weight=3]; 395[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];395 -> 454[label="",style="solid", color="black", weight=3]; 396[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];396 -> 455[label="",style="solid", color="black", weight=3]; 397[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];397 -> 456[label="",style="solid", color="black", weight=3]; 398[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];398 -> 457[label="",style="solid", color="black", weight=3]; 399[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];399 -> 458[label="",style="solid", color="black", weight=3]; 400[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];400 -> 459[label="",style="solid", color="black", weight=3]; 319[label="xuu17",fontsize=16,color="green",shape="box"];320[label="xuu22",fontsize=16,color="green",shape="box"];321[label="LT == GT",fontsize=16,color="black",shape="box"];321 -> 404[label="",style="solid", color="black", weight=3]; 322[label="EQ == GT",fontsize=16,color="black",shape="box"];322 -> 405[label="",style="solid", color="black", weight=3]; 323[label="GT == GT",fontsize=16,color="black",shape="box"];323 -> 406[label="",style="solid", color="black", weight=3]; 324[label="xuu17",fontsize=16,color="green",shape="box"];325[label="xuu22",fontsize=16,color="green",shape="box"];326[label="xuu17",fontsize=16,color="green",shape="box"];327[label="xuu22",fontsize=16,color="green",shape="box"];328[label="xuu17",fontsize=16,color="green",shape="box"];329[label="xuu22",fontsize=16,color="green",shape="box"];330[label="xuu17",fontsize=16,color="green",shape="box"];331[label="xuu22",fontsize=16,color="green",shape="box"];332[label="xuu17",fontsize=16,color="green",shape="box"];333[label="xuu22",fontsize=16,color="green",shape="box"];334[label="xuu17",fontsize=16,color="green",shape="box"];335[label="xuu22",fontsize=16,color="green",shape="box"];336[label="xuu17",fontsize=16,color="green",shape="box"];337[label="xuu22",fontsize=16,color="green",shape="box"];338[label="xuu17",fontsize=16,color="green",shape="box"];339[label="xuu22",fontsize=16,color="green",shape="box"];340[label="xuu17",fontsize=16,color="green",shape="box"];341[label="xuu22",fontsize=16,color="green",shape="box"];342[label="xuu17",fontsize=16,color="green",shape="box"];343[label="xuu22",fontsize=16,color="green",shape="box"];344[label="xuu17",fontsize=16,color="green",shape="box"];345[label="xuu22",fontsize=16,color="green",shape="box"];346[label="xuu17",fontsize=16,color="green",shape="box"];347[label="xuu22",fontsize=16,color="green",shape="box"];348[label="xuu17",fontsize=16,color="green",shape="box"];349[label="xuu22",fontsize=16,color="green",shape="box"];350[label="FiniteMap.Branch xuu41 (xuu35 xuu37 xuu42) xuu38 xuu39 xuu40",fontsize=16,color="green",shape="box"];350 -> 407[label="",style="dashed", color="green", weight=3]; 351[label="xuu40",fontsize=16,color="green",shape="box"];352[label="xuu35",fontsize=16,color="green",shape="box"];353[label="xuu41",fontsize=16,color="green",shape="box"];354[label="xuu42",fontsize=16,color="green",shape="box"];355[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];356[label="FiniteMap.mkBalBranch6Size_l xuu17 xuu18 xuu44 xuu21 + FiniteMap.mkBalBranch6Size_r xuu17 xuu18 xuu44 xuu21",fontsize=16,color="black",shape="box"];356 -> 408[label="",style="solid", color="black", weight=3]; 357[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 False",fontsize=16,color="black",shape="box"];357 -> 409[label="",style="solid", color="black", weight=3]; 358[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 True",fontsize=16,color="black",shape="box"];358 -> 410[label="",style="solid", color="black", weight=3]; 401[label="xuu401",fontsize=16,color="green",shape="box"];402[label="xuu5001",fontsize=16,color="green",shape="box"];403 -> 460[label="",style="dashed", color="red", weight=0]; 403[label="primCompAux0 xuu50 (compare xuu5000 xuu400)",fontsize=16,color="magenta"];403 -> 461[label="",style="dashed", color="magenta", weight=3]; 403 -> 462[label="",style="dashed", color="magenta", weight=3]; 411 -> 380[label="",style="dashed", color="red", weight=0]; 411[label="primCmpNat (Succ xuu50000) xuu400",fontsize=16,color="magenta"];411 -> 463[label="",style="dashed", color="magenta", weight=3]; 411 -> 464[label="",style="dashed", color="magenta", weight=3]; 412[label="GT",fontsize=16,color="green",shape="box"];413[label="primCmpInt (Pos Zero) (Pos (Succ xuu4000))",fontsize=16,color="black",shape="box"];413 -> 465[label="",style="solid", color="black", weight=3]; 414[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];414 -> 466[label="",style="solid", color="black", weight=3]; 415[label="primCmpInt (Pos Zero) (Neg (Succ xuu4000))",fontsize=16,color="black",shape="box"];415 -> 467[label="",style="solid", color="black", weight=3]; 416[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];416 -> 468[label="",style="solid", color="black", weight=3]; 417[label="LT",fontsize=16,color="green",shape="box"];418 -> 380[label="",style="dashed", color="red", weight=0]; 418[label="primCmpNat xuu400 (Succ xuu50000)",fontsize=16,color="magenta"];418 -> 469[label="",style="dashed", color="magenta", weight=3]; 418 -> 470[label="",style="dashed", color="magenta", weight=3]; 419[label="primCmpInt (Neg Zero) (Pos (Succ xuu4000))",fontsize=16,color="black",shape="box"];419 -> 471[label="",style="solid", color="black", weight=3]; 420[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];420 -> 472[label="",style="solid", color="black", weight=3]; 421[label="primCmpInt (Neg Zero) (Neg (Succ xuu4000))",fontsize=16,color="black",shape="box"];421 -> 473[label="",style="solid", color="black", weight=3]; 422[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];422 -> 474[label="",style="solid", color="black", weight=3]; 423 -> 1133[label="",style="dashed", color="red", weight=0]; 423[label="compare2 (xuu5000,xuu5001,xuu5002) (xuu400,xuu401,xuu402) (xuu5000 == xuu400 && xuu5001 == xuu401 && xuu5002 == xuu402)",fontsize=16,color="magenta"];423 -> 1134[label="",style="dashed", color="magenta", weight=3]; 423 -> 1135[label="",style="dashed", color="magenta", weight=3]; 423 -> 1136[label="",style="dashed", color="magenta", weight=3]; 423 -> 1137[label="",style="dashed", color="magenta", weight=3]; 423 -> 1138[label="",style="dashed", color="magenta", weight=3]; 423 -> 1139[label="",style="dashed", color="magenta", weight=3]; 423 -> 1140[label="",style="dashed", color="magenta", weight=3]; 424[label="primCmpFloat (Float xuu5000 (Pos xuu50010)) (Float xuu400 (Pos xuu4010))",fontsize=16,color="black",shape="box"];424 -> 483[label="",style="solid", color="black", weight=3]; 425[label="primCmpFloat (Float xuu5000 (Pos xuu50010)) (Float xuu400 (Neg xuu4010))",fontsize=16,color="black",shape="box"];425 -> 484[label="",style="solid", color="black", weight=3]; 426[label="primCmpFloat (Float xuu5000 (Neg xuu50010)) (Float xuu400 (Pos xuu4010))",fontsize=16,color="black",shape="box"];426 -> 485[label="",style="solid", color="black", weight=3]; 427[label="primCmpFloat (Float xuu5000 (Neg xuu50010)) (Float xuu400 (Neg xuu4010))",fontsize=16,color="black",shape="box"];427 -> 486[label="",style="solid", color="black", weight=3]; 428[label="xuu400 * xuu5001",fontsize=16,color="black",shape="triangle"];428 -> 487[label="",style="solid", color="black", weight=3]; 429 -> 428[label="",style="dashed", color="red", weight=0]; 429[label="xuu5000 * xuu401",fontsize=16,color="magenta"];429 -> 488[label="",style="dashed", color="magenta", weight=3]; 429 -> 489[label="",style="dashed", color="magenta", weight=3]; 430[label="xuu400 * xuu5001",fontsize=16,color="burlywood",shape="triangle"];3345[label="xuu400/Integer xuu4000",fontsize=10,color="white",style="solid",shape="box"];430 -> 3345[label="",style="solid", color="burlywood", weight=9]; 3345 -> 490[label="",style="solid", color="burlywood", weight=3]; 431 -> 430[label="",style="dashed", color="red", weight=0]; 431[label="xuu5000 * xuu401",fontsize=16,color="magenta"];431 -> 491[label="",style="dashed", color="magenta", weight=3]; 431 -> 492[label="",style="dashed", color="magenta", weight=3]; 432[label="primCmpDouble (Double xuu5000 (Pos xuu50010)) (Double xuu400 (Pos xuu4010))",fontsize=16,color="black",shape="box"];432 -> 493[label="",style="solid", color="black", weight=3]; 433[label="primCmpDouble (Double xuu5000 (Pos xuu50010)) (Double xuu400 (Neg xuu4010))",fontsize=16,color="black",shape="box"];433 -> 494[label="",style="solid", color="black", weight=3]; 434[label="primCmpDouble (Double xuu5000 (Neg xuu50010)) (Double xuu400 (Pos xuu4010))",fontsize=16,color="black",shape="box"];434 -> 495[label="",style="solid", color="black", weight=3]; 435[label="primCmpDouble (Double xuu5000 (Neg xuu50010)) (Double xuu400 (Neg xuu4010))",fontsize=16,color="black",shape="box"];435 -> 496[label="",style="solid", color="black", weight=3]; 436[label="compare2 False False True",fontsize=16,color="black",shape="box"];436 -> 497[label="",style="solid", color="black", weight=3]; 437[label="compare2 False True False",fontsize=16,color="black",shape="box"];437 -> 498[label="",style="solid", color="black", weight=3]; 438[label="compare2 True False False",fontsize=16,color="black",shape="box"];438 -> 499[label="",style="solid", color="black", weight=3]; 439[label="compare2 True True True",fontsize=16,color="black",shape="box"];439 -> 500[label="",style="solid", color="black", weight=3]; 440[label="primCmpNat (Succ xuu50000) xuu400",fontsize=16,color="burlywood",shape="box"];3346[label="xuu400/Succ xuu4000",fontsize=10,color="white",style="solid",shape="box"];440 -> 3346[label="",style="solid", color="burlywood", weight=9]; 3346 -> 501[label="",style="solid", color="burlywood", weight=3]; 3347[label="xuu400/Zero",fontsize=10,color="white",style="solid",shape="box"];440 -> 3347[label="",style="solid", color="burlywood", weight=9]; 3347 -> 502[label="",style="solid", color="burlywood", weight=3]; 441[label="primCmpNat Zero xuu400",fontsize=16,color="burlywood",shape="box"];3348[label="xuu400/Succ xuu4000",fontsize=10,color="white",style="solid",shape="box"];441 -> 3348[label="",style="solid", color="burlywood", weight=9]; 3348 -> 503[label="",style="solid", color="burlywood", weight=3]; 3349[label="xuu400/Zero",fontsize=10,color="white",style="solid",shape="box"];441 -> 3349[label="",style="solid", color="burlywood", weight=9]; 3349 -> 504[label="",style="solid", color="burlywood", weight=3]; 442 -> 505[label="",style="dashed", color="red", weight=0]; 442[label="compare2 (Left xuu5000) (Left xuu400) (xuu5000 == xuu400)",fontsize=16,color="magenta"];442 -> 506[label="",style="dashed", color="magenta", weight=3]; 442 -> 507[label="",style="dashed", color="magenta", weight=3]; 442 -> 508[label="",style="dashed", color="magenta", weight=3]; 443[label="compare2 (Left xuu5000) (Right xuu400) False",fontsize=16,color="black",shape="box"];443 -> 509[label="",style="solid", color="black", weight=3]; 444[label="compare2 (Right xuu5000) (Left xuu400) False",fontsize=16,color="black",shape="box"];444 -> 510[label="",style="solid", color="black", weight=3]; 445 -> 511[label="",style="dashed", color="red", weight=0]; 445[label="compare2 (Right xuu5000) (Right xuu400) (xuu5000 == xuu400)",fontsize=16,color="magenta"];445 -> 512[label="",style="dashed", color="magenta", weight=3]; 445 -> 513[label="",style="dashed", color="magenta", weight=3]; 445 -> 514[label="",style="dashed", color="magenta", weight=3]; 446[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];446 -> 515[label="",style="solid", color="black", weight=3]; 447[label="compare2 Nothing (Just xuu400) False",fontsize=16,color="black",shape="box"];447 -> 516[label="",style="solid", color="black", weight=3]; 448[label="compare2 (Just xuu5000) Nothing False",fontsize=16,color="black",shape="box"];448 -> 517[label="",style="solid", color="black", weight=3]; 449 -> 518[label="",style="dashed", color="red", weight=0]; 449[label="compare2 (Just xuu5000) (Just xuu400) (xuu5000 == xuu400)",fontsize=16,color="magenta"];449 -> 519[label="",style="dashed", color="magenta", weight=3]; 449 -> 520[label="",style="dashed", color="magenta", weight=3]; 449 -> 521[label="",style="dashed", color="magenta", weight=3]; 450 -> 974[label="",style="dashed", color="red", weight=0]; 450[label="compare2 (xuu5000,xuu5001) (xuu400,xuu401) (xuu5000 == xuu400 && xuu5001 == xuu401)",fontsize=16,color="magenta"];450 -> 975[label="",style="dashed", color="magenta", weight=3]; 450 -> 976[label="",style="dashed", color="magenta", weight=3]; 450 -> 977[label="",style="dashed", color="magenta", weight=3]; 450 -> 978[label="",style="dashed", color="magenta", weight=3]; 450 -> 979[label="",style="dashed", color="magenta", weight=3]; 451[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];451 -> 528[label="",style="solid", color="black", weight=3]; 452[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];452 -> 529[label="",style="solid", color="black", weight=3]; 453[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];453 -> 530[label="",style="solid", color="black", weight=3]; 454[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];454 -> 531[label="",style="solid", color="black", weight=3]; 455[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];455 -> 532[label="",style="solid", color="black", weight=3]; 456[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];456 -> 533[label="",style="solid", color="black", weight=3]; 457[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];457 -> 534[label="",style="solid", color="black", weight=3]; 458[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];458 -> 535[label="",style="solid", color="black", weight=3]; 459[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];459 -> 536[label="",style="solid", color="black", weight=3]; 404[label="False",fontsize=16,color="green",shape="box"];405[label="False",fontsize=16,color="green",shape="box"];406[label="True",fontsize=16,color="green",shape="box"];407[label="xuu35 xuu37 xuu42",fontsize=16,color="green",shape="box"];407 -> 537[label="",style="dashed", color="green", weight=3]; 407 -> 538[label="",style="dashed", color="green", weight=3]; 408 -> 1054[label="",style="dashed", color="red", weight=0]; 408[label="primPlusInt (FiniteMap.mkBalBranch6Size_l xuu17 xuu18 xuu44 xuu21) (FiniteMap.mkBalBranch6Size_r xuu17 xuu18 xuu44 xuu21)",fontsize=16,color="magenta"];408 -> 1055[label="",style="dashed", color="magenta", weight=3]; 408 -> 1056[label="",style="dashed", color="magenta", weight=3]; 409 -> 540[label="",style="dashed", color="red", weight=0]; 409[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 (FiniteMap.mkBalBranch6Size_r xuu17 xuu18 xuu44 xuu21 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu17 xuu18 xuu44 xuu21)",fontsize=16,color="magenta"];409 -> 541[label="",style="dashed", color="magenta", weight=3]; 410[label="FiniteMap.mkBranch (Pos (Succ Zero)) xuu17 xuu18 xuu44 xuu21",fontsize=16,color="black",shape="box"];410 -> 542[label="",style="solid", color="black", weight=3]; 461[label="compare xuu5000 xuu400",fontsize=16,color="blue",shape="box"];3350[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3350[label="",style="solid", color="blue", weight=9]; 3350 -> 543[label="",style="solid", color="blue", weight=3]; 3351[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3351[label="",style="solid", color="blue", weight=9]; 3351 -> 544[label="",style="solid", color="blue", weight=3]; 3352[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3352[label="",style="solid", color="blue", weight=9]; 3352 -> 545[label="",style="solid", color="blue", weight=3]; 3353[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3353[label="",style="solid", color="blue", weight=9]; 3353 -> 546[label="",style="solid", color="blue", weight=3]; 3354[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3354[label="",style="solid", color="blue", weight=9]; 3354 -> 547[label="",style="solid", color="blue", weight=3]; 3355[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3355[label="",style="solid", color="blue", weight=9]; 3355 -> 548[label="",style="solid", color="blue", weight=3]; 3356[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3356[label="",style="solid", color="blue", weight=9]; 3356 -> 549[label="",style="solid", color="blue", weight=3]; 3357[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3357[label="",style="solid", color="blue", weight=9]; 3357 -> 550[label="",style="solid", color="blue", weight=3]; 3358[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3358[label="",style="solid", color="blue", weight=9]; 3358 -> 551[label="",style="solid", color="blue", weight=3]; 3359[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3359[label="",style="solid", color="blue", weight=9]; 3359 -> 552[label="",style="solid", color="blue", weight=3]; 3360[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3360[label="",style="solid", color="blue", weight=9]; 3360 -> 553[label="",style="solid", color="blue", weight=3]; 3361[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3361[label="",style="solid", color="blue", weight=9]; 3361 -> 554[label="",style="solid", color="blue", weight=3]; 3362[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3362[label="",style="solid", color="blue", weight=9]; 3362 -> 555[label="",style="solid", color="blue", weight=3]; 3363[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3363[label="",style="solid", color="blue", weight=9]; 3363 -> 556[label="",style="solid", color="blue", weight=3]; 462[label="xuu50",fontsize=16,color="green",shape="box"];460[label="primCompAux0 xuu54 xuu55",fontsize=16,color="burlywood",shape="triangle"];3364[label="xuu55/LT",fontsize=10,color="white",style="solid",shape="box"];460 -> 3364[label="",style="solid", color="burlywood", weight=9]; 3364 -> 557[label="",style="solid", color="burlywood", weight=3]; 3365[label="xuu55/EQ",fontsize=10,color="white",style="solid",shape="box"];460 -> 3365[label="",style="solid", color="burlywood", weight=9]; 3365 -> 558[label="",style="solid", color="burlywood", weight=3]; 3366[label="xuu55/GT",fontsize=10,color="white",style="solid",shape="box"];460 -> 3366[label="",style="solid", color="burlywood", weight=9]; 3366 -> 559[label="",style="solid", color="burlywood", weight=3]; 463[label="Succ xuu50000",fontsize=16,color="green",shape="box"];464[label="xuu400",fontsize=16,color="green",shape="box"];465 -> 380[label="",style="dashed", color="red", weight=0]; 465[label="primCmpNat Zero (Succ xuu4000)",fontsize=16,color="magenta"];465 -> 560[label="",style="dashed", color="magenta", weight=3]; 465 -> 561[label="",style="dashed", color="magenta", weight=3]; 466[label="EQ",fontsize=16,color="green",shape="box"];467[label="GT",fontsize=16,color="green",shape="box"];468[label="EQ",fontsize=16,color="green",shape="box"];469[label="xuu400",fontsize=16,color="green",shape="box"];470[label="Succ xuu50000",fontsize=16,color="green",shape="box"];471[label="LT",fontsize=16,color="green",shape="box"];472[label="EQ",fontsize=16,color="green",shape="box"];473 -> 380[label="",style="dashed", color="red", weight=0]; 473[label="primCmpNat (Succ xuu4000) Zero",fontsize=16,color="magenta"];473 -> 562[label="",style="dashed", color="magenta", weight=3]; 473 -> 563[label="",style="dashed", color="magenta", weight=3]; 474[label="EQ",fontsize=16,color="green",shape="box"];1134[label="xuu5001",fontsize=16,color="green",shape="box"];1135[label="xuu400",fontsize=16,color="green",shape="box"];1136[label="xuu401",fontsize=16,color="green",shape="box"];1137 -> 1185[label="",style="dashed", color="red", weight=0]; 1137[label="xuu5000 == xuu400 && xuu5001 == xuu401 && xuu5002 == xuu402",fontsize=16,color="magenta"];1137 -> 1186[label="",style="dashed", color="magenta", weight=3]; 1137 -> 1187[label="",style="dashed", color="magenta", weight=3]; 1138[label="xuu5000",fontsize=16,color="green",shape="box"];1139[label="xuu402",fontsize=16,color="green",shape="box"];1140[label="xuu5002",fontsize=16,color="green",shape="box"];1133[label="compare2 (xuu113,xuu114,xuu115) (xuu116,xuu117,xuu118) xuu145",fontsize=16,color="burlywood",shape="triangle"];3367[label="xuu145/False",fontsize=10,color="white",style="solid",shape="box"];1133 -> 3367[label="",style="solid", color="burlywood", weight=9]; 3367 -> 1180[label="",style="solid", color="burlywood", weight=3]; 3368[label="xuu145/True",fontsize=10,color="white",style="solid",shape="box"];1133 -> 3368[label="",style="solid", color="burlywood", weight=9]; 3368 -> 1181[label="",style="solid", color="burlywood", weight=3]; 483 -> 195[label="",style="dashed", color="red", weight=0]; 483[label="compare (xuu5000 * Pos xuu4010) (Pos xuu50010 * xuu400)",fontsize=16,color="magenta"];483 -> 580[label="",style="dashed", color="magenta", weight=3]; 483 -> 581[label="",style="dashed", color="magenta", weight=3]; 484 -> 195[label="",style="dashed", color="red", weight=0]; 484[label="compare (xuu5000 * Pos xuu4010) (Neg xuu50010 * xuu400)",fontsize=16,color="magenta"];484 -> 582[label="",style="dashed", color="magenta", weight=3]; 484 -> 583[label="",style="dashed", color="magenta", weight=3]; 485 -> 195[label="",style="dashed", color="red", weight=0]; 485[label="compare (xuu5000 * Neg xuu4010) (Pos xuu50010 * xuu400)",fontsize=16,color="magenta"];485 -> 584[label="",style="dashed", color="magenta", weight=3]; 485 -> 585[label="",style="dashed", color="magenta", weight=3]; 486 -> 195[label="",style="dashed", color="red", weight=0]; 486[label="compare (xuu5000 * Neg xuu4010) (Neg xuu50010 * xuu400)",fontsize=16,color="magenta"];486 -> 586[label="",style="dashed", color="magenta", weight=3]; 486 -> 587[label="",style="dashed", color="magenta", weight=3]; 487[label="primMulInt xuu400 xuu5001",fontsize=16,color="burlywood",shape="triangle"];3369[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];487 -> 3369[label="",style="solid", color="burlywood", weight=9]; 3369 -> 588[label="",style="solid", color="burlywood", weight=3]; 3370[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];487 -> 3370[label="",style="solid", color="burlywood", weight=9]; 3370 -> 589[label="",style="solid", color="burlywood", weight=3]; 488[label="xuu401",fontsize=16,color="green",shape="box"];489[label="xuu5000",fontsize=16,color="green",shape="box"];490[label="Integer xuu4000 * xuu5001",fontsize=16,color="burlywood",shape="box"];3371[label="xuu5001/Integer xuu50010",fontsize=10,color="white",style="solid",shape="box"];490 -> 3371[label="",style="solid", color="burlywood", weight=9]; 3371 -> 590[label="",style="solid", color="burlywood", weight=3]; 491[label="xuu401",fontsize=16,color="green",shape="box"];492[label="xuu5000",fontsize=16,color="green",shape="box"];493 -> 195[label="",style="dashed", color="red", weight=0]; 493[label="compare (xuu5000 * Pos xuu4010) (Pos xuu50010 * xuu400)",fontsize=16,color="magenta"];493 -> 591[label="",style="dashed", color="magenta", weight=3]; 493 -> 592[label="",style="dashed", color="magenta", weight=3]; 494 -> 195[label="",style="dashed", color="red", weight=0]; 494[label="compare (xuu5000 * Pos xuu4010) (Neg xuu50010 * xuu400)",fontsize=16,color="magenta"];494 -> 593[label="",style="dashed", color="magenta", weight=3]; 494 -> 594[label="",style="dashed", color="magenta", weight=3]; 495 -> 195[label="",style="dashed", color="red", weight=0]; 495[label="compare (xuu5000 * Neg xuu4010) (Pos xuu50010 * xuu400)",fontsize=16,color="magenta"];495 -> 595[label="",style="dashed", color="magenta", weight=3]; 495 -> 596[label="",style="dashed", color="magenta", weight=3]; 496 -> 195[label="",style="dashed", color="red", weight=0]; 496[label="compare (xuu5000 * Neg xuu4010) (Neg xuu50010 * xuu400)",fontsize=16,color="magenta"];496 -> 597[label="",style="dashed", color="magenta", weight=3]; 496 -> 598[label="",style="dashed", color="magenta", weight=3]; 497[label="EQ",fontsize=16,color="green",shape="box"];498[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];498 -> 599[label="",style="solid", color="black", weight=3]; 499[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];499 -> 600[label="",style="solid", color="black", weight=3]; 500[label="EQ",fontsize=16,color="green",shape="box"];501[label="primCmpNat (Succ xuu50000) (Succ xuu4000)",fontsize=16,color="black",shape="box"];501 -> 601[label="",style="solid", color="black", weight=3]; 502[label="primCmpNat (Succ xuu50000) Zero",fontsize=16,color="black",shape="box"];502 -> 602[label="",style="solid", color="black", weight=3]; 503[label="primCmpNat Zero (Succ xuu4000)",fontsize=16,color="black",shape="box"];503 -> 603[label="",style="solid", color="black", weight=3]; 504[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];504 -> 604[label="",style="solid", color="black", weight=3]; 506[label="xuu5000",fontsize=16,color="green",shape="box"];507[label="xuu5000 == xuu400",fontsize=16,color="blue",shape="box"];3372[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];507 -> 3372[label="",style="solid", color="blue", weight=9]; 3372 -> 605[label="",style="solid", color="blue", weight=3]; 3373[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];507 -> 3373[label="",style="solid", color="blue", weight=9]; 3373 -> 606[label="",style="solid", color="blue", weight=3]; 3374[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];507 -> 3374[label="",style="solid", color="blue", weight=9]; 3374 -> 607[label="",style="solid", color="blue", weight=3]; 3375[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];507 -> 3375[label="",style="solid", color="blue", weight=9]; 3375 -> 608[label="",style="solid", color="blue", weight=3]; 3376[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];507 -> 3376[label="",style="solid", color="blue", weight=9]; 3376 -> 609[label="",style="solid", color="blue", weight=3]; 3377[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];507 -> 3377[label="",style="solid", color="blue", weight=9]; 3377 -> 610[label="",style="solid", color="blue", weight=3]; 3378[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];507 -> 3378[label="",style="solid", color="blue", weight=9]; 3378 -> 611[label="",style="solid", color="blue", weight=3]; 3379[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];507 -> 3379[label="",style="solid", color="blue", weight=9]; 3379 -> 612[label="",style="solid", color="blue", weight=3]; 3380[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];507 -> 3380[label="",style="solid", color="blue", weight=9]; 3380 -> 613[label="",style="solid", color="blue", weight=3]; 3381[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];507 -> 3381[label="",style="solid", color="blue", weight=9]; 3381 -> 614[label="",style="solid", color="blue", weight=3]; 3382[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];507 -> 3382[label="",style="solid", color="blue", weight=9]; 3382 -> 615[label="",style="solid", color="blue", weight=3]; 3383[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];507 -> 3383[label="",style="solid", color="blue", weight=9]; 3383 -> 616[label="",style="solid", color="blue", weight=3]; 3384[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];507 -> 3384[label="",style="solid", color="blue", weight=9]; 3384 -> 617[label="",style="solid", color="blue", weight=3]; 3385[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];507 -> 3385[label="",style="solid", color="blue", weight=9]; 3385 -> 618[label="",style="solid", color="blue", weight=3]; 508[label="xuu400",fontsize=16,color="green",shape="box"];505[label="compare2 (Left xuu75) (Left xuu76) xuu77",fontsize=16,color="burlywood",shape="triangle"];3386[label="xuu77/False",fontsize=10,color="white",style="solid",shape="box"];505 -> 3386[label="",style="solid", color="burlywood", weight=9]; 3386 -> 619[label="",style="solid", color="burlywood", weight=3]; 3387[label="xuu77/True",fontsize=10,color="white",style="solid",shape="box"];505 -> 3387[label="",style="solid", color="burlywood", weight=9]; 3387 -> 620[label="",style="solid", color="burlywood", weight=3]; 509[label="compare1 (Left xuu5000) (Right xuu400) (Left xuu5000 <= Right xuu400)",fontsize=16,color="black",shape="box"];509 -> 621[label="",style="solid", color="black", weight=3]; 510[label="compare1 (Right xuu5000) (Left xuu400) (Right xuu5000 <= Left xuu400)",fontsize=16,color="black",shape="box"];510 -> 622[label="",style="solid", color="black", weight=3]; 512[label="xuu5000 == xuu400",fontsize=16,color="blue",shape="box"];3388[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3388[label="",style="solid", color="blue", weight=9]; 3388 -> 623[label="",style="solid", color="blue", weight=3]; 3389[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3389[label="",style="solid", color="blue", weight=9]; 3389 -> 624[label="",style="solid", color="blue", weight=3]; 3390[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3390[label="",style="solid", color="blue", weight=9]; 3390 -> 625[label="",style="solid", color="blue", weight=3]; 3391[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3391[label="",style="solid", color="blue", weight=9]; 3391 -> 626[label="",style="solid", color="blue", weight=3]; 3392[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3392[label="",style="solid", color="blue", weight=9]; 3392 -> 627[label="",style="solid", color="blue", weight=3]; 3393[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3393[label="",style="solid", color="blue", weight=9]; 3393 -> 628[label="",style="solid", color="blue", weight=3]; 3394[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3394[label="",style="solid", color="blue", weight=9]; 3394 -> 629[label="",style="solid", color="blue", weight=3]; 3395[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3395[label="",style="solid", color="blue", weight=9]; 3395 -> 630[label="",style="solid", color="blue", weight=3]; 3396[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3396[label="",style="solid", color="blue", weight=9]; 3396 -> 631[label="",style="solid", color="blue", weight=3]; 3397[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3397[label="",style="solid", color="blue", weight=9]; 3397 -> 632[label="",style="solid", color="blue", weight=3]; 3398[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3398[label="",style="solid", color="blue", weight=9]; 3398 -> 633[label="",style="solid", color="blue", weight=3]; 3399[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3399[label="",style="solid", color="blue", weight=9]; 3399 -> 634[label="",style="solid", color="blue", weight=3]; 3400[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3400[label="",style="solid", color="blue", weight=9]; 3400 -> 635[label="",style="solid", color="blue", weight=3]; 3401[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];512 -> 3401[label="",style="solid", color="blue", weight=9]; 3401 -> 636[label="",style="solid", color="blue", weight=3]; 513[label="xuu400",fontsize=16,color="green",shape="box"];514[label="xuu5000",fontsize=16,color="green",shape="box"];511[label="compare2 (Right xuu82) (Right xuu83) xuu84",fontsize=16,color="burlywood",shape="triangle"];3402[label="xuu84/False",fontsize=10,color="white",style="solid",shape="box"];511 -> 3402[label="",style="solid", color="burlywood", weight=9]; 3402 -> 637[label="",style="solid", color="burlywood", weight=3]; 3403[label="xuu84/True",fontsize=10,color="white",style="solid",shape="box"];511 -> 3403[label="",style="solid", color="burlywood", weight=9]; 3403 -> 638[label="",style="solid", color="burlywood", weight=3]; 515[label="EQ",fontsize=16,color="green",shape="box"];516[label="compare1 Nothing (Just xuu400) (Nothing <= Just xuu400)",fontsize=16,color="black",shape="box"];516 -> 639[label="",style="solid", color="black", weight=3]; 517[label="compare1 (Just xuu5000) Nothing (Just xuu5000 <= Nothing)",fontsize=16,color="black",shape="box"];517 -> 640[label="",style="solid", color="black", weight=3]; 519[label="xuu5000",fontsize=16,color="green",shape="box"];520[label="xuu400",fontsize=16,color="green",shape="box"];521[label="xuu5000 == xuu400",fontsize=16,color="blue",shape="box"];3404[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];521 -> 3404[label="",style="solid", color="blue", weight=9]; 3404 -> 641[label="",style="solid", color="blue", weight=3]; 3405[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];521 -> 3405[label="",style="solid", color="blue", weight=9]; 3405 -> 642[label="",style="solid", color="blue", weight=3]; 3406[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];521 -> 3406[label="",style="solid", color="blue", weight=9]; 3406 -> 643[label="",style="solid", color="blue", weight=3]; 3407[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];521 -> 3407[label="",style="solid", color="blue", weight=9]; 3407 -> 644[label="",style="solid", color="blue", weight=3]; 3408[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];521 -> 3408[label="",style="solid", color="blue", weight=9]; 3408 -> 645[label="",style="solid", color="blue", weight=3]; 3409[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];521 -> 3409[label="",style="solid", color="blue", weight=9]; 3409 -> 646[label="",style="solid", color="blue", weight=3]; 3410[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];521 -> 3410[label="",style="solid", color="blue", weight=9]; 3410 -> 647[label="",style="solid", color="blue", weight=3]; 3411[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];521 -> 3411[label="",style="solid", color="blue", weight=9]; 3411 -> 648[label="",style="solid", color="blue", weight=3]; 3412[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];521 -> 3412[label="",style="solid", color="blue", weight=9]; 3412 -> 649[label="",style="solid", color="blue", weight=3]; 3413[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];521 -> 3413[label="",style="solid", color="blue", weight=9]; 3413 -> 650[label="",style="solid", color="blue", weight=3]; 3414[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];521 -> 3414[label="",style="solid", color="blue", weight=9]; 3414 -> 651[label="",style="solid", color="blue", weight=3]; 3415[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];521 -> 3415[label="",style="solid", color="blue", weight=9]; 3415 -> 652[label="",style="solid", color="blue", weight=3]; 3416[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];521 -> 3416[label="",style="solid", color="blue", weight=9]; 3416 -> 653[label="",style="solid", color="blue", weight=3]; 3417[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];521 -> 3417[label="",style="solid", color="blue", weight=9]; 3417 -> 654[label="",style="solid", color="blue", weight=3]; 518[label="compare2 (Just xuu89) (Just xuu90) xuu91",fontsize=16,color="burlywood",shape="triangle"];3418[label="xuu91/False",fontsize=10,color="white",style="solid",shape="box"];518 -> 3418[label="",style="solid", color="burlywood", weight=9]; 3418 -> 655[label="",style="solid", color="burlywood", weight=3]; 3419[label="xuu91/True",fontsize=10,color="white",style="solid",shape="box"];518 -> 3419[label="",style="solid", color="burlywood", weight=9]; 3419 -> 656[label="",style="solid", color="burlywood", weight=3]; 975[label="xuu401",fontsize=16,color="green",shape="box"];976[label="xuu5000",fontsize=16,color="green",shape="box"];977[label="xuu5001",fontsize=16,color="green",shape="box"];978[label="xuu400",fontsize=16,color="green",shape="box"];979 -> 1185[label="",style="dashed", color="red", weight=0]; 979[label="xuu5000 == xuu400 && xuu5001 == xuu401",fontsize=16,color="magenta"];979 -> 1188[label="",style="dashed", color="magenta", weight=3]; 979 -> 1189[label="",style="dashed", color="magenta", weight=3]; 974[label="compare2 (xuu126,xuu127) (xuu128,xuu129) xuu130",fontsize=16,color="burlywood",shape="triangle"];3420[label="xuu130/False",fontsize=10,color="white",style="solid",shape="box"];974 -> 3420[label="",style="solid", color="burlywood", weight=9]; 3420 -> 999[label="",style="solid", color="burlywood", weight=3]; 3421[label="xuu130/True",fontsize=10,color="white",style="solid",shape="box"];974 -> 3421[label="",style="solid", color="burlywood", weight=9]; 3421 -> 1000[label="",style="solid", color="burlywood", weight=3]; 528[label="EQ",fontsize=16,color="green",shape="box"];529[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];529 -> 673[label="",style="solid", color="black", weight=3]; 530[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];530 -> 674[label="",style="solid", color="black", weight=3]; 531[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];531 -> 675[label="",style="solid", color="black", weight=3]; 532[label="EQ",fontsize=16,color="green",shape="box"];533[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];533 -> 676[label="",style="solid", color="black", weight=3]; 534[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];534 -> 677[label="",style="solid", color="black", weight=3]; 535[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];535 -> 678[label="",style="solid", color="black", weight=3]; 536[label="EQ",fontsize=16,color="green",shape="box"];537[label="xuu37",fontsize=16,color="green",shape="box"];538[label="xuu42",fontsize=16,color="green",shape="box"];1055 -> 682[label="",style="dashed", color="red", weight=0]; 1055[label="FiniteMap.mkBalBranch6Size_r xuu17 xuu18 xuu44 xuu21",fontsize=16,color="magenta"];1056[label="FiniteMap.mkBalBranch6Size_l xuu17 xuu18 xuu44 xuu21",fontsize=16,color="black",shape="triangle"];1056 -> 1064[label="",style="solid", color="black", weight=3]; 1054[label="primPlusInt xuu442 xuu139",fontsize=16,color="burlywood",shape="triangle"];3422[label="xuu442/Pos xuu4420",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3422[label="",style="solid", color="burlywood", weight=9]; 3422 -> 1065[label="",style="solid", color="burlywood", weight=3]; 3423[label="xuu442/Neg xuu4420",fontsize=10,color="white",style="solid",shape="box"];1054 -> 3423[label="",style="solid", color="burlywood", weight=9]; 3423 -> 1066[label="",style="solid", color="burlywood", weight=3]; 541 -> 114[label="",style="dashed", color="red", weight=0]; 541[label="FiniteMap.mkBalBranch6Size_r xuu17 xuu18 xuu44 xuu21 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu17 xuu18 xuu44 xuu21",fontsize=16,color="magenta"];541 -> 681[label="",style="dashed", color="magenta", weight=3]; 541 -> 682[label="",style="dashed", color="magenta", weight=3]; 540[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 xuu103",fontsize=16,color="burlywood",shape="triangle"];3424[label="xuu103/False",fontsize=10,color="white",style="solid",shape="box"];540 -> 3424[label="",style="solid", color="burlywood", weight=9]; 3424 -> 683[label="",style="solid", color="burlywood", weight=3]; 3425[label="xuu103/True",fontsize=10,color="white",style="solid",shape="box"];540 -> 3425[label="",style="solid", color="burlywood", weight=9]; 3425 -> 684[label="",style="solid", color="burlywood", weight=3]; 542[label="FiniteMap.mkBranchResult xuu17 xuu18 xuu44 xuu21",fontsize=16,color="black",shape="triangle"];542 -> 685[label="",style="solid", color="black", weight=3]; 543 -> 193[label="",style="dashed", color="red", weight=0]; 543[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];543 -> 686[label="",style="dashed", color="magenta", weight=3]; 543 -> 687[label="",style="dashed", color="magenta", weight=3]; 544 -> 194[label="",style="dashed", color="red", weight=0]; 544[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];544 -> 688[label="",style="dashed", color="magenta", weight=3]; 544 -> 689[label="",style="dashed", color="magenta", weight=3]; 545 -> 195[label="",style="dashed", color="red", weight=0]; 545[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];545 -> 690[label="",style="dashed", color="magenta", weight=3]; 545 -> 691[label="",style="dashed", color="magenta", weight=3]; 546 -> 196[label="",style="dashed", color="red", weight=0]; 546[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];546 -> 692[label="",style="dashed", color="magenta", weight=3]; 546 -> 693[label="",style="dashed", color="magenta", weight=3]; 547 -> 197[label="",style="dashed", color="red", weight=0]; 547[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];547 -> 694[label="",style="dashed", color="magenta", weight=3]; 547 -> 695[label="",style="dashed", color="magenta", weight=3]; 548 -> 198[label="",style="dashed", color="red", weight=0]; 548[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];548 -> 696[label="",style="dashed", color="magenta", weight=3]; 548 -> 697[label="",style="dashed", color="magenta", weight=3]; 549 -> 199[label="",style="dashed", color="red", weight=0]; 549[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];549 -> 698[label="",style="dashed", color="magenta", weight=3]; 549 -> 699[label="",style="dashed", color="magenta", weight=3]; 550 -> 200[label="",style="dashed", color="red", weight=0]; 550[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];550 -> 700[label="",style="dashed", color="magenta", weight=3]; 550 -> 701[label="",style="dashed", color="magenta", weight=3]; 551 -> 201[label="",style="dashed", color="red", weight=0]; 551[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];551 -> 702[label="",style="dashed", color="magenta", weight=3]; 551 -> 703[label="",style="dashed", color="magenta", weight=3]; 552 -> 202[label="",style="dashed", color="red", weight=0]; 552[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];552 -> 704[label="",style="dashed", color="magenta", weight=3]; 552 -> 705[label="",style="dashed", color="magenta", weight=3]; 553 -> 203[label="",style="dashed", color="red", weight=0]; 553[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];553 -> 706[label="",style="dashed", color="magenta", weight=3]; 553 -> 707[label="",style="dashed", color="magenta", weight=3]; 554 -> 204[label="",style="dashed", color="red", weight=0]; 554[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];554 -> 708[label="",style="dashed", color="magenta", weight=3]; 554 -> 709[label="",style="dashed", color="magenta", weight=3]; 555 -> 205[label="",style="dashed", color="red", weight=0]; 555[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];555 -> 710[label="",style="dashed", color="magenta", weight=3]; 555 -> 711[label="",style="dashed", color="magenta", weight=3]; 556 -> 206[label="",style="dashed", color="red", weight=0]; 556[label="compare xuu5000 xuu400",fontsize=16,color="magenta"];556 -> 712[label="",style="dashed", color="magenta", weight=3]; 556 -> 713[label="",style="dashed", color="magenta", weight=3]; 557[label="primCompAux0 xuu54 LT",fontsize=16,color="black",shape="box"];557 -> 714[label="",style="solid", color="black", weight=3]; 558[label="primCompAux0 xuu54 EQ",fontsize=16,color="black",shape="box"];558 -> 715[label="",style="solid", color="black", weight=3]; 559[label="primCompAux0 xuu54 GT",fontsize=16,color="black",shape="box"];559 -> 716[label="",style="solid", color="black", weight=3]; 560[label="Zero",fontsize=16,color="green",shape="box"];561[label="Succ xuu4000",fontsize=16,color="green",shape="box"];562[label="Succ xuu4000",fontsize=16,color="green",shape="box"];563[label="Zero",fontsize=16,color="green",shape="box"];1186[label="xuu5000 == xuu400",fontsize=16,color="blue",shape="box"];3426[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1186 -> 3426[label="",style="solid", color="blue", weight=9]; 3426 -> 1204[label="",style="solid", color="blue", weight=3]; 3427[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1186 -> 3427[label="",style="solid", color="blue", weight=9]; 3427 -> 1205[label="",style="solid", color="blue", weight=3]; 3428[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1186 -> 3428[label="",style="solid", color="blue", weight=9]; 3428 -> 1206[label="",style="solid", color="blue", weight=3]; 3429[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1186 -> 3429[label="",style="solid", color="blue", weight=9]; 3429 -> 1207[label="",style="solid", color="blue", weight=3]; 3430[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1186 -> 3430[label="",style="solid", color="blue", weight=9]; 3430 -> 1208[label="",style="solid", color="blue", weight=3]; 3431[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1186 -> 3431[label="",style="solid", color="blue", weight=9]; 3431 -> 1209[label="",style="solid", color="blue", weight=3]; 3432[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1186 -> 3432[label="",style="solid", color="blue", weight=9]; 3432 -> 1210[label="",style="solid", color="blue", weight=3]; 3433[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1186 -> 3433[label="",style="solid", color="blue", weight=9]; 3433 -> 1211[label="",style="solid", color="blue", weight=3]; 3434[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1186 -> 3434[label="",style="solid", color="blue", weight=9]; 3434 -> 1212[label="",style="solid", color="blue", weight=3]; 3435[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1186 -> 3435[label="",style="solid", color="blue", weight=9]; 3435 -> 1213[label="",style="solid", color="blue", weight=3]; 3436[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1186 -> 3436[label="",style="solid", color="blue", weight=9]; 3436 -> 1214[label="",style="solid", color="blue", weight=3]; 3437[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1186 -> 3437[label="",style="solid", color="blue", weight=9]; 3437 -> 1215[label="",style="solid", color="blue", weight=3]; 3438[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1186 -> 3438[label="",style="solid", color="blue", weight=9]; 3438 -> 1216[label="",style="solid", color="blue", weight=3]; 3439[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1186 -> 3439[label="",style="solid", color="blue", weight=9]; 3439 -> 1217[label="",style="solid", color="blue", weight=3]; 1187 -> 1185[label="",style="dashed", color="red", weight=0]; 1187[label="xuu5001 == xuu401 && xuu5002 == xuu402",fontsize=16,color="magenta"];1187 -> 1218[label="",style="dashed", color="magenta", weight=3]; 1187 -> 1219[label="",style="dashed", color="magenta", weight=3]; 1185[label="xuu150 && xuu151",fontsize=16,color="burlywood",shape="triangle"];3440[label="xuu150/False",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3440[label="",style="solid", color="burlywood", weight=9]; 3440 -> 1220[label="",style="solid", color="burlywood", weight=3]; 3441[label="xuu150/True",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3441[label="",style="solid", color="burlywood", weight=9]; 3441 -> 1221[label="",style="solid", color="burlywood", weight=3]; 1180[label="compare2 (xuu113,xuu114,xuu115) (xuu116,xuu117,xuu118) False",fontsize=16,color="black",shape="box"];1180 -> 1222[label="",style="solid", color="black", weight=3]; 1181[label="compare2 (xuu113,xuu114,xuu115) (xuu116,xuu117,xuu118) True",fontsize=16,color="black",shape="box"];1181 -> 1223[label="",style="solid", color="black", weight=3]; 580 -> 428[label="",style="dashed", color="red", weight=0]; 580[label="Pos xuu50010 * xuu400",fontsize=16,color="magenta"];580 -> 739[label="",style="dashed", color="magenta", weight=3]; 580 -> 740[label="",style="dashed", color="magenta", weight=3]; 581 -> 428[label="",style="dashed", color="red", weight=0]; 581[label="xuu5000 * Pos xuu4010",fontsize=16,color="magenta"];581 -> 741[label="",style="dashed", color="magenta", weight=3]; 581 -> 742[label="",style="dashed", color="magenta", weight=3]; 582 -> 428[label="",style="dashed", color="red", weight=0]; 582[label="Neg xuu50010 * xuu400",fontsize=16,color="magenta"];582 -> 743[label="",style="dashed", color="magenta", weight=3]; 582 -> 744[label="",style="dashed", color="magenta", weight=3]; 583 -> 428[label="",style="dashed", color="red", weight=0]; 583[label="xuu5000 * Pos xuu4010",fontsize=16,color="magenta"];583 -> 745[label="",style="dashed", color="magenta", weight=3]; 583 -> 746[label="",style="dashed", color="magenta", weight=3]; 584 -> 428[label="",style="dashed", color="red", weight=0]; 584[label="Pos xuu50010 * xuu400",fontsize=16,color="magenta"];584 -> 747[label="",style="dashed", color="magenta", weight=3]; 584 -> 748[label="",style="dashed", color="magenta", weight=3]; 585 -> 428[label="",style="dashed", color="red", weight=0]; 585[label="xuu5000 * Neg xuu4010",fontsize=16,color="magenta"];585 -> 749[label="",style="dashed", color="magenta", weight=3]; 585 -> 750[label="",style="dashed", color="magenta", weight=3]; 586 -> 428[label="",style="dashed", color="red", weight=0]; 586[label="Neg xuu50010 * xuu400",fontsize=16,color="magenta"];586 -> 751[label="",style="dashed", color="magenta", weight=3]; 586 -> 752[label="",style="dashed", color="magenta", weight=3]; 587 -> 428[label="",style="dashed", color="red", weight=0]; 587[label="xuu5000 * Neg xuu4010",fontsize=16,color="magenta"];587 -> 753[label="",style="dashed", color="magenta", weight=3]; 587 -> 754[label="",style="dashed", color="magenta", weight=3]; 588[label="primMulInt (Pos xuu4000) xuu5001",fontsize=16,color="burlywood",shape="box"];3442[label="xuu5001/Pos xuu50010",fontsize=10,color="white",style="solid",shape="box"];588 -> 3442[label="",style="solid", color="burlywood", weight=9]; 3442 -> 755[label="",style="solid", color="burlywood", weight=3]; 3443[label="xuu5001/Neg xuu50010",fontsize=10,color="white",style="solid",shape="box"];588 -> 3443[label="",style="solid", color="burlywood", weight=9]; 3443 -> 756[label="",style="solid", color="burlywood", weight=3]; 589[label="primMulInt (Neg xuu4000) xuu5001",fontsize=16,color="burlywood",shape="box"];3444[label="xuu5001/Pos xuu50010",fontsize=10,color="white",style="solid",shape="box"];589 -> 3444[label="",style="solid", color="burlywood", weight=9]; 3444 -> 757[label="",style="solid", color="burlywood", weight=3]; 3445[label="xuu5001/Neg xuu50010",fontsize=10,color="white",style="solid",shape="box"];589 -> 3445[label="",style="solid", color="burlywood", weight=9]; 3445 -> 758[label="",style="solid", color="burlywood", weight=3]; 590[label="Integer xuu4000 * Integer xuu50010",fontsize=16,color="black",shape="box"];590 -> 759[label="",style="solid", color="black", weight=3]; 591 -> 428[label="",style="dashed", color="red", weight=0]; 591[label="Pos xuu50010 * xuu400",fontsize=16,color="magenta"];591 -> 760[label="",style="dashed", color="magenta", weight=3]; 591 -> 761[label="",style="dashed", color="magenta", weight=3]; 592 -> 428[label="",style="dashed", color="red", weight=0]; 592[label="xuu5000 * Pos xuu4010",fontsize=16,color="magenta"];592 -> 762[label="",style="dashed", color="magenta", weight=3]; 592 -> 763[label="",style="dashed", color="magenta", weight=3]; 593 -> 428[label="",style="dashed", color="red", weight=0]; 593[label="Neg xuu50010 * xuu400",fontsize=16,color="magenta"];593 -> 764[label="",style="dashed", color="magenta", weight=3]; 593 -> 765[label="",style="dashed", color="magenta", weight=3]; 594 -> 428[label="",style="dashed", color="red", weight=0]; 594[label="xuu5000 * Pos xuu4010",fontsize=16,color="magenta"];594 -> 766[label="",style="dashed", color="magenta", weight=3]; 594 -> 767[label="",style="dashed", color="magenta", weight=3]; 595 -> 428[label="",style="dashed", color="red", weight=0]; 595[label="Pos xuu50010 * xuu400",fontsize=16,color="magenta"];595 -> 768[label="",style="dashed", color="magenta", weight=3]; 595 -> 769[label="",style="dashed", color="magenta", weight=3]; 596 -> 428[label="",style="dashed", color="red", weight=0]; 596[label="xuu5000 * Neg xuu4010",fontsize=16,color="magenta"];596 -> 770[label="",style="dashed", color="magenta", weight=3]; 596 -> 771[label="",style="dashed", color="magenta", weight=3]; 597 -> 428[label="",style="dashed", color="red", weight=0]; 597[label="Neg xuu50010 * xuu400",fontsize=16,color="magenta"];597 -> 772[label="",style="dashed", color="magenta", weight=3]; 597 -> 773[label="",style="dashed", color="magenta", weight=3]; 598 -> 428[label="",style="dashed", color="red", weight=0]; 598[label="xuu5000 * Neg xuu4010",fontsize=16,color="magenta"];598 -> 774[label="",style="dashed", color="magenta", weight=3]; 598 -> 775[label="",style="dashed", color="magenta", weight=3]; 599[label="compare1 False True True",fontsize=16,color="black",shape="box"];599 -> 776[label="",style="solid", color="black", weight=3]; 600[label="compare1 True False False",fontsize=16,color="black",shape="box"];600 -> 777[label="",style="solid", color="black", weight=3]; 601 -> 380[label="",style="dashed", color="red", weight=0]; 601[label="primCmpNat xuu50000 xuu4000",fontsize=16,color="magenta"];601 -> 778[label="",style="dashed", color="magenta", weight=3]; 601 -> 779[label="",style="dashed", color="magenta", weight=3]; 602[label="GT",fontsize=16,color="green",shape="box"];603[label="LT",fontsize=16,color="green",shape="box"];604[label="EQ",fontsize=16,color="green",shape="box"];605 -> 564[label="",style="dashed", color="red", weight=0]; 605[label="xuu5000 == xuu400",fontsize=16,color="magenta"];605 -> 780[label="",style="dashed", color="magenta", weight=3]; 605 -> 781[label="",style="dashed", color="magenta", weight=3]; 606 -> 565[label="",style="dashed", color="red", weight=0]; 606[label="xuu5000 == xuu400",fontsize=16,color="magenta"];606 -> 782[label="",style="dashed", color="magenta", weight=3]; 606 -> 783[label="",style="dashed", color="magenta", weight=3]; 607 -> 566[label="",style="dashed", color="red", weight=0]; 607[label="xuu5000 == xuu400",fontsize=16,color="magenta"];607 -> 784[label="",style="dashed", color="magenta", weight=3]; 607 -> 785[label="",style="dashed", color="magenta", weight=3]; 608 -> 567[label="",style="dashed", color="red", weight=0]; 608[label="xuu5000 == xuu400",fontsize=16,color="magenta"];608 -> 786[label="",style="dashed", color="magenta", weight=3]; 608 -> 787[label="",style="dashed", color="magenta", weight=3]; 609 -> 568[label="",style="dashed", color="red", weight=0]; 609[label="xuu5000 == xuu400",fontsize=16,color="magenta"];609 -> 788[label="",style="dashed", color="magenta", weight=3]; 609 -> 789[label="",style="dashed", color="magenta", weight=3]; 610 -> 569[label="",style="dashed", color="red", weight=0]; 610[label="xuu5000 == xuu400",fontsize=16,color="magenta"];610 -> 790[label="",style="dashed", color="magenta", weight=3]; 610 -> 791[label="",style="dashed", color="magenta", weight=3]; 611 -> 570[label="",style="dashed", color="red", weight=0]; 611[label="xuu5000 == xuu400",fontsize=16,color="magenta"];611 -> 792[label="",style="dashed", color="magenta", weight=3]; 611 -> 793[label="",style="dashed", color="magenta", weight=3]; 612 -> 571[label="",style="dashed", color="red", weight=0]; 612[label="xuu5000 == xuu400",fontsize=16,color="magenta"];612 -> 794[label="",style="dashed", color="magenta", weight=3]; 612 -> 795[label="",style="dashed", color="magenta", weight=3]; 613 -> 572[label="",style="dashed", color="red", weight=0]; 613[label="xuu5000 == xuu400",fontsize=16,color="magenta"];613 -> 796[label="",style="dashed", color="magenta", weight=3]; 613 -> 797[label="",style="dashed", color="magenta", weight=3]; 614 -> 573[label="",style="dashed", color="red", weight=0]; 614[label="xuu5000 == xuu400",fontsize=16,color="magenta"];614 -> 798[label="",style="dashed", color="magenta", weight=3]; 614 -> 799[label="",style="dashed", color="magenta", weight=3]; 615 -> 574[label="",style="dashed", color="red", weight=0]; 615[label="xuu5000 == xuu400",fontsize=16,color="magenta"];615 -> 800[label="",style="dashed", color="magenta", weight=3]; 615 -> 801[label="",style="dashed", color="magenta", weight=3]; 616 -> 575[label="",style="dashed", color="red", weight=0]; 616[label="xuu5000 == xuu400",fontsize=16,color="magenta"];616 -> 802[label="",style="dashed", color="magenta", weight=3]; 616 -> 803[label="",style="dashed", color="magenta", weight=3]; 617 -> 576[label="",style="dashed", color="red", weight=0]; 617[label="xuu5000 == xuu400",fontsize=16,color="magenta"];617 -> 804[label="",style="dashed", color="magenta", weight=3]; 617 -> 805[label="",style="dashed", color="magenta", weight=3]; 618 -> 577[label="",style="dashed", color="red", weight=0]; 618[label="xuu5000 == xuu400",fontsize=16,color="magenta"];618 -> 806[label="",style="dashed", color="magenta", weight=3]; 618 -> 807[label="",style="dashed", color="magenta", weight=3]; 619[label="compare2 (Left xuu75) (Left xuu76) False",fontsize=16,color="black",shape="box"];619 -> 808[label="",style="solid", color="black", weight=3]; 620[label="compare2 (Left xuu75) (Left xuu76) True",fontsize=16,color="black",shape="box"];620 -> 809[label="",style="solid", color="black", weight=3]; 621[label="compare1 (Left xuu5000) (Right xuu400) True",fontsize=16,color="black",shape="box"];621 -> 810[label="",style="solid", color="black", weight=3]; 622[label="compare1 (Right xuu5000) (Left xuu400) False",fontsize=16,color="black",shape="box"];622 -> 811[label="",style="solid", color="black", weight=3]; 623 -> 564[label="",style="dashed", color="red", weight=0]; 623[label="xuu5000 == xuu400",fontsize=16,color="magenta"];623 -> 812[label="",style="dashed", color="magenta", weight=3]; 623 -> 813[label="",style="dashed", color="magenta", weight=3]; 624 -> 565[label="",style="dashed", color="red", weight=0]; 624[label="xuu5000 == xuu400",fontsize=16,color="magenta"];624 -> 814[label="",style="dashed", color="magenta", weight=3]; 624 -> 815[label="",style="dashed", color="magenta", weight=3]; 625 -> 566[label="",style="dashed", color="red", weight=0]; 625[label="xuu5000 == xuu400",fontsize=16,color="magenta"];625 -> 816[label="",style="dashed", color="magenta", weight=3]; 625 -> 817[label="",style="dashed", color="magenta", weight=3]; 626 -> 567[label="",style="dashed", color="red", weight=0]; 626[label="xuu5000 == xuu400",fontsize=16,color="magenta"];626 -> 818[label="",style="dashed", color="magenta", weight=3]; 626 -> 819[label="",style="dashed", color="magenta", weight=3]; 627 -> 568[label="",style="dashed", color="red", weight=0]; 627[label="xuu5000 == xuu400",fontsize=16,color="magenta"];627 -> 820[label="",style="dashed", color="magenta", weight=3]; 627 -> 821[label="",style="dashed", color="magenta", weight=3]; 628 -> 569[label="",style="dashed", color="red", weight=0]; 628[label="xuu5000 == xuu400",fontsize=16,color="magenta"];628 -> 822[label="",style="dashed", color="magenta", weight=3]; 628 -> 823[label="",style="dashed", color="magenta", weight=3]; 629 -> 570[label="",style="dashed", color="red", weight=0]; 629[label="xuu5000 == xuu400",fontsize=16,color="magenta"];629 -> 824[label="",style="dashed", color="magenta", weight=3]; 629 -> 825[label="",style="dashed", color="magenta", weight=3]; 630 -> 571[label="",style="dashed", color="red", weight=0]; 630[label="xuu5000 == xuu400",fontsize=16,color="magenta"];630 -> 826[label="",style="dashed", color="magenta", weight=3]; 630 -> 827[label="",style="dashed", color="magenta", weight=3]; 631 -> 572[label="",style="dashed", color="red", weight=0]; 631[label="xuu5000 == xuu400",fontsize=16,color="magenta"];631 -> 828[label="",style="dashed", color="magenta", weight=3]; 631 -> 829[label="",style="dashed", color="magenta", weight=3]; 632 -> 573[label="",style="dashed", color="red", weight=0]; 632[label="xuu5000 == xuu400",fontsize=16,color="magenta"];632 -> 830[label="",style="dashed", color="magenta", weight=3]; 632 -> 831[label="",style="dashed", color="magenta", weight=3]; 633 -> 574[label="",style="dashed", color="red", weight=0]; 633[label="xuu5000 == xuu400",fontsize=16,color="magenta"];633 -> 832[label="",style="dashed", color="magenta", weight=3]; 633 -> 833[label="",style="dashed", color="magenta", weight=3]; 634 -> 575[label="",style="dashed", color="red", weight=0]; 634[label="xuu5000 == xuu400",fontsize=16,color="magenta"];634 -> 834[label="",style="dashed", color="magenta", weight=3]; 634 -> 835[label="",style="dashed", color="magenta", weight=3]; 635 -> 576[label="",style="dashed", color="red", weight=0]; 635[label="xuu5000 == xuu400",fontsize=16,color="magenta"];635 -> 836[label="",style="dashed", color="magenta", weight=3]; 635 -> 837[label="",style="dashed", color="magenta", weight=3]; 636 -> 577[label="",style="dashed", color="red", weight=0]; 636[label="xuu5000 == xuu400",fontsize=16,color="magenta"];636 -> 838[label="",style="dashed", color="magenta", weight=3]; 636 -> 839[label="",style="dashed", color="magenta", weight=3]; 637[label="compare2 (Right xuu82) (Right xuu83) False",fontsize=16,color="black",shape="box"];637 -> 840[label="",style="solid", color="black", weight=3]; 638[label="compare2 (Right xuu82) (Right xuu83) True",fontsize=16,color="black",shape="box"];638 -> 841[label="",style="solid", color="black", weight=3]; 639[label="compare1 Nothing (Just xuu400) True",fontsize=16,color="black",shape="box"];639 -> 842[label="",style="solid", color="black", weight=3]; 640[label="compare1 (Just xuu5000) Nothing False",fontsize=16,color="black",shape="box"];640 -> 843[label="",style="solid", color="black", weight=3]; 641 -> 564[label="",style="dashed", color="red", weight=0]; 641[label="xuu5000 == xuu400",fontsize=16,color="magenta"];641 -> 844[label="",style="dashed", color="magenta", weight=3]; 641 -> 845[label="",style="dashed", color="magenta", weight=3]; 642 -> 565[label="",style="dashed", color="red", weight=0]; 642[label="xuu5000 == xuu400",fontsize=16,color="magenta"];642 -> 846[label="",style="dashed", color="magenta", weight=3]; 642 -> 847[label="",style="dashed", color="magenta", weight=3]; 643 -> 566[label="",style="dashed", color="red", weight=0]; 643[label="xuu5000 == xuu400",fontsize=16,color="magenta"];643 -> 848[label="",style="dashed", color="magenta", weight=3]; 643 -> 849[label="",style="dashed", color="magenta", weight=3]; 644 -> 567[label="",style="dashed", color="red", weight=0]; 644[label="xuu5000 == xuu400",fontsize=16,color="magenta"];644 -> 850[label="",style="dashed", color="magenta", weight=3]; 644 -> 851[label="",style="dashed", color="magenta", weight=3]; 645 -> 568[label="",style="dashed", color="red", weight=0]; 645[label="xuu5000 == xuu400",fontsize=16,color="magenta"];645 -> 852[label="",style="dashed", color="magenta", weight=3]; 645 -> 853[label="",style="dashed", color="magenta", weight=3]; 646 -> 569[label="",style="dashed", color="red", weight=0]; 646[label="xuu5000 == xuu400",fontsize=16,color="magenta"];646 -> 854[label="",style="dashed", color="magenta", weight=3]; 646 -> 855[label="",style="dashed", color="magenta", weight=3]; 647 -> 570[label="",style="dashed", color="red", weight=0]; 647[label="xuu5000 == xuu400",fontsize=16,color="magenta"];647 -> 856[label="",style="dashed", color="magenta", weight=3]; 647 -> 857[label="",style="dashed", color="magenta", weight=3]; 648 -> 571[label="",style="dashed", color="red", weight=0]; 648[label="xuu5000 == xuu400",fontsize=16,color="magenta"];648 -> 858[label="",style="dashed", color="magenta", weight=3]; 648 -> 859[label="",style="dashed", color="magenta", weight=3]; 649 -> 572[label="",style="dashed", color="red", weight=0]; 649[label="xuu5000 == xuu400",fontsize=16,color="magenta"];649 -> 860[label="",style="dashed", color="magenta", weight=3]; 649 -> 861[label="",style="dashed", color="magenta", weight=3]; 650 -> 573[label="",style="dashed", color="red", weight=0]; 650[label="xuu5000 == xuu400",fontsize=16,color="magenta"];650 -> 862[label="",style="dashed", color="magenta", weight=3]; 650 -> 863[label="",style="dashed", color="magenta", weight=3]; 651 -> 574[label="",style="dashed", color="red", weight=0]; 651[label="xuu5000 == xuu400",fontsize=16,color="magenta"];651 -> 864[label="",style="dashed", color="magenta", weight=3]; 651 -> 865[label="",style="dashed", color="magenta", weight=3]; 652 -> 575[label="",style="dashed", color="red", weight=0]; 652[label="xuu5000 == xuu400",fontsize=16,color="magenta"];652 -> 866[label="",style="dashed", color="magenta", weight=3]; 652 -> 867[label="",style="dashed", color="magenta", weight=3]; 653 -> 576[label="",style="dashed", color="red", weight=0]; 653[label="xuu5000 == xuu400",fontsize=16,color="magenta"];653 -> 868[label="",style="dashed", color="magenta", weight=3]; 653 -> 869[label="",style="dashed", color="magenta", weight=3]; 654 -> 577[label="",style="dashed", color="red", weight=0]; 654[label="xuu5000 == xuu400",fontsize=16,color="magenta"];654 -> 870[label="",style="dashed", color="magenta", weight=3]; 654 -> 871[label="",style="dashed", color="magenta", weight=3]; 655[label="compare2 (Just xuu89) (Just xuu90) False",fontsize=16,color="black",shape="box"];655 -> 872[label="",style="solid", color="black", weight=3]; 656[label="compare2 (Just xuu89) (Just xuu90) True",fontsize=16,color="black",shape="box"];656 -> 873[label="",style="solid", color="black", weight=3]; 1188[label="xuu5000 == xuu400",fontsize=16,color="blue",shape="box"];3446[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3446[label="",style="solid", color="blue", weight=9]; 3446 -> 1224[label="",style="solid", color="blue", weight=3]; 3447[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3447[label="",style="solid", color="blue", weight=9]; 3447 -> 1225[label="",style="solid", color="blue", weight=3]; 3448[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3448[label="",style="solid", color="blue", weight=9]; 3448 -> 1226[label="",style="solid", color="blue", weight=3]; 3449[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3449[label="",style="solid", color="blue", weight=9]; 3449 -> 1227[label="",style="solid", color="blue", weight=3]; 3450[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3450[label="",style="solid", color="blue", weight=9]; 3450 -> 1228[label="",style="solid", color="blue", weight=3]; 3451[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3451[label="",style="solid", color="blue", weight=9]; 3451 -> 1229[label="",style="solid", color="blue", weight=3]; 3452[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3452[label="",style="solid", color="blue", weight=9]; 3452 -> 1230[label="",style="solid", color="blue", weight=3]; 3453[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3453[label="",style="solid", color="blue", weight=9]; 3453 -> 1231[label="",style="solid", color="blue", weight=3]; 3454[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3454[label="",style="solid", color="blue", weight=9]; 3454 -> 1232[label="",style="solid", color="blue", weight=3]; 3455[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3455[label="",style="solid", color="blue", weight=9]; 3455 -> 1233[label="",style="solid", color="blue", weight=3]; 3456[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3456[label="",style="solid", color="blue", weight=9]; 3456 -> 1234[label="",style="solid", color="blue", weight=3]; 3457[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3457[label="",style="solid", color="blue", weight=9]; 3457 -> 1235[label="",style="solid", color="blue", weight=3]; 3458[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3458[label="",style="solid", color="blue", weight=9]; 3458 -> 1236[label="",style="solid", color="blue", weight=3]; 3459[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3459[label="",style="solid", color="blue", weight=9]; 3459 -> 1237[label="",style="solid", color="blue", weight=3]; 1189[label="xuu5001 == xuu401",fontsize=16,color="blue",shape="box"];3460[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3460[label="",style="solid", color="blue", weight=9]; 3460 -> 1238[label="",style="solid", color="blue", weight=3]; 3461[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3461[label="",style="solid", color="blue", weight=9]; 3461 -> 1239[label="",style="solid", color="blue", weight=3]; 3462[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3462[label="",style="solid", color="blue", weight=9]; 3462 -> 1240[label="",style="solid", color="blue", weight=3]; 3463[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3463[label="",style="solid", color="blue", weight=9]; 3463 -> 1241[label="",style="solid", color="blue", weight=3]; 3464[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3464[label="",style="solid", color="blue", weight=9]; 3464 -> 1242[label="",style="solid", color="blue", weight=3]; 3465[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3465[label="",style="solid", color="blue", weight=9]; 3465 -> 1243[label="",style="solid", color="blue", weight=3]; 3466[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3466[label="",style="solid", color="blue", weight=9]; 3466 -> 1244[label="",style="solid", color="blue", weight=3]; 3467[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3467[label="",style="solid", color="blue", weight=9]; 3467 -> 1245[label="",style="solid", color="blue", weight=3]; 3468[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3468[label="",style="solid", color="blue", weight=9]; 3468 -> 1246[label="",style="solid", color="blue", weight=3]; 3469[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3469[label="",style="solid", color="blue", weight=9]; 3469 -> 1247[label="",style="solid", color="blue", weight=3]; 3470[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3470[label="",style="solid", color="blue", weight=9]; 3470 -> 1248[label="",style="solid", color="blue", weight=3]; 3471[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3471[label="",style="solid", color="blue", weight=9]; 3471 -> 1249[label="",style="solid", color="blue", weight=3]; 3472[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3472[label="",style="solid", color="blue", weight=9]; 3472 -> 1250[label="",style="solid", color="blue", weight=3]; 3473[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3473[label="",style="solid", color="blue", weight=9]; 3473 -> 1251[label="",style="solid", color="blue", weight=3]; 999[label="compare2 (xuu126,xuu127) (xuu128,xuu129) False",fontsize=16,color="black",shape="box"];999 -> 1022[label="",style="solid", color="black", weight=3]; 1000[label="compare2 (xuu126,xuu127) (xuu128,xuu129) True",fontsize=16,color="black",shape="box"];1000 -> 1023[label="",style="solid", color="black", weight=3]; 673[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];673 -> 904[label="",style="solid", color="black", weight=3]; 674[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];674 -> 905[label="",style="solid", color="black", weight=3]; 675[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];675 -> 906[label="",style="solid", color="black", weight=3]; 676[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];676 -> 907[label="",style="solid", color="black", weight=3]; 677[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];677 -> 908[label="",style="solid", color="black", weight=3]; 678[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];678 -> 909[label="",style="solid", color="black", weight=3]; 682[label="FiniteMap.mkBalBranch6Size_r xuu17 xuu18 xuu44 xuu21",fontsize=16,color="black",shape="triangle"];682 -> 914[label="",style="solid", color="black", weight=3]; 1064 -> 914[label="",style="dashed", color="red", weight=0]; 1064[label="FiniteMap.sizeFM xuu44",fontsize=16,color="magenta"];1064 -> 1073[label="",style="dashed", color="magenta", weight=3]; 1065[label="primPlusInt (Pos xuu4420) xuu139",fontsize=16,color="burlywood",shape="box"];3474[label="xuu139/Pos xuu1390",fontsize=10,color="white",style="solid",shape="box"];1065 -> 3474[label="",style="solid", color="burlywood", weight=9]; 3474 -> 1074[label="",style="solid", color="burlywood", weight=3]; 3475[label="xuu139/Neg xuu1390",fontsize=10,color="white",style="solid",shape="box"];1065 -> 3475[label="",style="solid", color="burlywood", weight=9]; 3475 -> 1075[label="",style="solid", color="burlywood", weight=3]; 1066[label="primPlusInt (Neg xuu4420) xuu139",fontsize=16,color="burlywood",shape="box"];3476[label="xuu139/Pos xuu1390",fontsize=10,color="white",style="solid",shape="box"];1066 -> 3476[label="",style="solid", color="burlywood", weight=9]; 3476 -> 1076[label="",style="solid", color="burlywood", weight=3]; 3477[label="xuu139/Neg xuu1390",fontsize=10,color="white",style="solid",shape="box"];1066 -> 3477[label="",style="solid", color="burlywood", weight=9]; 3477 -> 1077[label="",style="solid", color="burlywood", weight=3]; 681 -> 428[label="",style="dashed", color="red", weight=0]; 681[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu17 xuu18 xuu44 xuu21",fontsize=16,color="magenta"];681 -> 912[label="",style="dashed", color="magenta", weight=3]; 681 -> 913[label="",style="dashed", color="magenta", weight=3]; 683[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 False",fontsize=16,color="black",shape="box"];683 -> 915[label="",style="solid", color="black", weight=3]; 684[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 True",fontsize=16,color="black",shape="box"];684 -> 916[label="",style="solid", color="black", weight=3]; 685[label="FiniteMap.Branch xuu17 xuu18 (FiniteMap.mkBranchUnbox xuu44 xuu17 xuu21 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu44 xuu17 xuu21 + FiniteMap.mkBranchRight_size xuu44 xuu17 xuu21)) xuu44 xuu21",fontsize=16,color="green",shape="box"];685 -> 917[label="",style="dashed", color="green", weight=3]; 686[label="xuu400",fontsize=16,color="green",shape="box"];687[label="xuu5000",fontsize=16,color="green",shape="box"];688[label="xuu400",fontsize=16,color="green",shape="box"];689[label="xuu5000",fontsize=16,color="green",shape="box"];690[label="xuu400",fontsize=16,color="green",shape="box"];691[label="xuu5000",fontsize=16,color="green",shape="box"];692[label="xuu400",fontsize=16,color="green",shape="box"];693[label="xuu5000",fontsize=16,color="green",shape="box"];694[label="xuu400",fontsize=16,color="green",shape="box"];695[label="xuu5000",fontsize=16,color="green",shape="box"];696[label="xuu400",fontsize=16,color="green",shape="box"];697[label="xuu5000",fontsize=16,color="green",shape="box"];698[label="xuu400",fontsize=16,color="green",shape="box"];699[label="xuu5000",fontsize=16,color="green",shape="box"];700[label="xuu400",fontsize=16,color="green",shape="box"];701[label="xuu5000",fontsize=16,color="green",shape="box"];702[label="xuu400",fontsize=16,color="green",shape="box"];703[label="xuu5000",fontsize=16,color="green",shape="box"];704[label="xuu400",fontsize=16,color="green",shape="box"];705[label="xuu5000",fontsize=16,color="green",shape="box"];706[label="xuu400",fontsize=16,color="green",shape="box"];707[label="xuu5000",fontsize=16,color="green",shape="box"];708[label="xuu400",fontsize=16,color="green",shape="box"];709[label="xuu5000",fontsize=16,color="green",shape="box"];710[label="xuu400",fontsize=16,color="green",shape="box"];711[label="xuu5000",fontsize=16,color="green",shape="box"];712[label="xuu400",fontsize=16,color="green",shape="box"];713[label="xuu5000",fontsize=16,color="green",shape="box"];714[label="LT",fontsize=16,color="green",shape="box"];715[label="xuu54",fontsize=16,color="green",shape="box"];716[label="GT",fontsize=16,color="green",shape="box"];1204 -> 564[label="",style="dashed", color="red", weight=0]; 1204[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1205 -> 565[label="",style="dashed", color="red", weight=0]; 1205[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1206 -> 566[label="",style="dashed", color="red", weight=0]; 1206[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1207 -> 567[label="",style="dashed", color="red", weight=0]; 1207[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1208 -> 568[label="",style="dashed", color="red", weight=0]; 1208[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1209 -> 569[label="",style="dashed", color="red", weight=0]; 1209[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1210 -> 570[label="",style="dashed", color="red", weight=0]; 1210[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1211 -> 571[label="",style="dashed", color="red", weight=0]; 1211[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1212 -> 572[label="",style="dashed", color="red", weight=0]; 1212[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1213 -> 573[label="",style="dashed", color="red", weight=0]; 1213[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1214 -> 574[label="",style="dashed", color="red", weight=0]; 1214[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1215 -> 575[label="",style="dashed", color="red", weight=0]; 1215[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1216 -> 576[label="",style="dashed", color="red", weight=0]; 1216[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1217 -> 577[label="",style="dashed", color="red", weight=0]; 1217[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1218[label="xuu5001 == xuu401",fontsize=16,color="blue",shape="box"];3478[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3478[label="",style="solid", color="blue", weight=9]; 3478 -> 1270[label="",style="solid", color="blue", weight=3]; 3479[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3479[label="",style="solid", color="blue", weight=9]; 3479 -> 1271[label="",style="solid", color="blue", weight=3]; 3480[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3480[label="",style="solid", color="blue", weight=9]; 3480 -> 1272[label="",style="solid", color="blue", weight=3]; 3481[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3481[label="",style="solid", color="blue", weight=9]; 3481 -> 1273[label="",style="solid", color="blue", weight=3]; 3482[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3482[label="",style="solid", color="blue", weight=9]; 3482 -> 1274[label="",style="solid", color="blue", weight=3]; 3483[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3483[label="",style="solid", color="blue", weight=9]; 3483 -> 1275[label="",style="solid", color="blue", weight=3]; 3484[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3484[label="",style="solid", color="blue", weight=9]; 3484 -> 1276[label="",style="solid", color="blue", weight=3]; 3485[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3485[label="",style="solid", color="blue", weight=9]; 3485 -> 1277[label="",style="solid", color="blue", weight=3]; 3486[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3486[label="",style="solid", color="blue", weight=9]; 3486 -> 1278[label="",style="solid", color="blue", weight=3]; 3487[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3487[label="",style="solid", color="blue", weight=9]; 3487 -> 1279[label="",style="solid", color="blue", weight=3]; 3488[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3488[label="",style="solid", color="blue", weight=9]; 3488 -> 1280[label="",style="solid", color="blue", weight=3]; 3489[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3489[label="",style="solid", color="blue", weight=9]; 3489 -> 1281[label="",style="solid", color="blue", weight=3]; 3490[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3490[label="",style="solid", color="blue", weight=9]; 3490 -> 1282[label="",style="solid", color="blue", weight=3]; 3491[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1218 -> 3491[label="",style="solid", color="blue", weight=9]; 3491 -> 1283[label="",style="solid", color="blue", weight=3]; 1219[label="xuu5002 == xuu402",fontsize=16,color="blue",shape="box"];3492[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 3492[label="",style="solid", color="blue", weight=9]; 3492 -> 1284[label="",style="solid", color="blue", weight=3]; 3493[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 3493[label="",style="solid", color="blue", weight=9]; 3493 -> 1285[label="",style="solid", color="blue", weight=3]; 3494[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 3494[label="",style="solid", color="blue", weight=9]; 3494 -> 1286[label="",style="solid", color="blue", weight=3]; 3495[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 3495[label="",style="solid", color="blue", weight=9]; 3495 -> 1287[label="",style="solid", color="blue", weight=3]; 3496[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 3496[label="",style="solid", color="blue", weight=9]; 3496 -> 1288[label="",style="solid", color="blue", weight=3]; 3497[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 3497[label="",style="solid", color="blue", weight=9]; 3497 -> 1289[label="",style="solid", color="blue", weight=3]; 3498[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 3498[label="",style="solid", color="blue", weight=9]; 3498 -> 1290[label="",style="solid", color="blue", weight=3]; 3499[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 3499[label="",style="solid", color="blue", weight=9]; 3499 -> 1291[label="",style="solid", color="blue", weight=3]; 3500[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 3500[label="",style="solid", color="blue", weight=9]; 3500 -> 1292[label="",style="solid", color="blue", weight=3]; 3501[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 3501[label="",style="solid", color="blue", weight=9]; 3501 -> 1293[label="",style="solid", color="blue", weight=3]; 3502[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 3502[label="",style="solid", color="blue", weight=9]; 3502 -> 1294[label="",style="solid", color="blue", weight=3]; 3503[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 3503[label="",style="solid", color="blue", weight=9]; 3503 -> 1295[label="",style="solid", color="blue", weight=3]; 3504[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 3504[label="",style="solid", color="blue", weight=9]; 3504 -> 1296[label="",style="solid", color="blue", weight=3]; 3505[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1219 -> 3505[label="",style="solid", color="blue", weight=9]; 3505 -> 1297[label="",style="solid", color="blue", weight=3]; 1220[label="False && xuu151",fontsize=16,color="black",shape="box"];1220 -> 1298[label="",style="solid", color="black", weight=3]; 1221[label="True && xuu151",fontsize=16,color="black",shape="box"];1221 -> 1299[label="",style="solid", color="black", weight=3]; 1222[label="compare1 (xuu113,xuu114,xuu115) (xuu116,xuu117,xuu118) ((xuu113,xuu114,xuu115) <= (xuu116,xuu117,xuu118))",fontsize=16,color="black",shape="box"];1222 -> 1300[label="",style="solid", color="black", weight=3]; 1223[label="EQ",fontsize=16,color="green",shape="box"];739[label="xuu400",fontsize=16,color="green",shape="box"];740[label="Pos xuu50010",fontsize=16,color="green",shape="box"];741[label="Pos xuu4010",fontsize=16,color="green",shape="box"];742[label="xuu5000",fontsize=16,color="green",shape="box"];743[label="xuu400",fontsize=16,color="green",shape="box"];744[label="Neg xuu50010",fontsize=16,color="green",shape="box"];745[label="Pos xuu4010",fontsize=16,color="green",shape="box"];746[label="xuu5000",fontsize=16,color="green",shape="box"];747[label="xuu400",fontsize=16,color="green",shape="box"];748[label="Pos xuu50010",fontsize=16,color="green",shape="box"];749[label="Neg xuu4010",fontsize=16,color="green",shape="box"];750[label="xuu5000",fontsize=16,color="green",shape="box"];751[label="xuu400",fontsize=16,color="green",shape="box"];752[label="Neg xuu50010",fontsize=16,color="green",shape="box"];753[label="Neg xuu4010",fontsize=16,color="green",shape="box"];754[label="xuu5000",fontsize=16,color="green",shape="box"];755[label="primMulInt (Pos xuu4000) (Pos xuu50010)",fontsize=16,color="black",shape="box"];755 -> 962[label="",style="solid", color="black", weight=3]; 756[label="primMulInt (Pos xuu4000) (Neg xuu50010)",fontsize=16,color="black",shape="box"];756 -> 963[label="",style="solid", color="black", weight=3]; 757[label="primMulInt (Neg xuu4000) (Pos xuu50010)",fontsize=16,color="black",shape="box"];757 -> 964[label="",style="solid", color="black", weight=3]; 758[label="primMulInt (Neg xuu4000) (Neg xuu50010)",fontsize=16,color="black",shape="box"];758 -> 965[label="",style="solid", color="black", weight=3]; 759[label="Integer (primMulInt xuu4000 xuu50010)",fontsize=16,color="green",shape="box"];759 -> 966[label="",style="dashed", color="green", weight=3]; 760[label="xuu400",fontsize=16,color="green",shape="box"];761[label="Pos xuu50010",fontsize=16,color="green",shape="box"];762[label="Pos xuu4010",fontsize=16,color="green",shape="box"];763[label="xuu5000",fontsize=16,color="green",shape="box"];764[label="xuu400",fontsize=16,color="green",shape="box"];765[label="Neg xuu50010",fontsize=16,color="green",shape="box"];766[label="Pos xuu4010",fontsize=16,color="green",shape="box"];767[label="xuu5000",fontsize=16,color="green",shape="box"];768[label="xuu400",fontsize=16,color="green",shape="box"];769[label="Pos xuu50010",fontsize=16,color="green",shape="box"];770[label="Neg xuu4010",fontsize=16,color="green",shape="box"];771[label="xuu5000",fontsize=16,color="green",shape="box"];772[label="xuu400",fontsize=16,color="green",shape="box"];773[label="Neg xuu50010",fontsize=16,color="green",shape="box"];774[label="Neg xuu4010",fontsize=16,color="green",shape="box"];775[label="xuu5000",fontsize=16,color="green",shape="box"];776[label="LT",fontsize=16,color="green",shape="box"];777[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];777 -> 967[label="",style="solid", color="black", weight=3]; 778[label="xuu50000",fontsize=16,color="green",shape="box"];779[label="xuu4000",fontsize=16,color="green",shape="box"];780[label="xuu400",fontsize=16,color="green",shape="box"];781[label="xuu5000",fontsize=16,color="green",shape="box"];564[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];3506[label="xuu5000/LT",fontsize=10,color="white",style="solid",shape="box"];564 -> 3506[label="",style="solid", color="burlywood", weight=9]; 3506 -> 717[label="",style="solid", color="burlywood", weight=3]; 3507[label="xuu5000/EQ",fontsize=10,color="white",style="solid",shape="box"];564 -> 3507[label="",style="solid", color="burlywood", weight=9]; 3507 -> 718[label="",style="solid", color="burlywood", weight=3]; 3508[label="xuu5000/GT",fontsize=10,color="white",style="solid",shape="box"];564 -> 3508[label="",style="solid", color="burlywood", weight=9]; 3508 -> 719[label="",style="solid", color="burlywood", weight=3]; 782[label="xuu400",fontsize=16,color="green",shape="box"];783[label="xuu5000",fontsize=16,color="green",shape="box"];565[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];3509[label="xuu5000/xuu50000 :% xuu50001",fontsize=10,color="white",style="solid",shape="box"];565 -> 3509[label="",style="solid", color="burlywood", weight=9]; 3509 -> 720[label="",style="solid", color="burlywood", weight=3]; 784[label="xuu400",fontsize=16,color="green",shape="box"];785[label="xuu5000",fontsize=16,color="green",shape="box"];566[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];3510[label="xuu5000/(xuu50000,xuu50001,xuu50002)",fontsize=10,color="white",style="solid",shape="box"];566 -> 3510[label="",style="solid", color="burlywood", weight=9]; 3510 -> 721[label="",style="solid", color="burlywood", weight=3]; 786[label="xuu400",fontsize=16,color="green",shape="box"];787[label="xuu5000",fontsize=16,color="green",shape="box"];567[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];3511[label="xuu5000/()",fontsize=10,color="white",style="solid",shape="box"];567 -> 3511[label="",style="solid", color="burlywood", weight=9]; 3511 -> 722[label="",style="solid", color="burlywood", weight=3]; 788[label="xuu400",fontsize=16,color="green",shape="box"];789[label="xuu5000",fontsize=16,color="green",shape="box"];568[label="xuu5000 == xuu400",fontsize=16,color="black",shape="triangle"];568 -> 723[label="",style="solid", color="black", weight=3]; 790[label="xuu400",fontsize=16,color="green",shape="box"];791[label="xuu5000",fontsize=16,color="green",shape="box"];569[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];3512[label="xuu5000/Integer xuu50000",fontsize=10,color="white",style="solid",shape="box"];569 -> 3512[label="",style="solid", color="burlywood", weight=9]; 3512 -> 724[label="",style="solid", color="burlywood", weight=3]; 792[label="xuu400",fontsize=16,color="green",shape="box"];793[label="xuu5000",fontsize=16,color="green",shape="box"];570[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];3513[label="xuu5000/(xuu50000,xuu50001)",fontsize=10,color="white",style="solid",shape="box"];570 -> 3513[label="",style="solid", color="burlywood", weight=9]; 3513 -> 725[label="",style="solid", color="burlywood", weight=3]; 794[label="xuu400",fontsize=16,color="green",shape="box"];795[label="xuu5000",fontsize=16,color="green",shape="box"];571[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];3514[label="xuu5000/False",fontsize=10,color="white",style="solid",shape="box"];571 -> 3514[label="",style="solid", color="burlywood", weight=9]; 3514 -> 726[label="",style="solid", color="burlywood", weight=3]; 3515[label="xuu5000/True",fontsize=10,color="white",style="solid",shape="box"];571 -> 3515[label="",style="solid", color="burlywood", weight=9]; 3515 -> 727[label="",style="solid", color="burlywood", weight=3]; 796[label="xuu400",fontsize=16,color="green",shape="box"];797[label="xuu5000",fontsize=16,color="green",shape="box"];572[label="xuu5000 == xuu400",fontsize=16,color="black",shape="triangle"];572 -> 728[label="",style="solid", color="black", weight=3]; 798[label="xuu400",fontsize=16,color="green",shape="box"];799[label="xuu5000",fontsize=16,color="green",shape="box"];573[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];3516[label="xuu5000/Nothing",fontsize=10,color="white",style="solid",shape="box"];573 -> 3516[label="",style="solid", color="burlywood", weight=9]; 3516 -> 729[label="",style="solid", color="burlywood", weight=3]; 3517[label="xuu5000/Just xuu50000",fontsize=10,color="white",style="solid",shape="box"];573 -> 3517[label="",style="solid", color="burlywood", weight=9]; 3517 -> 730[label="",style="solid", color="burlywood", weight=3]; 800[label="xuu400",fontsize=16,color="green",shape="box"];801[label="xuu5000",fontsize=16,color="green",shape="box"];574[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];3518[label="xuu5000/xuu50000 : xuu50001",fontsize=10,color="white",style="solid",shape="box"];574 -> 3518[label="",style="solid", color="burlywood", weight=9]; 3518 -> 731[label="",style="solid", color="burlywood", weight=3]; 3519[label="xuu5000/[]",fontsize=10,color="white",style="solid",shape="box"];574 -> 3519[label="",style="solid", color="burlywood", weight=9]; 3519 -> 732[label="",style="solid", color="burlywood", weight=3]; 802[label="xuu400",fontsize=16,color="green",shape="box"];803[label="xuu5000",fontsize=16,color="green",shape="box"];575[label="xuu5000 == xuu400",fontsize=16,color="black",shape="triangle"];575 -> 733[label="",style="solid", color="black", weight=3]; 804[label="xuu400",fontsize=16,color="green",shape="box"];805[label="xuu5000",fontsize=16,color="green",shape="box"];576[label="xuu5000 == xuu400",fontsize=16,color="black",shape="triangle"];576 -> 734[label="",style="solid", color="black", weight=3]; 806[label="xuu400",fontsize=16,color="green",shape="box"];807[label="xuu5000",fontsize=16,color="green",shape="box"];577[label="xuu5000 == xuu400",fontsize=16,color="burlywood",shape="triangle"];3520[label="xuu5000/Left xuu50000",fontsize=10,color="white",style="solid",shape="box"];577 -> 3520[label="",style="solid", color="burlywood", weight=9]; 3520 -> 735[label="",style="solid", color="burlywood", weight=3]; 3521[label="xuu5000/Right xuu50000",fontsize=10,color="white",style="solid",shape="box"];577 -> 3521[label="",style="solid", color="burlywood", weight=9]; 3521 -> 736[label="",style="solid", color="burlywood", weight=3]; 808 -> 1263[label="",style="dashed", color="red", weight=0]; 808[label="compare1 (Left xuu75) (Left xuu76) (Left xuu75 <= Left xuu76)",fontsize=16,color="magenta"];808 -> 1264[label="",style="dashed", color="magenta", weight=3]; 808 -> 1265[label="",style="dashed", color="magenta", weight=3]; 808 -> 1266[label="",style="dashed", color="magenta", weight=3]; 809[label="EQ",fontsize=16,color="green",shape="box"];810[label="LT",fontsize=16,color="green",shape="box"];811[label="compare0 (Right xuu5000) (Left xuu400) otherwise",fontsize=16,color="black",shape="box"];811 -> 969[label="",style="solid", color="black", weight=3]; 812[label="xuu400",fontsize=16,color="green",shape="box"];813[label="xuu5000",fontsize=16,color="green",shape="box"];814[label="xuu400",fontsize=16,color="green",shape="box"];815[label="xuu5000",fontsize=16,color="green",shape="box"];816[label="xuu400",fontsize=16,color="green",shape="box"];817[label="xuu5000",fontsize=16,color="green",shape="box"];818[label="xuu400",fontsize=16,color="green",shape="box"];819[label="xuu5000",fontsize=16,color="green",shape="box"];820[label="xuu400",fontsize=16,color="green",shape="box"];821[label="xuu5000",fontsize=16,color="green",shape="box"];822[label="xuu400",fontsize=16,color="green",shape="box"];823[label="xuu5000",fontsize=16,color="green",shape="box"];824[label="xuu400",fontsize=16,color="green",shape="box"];825[label="xuu5000",fontsize=16,color="green",shape="box"];826[label="xuu400",fontsize=16,color="green",shape="box"];827[label="xuu5000",fontsize=16,color="green",shape="box"];828[label="xuu400",fontsize=16,color="green",shape="box"];829[label="xuu5000",fontsize=16,color="green",shape="box"];830[label="xuu400",fontsize=16,color="green",shape="box"];831[label="xuu5000",fontsize=16,color="green",shape="box"];832[label="xuu400",fontsize=16,color="green",shape="box"];833[label="xuu5000",fontsize=16,color="green",shape="box"];834[label="xuu400",fontsize=16,color="green",shape="box"];835[label="xuu5000",fontsize=16,color="green",shape="box"];836[label="xuu400",fontsize=16,color="green",shape="box"];837[label="xuu5000",fontsize=16,color="green",shape="box"];838[label="xuu400",fontsize=16,color="green",shape="box"];839[label="xuu5000",fontsize=16,color="green",shape="box"];840 -> 1361[label="",style="dashed", color="red", weight=0]; 840[label="compare1 (Right xuu82) (Right xuu83) (Right xuu82 <= Right xuu83)",fontsize=16,color="magenta"];840 -> 1362[label="",style="dashed", color="magenta", weight=3]; 840 -> 1363[label="",style="dashed", color="magenta", weight=3]; 840 -> 1364[label="",style="dashed", color="magenta", weight=3]; 841[label="EQ",fontsize=16,color="green",shape="box"];842[label="LT",fontsize=16,color="green",shape="box"];843[label="compare0 (Just xuu5000) Nothing otherwise",fontsize=16,color="black",shape="box"];843 -> 971[label="",style="solid", color="black", weight=3]; 844[label="xuu400",fontsize=16,color="green",shape="box"];845[label="xuu5000",fontsize=16,color="green",shape="box"];846[label="xuu400",fontsize=16,color="green",shape="box"];847[label="xuu5000",fontsize=16,color="green",shape="box"];848[label="xuu400",fontsize=16,color="green",shape="box"];849[label="xuu5000",fontsize=16,color="green",shape="box"];850[label="xuu400",fontsize=16,color="green",shape="box"];851[label="xuu5000",fontsize=16,color="green",shape="box"];852[label="xuu400",fontsize=16,color="green",shape="box"];853[label="xuu5000",fontsize=16,color="green",shape="box"];854[label="xuu400",fontsize=16,color="green",shape="box"];855[label="xuu5000",fontsize=16,color="green",shape="box"];856[label="xuu400",fontsize=16,color="green",shape="box"];857[label="xuu5000",fontsize=16,color="green",shape="box"];858[label="xuu400",fontsize=16,color="green",shape="box"];859[label="xuu5000",fontsize=16,color="green",shape="box"];860[label="xuu400",fontsize=16,color="green",shape="box"];861[label="xuu5000",fontsize=16,color="green",shape="box"];862[label="xuu400",fontsize=16,color="green",shape="box"];863[label="xuu5000",fontsize=16,color="green",shape="box"];864[label="xuu400",fontsize=16,color="green",shape="box"];865[label="xuu5000",fontsize=16,color="green",shape="box"];866[label="xuu400",fontsize=16,color="green",shape="box"];867[label="xuu5000",fontsize=16,color="green",shape="box"];868[label="xuu400",fontsize=16,color="green",shape="box"];869[label="xuu5000",fontsize=16,color="green",shape="box"];870[label="xuu400",fontsize=16,color="green",shape="box"];871[label="xuu5000",fontsize=16,color="green",shape="box"];872 -> 1430[label="",style="dashed", color="red", weight=0]; 872[label="compare1 (Just xuu89) (Just xuu90) (Just xuu89 <= Just xuu90)",fontsize=16,color="magenta"];872 -> 1431[label="",style="dashed", color="magenta", weight=3]; 872 -> 1432[label="",style="dashed", color="magenta", weight=3]; 872 -> 1433[label="",style="dashed", color="magenta", weight=3]; 873[label="EQ",fontsize=16,color="green",shape="box"];1224 -> 564[label="",style="dashed", color="red", weight=0]; 1224[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1224 -> 1301[label="",style="dashed", color="magenta", weight=3]; 1224 -> 1302[label="",style="dashed", color="magenta", weight=3]; 1225 -> 565[label="",style="dashed", color="red", weight=0]; 1225[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1225 -> 1303[label="",style="dashed", color="magenta", weight=3]; 1225 -> 1304[label="",style="dashed", color="magenta", weight=3]; 1226 -> 566[label="",style="dashed", color="red", weight=0]; 1226[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1226 -> 1305[label="",style="dashed", color="magenta", weight=3]; 1226 -> 1306[label="",style="dashed", color="magenta", weight=3]; 1227 -> 567[label="",style="dashed", color="red", weight=0]; 1227[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1227 -> 1307[label="",style="dashed", color="magenta", weight=3]; 1227 -> 1308[label="",style="dashed", color="magenta", weight=3]; 1228 -> 568[label="",style="dashed", color="red", weight=0]; 1228[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1228 -> 1309[label="",style="dashed", color="magenta", weight=3]; 1228 -> 1310[label="",style="dashed", color="magenta", weight=3]; 1229 -> 569[label="",style="dashed", color="red", weight=0]; 1229[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1229 -> 1311[label="",style="dashed", color="magenta", weight=3]; 1229 -> 1312[label="",style="dashed", color="magenta", weight=3]; 1230 -> 570[label="",style="dashed", color="red", weight=0]; 1230[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1230 -> 1313[label="",style="dashed", color="magenta", weight=3]; 1230 -> 1314[label="",style="dashed", color="magenta", weight=3]; 1231 -> 571[label="",style="dashed", color="red", weight=0]; 1231[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1231 -> 1315[label="",style="dashed", color="magenta", weight=3]; 1231 -> 1316[label="",style="dashed", color="magenta", weight=3]; 1232 -> 572[label="",style="dashed", color="red", weight=0]; 1232[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1232 -> 1317[label="",style="dashed", color="magenta", weight=3]; 1232 -> 1318[label="",style="dashed", color="magenta", weight=3]; 1233 -> 573[label="",style="dashed", color="red", weight=0]; 1233[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1233 -> 1319[label="",style="dashed", color="magenta", weight=3]; 1233 -> 1320[label="",style="dashed", color="magenta", weight=3]; 1234 -> 574[label="",style="dashed", color="red", weight=0]; 1234[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1234 -> 1321[label="",style="dashed", color="magenta", weight=3]; 1234 -> 1322[label="",style="dashed", color="magenta", weight=3]; 1235 -> 575[label="",style="dashed", color="red", weight=0]; 1235[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1235 -> 1323[label="",style="dashed", color="magenta", weight=3]; 1235 -> 1324[label="",style="dashed", color="magenta", weight=3]; 1236 -> 576[label="",style="dashed", color="red", weight=0]; 1236[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1236 -> 1325[label="",style="dashed", color="magenta", weight=3]; 1236 -> 1326[label="",style="dashed", color="magenta", weight=3]; 1237 -> 577[label="",style="dashed", color="red", weight=0]; 1237[label="xuu5000 == xuu400",fontsize=16,color="magenta"];1237 -> 1327[label="",style="dashed", color="magenta", weight=3]; 1237 -> 1328[label="",style="dashed", color="magenta", weight=3]; 1238 -> 564[label="",style="dashed", color="red", weight=0]; 1238[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1238 -> 1329[label="",style="dashed", color="magenta", weight=3]; 1238 -> 1330[label="",style="dashed", color="magenta", weight=3]; 1239 -> 565[label="",style="dashed", color="red", weight=0]; 1239[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1239 -> 1331[label="",style="dashed", color="magenta", weight=3]; 1239 -> 1332[label="",style="dashed", color="magenta", weight=3]; 1240 -> 566[label="",style="dashed", color="red", weight=0]; 1240[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1240 -> 1333[label="",style="dashed", color="magenta", weight=3]; 1240 -> 1334[label="",style="dashed", color="magenta", weight=3]; 1241 -> 567[label="",style="dashed", color="red", weight=0]; 1241[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1241 -> 1335[label="",style="dashed", color="magenta", weight=3]; 1241 -> 1336[label="",style="dashed", color="magenta", weight=3]; 1242 -> 568[label="",style="dashed", color="red", weight=0]; 1242[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1242 -> 1337[label="",style="dashed", color="magenta", weight=3]; 1242 -> 1338[label="",style="dashed", color="magenta", weight=3]; 1243 -> 569[label="",style="dashed", color="red", weight=0]; 1243[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1243 -> 1339[label="",style="dashed", color="magenta", weight=3]; 1243 -> 1340[label="",style="dashed", color="magenta", weight=3]; 1244 -> 570[label="",style="dashed", color="red", weight=0]; 1244[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1244 -> 1341[label="",style="dashed", color="magenta", weight=3]; 1244 -> 1342[label="",style="dashed", color="magenta", weight=3]; 1245 -> 571[label="",style="dashed", color="red", weight=0]; 1245[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1245 -> 1343[label="",style="dashed", color="magenta", weight=3]; 1245 -> 1344[label="",style="dashed", color="magenta", weight=3]; 1246 -> 572[label="",style="dashed", color="red", weight=0]; 1246[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1246 -> 1345[label="",style="dashed", color="magenta", weight=3]; 1246 -> 1346[label="",style="dashed", color="magenta", weight=3]; 1247 -> 573[label="",style="dashed", color="red", weight=0]; 1247[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1247 -> 1347[label="",style="dashed", color="magenta", weight=3]; 1247 -> 1348[label="",style="dashed", color="magenta", weight=3]; 1248 -> 574[label="",style="dashed", color="red", weight=0]; 1248[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1248 -> 1349[label="",style="dashed", color="magenta", weight=3]; 1248 -> 1350[label="",style="dashed", color="magenta", weight=3]; 1249 -> 575[label="",style="dashed", color="red", weight=0]; 1249[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1249 -> 1351[label="",style="dashed", color="magenta", weight=3]; 1249 -> 1352[label="",style="dashed", color="magenta", weight=3]; 1250 -> 576[label="",style="dashed", color="red", weight=0]; 1250[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1250 -> 1353[label="",style="dashed", color="magenta", weight=3]; 1250 -> 1354[label="",style="dashed", color="magenta", weight=3]; 1251 -> 577[label="",style="dashed", color="red", weight=0]; 1251[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1251 -> 1355[label="",style="dashed", color="magenta", weight=3]; 1251 -> 1356[label="",style="dashed", color="magenta", weight=3]; 1022[label="compare1 (xuu126,xuu127) (xuu128,xuu129) ((xuu126,xuu127) <= (xuu128,xuu129))",fontsize=16,color="black",shape="box"];1022 -> 1067[label="",style="solid", color="black", weight=3]; 1023[label="EQ",fontsize=16,color="green",shape="box"];904[label="LT",fontsize=16,color="green",shape="box"];905[label="LT",fontsize=16,color="green",shape="box"];906[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];906 -> 1017[label="",style="solid", color="black", weight=3]; 907[label="LT",fontsize=16,color="green",shape="box"];908[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];908 -> 1018[label="",style="solid", color="black", weight=3]; 909[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];909 -> 1019[label="",style="solid", color="black", weight=3]; 914[label="FiniteMap.sizeFM xuu21",fontsize=16,color="burlywood",shape="triangle"];3522[label="xuu21/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];914 -> 3522[label="",style="solid", color="burlywood", weight=9]; 3522 -> 1069[label="",style="solid", color="burlywood", weight=3]; 3523[label="xuu21/FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214",fontsize=10,color="white",style="solid",shape="box"];914 -> 3523[label="",style="solid", color="burlywood", weight=9]; 3523 -> 1070[label="",style="solid", color="burlywood", weight=3]; 1073[label="xuu44",fontsize=16,color="green",shape="box"];1074[label="primPlusInt (Pos xuu4420) (Pos xuu1390)",fontsize=16,color="black",shape="box"];1074 -> 1252[label="",style="solid", color="black", weight=3]; 1075[label="primPlusInt (Pos xuu4420) (Neg xuu1390)",fontsize=16,color="black",shape="box"];1075 -> 1253[label="",style="solid", color="black", weight=3]; 1076[label="primPlusInt (Neg xuu4420) (Pos xuu1390)",fontsize=16,color="black",shape="box"];1076 -> 1254[label="",style="solid", color="black", weight=3]; 1077[label="primPlusInt (Neg xuu4420) (Neg xuu1390)",fontsize=16,color="black",shape="box"];1077 -> 1255[label="",style="solid", color="black", weight=3]; 912 -> 1056[label="",style="dashed", color="red", weight=0]; 912[label="FiniteMap.mkBalBranch6Size_l xuu17 xuu18 xuu44 xuu21",fontsize=16,color="magenta"];913[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];913 -> 1068[label="",style="solid", color="black", weight=3]; 915 -> 1071[label="",style="dashed", color="red", weight=0]; 915[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 (FiniteMap.mkBalBranch6Size_l xuu17 xuu18 xuu44 xuu21 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu17 xuu18 xuu44 xuu21)",fontsize=16,color="magenta"];915 -> 1072[label="",style="dashed", color="magenta", weight=3]; 916[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu17 xuu18 xuu44 xuu21 xuu44 xuu21 xuu21",fontsize=16,color="burlywood",shape="box"];3524[label="xuu21/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];916 -> 3524[label="",style="solid", color="burlywood", weight=9]; 3524 -> 1078[label="",style="solid", color="burlywood", weight=3]; 3525[label="xuu21/FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214",fontsize=10,color="white",style="solid",shape="box"];916 -> 3525[label="",style="solid", color="burlywood", weight=9]; 3525 -> 1079[label="",style="solid", color="burlywood", weight=3]; 917[label="FiniteMap.mkBranchUnbox xuu44 xuu17 xuu21 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu44 xuu17 xuu21 + FiniteMap.mkBranchRight_size xuu44 xuu17 xuu21)",fontsize=16,color="black",shape="box"];917 -> 1080[label="",style="solid", color="black", weight=3]; 1270 -> 564[label="",style="dashed", color="red", weight=0]; 1270[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1270 -> 1368[label="",style="dashed", color="magenta", weight=3]; 1270 -> 1369[label="",style="dashed", color="magenta", weight=3]; 1271 -> 565[label="",style="dashed", color="red", weight=0]; 1271[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1271 -> 1370[label="",style="dashed", color="magenta", weight=3]; 1271 -> 1371[label="",style="dashed", color="magenta", weight=3]; 1272 -> 566[label="",style="dashed", color="red", weight=0]; 1272[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1272 -> 1372[label="",style="dashed", color="magenta", weight=3]; 1272 -> 1373[label="",style="dashed", color="magenta", weight=3]; 1273 -> 567[label="",style="dashed", color="red", weight=0]; 1273[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1273 -> 1374[label="",style="dashed", color="magenta", weight=3]; 1273 -> 1375[label="",style="dashed", color="magenta", weight=3]; 1274 -> 568[label="",style="dashed", color="red", weight=0]; 1274[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1274 -> 1376[label="",style="dashed", color="magenta", weight=3]; 1274 -> 1377[label="",style="dashed", color="magenta", weight=3]; 1275 -> 569[label="",style="dashed", color="red", weight=0]; 1275[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1275 -> 1378[label="",style="dashed", color="magenta", weight=3]; 1275 -> 1379[label="",style="dashed", color="magenta", weight=3]; 1276 -> 570[label="",style="dashed", color="red", weight=0]; 1276[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1276 -> 1380[label="",style="dashed", color="magenta", weight=3]; 1276 -> 1381[label="",style="dashed", color="magenta", weight=3]; 1277 -> 571[label="",style="dashed", color="red", weight=0]; 1277[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1277 -> 1382[label="",style="dashed", color="magenta", weight=3]; 1277 -> 1383[label="",style="dashed", color="magenta", weight=3]; 1278 -> 572[label="",style="dashed", color="red", weight=0]; 1278[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1278 -> 1384[label="",style="dashed", color="magenta", weight=3]; 1278 -> 1385[label="",style="dashed", color="magenta", weight=3]; 1279 -> 573[label="",style="dashed", color="red", weight=0]; 1279[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1279 -> 1386[label="",style="dashed", color="magenta", weight=3]; 1279 -> 1387[label="",style="dashed", color="magenta", weight=3]; 1280 -> 574[label="",style="dashed", color="red", weight=0]; 1280[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1280 -> 1388[label="",style="dashed", color="magenta", weight=3]; 1280 -> 1389[label="",style="dashed", color="magenta", weight=3]; 1281 -> 575[label="",style="dashed", color="red", weight=0]; 1281[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1281 -> 1390[label="",style="dashed", color="magenta", weight=3]; 1281 -> 1391[label="",style="dashed", color="magenta", weight=3]; 1282 -> 576[label="",style="dashed", color="red", weight=0]; 1282[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1282 -> 1392[label="",style="dashed", color="magenta", weight=3]; 1282 -> 1393[label="",style="dashed", color="magenta", weight=3]; 1283 -> 577[label="",style="dashed", color="red", weight=0]; 1283[label="xuu5001 == xuu401",fontsize=16,color="magenta"];1283 -> 1394[label="",style="dashed", color="magenta", weight=3]; 1283 -> 1395[label="",style="dashed", color="magenta", weight=3]; 1284 -> 564[label="",style="dashed", color="red", weight=0]; 1284[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1284 -> 1396[label="",style="dashed", color="magenta", weight=3]; 1284 -> 1397[label="",style="dashed", color="magenta", weight=3]; 1285 -> 565[label="",style="dashed", color="red", weight=0]; 1285[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1285 -> 1398[label="",style="dashed", color="magenta", weight=3]; 1285 -> 1399[label="",style="dashed", color="magenta", weight=3]; 1286 -> 566[label="",style="dashed", color="red", weight=0]; 1286[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1286 -> 1400[label="",style="dashed", color="magenta", weight=3]; 1286 -> 1401[label="",style="dashed", color="magenta", weight=3]; 1287 -> 567[label="",style="dashed", color="red", weight=0]; 1287[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1287 -> 1402[label="",style="dashed", color="magenta", weight=3]; 1287 -> 1403[label="",style="dashed", color="magenta", weight=3]; 1288 -> 568[label="",style="dashed", color="red", weight=0]; 1288[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1288 -> 1404[label="",style="dashed", color="magenta", weight=3]; 1288 -> 1405[label="",style="dashed", color="magenta", weight=3]; 1289 -> 569[label="",style="dashed", color="red", weight=0]; 1289[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1289 -> 1406[label="",style="dashed", color="magenta", weight=3]; 1289 -> 1407[label="",style="dashed", color="magenta", weight=3]; 1290 -> 570[label="",style="dashed", color="red", weight=0]; 1290[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1290 -> 1408[label="",style="dashed", color="magenta", weight=3]; 1290 -> 1409[label="",style="dashed", color="magenta", weight=3]; 1291 -> 571[label="",style="dashed", color="red", weight=0]; 1291[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1291 -> 1410[label="",style="dashed", color="magenta", weight=3]; 1291 -> 1411[label="",style="dashed", color="magenta", weight=3]; 1292 -> 572[label="",style="dashed", color="red", weight=0]; 1292[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1292 -> 1412[label="",style="dashed", color="magenta", weight=3]; 1292 -> 1413[label="",style="dashed", color="magenta", weight=3]; 1293 -> 573[label="",style="dashed", color="red", weight=0]; 1293[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1293 -> 1414[label="",style="dashed", color="magenta", weight=3]; 1293 -> 1415[label="",style="dashed", color="magenta", weight=3]; 1294 -> 574[label="",style="dashed", color="red", weight=0]; 1294[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1294 -> 1416[label="",style="dashed", color="magenta", weight=3]; 1294 -> 1417[label="",style="dashed", color="magenta", weight=3]; 1295 -> 575[label="",style="dashed", color="red", weight=0]; 1295[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1295 -> 1418[label="",style="dashed", color="magenta", weight=3]; 1295 -> 1419[label="",style="dashed", color="magenta", weight=3]; 1296 -> 576[label="",style="dashed", color="red", weight=0]; 1296[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1296 -> 1420[label="",style="dashed", color="magenta", weight=3]; 1296 -> 1421[label="",style="dashed", color="magenta", weight=3]; 1297 -> 577[label="",style="dashed", color="red", weight=0]; 1297[label="xuu5002 == xuu402",fontsize=16,color="magenta"];1297 -> 1422[label="",style="dashed", color="magenta", weight=3]; 1297 -> 1423[label="",style="dashed", color="magenta", weight=3]; 1298[label="False",fontsize=16,color="green",shape="box"];1299[label="xuu151",fontsize=16,color="green",shape="box"];1300 -> 1462[label="",style="dashed", color="red", weight=0]; 1300[label="compare1 (xuu113,xuu114,xuu115) (xuu116,xuu117,xuu118) (xuu113 < xuu116 || xuu113 == xuu116 && (xuu114 < xuu117 || xuu114 == xuu117 && xuu115 <= xuu118))",fontsize=16,color="magenta"];1300 -> 1463[label="",style="dashed", color="magenta", weight=3]; 1300 -> 1464[label="",style="dashed", color="magenta", weight=3]; 1300 -> 1465[label="",style="dashed", color="magenta", weight=3]; 1300 -> 1466[label="",style="dashed", color="magenta", weight=3]; 1300 -> 1467[label="",style="dashed", color="magenta", weight=3]; 1300 -> 1468[label="",style="dashed", color="magenta", weight=3]; 1300 -> 1469[label="",style="dashed", color="magenta", weight=3]; 1300 -> 1470[label="",style="dashed", color="magenta", weight=3]; 962[label="Pos (primMulNat xuu4000 xuu50010)",fontsize=16,color="green",shape="box"];962 -> 1256[label="",style="dashed", color="green", weight=3]; 963[label="Neg (primMulNat xuu4000 xuu50010)",fontsize=16,color="green",shape="box"];963 -> 1257[label="",style="dashed", color="green", weight=3]; 964[label="Neg (primMulNat xuu4000 xuu50010)",fontsize=16,color="green",shape="box"];964 -> 1258[label="",style="dashed", color="green", weight=3]; 965[label="Pos (primMulNat xuu4000 xuu50010)",fontsize=16,color="green",shape="box"];965 -> 1259[label="",style="dashed", color="green", weight=3]; 966 -> 487[label="",style="dashed", color="red", weight=0]; 966[label="primMulInt xuu4000 xuu50010",fontsize=16,color="magenta"];966 -> 1260[label="",style="dashed", color="magenta", weight=3]; 966 -> 1261[label="",style="dashed", color="magenta", weight=3]; 967[label="compare0 True False True",fontsize=16,color="black",shape="box"];967 -> 1262[label="",style="solid", color="black", weight=3]; 717[label="LT == xuu400",fontsize=16,color="burlywood",shape="box"];3526[label="xuu400/LT",fontsize=10,color="white",style="solid",shape="box"];717 -> 3526[label="",style="solid", color="burlywood", weight=9]; 3526 -> 918[label="",style="solid", color="burlywood", weight=3]; 3527[label="xuu400/EQ",fontsize=10,color="white",style="solid",shape="box"];717 -> 3527[label="",style="solid", color="burlywood", weight=9]; 3527 -> 919[label="",style="solid", color="burlywood", weight=3]; 3528[label="xuu400/GT",fontsize=10,color="white",style="solid",shape="box"];717 -> 3528[label="",style="solid", color="burlywood", weight=9]; 3528 -> 920[label="",style="solid", color="burlywood", weight=3]; 718[label="EQ == xuu400",fontsize=16,color="burlywood",shape="box"];3529[label="xuu400/LT",fontsize=10,color="white",style="solid",shape="box"];718 -> 3529[label="",style="solid", color="burlywood", weight=9]; 3529 -> 921[label="",style="solid", color="burlywood", weight=3]; 3530[label="xuu400/EQ",fontsize=10,color="white",style="solid",shape="box"];718 -> 3530[label="",style="solid", color="burlywood", weight=9]; 3530 -> 922[label="",style="solid", color="burlywood", weight=3]; 3531[label="xuu400/GT",fontsize=10,color="white",style="solid",shape="box"];718 -> 3531[label="",style="solid", color="burlywood", weight=9]; 3531 -> 923[label="",style="solid", color="burlywood", weight=3]; 719[label="GT == xuu400",fontsize=16,color="burlywood",shape="box"];3532[label="xuu400/LT",fontsize=10,color="white",style="solid",shape="box"];719 -> 3532[label="",style="solid", color="burlywood", weight=9]; 3532 -> 924[label="",style="solid", color="burlywood", weight=3]; 3533[label="xuu400/EQ",fontsize=10,color="white",style="solid",shape="box"];719 -> 3533[label="",style="solid", color="burlywood", weight=9]; 3533 -> 925[label="",style="solid", color="burlywood", weight=3]; 3534[label="xuu400/GT",fontsize=10,color="white",style="solid",shape="box"];719 -> 3534[label="",style="solid", color="burlywood", weight=9]; 3534 -> 926[label="",style="solid", color="burlywood", weight=3]; 720[label="xuu50000 :% xuu50001 == xuu400",fontsize=16,color="burlywood",shape="box"];3535[label="xuu400/xuu4000 :% xuu4001",fontsize=10,color="white",style="solid",shape="box"];720 -> 3535[label="",style="solid", color="burlywood", weight=9]; 3535 -> 927[label="",style="solid", color="burlywood", weight=3]; 721[label="(xuu50000,xuu50001,xuu50002) == xuu400",fontsize=16,color="burlywood",shape="box"];3536[label="xuu400/(xuu4000,xuu4001,xuu4002)",fontsize=10,color="white",style="solid",shape="box"];721 -> 3536[label="",style="solid", color="burlywood", weight=9]; 3536 -> 928[label="",style="solid", color="burlywood", weight=3]; 722[label="() == xuu400",fontsize=16,color="burlywood",shape="box"];3537[label="xuu400/()",fontsize=10,color="white",style="solid",shape="box"];722 -> 3537[label="",style="solid", color="burlywood", weight=9]; 3537 -> 929[label="",style="solid", color="burlywood", weight=3]; 723[label="primEqInt xuu5000 xuu400",fontsize=16,color="burlywood",shape="triangle"];3538[label="xuu5000/Pos xuu50000",fontsize=10,color="white",style="solid",shape="box"];723 -> 3538[label="",style="solid", color="burlywood", weight=9]; 3538 -> 930[label="",style="solid", color="burlywood", weight=3]; 3539[label="xuu5000/Neg xuu50000",fontsize=10,color="white",style="solid",shape="box"];723 -> 3539[label="",style="solid", color="burlywood", weight=9]; 3539 -> 931[label="",style="solid", color="burlywood", weight=3]; 724[label="Integer xuu50000 == xuu400",fontsize=16,color="burlywood",shape="box"];3540[label="xuu400/Integer xuu4000",fontsize=10,color="white",style="solid",shape="box"];724 -> 3540[label="",style="solid", color="burlywood", weight=9]; 3540 -> 932[label="",style="solid", color="burlywood", weight=3]; 725[label="(xuu50000,xuu50001) == xuu400",fontsize=16,color="burlywood",shape="box"];3541[label="xuu400/(xuu4000,xuu4001)",fontsize=10,color="white",style="solid",shape="box"];725 -> 3541[label="",style="solid", color="burlywood", weight=9]; 3541 -> 933[label="",style="solid", color="burlywood", weight=3]; 726[label="False == xuu400",fontsize=16,color="burlywood",shape="box"];3542[label="xuu400/False",fontsize=10,color="white",style="solid",shape="box"];726 -> 3542[label="",style="solid", color="burlywood", weight=9]; 3542 -> 934[label="",style="solid", color="burlywood", weight=3]; 3543[label="xuu400/True",fontsize=10,color="white",style="solid",shape="box"];726 -> 3543[label="",style="solid", color="burlywood", weight=9]; 3543 -> 935[label="",style="solid", color="burlywood", weight=3]; 727[label="True == xuu400",fontsize=16,color="burlywood",shape="box"];3544[label="xuu400/False",fontsize=10,color="white",style="solid",shape="box"];727 -> 3544[label="",style="solid", color="burlywood", weight=9]; 3544 -> 936[label="",style="solid", color="burlywood", weight=3]; 3545[label="xuu400/True",fontsize=10,color="white",style="solid",shape="box"];727 -> 3545[label="",style="solid", color="burlywood", weight=9]; 3545 -> 937[label="",style="solid", color="burlywood", weight=3]; 728[label="primEqDouble xuu5000 xuu400",fontsize=16,color="burlywood",shape="box"];3546[label="xuu5000/Double xuu50000 xuu50001",fontsize=10,color="white",style="solid",shape="box"];728 -> 3546[label="",style="solid", color="burlywood", weight=9]; 3546 -> 938[label="",style="solid", color="burlywood", weight=3]; 729[label="Nothing == xuu400",fontsize=16,color="burlywood",shape="box"];3547[label="xuu400/Nothing",fontsize=10,color="white",style="solid",shape="box"];729 -> 3547[label="",style="solid", color="burlywood", weight=9]; 3547 -> 939[label="",style="solid", color="burlywood", weight=3]; 3548[label="xuu400/Just xuu4000",fontsize=10,color="white",style="solid",shape="box"];729 -> 3548[label="",style="solid", color="burlywood", weight=9]; 3548 -> 940[label="",style="solid", color="burlywood", weight=3]; 730[label="Just xuu50000 == xuu400",fontsize=16,color="burlywood",shape="box"];3549[label="xuu400/Nothing",fontsize=10,color="white",style="solid",shape="box"];730 -> 3549[label="",style="solid", color="burlywood", weight=9]; 3549 -> 941[label="",style="solid", color="burlywood", weight=3]; 3550[label="xuu400/Just xuu4000",fontsize=10,color="white",style="solid",shape="box"];730 -> 3550[label="",style="solid", color="burlywood", weight=9]; 3550 -> 942[label="",style="solid", color="burlywood", weight=3]; 731[label="xuu50000 : xuu50001 == xuu400",fontsize=16,color="burlywood",shape="box"];3551[label="xuu400/xuu4000 : xuu4001",fontsize=10,color="white",style="solid",shape="box"];731 -> 3551[label="",style="solid", color="burlywood", weight=9]; 3551 -> 943[label="",style="solid", color="burlywood", weight=3]; 3552[label="xuu400/[]",fontsize=10,color="white",style="solid",shape="box"];731 -> 3552[label="",style="solid", color="burlywood", weight=9]; 3552 -> 944[label="",style="solid", color="burlywood", weight=3]; 732[label="[] == xuu400",fontsize=16,color="burlywood",shape="box"];3553[label="xuu400/xuu4000 : xuu4001",fontsize=10,color="white",style="solid",shape="box"];732 -> 3553[label="",style="solid", color="burlywood", weight=9]; 3553 -> 945[label="",style="solid", color="burlywood", weight=3]; 3554[label="xuu400/[]",fontsize=10,color="white",style="solid",shape="box"];732 -> 3554[label="",style="solid", color="burlywood", weight=9]; 3554 -> 946[label="",style="solid", color="burlywood", weight=3]; 733[label="primEqFloat xuu5000 xuu400",fontsize=16,color="burlywood",shape="box"];3555[label="xuu5000/Float xuu50000 xuu50001",fontsize=10,color="white",style="solid",shape="box"];733 -> 3555[label="",style="solid", color="burlywood", weight=9]; 3555 -> 947[label="",style="solid", color="burlywood", weight=3]; 734[label="primEqChar xuu5000 xuu400",fontsize=16,color="burlywood",shape="box"];3556[label="xuu5000/Char xuu50000",fontsize=10,color="white",style="solid",shape="box"];734 -> 3556[label="",style="solid", color="burlywood", weight=9]; 3556 -> 948[label="",style="solid", color="burlywood", weight=3]; 735[label="Left xuu50000 == xuu400",fontsize=16,color="burlywood",shape="box"];3557[label="xuu400/Left xuu4000",fontsize=10,color="white",style="solid",shape="box"];735 -> 3557[label="",style="solid", color="burlywood", weight=9]; 3557 -> 949[label="",style="solid", color="burlywood", weight=3]; 3558[label="xuu400/Right xuu4000",fontsize=10,color="white",style="solid",shape="box"];735 -> 3558[label="",style="solid", color="burlywood", weight=9]; 3558 -> 950[label="",style="solid", color="burlywood", weight=3]; 736[label="Right xuu50000 == xuu400",fontsize=16,color="burlywood",shape="box"];3559[label="xuu400/Left xuu4000",fontsize=10,color="white",style="solid",shape="box"];736 -> 3559[label="",style="solid", color="burlywood", weight=9]; 3559 -> 951[label="",style="solid", color="burlywood", weight=3]; 3560[label="xuu400/Right xuu4000",fontsize=10,color="white",style="solid",shape="box"];736 -> 3560[label="",style="solid", color="burlywood", weight=9]; 3560 -> 952[label="",style="solid", color="burlywood", weight=3]; 1264[label="Left xuu75 <= Left xuu76",fontsize=16,color="black",shape="box"];1264 -> 1357[label="",style="solid", color="black", weight=3]; 1265[label="xuu75",fontsize=16,color="green",shape="box"];1266[label="xuu76",fontsize=16,color="green",shape="box"];1263[label="compare1 (Left xuu156) (Left xuu157) xuu158",fontsize=16,color="burlywood",shape="triangle"];3561[label="xuu158/False",fontsize=10,color="white",style="solid",shape="box"];1263 -> 3561[label="",style="solid", color="burlywood", weight=9]; 3561 -> 1358[label="",style="solid", color="burlywood", weight=3]; 3562[label="xuu158/True",fontsize=10,color="white",style="solid",shape="box"];1263 -> 3562[label="",style="solid", color="burlywood", weight=9]; 3562 -> 1359[label="",style="solid", color="burlywood", weight=3]; 969[label="compare0 (Right xuu5000) (Left xuu400) True",fontsize=16,color="black",shape="box"];969 -> 1360[label="",style="solid", color="black", weight=3]; 1362[label="Right xuu82 <= Right xuu83",fontsize=16,color="black",shape="box"];1362 -> 1426[label="",style="solid", color="black", weight=3]; 1363[label="xuu83",fontsize=16,color="green",shape="box"];1364[label="xuu82",fontsize=16,color="green",shape="box"];1361[label="compare1 (Right xuu163) (Right xuu164) xuu165",fontsize=16,color="burlywood",shape="triangle"];3563[label="xuu165/False",fontsize=10,color="white",style="solid",shape="box"];1361 -> 3563[label="",style="solid", color="burlywood", weight=9]; 3563 -> 1427[label="",style="solid", color="burlywood", weight=3]; 3564[label="xuu165/True",fontsize=10,color="white",style="solid",shape="box"];1361 -> 3564[label="",style="solid", color="burlywood", weight=9]; 3564 -> 1428[label="",style="solid", color="burlywood", weight=3]; 971[label="compare0 (Just xuu5000) Nothing True",fontsize=16,color="black",shape="box"];971 -> 1429[label="",style="solid", color="black", weight=3]; 1431[label="xuu89",fontsize=16,color="green",shape="box"];1432[label="Just xuu89 <= Just xuu90",fontsize=16,color="black",shape="box"];1432 -> 1437[label="",style="solid", color="black", weight=3]; 1433[label="xuu90",fontsize=16,color="green",shape="box"];1430[label="compare1 (Just xuu172) (Just xuu173) xuu174",fontsize=16,color="burlywood",shape="triangle"];3565[label="xuu174/False",fontsize=10,color="white",style="solid",shape="box"];1430 -> 3565[label="",style="solid", color="burlywood", weight=9]; 3565 -> 1438[label="",style="solid", color="burlywood", weight=3]; 3566[label="xuu174/True",fontsize=10,color="white",style="solid",shape="box"];1430 -> 3566[label="",style="solid", color="burlywood", weight=9]; 3566 -> 1439[label="",style="solid", color="burlywood", weight=3]; 1301[label="xuu400",fontsize=16,color="green",shape="box"];1302[label="xuu5000",fontsize=16,color="green",shape="box"];1303[label="xuu400",fontsize=16,color="green",shape="box"];1304[label="xuu5000",fontsize=16,color="green",shape="box"];1305[label="xuu400",fontsize=16,color="green",shape="box"];1306[label="xuu5000",fontsize=16,color="green",shape="box"];1307[label="xuu400",fontsize=16,color="green",shape="box"];1308[label="xuu5000",fontsize=16,color="green",shape="box"];1309[label="xuu400",fontsize=16,color="green",shape="box"];1310[label="xuu5000",fontsize=16,color="green",shape="box"];1311[label="xuu400",fontsize=16,color="green",shape="box"];1312[label="xuu5000",fontsize=16,color="green",shape="box"];1313[label="xuu400",fontsize=16,color="green",shape="box"];1314[label="xuu5000",fontsize=16,color="green",shape="box"];1315[label="xuu400",fontsize=16,color="green",shape="box"];1316[label="xuu5000",fontsize=16,color="green",shape="box"];1317[label="xuu400",fontsize=16,color="green",shape="box"];1318[label="xuu5000",fontsize=16,color="green",shape="box"];1319[label="xuu400",fontsize=16,color="green",shape="box"];1320[label="xuu5000",fontsize=16,color="green",shape="box"];1321[label="xuu400",fontsize=16,color="green",shape="box"];1322[label="xuu5000",fontsize=16,color="green",shape="box"];1323[label="xuu400",fontsize=16,color="green",shape="box"];1324[label="xuu5000",fontsize=16,color="green",shape="box"];1325[label="xuu400",fontsize=16,color="green",shape="box"];1326[label="xuu5000",fontsize=16,color="green",shape="box"];1327[label="xuu400",fontsize=16,color="green",shape="box"];1328[label="xuu5000",fontsize=16,color="green",shape="box"];1329[label="xuu401",fontsize=16,color="green",shape="box"];1330[label="xuu5001",fontsize=16,color="green",shape="box"];1331[label="xuu401",fontsize=16,color="green",shape="box"];1332[label="xuu5001",fontsize=16,color="green",shape="box"];1333[label="xuu401",fontsize=16,color="green",shape="box"];1334[label="xuu5001",fontsize=16,color="green",shape="box"];1335[label="xuu401",fontsize=16,color="green",shape="box"];1336[label="xuu5001",fontsize=16,color="green",shape="box"];1337[label="xuu401",fontsize=16,color="green",shape="box"];1338[label="xuu5001",fontsize=16,color="green",shape="box"];1339[label="xuu401",fontsize=16,color="green",shape="box"];1340[label="xuu5001",fontsize=16,color="green",shape="box"];1341[label="xuu401",fontsize=16,color="green",shape="box"];1342[label="xuu5001",fontsize=16,color="green",shape="box"];1343[label="xuu401",fontsize=16,color="green",shape="box"];1344[label="xuu5001",fontsize=16,color="green",shape="box"];1345[label="xuu401",fontsize=16,color="green",shape="box"];1346[label="xuu5001",fontsize=16,color="green",shape="box"];1347[label="xuu401",fontsize=16,color="green",shape="box"];1348[label="xuu5001",fontsize=16,color="green",shape="box"];1349[label="xuu401",fontsize=16,color="green",shape="box"];1350[label="xuu5001",fontsize=16,color="green",shape="box"];1351[label="xuu401",fontsize=16,color="green",shape="box"];1352[label="xuu5001",fontsize=16,color="green",shape="box"];1353[label="xuu401",fontsize=16,color="green",shape="box"];1354[label="xuu5001",fontsize=16,color="green",shape="box"];1355[label="xuu401",fontsize=16,color="green",shape="box"];1356[label="xuu5001",fontsize=16,color="green",shape="box"];1067 -> 1553[label="",style="dashed", color="red", weight=0]; 1067[label="compare1 (xuu126,xuu127) (xuu128,xuu129) (xuu126 < xuu128 || xuu126 == xuu128 && xuu127 <= xuu129)",fontsize=16,color="magenta"];1067 -> 1554[label="",style="dashed", color="magenta", weight=3]; 1067 -> 1555[label="",style="dashed", color="magenta", weight=3]; 1067 -> 1556[label="",style="dashed", color="magenta", weight=3]; 1067 -> 1557[label="",style="dashed", color="magenta", weight=3]; 1067 -> 1558[label="",style="dashed", color="magenta", weight=3]; 1067 -> 1559[label="",style="dashed", color="magenta", weight=3]; 1017[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];1017 -> 1442[label="",style="solid", color="black", weight=3]; 1018[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];1018 -> 1443[label="",style="solid", color="black", weight=3]; 1019[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];1019 -> 1444[label="",style="solid", color="black", weight=3]; 1069[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1069 -> 1445[label="",style="solid", color="black", weight=3]; 1070[label="FiniteMap.sizeFM (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="black",shape="box"];1070 -> 1446[label="",style="solid", color="black", weight=3]; 1252[label="Pos (primPlusNat xuu4420 xuu1390)",fontsize=16,color="green",shape="box"];1252 -> 1447[label="",style="dashed", color="green", weight=3]; 1253[label="primMinusNat xuu4420 xuu1390",fontsize=16,color="burlywood",shape="triangle"];3567[label="xuu4420/Succ xuu44200",fontsize=10,color="white",style="solid",shape="box"];1253 -> 3567[label="",style="solid", color="burlywood", weight=9]; 3567 -> 1448[label="",style="solid", color="burlywood", weight=3]; 3568[label="xuu4420/Zero",fontsize=10,color="white",style="solid",shape="box"];1253 -> 3568[label="",style="solid", color="burlywood", weight=9]; 3568 -> 1449[label="",style="solid", color="burlywood", weight=3]; 1254 -> 1253[label="",style="dashed", color="red", weight=0]; 1254[label="primMinusNat xuu1390 xuu4420",fontsize=16,color="magenta"];1254 -> 1450[label="",style="dashed", color="magenta", weight=3]; 1254 -> 1451[label="",style="dashed", color="magenta", weight=3]; 1255[label="Neg (primPlusNat xuu4420 xuu1390)",fontsize=16,color="green",shape="box"];1255 -> 1452[label="",style="dashed", color="green", weight=3]; 1068[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1072 -> 114[label="",style="dashed", color="red", weight=0]; 1072[label="FiniteMap.mkBalBranch6Size_l xuu17 xuu18 xuu44 xuu21 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu17 xuu18 xuu44 xuu21",fontsize=16,color="magenta"];1072 -> 1453[label="",style="dashed", color="magenta", weight=3]; 1072 -> 1454[label="",style="dashed", color="magenta", weight=3]; 1071[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 xuu140",fontsize=16,color="burlywood",shape="triangle"];3569[label="xuu140/False",fontsize=10,color="white",style="solid",shape="box"];1071 -> 3569[label="",style="solid", color="burlywood", weight=9]; 3569 -> 1455[label="",style="solid", color="burlywood", weight=3]; 3570[label="xuu140/True",fontsize=10,color="white",style="solid",shape="box"];1071 -> 3570[label="",style="solid", color="burlywood", weight=9]; 3570 -> 1456[label="",style="solid", color="burlywood", weight=3]; 1078[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu17 xuu18 xuu44 FiniteMap.EmptyFM xuu44 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1078 -> 1457[label="",style="solid", color="black", weight=3]; 1079[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu17 xuu18 xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="black",shape="box"];1079 -> 1458[label="",style="solid", color="black", weight=3]; 1080[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu44 xuu17 xuu21 + FiniteMap.mkBranchRight_size xuu44 xuu17 xuu21",fontsize=16,color="black",shape="box"];1080 -> 1459[label="",style="solid", color="black", weight=3]; 1368[label="xuu401",fontsize=16,color="green",shape="box"];1369[label="xuu5001",fontsize=16,color="green",shape="box"];1370[label="xuu401",fontsize=16,color="green",shape="box"];1371[label="xuu5001",fontsize=16,color="green",shape="box"];1372[label="xuu401",fontsize=16,color="green",shape="box"];1373[label="xuu5001",fontsize=16,color="green",shape="box"];1374[label="xuu401",fontsize=16,color="green",shape="box"];1375[label="xuu5001",fontsize=16,color="green",shape="box"];1376[label="xuu401",fontsize=16,color="green",shape="box"];1377[label="xuu5001",fontsize=16,color="green",shape="box"];1378[label="xuu401",fontsize=16,color="green",shape="box"];1379[label="xuu5001",fontsize=16,color="green",shape="box"];1380[label="xuu401",fontsize=16,color="green",shape="box"];1381[label="xuu5001",fontsize=16,color="green",shape="box"];1382[label="xuu401",fontsize=16,color="green",shape="box"];1383[label="xuu5001",fontsize=16,color="green",shape="box"];1384[label="xuu401",fontsize=16,color="green",shape="box"];1385[label="xuu5001",fontsize=16,color="green",shape="box"];1386[label="xuu401",fontsize=16,color="green",shape="box"];1387[label="xuu5001",fontsize=16,color="green",shape="box"];1388[label="xuu401",fontsize=16,color="green",shape="box"];1389[label="xuu5001",fontsize=16,color="green",shape="box"];1390[label="xuu401",fontsize=16,color="green",shape="box"];1391[label="xuu5001",fontsize=16,color="green",shape="box"];1392[label="xuu401",fontsize=16,color="green",shape="box"];1393[label="xuu5001",fontsize=16,color="green",shape="box"];1394[label="xuu401",fontsize=16,color="green",shape="box"];1395[label="xuu5001",fontsize=16,color="green",shape="box"];1396[label="xuu402",fontsize=16,color="green",shape="box"];1397[label="xuu5002",fontsize=16,color="green",shape="box"];1398[label="xuu402",fontsize=16,color="green",shape="box"];1399[label="xuu5002",fontsize=16,color="green",shape="box"];1400[label="xuu402",fontsize=16,color="green",shape="box"];1401[label="xuu5002",fontsize=16,color="green",shape="box"];1402[label="xuu402",fontsize=16,color="green",shape="box"];1403[label="xuu5002",fontsize=16,color="green",shape="box"];1404[label="xuu402",fontsize=16,color="green",shape="box"];1405[label="xuu5002",fontsize=16,color="green",shape="box"];1406[label="xuu402",fontsize=16,color="green",shape="box"];1407[label="xuu5002",fontsize=16,color="green",shape="box"];1408[label="xuu402",fontsize=16,color="green",shape="box"];1409[label="xuu5002",fontsize=16,color="green",shape="box"];1410[label="xuu402",fontsize=16,color="green",shape="box"];1411[label="xuu5002",fontsize=16,color="green",shape="box"];1412[label="xuu402",fontsize=16,color="green",shape="box"];1413[label="xuu5002",fontsize=16,color="green",shape="box"];1414[label="xuu402",fontsize=16,color="green",shape="box"];1415[label="xuu5002",fontsize=16,color="green",shape="box"];1416[label="xuu402",fontsize=16,color="green",shape="box"];1417[label="xuu5002",fontsize=16,color="green",shape="box"];1418[label="xuu402",fontsize=16,color="green",shape="box"];1419[label="xuu5002",fontsize=16,color="green",shape="box"];1420[label="xuu402",fontsize=16,color="green",shape="box"];1421[label="xuu5002",fontsize=16,color="green",shape="box"];1422[label="xuu402",fontsize=16,color="green",shape="box"];1423[label="xuu5002",fontsize=16,color="green",shape="box"];1463[label="xuu116",fontsize=16,color="green",shape="box"];1464[label="xuu117",fontsize=16,color="green",shape="box"];1465[label="xuu115",fontsize=16,color="green",shape="box"];1466[label="xuu113",fontsize=16,color="green",shape="box"];1467[label="xuu113 < xuu116",fontsize=16,color="blue",shape="box"];3571[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1467 -> 3571[label="",style="solid", color="blue", weight=9]; 3571 -> 1479[label="",style="solid", color="blue", weight=3]; 3572[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1467 -> 3572[label="",style="solid", color="blue", weight=9]; 3572 -> 1480[label="",style="solid", color="blue", weight=3]; 3573[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1467 -> 3573[label="",style="solid", color="blue", weight=9]; 3573 -> 1481[label="",style="solid", color="blue", weight=3]; 3574[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1467 -> 3574[label="",style="solid", color="blue", weight=9]; 3574 -> 1482[label="",style="solid", color="blue", weight=3]; 3575[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1467 -> 3575[label="",style="solid", color="blue", weight=9]; 3575 -> 1483[label="",style="solid", color="blue", weight=3]; 3576[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1467 -> 3576[label="",style="solid", color="blue", weight=9]; 3576 -> 1484[label="",style="solid", color="blue", weight=3]; 3577[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1467 -> 3577[label="",style="solid", color="blue", weight=9]; 3577 -> 1485[label="",style="solid", color="blue", weight=3]; 3578[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1467 -> 3578[label="",style="solid", color="blue", weight=9]; 3578 -> 1486[label="",style="solid", color="blue", weight=3]; 3579[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1467 -> 3579[label="",style="solid", color="blue", weight=9]; 3579 -> 1487[label="",style="solid", color="blue", weight=3]; 3580[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1467 -> 3580[label="",style="solid", color="blue", weight=9]; 3580 -> 1488[label="",style="solid", color="blue", weight=3]; 3581[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1467 -> 3581[label="",style="solid", color="blue", weight=9]; 3581 -> 1489[label="",style="solid", color="blue", weight=3]; 3582[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1467 -> 3582[label="",style="solid", color="blue", weight=9]; 3582 -> 1490[label="",style="solid", color="blue", weight=3]; 3583[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1467 -> 3583[label="",style="solid", color="blue", weight=9]; 3583 -> 1491[label="",style="solid", color="blue", weight=3]; 3584[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1467 -> 3584[label="",style="solid", color="blue", weight=9]; 3584 -> 1492[label="",style="solid", color="blue", weight=3]; 1468 -> 1185[label="",style="dashed", color="red", weight=0]; 1468[label="xuu113 == xuu116 && (xuu114 < xuu117 || xuu114 == xuu117 && xuu115 <= xuu118)",fontsize=16,color="magenta"];1468 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1468 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1469[label="xuu118",fontsize=16,color="green",shape="box"];1470[label="xuu114",fontsize=16,color="green",shape="box"];1462[label="compare1 (xuu185,xuu186,xuu187) (xuu188,xuu189,xuu190) (xuu191 || xuu192)",fontsize=16,color="burlywood",shape="triangle"];3585[label="xuu191/False",fontsize=10,color="white",style="solid",shape="box"];1462 -> 3585[label="",style="solid", color="burlywood", weight=9]; 3585 -> 1495[label="",style="solid", color="burlywood", weight=3]; 3586[label="xuu191/True",fontsize=10,color="white",style="solid",shape="box"];1462 -> 3586[label="",style="solid", color="burlywood", weight=9]; 3586 -> 1496[label="",style="solid", color="burlywood", weight=3]; 1256[label="primMulNat xuu4000 xuu50010",fontsize=16,color="burlywood",shape="triangle"];3587[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];1256 -> 3587[label="",style="solid", color="burlywood", weight=9]; 3587 -> 1497[label="",style="solid", color="burlywood", weight=3]; 3588[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1256 -> 3588[label="",style="solid", color="burlywood", weight=9]; 3588 -> 1498[label="",style="solid", color="burlywood", weight=3]; 1257 -> 1256[label="",style="dashed", color="red", weight=0]; 1257[label="primMulNat xuu4000 xuu50010",fontsize=16,color="magenta"];1257 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1258 -> 1256[label="",style="dashed", color="red", weight=0]; 1258[label="primMulNat xuu4000 xuu50010",fontsize=16,color="magenta"];1258 -> 1500[label="",style="dashed", color="magenta", weight=3]; 1259 -> 1256[label="",style="dashed", color="red", weight=0]; 1259[label="primMulNat xuu4000 xuu50010",fontsize=16,color="magenta"];1259 -> 1501[label="",style="dashed", color="magenta", weight=3]; 1259 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1260[label="xuu50010",fontsize=16,color="green",shape="box"];1261[label="xuu4000",fontsize=16,color="green",shape="box"];1262[label="GT",fontsize=16,color="green",shape="box"];918[label="LT == LT",fontsize=16,color="black",shape="box"];918 -> 1081[label="",style="solid", color="black", weight=3]; 919[label="LT == EQ",fontsize=16,color="black",shape="box"];919 -> 1082[label="",style="solid", color="black", weight=3]; 920[label="LT == GT",fontsize=16,color="black",shape="box"];920 -> 1083[label="",style="solid", color="black", weight=3]; 921[label="EQ == LT",fontsize=16,color="black",shape="box"];921 -> 1084[label="",style="solid", color="black", weight=3]; 922[label="EQ == EQ",fontsize=16,color="black",shape="box"];922 -> 1085[label="",style="solid", color="black", weight=3]; 923[label="EQ == GT",fontsize=16,color="black",shape="box"];923 -> 1086[label="",style="solid", color="black", weight=3]; 924[label="GT == LT",fontsize=16,color="black",shape="box"];924 -> 1087[label="",style="solid", color="black", weight=3]; 925[label="GT == EQ",fontsize=16,color="black",shape="box"];925 -> 1088[label="",style="solid", color="black", weight=3]; 926[label="GT == GT",fontsize=16,color="black",shape="box"];926 -> 1089[label="",style="solid", color="black", weight=3]; 927[label="xuu50000 :% xuu50001 == xuu4000 :% xuu4001",fontsize=16,color="black",shape="box"];927 -> 1090[label="",style="solid", color="black", weight=3]; 928[label="(xuu50000,xuu50001,xuu50002) == (xuu4000,xuu4001,xuu4002)",fontsize=16,color="black",shape="box"];928 -> 1091[label="",style="solid", color="black", weight=3]; 929[label="() == ()",fontsize=16,color="black",shape="box"];929 -> 1092[label="",style="solid", color="black", weight=3]; 930[label="primEqInt (Pos xuu50000) xuu400",fontsize=16,color="burlywood",shape="box"];3589[label="xuu50000/Succ xuu500000",fontsize=10,color="white",style="solid",shape="box"];930 -> 3589[label="",style="solid", color="burlywood", weight=9]; 3589 -> 1093[label="",style="solid", color="burlywood", weight=3]; 3590[label="xuu50000/Zero",fontsize=10,color="white",style="solid",shape="box"];930 -> 3590[label="",style="solid", color="burlywood", weight=9]; 3590 -> 1094[label="",style="solid", color="burlywood", weight=3]; 931[label="primEqInt (Neg xuu50000) xuu400",fontsize=16,color="burlywood",shape="box"];3591[label="xuu50000/Succ xuu500000",fontsize=10,color="white",style="solid",shape="box"];931 -> 3591[label="",style="solid", color="burlywood", weight=9]; 3591 -> 1095[label="",style="solid", color="burlywood", weight=3]; 3592[label="xuu50000/Zero",fontsize=10,color="white",style="solid",shape="box"];931 -> 3592[label="",style="solid", color="burlywood", weight=9]; 3592 -> 1096[label="",style="solid", color="burlywood", weight=3]; 932[label="Integer xuu50000 == Integer xuu4000",fontsize=16,color="black",shape="box"];932 -> 1097[label="",style="solid", color="black", weight=3]; 933[label="(xuu50000,xuu50001) == (xuu4000,xuu4001)",fontsize=16,color="black",shape="box"];933 -> 1098[label="",style="solid", color="black", weight=3]; 934[label="False == False",fontsize=16,color="black",shape="box"];934 -> 1099[label="",style="solid", color="black", weight=3]; 935[label="False == True",fontsize=16,color="black",shape="box"];935 -> 1100[label="",style="solid", color="black", weight=3]; 936[label="True == False",fontsize=16,color="black",shape="box"];936 -> 1101[label="",style="solid", color="black", weight=3]; 937[label="True == True",fontsize=16,color="black",shape="box"];937 -> 1102[label="",style="solid", color="black", weight=3]; 938[label="primEqDouble (Double xuu50000 xuu50001) xuu400",fontsize=16,color="burlywood",shape="box"];3593[label="xuu400/Double xuu4000 xuu4001",fontsize=10,color="white",style="solid",shape="box"];938 -> 3593[label="",style="solid", color="burlywood", weight=9]; 3593 -> 1103[label="",style="solid", color="burlywood", weight=3]; 939[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];939 -> 1104[label="",style="solid", color="black", weight=3]; 940[label="Nothing == Just xuu4000",fontsize=16,color="black",shape="box"];940 -> 1105[label="",style="solid", color="black", weight=3]; 941[label="Just xuu50000 == Nothing",fontsize=16,color="black",shape="box"];941 -> 1106[label="",style="solid", color="black", weight=3]; 942[label="Just xuu50000 == Just xuu4000",fontsize=16,color="black",shape="box"];942 -> 1107[label="",style="solid", color="black", weight=3]; 943[label="xuu50000 : xuu50001 == xuu4000 : xuu4001",fontsize=16,color="black",shape="box"];943 -> 1108[label="",style="solid", color="black", weight=3]; 944[label="xuu50000 : xuu50001 == []",fontsize=16,color="black",shape="box"];944 -> 1109[label="",style="solid", color="black", weight=3]; 945[label="[] == xuu4000 : xuu4001",fontsize=16,color="black",shape="box"];945 -> 1110[label="",style="solid", color="black", weight=3]; 946[label="[] == []",fontsize=16,color="black",shape="box"];946 -> 1111[label="",style="solid", color="black", weight=3]; 947[label="primEqFloat (Float xuu50000 xuu50001) xuu400",fontsize=16,color="burlywood",shape="box"];3594[label="xuu400/Float xuu4000 xuu4001",fontsize=10,color="white",style="solid",shape="box"];947 -> 3594[label="",style="solid", color="burlywood", weight=9]; 3594 -> 1112[label="",style="solid", color="burlywood", weight=3]; 948[label="primEqChar (Char xuu50000) xuu400",fontsize=16,color="burlywood",shape="box"];3595[label="xuu400/Char xuu4000",fontsize=10,color="white",style="solid",shape="box"];948 -> 3595[label="",style="solid", color="burlywood", weight=9]; 3595 -> 1113[label="",style="solid", color="burlywood", weight=3]; 949[label="Left xuu50000 == Left xuu4000",fontsize=16,color="black",shape="box"];949 -> 1114[label="",style="solid", color="black", weight=3]; 950[label="Left xuu50000 == Right xuu4000",fontsize=16,color="black",shape="box"];950 -> 1115[label="",style="solid", color="black", weight=3]; 951[label="Right xuu50000 == Left xuu4000",fontsize=16,color="black",shape="box"];951 -> 1116[label="",style="solid", color="black", weight=3]; 952[label="Right xuu50000 == Right xuu4000",fontsize=16,color="black",shape="box"];952 -> 1117[label="",style="solid", color="black", weight=3]; 1357[label="xuu75 <= xuu76",fontsize=16,color="blue",shape="box"];3596[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1357 -> 3596[label="",style="solid", color="blue", weight=9]; 3596 -> 1503[label="",style="solid", color="blue", weight=3]; 3597[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1357 -> 3597[label="",style="solid", color="blue", weight=9]; 3597 -> 1504[label="",style="solid", color="blue", weight=3]; 3598[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1357 -> 3598[label="",style="solid", color="blue", weight=9]; 3598 -> 1505[label="",style="solid", color="blue", weight=3]; 3599[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1357 -> 3599[label="",style="solid", color="blue", weight=9]; 3599 -> 1506[label="",style="solid", color="blue", weight=3]; 3600[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1357 -> 3600[label="",style="solid", color="blue", weight=9]; 3600 -> 1507[label="",style="solid", color="blue", weight=3]; 3601[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1357 -> 3601[label="",style="solid", color="blue", weight=9]; 3601 -> 1508[label="",style="solid", color="blue", weight=3]; 3602[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1357 -> 3602[label="",style="solid", color="blue", weight=9]; 3602 -> 1509[label="",style="solid", color="blue", weight=3]; 3603[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1357 -> 3603[label="",style="solid", color="blue", weight=9]; 3603 -> 1510[label="",style="solid", color="blue", weight=3]; 3604[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1357 -> 3604[label="",style="solid", color="blue", weight=9]; 3604 -> 1511[label="",style="solid", color="blue", weight=3]; 3605[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1357 -> 3605[label="",style="solid", color="blue", weight=9]; 3605 -> 1512[label="",style="solid", color="blue", weight=3]; 3606[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1357 -> 3606[label="",style="solid", color="blue", weight=9]; 3606 -> 1513[label="",style="solid", color="blue", weight=3]; 3607[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1357 -> 3607[label="",style="solid", color="blue", weight=9]; 3607 -> 1514[label="",style="solid", color="blue", weight=3]; 3608[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1357 -> 3608[label="",style="solid", color="blue", weight=9]; 3608 -> 1515[label="",style="solid", color="blue", weight=3]; 3609[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1357 -> 3609[label="",style="solid", color="blue", weight=9]; 3609 -> 1516[label="",style="solid", color="blue", weight=3]; 1358[label="compare1 (Left xuu156) (Left xuu157) False",fontsize=16,color="black",shape="box"];1358 -> 1517[label="",style="solid", color="black", weight=3]; 1359[label="compare1 (Left xuu156) (Left xuu157) True",fontsize=16,color="black",shape="box"];1359 -> 1518[label="",style="solid", color="black", weight=3]; 1360[label="GT",fontsize=16,color="green",shape="box"];1426[label="xuu82 <= xuu83",fontsize=16,color="blue",shape="box"];3610[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1426 -> 3610[label="",style="solid", color="blue", weight=9]; 3610 -> 1519[label="",style="solid", color="blue", weight=3]; 3611[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1426 -> 3611[label="",style="solid", color="blue", weight=9]; 3611 -> 1520[label="",style="solid", color="blue", weight=3]; 3612[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1426 -> 3612[label="",style="solid", color="blue", weight=9]; 3612 -> 1521[label="",style="solid", color="blue", weight=3]; 3613[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1426 -> 3613[label="",style="solid", color="blue", weight=9]; 3613 -> 1522[label="",style="solid", color="blue", weight=3]; 3614[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1426 -> 3614[label="",style="solid", color="blue", weight=9]; 3614 -> 1523[label="",style="solid", color="blue", weight=3]; 3615[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1426 -> 3615[label="",style="solid", color="blue", weight=9]; 3615 -> 1524[label="",style="solid", color="blue", weight=3]; 3616[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1426 -> 3616[label="",style="solid", color="blue", weight=9]; 3616 -> 1525[label="",style="solid", color="blue", weight=3]; 3617[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1426 -> 3617[label="",style="solid", color="blue", weight=9]; 3617 -> 1526[label="",style="solid", color="blue", weight=3]; 3618[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1426 -> 3618[label="",style="solid", color="blue", weight=9]; 3618 -> 1527[label="",style="solid", color="blue", weight=3]; 3619[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1426 -> 3619[label="",style="solid", color="blue", weight=9]; 3619 -> 1528[label="",style="solid", color="blue", weight=3]; 3620[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1426 -> 3620[label="",style="solid", color="blue", weight=9]; 3620 -> 1529[label="",style="solid", color="blue", weight=3]; 3621[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1426 -> 3621[label="",style="solid", color="blue", weight=9]; 3621 -> 1530[label="",style="solid", color="blue", weight=3]; 3622[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1426 -> 3622[label="",style="solid", color="blue", weight=9]; 3622 -> 1531[label="",style="solid", color="blue", weight=3]; 3623[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1426 -> 3623[label="",style="solid", color="blue", weight=9]; 3623 -> 1532[label="",style="solid", color="blue", weight=3]; 1427[label="compare1 (Right xuu163) (Right xuu164) False",fontsize=16,color="black",shape="box"];1427 -> 1533[label="",style="solid", color="black", weight=3]; 1428[label="compare1 (Right xuu163) (Right xuu164) True",fontsize=16,color="black",shape="box"];1428 -> 1534[label="",style="solid", color="black", weight=3]; 1429[label="GT",fontsize=16,color="green",shape="box"];1437[label="xuu89 <= xuu90",fontsize=16,color="blue",shape="box"];3624[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3624[label="",style="solid", color="blue", weight=9]; 3624 -> 1535[label="",style="solid", color="blue", weight=3]; 3625[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3625[label="",style="solid", color="blue", weight=9]; 3625 -> 1536[label="",style="solid", color="blue", weight=3]; 3626[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3626[label="",style="solid", color="blue", weight=9]; 3626 -> 1537[label="",style="solid", color="blue", weight=3]; 3627[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3627[label="",style="solid", color="blue", weight=9]; 3627 -> 1538[label="",style="solid", color="blue", weight=3]; 3628[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3628[label="",style="solid", color="blue", weight=9]; 3628 -> 1539[label="",style="solid", color="blue", weight=3]; 3629[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3629[label="",style="solid", color="blue", weight=9]; 3629 -> 1540[label="",style="solid", color="blue", weight=3]; 3630[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3630[label="",style="solid", color="blue", weight=9]; 3630 -> 1541[label="",style="solid", color="blue", weight=3]; 3631[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3631[label="",style="solid", color="blue", weight=9]; 3631 -> 1542[label="",style="solid", color="blue", weight=3]; 3632[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3632[label="",style="solid", color="blue", weight=9]; 3632 -> 1543[label="",style="solid", color="blue", weight=3]; 3633[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3633[label="",style="solid", color="blue", weight=9]; 3633 -> 1544[label="",style="solid", color="blue", weight=3]; 3634[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3634[label="",style="solid", color="blue", weight=9]; 3634 -> 1545[label="",style="solid", color="blue", weight=3]; 3635[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3635[label="",style="solid", color="blue", weight=9]; 3635 -> 1546[label="",style="solid", color="blue", weight=3]; 3636[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3636[label="",style="solid", color="blue", weight=9]; 3636 -> 1547[label="",style="solid", color="blue", weight=3]; 3637[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3637[label="",style="solid", color="blue", weight=9]; 3637 -> 1548[label="",style="solid", color="blue", weight=3]; 1438[label="compare1 (Just xuu172) (Just xuu173) False",fontsize=16,color="black",shape="box"];1438 -> 1549[label="",style="solid", color="black", weight=3]; 1439[label="compare1 (Just xuu172) (Just xuu173) True",fontsize=16,color="black",shape="box"];1439 -> 1550[label="",style="solid", color="black", weight=3]; 1554[label="xuu128",fontsize=16,color="green",shape="box"];1555[label="xuu129",fontsize=16,color="green",shape="box"];1556 -> 1185[label="",style="dashed", color="red", weight=0]; 1556[label="xuu126 == xuu128 && xuu127 <= xuu129",fontsize=16,color="magenta"];1556 -> 1566[label="",style="dashed", color="magenta", weight=3]; 1556 -> 1567[label="",style="dashed", color="magenta", weight=3]; 1557[label="xuu127",fontsize=16,color="green",shape="box"];1558[label="xuu126 < xuu128",fontsize=16,color="blue",shape="box"];3638[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1558 -> 3638[label="",style="solid", color="blue", weight=9]; 3638 -> 1568[label="",style="solid", color="blue", weight=3]; 3639[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1558 -> 3639[label="",style="solid", color="blue", weight=9]; 3639 -> 1569[label="",style="solid", color="blue", weight=3]; 3640[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1558 -> 3640[label="",style="solid", color="blue", weight=9]; 3640 -> 1570[label="",style="solid", color="blue", weight=3]; 3641[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1558 -> 3641[label="",style="solid", color="blue", weight=9]; 3641 -> 1571[label="",style="solid", color="blue", weight=3]; 3642[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1558 -> 3642[label="",style="solid", color="blue", weight=9]; 3642 -> 1572[label="",style="solid", color="blue", weight=3]; 3643[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1558 -> 3643[label="",style="solid", color="blue", weight=9]; 3643 -> 1573[label="",style="solid", color="blue", weight=3]; 3644[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1558 -> 3644[label="",style="solid", color="blue", weight=9]; 3644 -> 1574[label="",style="solid", color="blue", weight=3]; 3645[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1558 -> 3645[label="",style="solid", color="blue", weight=9]; 3645 -> 1575[label="",style="solid", color="blue", weight=3]; 3646[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1558 -> 3646[label="",style="solid", color="blue", weight=9]; 3646 -> 1576[label="",style="solid", color="blue", weight=3]; 3647[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1558 -> 3647[label="",style="solid", color="blue", weight=9]; 3647 -> 1577[label="",style="solid", color="blue", weight=3]; 3648[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1558 -> 3648[label="",style="solid", color="blue", weight=9]; 3648 -> 1578[label="",style="solid", color="blue", weight=3]; 3649[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1558 -> 3649[label="",style="solid", color="blue", weight=9]; 3649 -> 1579[label="",style="solid", color="blue", weight=3]; 3650[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1558 -> 3650[label="",style="solid", color="blue", weight=9]; 3650 -> 1580[label="",style="solid", color="blue", weight=3]; 3651[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1558 -> 3651[label="",style="solid", color="blue", weight=9]; 3651 -> 1581[label="",style="solid", color="blue", weight=3]; 1559[label="xuu126",fontsize=16,color="green",shape="box"];1553[label="compare1 (xuu200,xuu201) (xuu202,xuu203) (xuu204 || xuu205)",fontsize=16,color="burlywood",shape="triangle"];3652[label="xuu204/False",fontsize=10,color="white",style="solid",shape="box"];1553 -> 3652[label="",style="solid", color="burlywood", weight=9]; 3652 -> 1582[label="",style="solid", color="burlywood", weight=3]; 3653[label="xuu204/True",fontsize=10,color="white",style="solid",shape="box"];1553 -> 3653[label="",style="solid", color="burlywood", weight=9]; 3653 -> 1583[label="",style="solid", color="burlywood", weight=3]; 1442[label="GT",fontsize=16,color="green",shape="box"];1443[label="GT",fontsize=16,color="green",shape="box"];1444[label="GT",fontsize=16,color="green",shape="box"];1445[label="Pos Zero",fontsize=16,color="green",shape="box"];1446[label="xuu212",fontsize=16,color="green",shape="box"];1447[label="primPlusNat xuu4420 xuu1390",fontsize=16,color="burlywood",shape="triangle"];3654[label="xuu4420/Succ xuu44200",fontsize=10,color="white",style="solid",shape="box"];1447 -> 3654[label="",style="solid", color="burlywood", weight=9]; 3654 -> 1584[label="",style="solid", color="burlywood", weight=3]; 3655[label="xuu4420/Zero",fontsize=10,color="white",style="solid",shape="box"];1447 -> 3655[label="",style="solid", color="burlywood", weight=9]; 3655 -> 1585[label="",style="solid", color="burlywood", weight=3]; 1448[label="primMinusNat (Succ xuu44200) xuu1390",fontsize=16,color="burlywood",shape="box"];3656[label="xuu1390/Succ xuu13900",fontsize=10,color="white",style="solid",shape="box"];1448 -> 3656[label="",style="solid", color="burlywood", weight=9]; 3656 -> 1586[label="",style="solid", color="burlywood", weight=3]; 3657[label="xuu1390/Zero",fontsize=10,color="white",style="solid",shape="box"];1448 -> 3657[label="",style="solid", color="burlywood", weight=9]; 3657 -> 1587[label="",style="solid", color="burlywood", weight=3]; 1449[label="primMinusNat Zero xuu1390",fontsize=16,color="burlywood",shape="box"];3658[label="xuu1390/Succ xuu13900",fontsize=10,color="white",style="solid",shape="box"];1449 -> 3658[label="",style="solid", color="burlywood", weight=9]; 3658 -> 1588[label="",style="solid", color="burlywood", weight=3]; 3659[label="xuu1390/Zero",fontsize=10,color="white",style="solid",shape="box"];1449 -> 3659[label="",style="solid", color="burlywood", weight=9]; 3659 -> 1589[label="",style="solid", color="burlywood", weight=3]; 1450[label="xuu1390",fontsize=16,color="green",shape="box"];1451[label="xuu4420",fontsize=16,color="green",shape="box"];1452 -> 1447[label="",style="dashed", color="red", weight=0]; 1452[label="primPlusNat xuu4420 xuu1390",fontsize=16,color="magenta"];1452 -> 1590[label="",style="dashed", color="magenta", weight=3]; 1452 -> 1591[label="",style="dashed", color="magenta", weight=3]; 1453 -> 428[label="",style="dashed", color="red", weight=0]; 1453[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu17 xuu18 xuu44 xuu21",fontsize=16,color="magenta"];1453 -> 1592[label="",style="dashed", color="magenta", weight=3]; 1453 -> 1593[label="",style="dashed", color="magenta", weight=3]; 1454 -> 1056[label="",style="dashed", color="red", weight=0]; 1454[label="FiniteMap.mkBalBranch6Size_l xuu17 xuu18 xuu44 xuu21",fontsize=16,color="magenta"];1455[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 False",fontsize=16,color="black",shape="box"];1455 -> 1594[label="",style="solid", color="black", weight=3]; 1456[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 True",fontsize=16,color="black",shape="box"];1456 -> 1595[label="",style="solid", color="black", weight=3]; 1457[label="error []",fontsize=16,color="red",shape="box"];1458[label="FiniteMap.mkBalBranch6MkBalBranch02 xuu17 xuu18 xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="black",shape="box"];1458 -> 1596[label="",style="solid", color="black", weight=3]; 1459 -> 1054[label="",style="dashed", color="red", weight=0]; 1459[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu44 xuu17 xuu21) (FiniteMap.mkBranchRight_size xuu44 xuu17 xuu21)",fontsize=16,color="magenta"];1459 -> 1597[label="",style="dashed", color="magenta", weight=3]; 1459 -> 1598[label="",style="dashed", color="magenta", weight=3]; 1479 -> 34[label="",style="dashed", color="red", weight=0]; 1479[label="xuu113 < xuu116",fontsize=16,color="magenta"];1479 -> 1599[label="",style="dashed", color="magenta", weight=3]; 1479 -> 1600[label="",style="dashed", color="magenta", weight=3]; 1480 -> 35[label="",style="dashed", color="red", weight=0]; 1480[label="xuu113 < xuu116",fontsize=16,color="magenta"];1480 -> 1601[label="",style="dashed", color="magenta", weight=3]; 1480 -> 1602[label="",style="dashed", color="magenta", weight=3]; 1481 -> 36[label="",style="dashed", color="red", weight=0]; 1481[label="xuu113 < xuu116",fontsize=16,color="magenta"];1481 -> 1603[label="",style="dashed", color="magenta", weight=3]; 1481 -> 1604[label="",style="dashed", color="magenta", weight=3]; 1482 -> 37[label="",style="dashed", color="red", weight=0]; 1482[label="xuu113 < xuu116",fontsize=16,color="magenta"];1482 -> 1605[label="",style="dashed", color="magenta", weight=3]; 1482 -> 1606[label="",style="dashed", color="magenta", weight=3]; 1483 -> 38[label="",style="dashed", color="red", weight=0]; 1483[label="xuu113 < xuu116",fontsize=16,color="magenta"];1483 -> 1607[label="",style="dashed", color="magenta", weight=3]; 1483 -> 1608[label="",style="dashed", color="magenta", weight=3]; 1484 -> 39[label="",style="dashed", color="red", weight=0]; 1484[label="xuu113 < xuu116",fontsize=16,color="magenta"];1484 -> 1609[label="",style="dashed", color="magenta", weight=3]; 1484 -> 1610[label="",style="dashed", color="magenta", weight=3]; 1485 -> 40[label="",style="dashed", color="red", weight=0]; 1485[label="xuu113 < xuu116",fontsize=16,color="magenta"];1485 -> 1611[label="",style="dashed", color="magenta", weight=3]; 1485 -> 1612[label="",style="dashed", color="magenta", weight=3]; 1486 -> 41[label="",style="dashed", color="red", weight=0]; 1486[label="xuu113 < xuu116",fontsize=16,color="magenta"];1486 -> 1613[label="",style="dashed", color="magenta", weight=3]; 1486 -> 1614[label="",style="dashed", color="magenta", weight=3]; 1487 -> 42[label="",style="dashed", color="red", weight=0]; 1487[label="xuu113 < xuu116",fontsize=16,color="magenta"];1487 -> 1615[label="",style="dashed", color="magenta", weight=3]; 1487 -> 1616[label="",style="dashed", color="magenta", weight=3]; 1488 -> 43[label="",style="dashed", color="red", weight=0]; 1488[label="xuu113 < xuu116",fontsize=16,color="magenta"];1488 -> 1617[label="",style="dashed", color="magenta", weight=3]; 1488 -> 1618[label="",style="dashed", color="magenta", weight=3]; 1489 -> 44[label="",style="dashed", color="red", weight=0]; 1489[label="xuu113 < xuu116",fontsize=16,color="magenta"];1489 -> 1619[label="",style="dashed", color="magenta", weight=3]; 1489 -> 1620[label="",style="dashed", color="magenta", weight=3]; 1490 -> 45[label="",style="dashed", color="red", weight=0]; 1490[label="xuu113 < xuu116",fontsize=16,color="magenta"];1490 -> 1621[label="",style="dashed", color="magenta", weight=3]; 1490 -> 1622[label="",style="dashed", color="magenta", weight=3]; 1491 -> 46[label="",style="dashed", color="red", weight=0]; 1491[label="xuu113 < xuu116",fontsize=16,color="magenta"];1491 -> 1623[label="",style="dashed", color="magenta", weight=3]; 1491 -> 1624[label="",style="dashed", color="magenta", weight=3]; 1492 -> 47[label="",style="dashed", color="red", weight=0]; 1492[label="xuu113 < xuu116",fontsize=16,color="magenta"];1492 -> 1625[label="",style="dashed", color="magenta", weight=3]; 1492 -> 1626[label="",style="dashed", color="magenta", weight=3]; 1493[label="xuu113 == xuu116",fontsize=16,color="blue",shape="box"];3660[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1493 -> 3660[label="",style="solid", color="blue", weight=9]; 3660 -> 1627[label="",style="solid", color="blue", weight=3]; 3661[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1493 -> 3661[label="",style="solid", color="blue", weight=9]; 3661 -> 1628[label="",style="solid", color="blue", weight=3]; 3662[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1493 -> 3662[label="",style="solid", color="blue", weight=9]; 3662 -> 1629[label="",style="solid", color="blue", weight=3]; 3663[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1493 -> 3663[label="",style="solid", color="blue", weight=9]; 3663 -> 1630[label="",style="solid", color="blue", weight=3]; 3664[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1493 -> 3664[label="",style="solid", color="blue", weight=9]; 3664 -> 1631[label="",style="solid", color="blue", weight=3]; 3665[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1493 -> 3665[label="",style="solid", color="blue", weight=9]; 3665 -> 1632[label="",style="solid", color="blue", weight=3]; 3666[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1493 -> 3666[label="",style="solid", color="blue", weight=9]; 3666 -> 1633[label="",style="solid", color="blue", weight=3]; 3667[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1493 -> 3667[label="",style="solid", color="blue", weight=9]; 3667 -> 1634[label="",style="solid", color="blue", weight=3]; 3668[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1493 -> 3668[label="",style="solid", color="blue", weight=9]; 3668 -> 1635[label="",style="solid", color="blue", weight=3]; 3669[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1493 -> 3669[label="",style="solid", color="blue", weight=9]; 3669 -> 1636[label="",style="solid", color="blue", weight=3]; 3670[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1493 -> 3670[label="",style="solid", color="blue", weight=9]; 3670 -> 1637[label="",style="solid", color="blue", weight=3]; 3671[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1493 -> 3671[label="",style="solid", color="blue", weight=9]; 3671 -> 1638[label="",style="solid", color="blue", weight=3]; 3672[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1493 -> 3672[label="",style="solid", color="blue", weight=9]; 3672 -> 1639[label="",style="solid", color="blue", weight=3]; 3673[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1493 -> 3673[label="",style="solid", color="blue", weight=9]; 3673 -> 1640[label="",style="solid", color="blue", weight=3]; 1494 -> 1885[label="",style="dashed", color="red", weight=0]; 1494[label="xuu114 < xuu117 || xuu114 == xuu117 && xuu115 <= xuu118",fontsize=16,color="magenta"];1494 -> 1886[label="",style="dashed", color="magenta", weight=3]; 1494 -> 1887[label="",style="dashed", color="magenta", weight=3]; 1495[label="compare1 (xuu185,xuu186,xuu187) (xuu188,xuu189,xuu190) (False || xuu192)",fontsize=16,color="black",shape="box"];1495 -> 1643[label="",style="solid", color="black", weight=3]; 1496[label="compare1 (xuu185,xuu186,xuu187) (xuu188,xuu189,xuu190) (True || xuu192)",fontsize=16,color="black",shape="box"];1496 -> 1644[label="",style="solid", color="black", weight=3]; 1497[label="primMulNat (Succ xuu40000) xuu50010",fontsize=16,color="burlywood",shape="box"];3674[label="xuu50010/Succ xuu500100",fontsize=10,color="white",style="solid",shape="box"];1497 -> 3674[label="",style="solid", color="burlywood", weight=9]; 3674 -> 1645[label="",style="solid", color="burlywood", weight=3]; 3675[label="xuu50010/Zero",fontsize=10,color="white",style="solid",shape="box"];1497 -> 3675[label="",style="solid", color="burlywood", weight=9]; 3675 -> 1646[label="",style="solid", color="burlywood", weight=3]; 1498[label="primMulNat Zero xuu50010",fontsize=16,color="burlywood",shape="box"];3676[label="xuu50010/Succ xuu500100",fontsize=10,color="white",style="solid",shape="box"];1498 -> 3676[label="",style="solid", color="burlywood", weight=9]; 3676 -> 1647[label="",style="solid", color="burlywood", weight=3]; 3677[label="xuu50010/Zero",fontsize=10,color="white",style="solid",shape="box"];1498 -> 3677[label="",style="solid", color="burlywood", weight=9]; 3677 -> 1648[label="",style="solid", color="burlywood", weight=3]; 1499[label="xuu50010",fontsize=16,color="green",shape="box"];1500[label="xuu4000",fontsize=16,color="green",shape="box"];1501[label="xuu50010",fontsize=16,color="green",shape="box"];1502[label="xuu4000",fontsize=16,color="green",shape="box"];1081[label="True",fontsize=16,color="green",shape="box"];1082[label="False",fontsize=16,color="green",shape="box"];1083[label="False",fontsize=16,color="green",shape="box"];1084[label="False",fontsize=16,color="green",shape="box"];1085[label="True",fontsize=16,color="green",shape="box"];1086[label="False",fontsize=16,color="green",shape="box"];1087[label="False",fontsize=16,color="green",shape="box"];1088[label="False",fontsize=16,color="green",shape="box"];1089[label="True",fontsize=16,color="green",shape="box"];1090 -> 1185[label="",style="dashed", color="red", weight=0]; 1090[label="xuu50000 == xuu4000 && xuu50001 == xuu4001",fontsize=16,color="magenta"];1090 -> 1194[label="",style="dashed", color="magenta", weight=3]; 1090 -> 1195[label="",style="dashed", color="magenta", weight=3]; 1091 -> 1185[label="",style="dashed", color="red", weight=0]; 1091[label="xuu50000 == xuu4000 && xuu50001 == xuu4001 && xuu50002 == xuu4002",fontsize=16,color="magenta"];1091 -> 1196[label="",style="dashed", color="magenta", weight=3]; 1091 -> 1197[label="",style="dashed", color="magenta", weight=3]; 1092[label="True",fontsize=16,color="green",shape="box"];1093[label="primEqInt (Pos (Succ xuu500000)) xuu400",fontsize=16,color="burlywood",shape="box"];3678[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3678[label="",style="solid", color="burlywood", weight=9]; 3678 -> 1649[label="",style="solid", color="burlywood", weight=3]; 3679[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3679[label="",style="solid", color="burlywood", weight=9]; 3679 -> 1650[label="",style="solid", color="burlywood", weight=3]; 1094[label="primEqInt (Pos Zero) xuu400",fontsize=16,color="burlywood",shape="box"];3680[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3680[label="",style="solid", color="burlywood", weight=9]; 3680 -> 1651[label="",style="solid", color="burlywood", weight=3]; 3681[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3681[label="",style="solid", color="burlywood", weight=9]; 3681 -> 1652[label="",style="solid", color="burlywood", weight=3]; 1095[label="primEqInt (Neg (Succ xuu500000)) xuu400",fontsize=16,color="burlywood",shape="box"];3682[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];1095 -> 3682[label="",style="solid", color="burlywood", weight=9]; 3682 -> 1653[label="",style="solid", color="burlywood", weight=3]; 3683[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];1095 -> 3683[label="",style="solid", color="burlywood", weight=9]; 3683 -> 1654[label="",style="solid", color="burlywood", weight=3]; 1096[label="primEqInt (Neg Zero) xuu400",fontsize=16,color="burlywood",shape="box"];3684[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];1096 -> 3684[label="",style="solid", color="burlywood", weight=9]; 3684 -> 1655[label="",style="solid", color="burlywood", weight=3]; 3685[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];1096 -> 3685[label="",style="solid", color="burlywood", weight=9]; 3685 -> 1656[label="",style="solid", color="burlywood", weight=3]; 1097 -> 723[label="",style="dashed", color="red", weight=0]; 1097[label="primEqInt xuu50000 xuu4000",fontsize=16,color="magenta"];1097 -> 1657[label="",style="dashed", color="magenta", weight=3]; 1097 -> 1658[label="",style="dashed", color="magenta", weight=3]; 1098 -> 1185[label="",style="dashed", color="red", weight=0]; 1098[label="xuu50000 == xuu4000 && xuu50001 == xuu4001",fontsize=16,color="magenta"];1098 -> 1198[label="",style="dashed", color="magenta", weight=3]; 1098 -> 1199[label="",style="dashed", color="magenta", weight=3]; 1099[label="True",fontsize=16,color="green",shape="box"];1100[label="False",fontsize=16,color="green",shape="box"];1101[label="False",fontsize=16,color="green",shape="box"];1102[label="True",fontsize=16,color="green",shape="box"];1103[label="primEqDouble (Double xuu50000 xuu50001) (Double xuu4000 xuu4001)",fontsize=16,color="black",shape="box"];1103 -> 1659[label="",style="solid", color="black", weight=3]; 1104[label="True",fontsize=16,color="green",shape="box"];1105[label="False",fontsize=16,color="green",shape="box"];1106[label="False",fontsize=16,color="green",shape="box"];1107[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];3686[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3686[label="",style="solid", color="blue", weight=9]; 3686 -> 1660[label="",style="solid", color="blue", weight=3]; 3687[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3687[label="",style="solid", color="blue", weight=9]; 3687 -> 1661[label="",style="solid", color="blue", weight=3]; 3688[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3688[label="",style="solid", color="blue", weight=9]; 3688 -> 1662[label="",style="solid", color="blue", weight=3]; 3689[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3689[label="",style="solid", color="blue", weight=9]; 3689 -> 1663[label="",style="solid", color="blue", weight=3]; 3690[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3690[label="",style="solid", color="blue", weight=9]; 3690 -> 1664[label="",style="solid", color="blue", weight=3]; 3691[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3691[label="",style="solid", color="blue", weight=9]; 3691 -> 1665[label="",style="solid", color="blue", weight=3]; 3692[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3692[label="",style="solid", color="blue", weight=9]; 3692 -> 1666[label="",style="solid", color="blue", weight=3]; 3693[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3693[label="",style="solid", color="blue", weight=9]; 3693 -> 1667[label="",style="solid", color="blue", weight=3]; 3694[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3694[label="",style="solid", color="blue", weight=9]; 3694 -> 1668[label="",style="solid", color="blue", weight=3]; 3695[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3695[label="",style="solid", color="blue", weight=9]; 3695 -> 1669[label="",style="solid", color="blue", weight=3]; 3696[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3696[label="",style="solid", color="blue", weight=9]; 3696 -> 1670[label="",style="solid", color="blue", weight=3]; 3697[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3697[label="",style="solid", color="blue", weight=9]; 3697 -> 1671[label="",style="solid", color="blue", weight=3]; 3698[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3698[label="",style="solid", color="blue", weight=9]; 3698 -> 1672[label="",style="solid", color="blue", weight=3]; 3699[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3699[label="",style="solid", color="blue", weight=9]; 3699 -> 1673[label="",style="solid", color="blue", weight=3]; 1108 -> 1185[label="",style="dashed", color="red", weight=0]; 1108[label="xuu50000 == xuu4000 && xuu50001 == xuu4001",fontsize=16,color="magenta"];1108 -> 1200[label="",style="dashed", color="magenta", weight=3]; 1108 -> 1201[label="",style="dashed", color="magenta", weight=3]; 1109[label="False",fontsize=16,color="green",shape="box"];1110[label="False",fontsize=16,color="green",shape="box"];1111[label="True",fontsize=16,color="green",shape="box"];1112[label="primEqFloat (Float xuu50000 xuu50001) (Float xuu4000 xuu4001)",fontsize=16,color="black",shape="box"];1112 -> 1674[label="",style="solid", color="black", weight=3]; 1113[label="primEqChar (Char xuu50000) (Char xuu4000)",fontsize=16,color="black",shape="box"];1113 -> 1675[label="",style="solid", color="black", weight=3]; 1114[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];3700[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3700[label="",style="solid", color="blue", weight=9]; 3700 -> 1676[label="",style="solid", color="blue", weight=3]; 3701[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3701[label="",style="solid", color="blue", weight=9]; 3701 -> 1677[label="",style="solid", color="blue", weight=3]; 3702[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3702[label="",style="solid", color="blue", weight=9]; 3702 -> 1678[label="",style="solid", color="blue", weight=3]; 3703[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3703[label="",style="solid", color="blue", weight=9]; 3703 -> 1679[label="",style="solid", color="blue", weight=3]; 3704[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3704[label="",style="solid", color="blue", weight=9]; 3704 -> 1680[label="",style="solid", color="blue", weight=3]; 3705[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3705[label="",style="solid", color="blue", weight=9]; 3705 -> 1681[label="",style="solid", color="blue", weight=3]; 3706[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3706[label="",style="solid", color="blue", weight=9]; 3706 -> 1682[label="",style="solid", color="blue", weight=3]; 3707[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3707[label="",style="solid", color="blue", weight=9]; 3707 -> 1683[label="",style="solid", color="blue", weight=3]; 3708[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3708[label="",style="solid", color="blue", weight=9]; 3708 -> 1684[label="",style="solid", color="blue", weight=3]; 3709[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3709[label="",style="solid", color="blue", weight=9]; 3709 -> 1685[label="",style="solid", color="blue", weight=3]; 3710[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3710[label="",style="solid", color="blue", weight=9]; 3710 -> 1686[label="",style="solid", color="blue", weight=3]; 3711[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3711[label="",style="solid", color="blue", weight=9]; 3711 -> 1687[label="",style="solid", color="blue", weight=3]; 3712[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3712[label="",style="solid", color="blue", weight=9]; 3712 -> 1688[label="",style="solid", color="blue", weight=3]; 3713[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3713[label="",style="solid", color="blue", weight=9]; 3713 -> 1689[label="",style="solid", color="blue", weight=3]; 1115[label="False",fontsize=16,color="green",shape="box"];1116[label="False",fontsize=16,color="green",shape="box"];1117[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];3714[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3714[label="",style="solid", color="blue", weight=9]; 3714 -> 1690[label="",style="solid", color="blue", weight=3]; 3715[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3715[label="",style="solid", color="blue", weight=9]; 3715 -> 1691[label="",style="solid", color="blue", weight=3]; 3716[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3716[label="",style="solid", color="blue", weight=9]; 3716 -> 1692[label="",style="solid", color="blue", weight=3]; 3717[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3717[label="",style="solid", color="blue", weight=9]; 3717 -> 1693[label="",style="solid", color="blue", weight=3]; 3718[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3718[label="",style="solid", color="blue", weight=9]; 3718 -> 1694[label="",style="solid", color="blue", weight=3]; 3719[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3719[label="",style="solid", color="blue", weight=9]; 3719 -> 1695[label="",style="solid", color="blue", weight=3]; 3720[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3720[label="",style="solid", color="blue", weight=9]; 3720 -> 1696[label="",style="solid", color="blue", weight=3]; 3721[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3721[label="",style="solid", color="blue", weight=9]; 3721 -> 1697[label="",style="solid", color="blue", weight=3]; 3722[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3722[label="",style="solid", color="blue", weight=9]; 3722 -> 1698[label="",style="solid", color="blue", weight=3]; 3723[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3723[label="",style="solid", color="blue", weight=9]; 3723 -> 1699[label="",style="solid", color="blue", weight=3]; 3724[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3724[label="",style="solid", color="blue", weight=9]; 3724 -> 1700[label="",style="solid", color="blue", weight=3]; 3725[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3725[label="",style="solid", color="blue", weight=9]; 3725 -> 1701[label="",style="solid", color="blue", weight=3]; 3726[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3726[label="",style="solid", color="blue", weight=9]; 3726 -> 1702[label="",style="solid", color="blue", weight=3]; 3727[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1117 -> 3727[label="",style="solid", color="blue", weight=9]; 3727 -> 1703[label="",style="solid", color="blue", weight=3]; 1503[label="xuu75 <= xuu76",fontsize=16,color="black",shape="triangle"];1503 -> 1704[label="",style="solid", color="black", weight=3]; 1504[label="xuu75 <= xuu76",fontsize=16,color="black",shape="triangle"];1504 -> 1705[label="",style="solid", color="black", weight=3]; 1505[label="xuu75 <= xuu76",fontsize=16,color="black",shape="triangle"];1505 -> 1706[label="",style="solid", color="black", weight=3]; 1506[label="xuu75 <= xuu76",fontsize=16,color="burlywood",shape="triangle"];3728[label="xuu75/(xuu750,xuu751,xuu752)",fontsize=10,color="white",style="solid",shape="box"];1506 -> 3728[label="",style="solid", color="burlywood", weight=9]; 3728 -> 1707[label="",style="solid", color="burlywood", weight=3]; 1507[label="xuu75 <= xuu76",fontsize=16,color="black",shape="triangle"];1507 -> 1708[label="",style="solid", color="black", weight=3]; 1508[label="xuu75 <= xuu76",fontsize=16,color="black",shape="triangle"];1508 -> 1709[label="",style="solid", color="black", weight=3]; 1509[label="xuu75 <= xuu76",fontsize=16,color="black",shape="triangle"];1509 -> 1710[label="",style="solid", color="black", weight=3]; 1510[label="xuu75 <= xuu76",fontsize=16,color="burlywood",shape="triangle"];3729[label="xuu75/False",fontsize=10,color="white",style="solid",shape="box"];1510 -> 3729[label="",style="solid", color="burlywood", weight=9]; 3729 -> 1711[label="",style="solid", color="burlywood", weight=3]; 3730[label="xuu75/True",fontsize=10,color="white",style="solid",shape="box"];1510 -> 3730[label="",style="solid", color="burlywood", weight=9]; 3730 -> 1712[label="",style="solid", color="burlywood", weight=3]; 1511[label="xuu75 <= xuu76",fontsize=16,color="black",shape="triangle"];1511 -> 1713[label="",style="solid", color="black", weight=3]; 1512[label="xuu75 <= xuu76",fontsize=16,color="burlywood",shape="triangle"];3731[label="xuu75/Left xuu750",fontsize=10,color="white",style="solid",shape="box"];1512 -> 3731[label="",style="solid", color="burlywood", weight=9]; 3731 -> 1714[label="",style="solid", color="burlywood", weight=3]; 3732[label="xuu75/Right xuu750",fontsize=10,color="white",style="solid",shape="box"];1512 -> 3732[label="",style="solid", color="burlywood", weight=9]; 3732 -> 1715[label="",style="solid", color="burlywood", weight=3]; 1513[label="xuu75 <= xuu76",fontsize=16,color="burlywood",shape="triangle"];3733[label="xuu75/Nothing",fontsize=10,color="white",style="solid",shape="box"];1513 -> 3733[label="",style="solid", color="burlywood", weight=9]; 3733 -> 1716[label="",style="solid", color="burlywood", weight=3]; 3734[label="xuu75/Just xuu750",fontsize=10,color="white",style="solid",shape="box"];1513 -> 3734[label="",style="solid", color="burlywood", weight=9]; 3734 -> 1717[label="",style="solid", color="burlywood", weight=3]; 1514[label="xuu75 <= xuu76",fontsize=16,color="black",shape="triangle"];1514 -> 1718[label="",style="solid", color="black", weight=3]; 1515[label="xuu75 <= xuu76",fontsize=16,color="burlywood",shape="triangle"];3735[label="xuu75/(xuu750,xuu751)",fontsize=10,color="white",style="solid",shape="box"];1515 -> 3735[label="",style="solid", color="burlywood", weight=9]; 3735 -> 1719[label="",style="solid", color="burlywood", weight=3]; 1516[label="xuu75 <= xuu76",fontsize=16,color="burlywood",shape="triangle"];3736[label="xuu75/LT",fontsize=10,color="white",style="solid",shape="box"];1516 -> 3736[label="",style="solid", color="burlywood", weight=9]; 3736 -> 1720[label="",style="solid", color="burlywood", weight=3]; 3737[label="xuu75/EQ",fontsize=10,color="white",style="solid",shape="box"];1516 -> 3737[label="",style="solid", color="burlywood", weight=9]; 3737 -> 1721[label="",style="solid", color="burlywood", weight=3]; 3738[label="xuu75/GT",fontsize=10,color="white",style="solid",shape="box"];1516 -> 3738[label="",style="solid", color="burlywood", weight=9]; 3738 -> 1722[label="",style="solid", color="burlywood", weight=3]; 1517[label="compare0 (Left xuu156) (Left xuu157) otherwise",fontsize=16,color="black",shape="box"];1517 -> 1723[label="",style="solid", color="black", weight=3]; 1518[label="LT",fontsize=16,color="green",shape="box"];1519 -> 1503[label="",style="dashed", color="red", weight=0]; 1519[label="xuu82 <= xuu83",fontsize=16,color="magenta"];1519 -> 1724[label="",style="dashed", color="magenta", weight=3]; 1519 -> 1725[label="",style="dashed", color="magenta", weight=3]; 1520 -> 1504[label="",style="dashed", color="red", weight=0]; 1520[label="xuu82 <= xuu83",fontsize=16,color="magenta"];1520 -> 1726[label="",style="dashed", color="magenta", weight=3]; 1520 -> 1727[label="",style="dashed", color="magenta", weight=3]; 1521 -> 1505[label="",style="dashed", color="red", weight=0]; 1521[label="xuu82 <= xuu83",fontsize=16,color="magenta"];1521 -> 1728[label="",style="dashed", color="magenta", weight=3]; 1521 -> 1729[label="",style="dashed", color="magenta", weight=3]; 1522 -> 1506[label="",style="dashed", color="red", weight=0]; 1522[label="xuu82 <= xuu83",fontsize=16,color="magenta"];1522 -> 1730[label="",style="dashed", color="magenta", weight=3]; 1522 -> 1731[label="",style="dashed", color="magenta", weight=3]; 1523 -> 1507[label="",style="dashed", color="red", weight=0]; 1523[label="xuu82 <= xuu83",fontsize=16,color="magenta"];1523 -> 1732[label="",style="dashed", color="magenta", weight=3]; 1523 -> 1733[label="",style="dashed", color="magenta", weight=3]; 1524 -> 1508[label="",style="dashed", color="red", weight=0]; 1524[label="xuu82 <= xuu83",fontsize=16,color="magenta"];1524 -> 1734[label="",style="dashed", color="magenta", weight=3]; 1524 -> 1735[label="",style="dashed", color="magenta", weight=3]; 1525 -> 1509[label="",style="dashed", color="red", weight=0]; 1525[label="xuu82 <= xuu83",fontsize=16,color="magenta"];1525 -> 1736[label="",style="dashed", color="magenta", weight=3]; 1525 -> 1737[label="",style="dashed", color="magenta", weight=3]; 1526 -> 1510[label="",style="dashed", color="red", weight=0]; 1526[label="xuu82 <= xuu83",fontsize=16,color="magenta"];1526 -> 1738[label="",style="dashed", color="magenta", weight=3]; 1526 -> 1739[label="",style="dashed", color="magenta", weight=3]; 1527 -> 1511[label="",style="dashed", color="red", weight=0]; 1527[label="xuu82 <= xuu83",fontsize=16,color="magenta"];1527 -> 1740[label="",style="dashed", color="magenta", weight=3]; 1527 -> 1741[label="",style="dashed", color="magenta", weight=3]; 1528 -> 1512[label="",style="dashed", color="red", weight=0]; 1528[label="xuu82 <= xuu83",fontsize=16,color="magenta"];1528 -> 1742[label="",style="dashed", color="magenta", weight=3]; 1528 -> 1743[label="",style="dashed", color="magenta", weight=3]; 1529 -> 1513[label="",style="dashed", color="red", weight=0]; 1529[label="xuu82 <= xuu83",fontsize=16,color="magenta"];1529 -> 1744[label="",style="dashed", color="magenta", weight=3]; 1529 -> 1745[label="",style="dashed", color="magenta", weight=3]; 1530 -> 1514[label="",style="dashed", color="red", weight=0]; 1530[label="xuu82 <= xuu83",fontsize=16,color="magenta"];1530 -> 1746[label="",style="dashed", color="magenta", weight=3]; 1530 -> 1747[label="",style="dashed", color="magenta", weight=3]; 1531 -> 1515[label="",style="dashed", color="red", weight=0]; 1531[label="xuu82 <= xuu83",fontsize=16,color="magenta"];1531 -> 1748[label="",style="dashed", color="magenta", weight=3]; 1531 -> 1749[label="",style="dashed", color="magenta", weight=3]; 1532 -> 1516[label="",style="dashed", color="red", weight=0]; 1532[label="xuu82 <= xuu83",fontsize=16,color="magenta"];1532 -> 1750[label="",style="dashed", color="magenta", weight=3]; 1532 -> 1751[label="",style="dashed", color="magenta", weight=3]; 1533[label="compare0 (Right xuu163) (Right xuu164) otherwise",fontsize=16,color="black",shape="box"];1533 -> 1752[label="",style="solid", color="black", weight=3]; 1534[label="LT",fontsize=16,color="green",shape="box"];1535 -> 1503[label="",style="dashed", color="red", weight=0]; 1535[label="xuu89 <= xuu90",fontsize=16,color="magenta"];1535 -> 1753[label="",style="dashed", color="magenta", weight=3]; 1535 -> 1754[label="",style="dashed", color="magenta", weight=3]; 1536 -> 1504[label="",style="dashed", color="red", weight=0]; 1536[label="xuu89 <= xuu90",fontsize=16,color="magenta"];1536 -> 1755[label="",style="dashed", color="magenta", weight=3]; 1536 -> 1756[label="",style="dashed", color="magenta", weight=3]; 1537 -> 1505[label="",style="dashed", color="red", weight=0]; 1537[label="xuu89 <= xuu90",fontsize=16,color="magenta"];1537 -> 1757[label="",style="dashed", color="magenta", weight=3]; 1537 -> 1758[label="",style="dashed", color="magenta", weight=3]; 1538 -> 1506[label="",style="dashed", color="red", weight=0]; 1538[label="xuu89 <= xuu90",fontsize=16,color="magenta"];1538 -> 1759[label="",style="dashed", color="magenta", weight=3]; 1538 -> 1760[label="",style="dashed", color="magenta", weight=3]; 1539 -> 1507[label="",style="dashed", color="red", weight=0]; 1539[label="xuu89 <= xuu90",fontsize=16,color="magenta"];1539 -> 1761[label="",style="dashed", color="magenta", weight=3]; 1539 -> 1762[label="",style="dashed", color="magenta", weight=3]; 1540 -> 1508[label="",style="dashed", color="red", weight=0]; 1540[label="xuu89 <= xuu90",fontsize=16,color="magenta"];1540 -> 1763[label="",style="dashed", color="magenta", weight=3]; 1540 -> 1764[label="",style="dashed", color="magenta", weight=3]; 1541 -> 1509[label="",style="dashed", color="red", weight=0]; 1541[label="xuu89 <= xuu90",fontsize=16,color="magenta"];1541 -> 1765[label="",style="dashed", color="magenta", weight=3]; 1541 -> 1766[label="",style="dashed", color="magenta", weight=3]; 1542 -> 1510[label="",style="dashed", color="red", weight=0]; 1542[label="xuu89 <= xuu90",fontsize=16,color="magenta"];1542 -> 1767[label="",style="dashed", color="magenta", weight=3]; 1542 -> 1768[label="",style="dashed", color="magenta", weight=3]; 1543 -> 1511[label="",style="dashed", color="red", weight=0]; 1543[label="xuu89 <= xuu90",fontsize=16,color="magenta"];1543 -> 1769[label="",style="dashed", color="magenta", weight=3]; 1543 -> 1770[label="",style="dashed", color="magenta", weight=3]; 1544 -> 1512[label="",style="dashed", color="red", weight=0]; 1544[label="xuu89 <= xuu90",fontsize=16,color="magenta"];1544 -> 1771[label="",style="dashed", color="magenta", weight=3]; 1544 -> 1772[label="",style="dashed", color="magenta", weight=3]; 1545 -> 1513[label="",style="dashed", color="red", weight=0]; 1545[label="xuu89 <= xuu90",fontsize=16,color="magenta"];1545 -> 1773[label="",style="dashed", color="magenta", weight=3]; 1545 -> 1774[label="",style="dashed", color="magenta", weight=3]; 1546 -> 1514[label="",style="dashed", color="red", weight=0]; 1546[label="xuu89 <= xuu90",fontsize=16,color="magenta"];1546 -> 1775[label="",style="dashed", color="magenta", weight=3]; 1546 -> 1776[label="",style="dashed", color="magenta", weight=3]; 1547 -> 1515[label="",style="dashed", color="red", weight=0]; 1547[label="xuu89 <= xuu90",fontsize=16,color="magenta"];1547 -> 1777[label="",style="dashed", color="magenta", weight=3]; 1547 -> 1778[label="",style="dashed", color="magenta", weight=3]; 1548 -> 1516[label="",style="dashed", color="red", weight=0]; 1548[label="xuu89 <= xuu90",fontsize=16,color="magenta"];1548 -> 1779[label="",style="dashed", color="magenta", weight=3]; 1548 -> 1780[label="",style="dashed", color="magenta", weight=3]; 1549[label="compare0 (Just xuu172) (Just xuu173) otherwise",fontsize=16,color="black",shape="box"];1549 -> 1781[label="",style="solid", color="black", weight=3]; 1550[label="LT",fontsize=16,color="green",shape="box"];1566[label="xuu126 == xuu128",fontsize=16,color="blue",shape="box"];3739[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 3739[label="",style="solid", color="blue", weight=9]; 3739 -> 1782[label="",style="solid", color="blue", weight=3]; 3740[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 3740[label="",style="solid", color="blue", weight=9]; 3740 -> 1783[label="",style="solid", color="blue", weight=3]; 3741[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 3741[label="",style="solid", color="blue", weight=9]; 3741 -> 1784[label="",style="solid", color="blue", weight=3]; 3742[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 3742[label="",style="solid", color="blue", weight=9]; 3742 -> 1785[label="",style="solid", color="blue", weight=3]; 3743[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 3743[label="",style="solid", color="blue", weight=9]; 3743 -> 1786[label="",style="solid", color="blue", weight=3]; 3744[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 3744[label="",style="solid", color="blue", weight=9]; 3744 -> 1787[label="",style="solid", color="blue", weight=3]; 3745[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 3745[label="",style="solid", color="blue", weight=9]; 3745 -> 1788[label="",style="solid", color="blue", weight=3]; 3746[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 3746[label="",style="solid", color="blue", weight=9]; 3746 -> 1789[label="",style="solid", color="blue", weight=3]; 3747[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 3747[label="",style="solid", color="blue", weight=9]; 3747 -> 1790[label="",style="solid", color="blue", weight=3]; 3748[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 3748[label="",style="solid", color="blue", weight=9]; 3748 -> 1791[label="",style="solid", color="blue", weight=3]; 3749[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 3749[label="",style="solid", color="blue", weight=9]; 3749 -> 1792[label="",style="solid", color="blue", weight=3]; 3750[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 3750[label="",style="solid", color="blue", weight=9]; 3750 -> 1793[label="",style="solid", color="blue", weight=3]; 3751[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 3751[label="",style="solid", color="blue", weight=9]; 3751 -> 1794[label="",style="solid", color="blue", weight=3]; 3752[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 3752[label="",style="solid", color="blue", weight=9]; 3752 -> 1795[label="",style="solid", color="blue", weight=3]; 1567[label="xuu127 <= xuu129",fontsize=16,color="blue",shape="box"];3753[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1567 -> 3753[label="",style="solid", color="blue", weight=9]; 3753 -> 1796[label="",style="solid", color="blue", weight=3]; 3754[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1567 -> 3754[label="",style="solid", color="blue", weight=9]; 3754 -> 1797[label="",style="solid", color="blue", weight=3]; 3755[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1567 -> 3755[label="",style="solid", color="blue", weight=9]; 3755 -> 1798[label="",style="solid", color="blue", weight=3]; 3756[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1567 -> 3756[label="",style="solid", color="blue", weight=9]; 3756 -> 1799[label="",style="solid", color="blue", weight=3]; 3757[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1567 -> 3757[label="",style="solid", color="blue", weight=9]; 3757 -> 1800[label="",style="solid", color="blue", weight=3]; 3758[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1567 -> 3758[label="",style="solid", color="blue", weight=9]; 3758 -> 1801[label="",style="solid", color="blue", weight=3]; 3759[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1567 -> 3759[label="",style="solid", color="blue", weight=9]; 3759 -> 1802[label="",style="solid", color="blue", weight=3]; 3760[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1567 -> 3760[label="",style="solid", color="blue", weight=9]; 3760 -> 1803[label="",style="solid", color="blue", weight=3]; 3761[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1567 -> 3761[label="",style="solid", color="blue", weight=9]; 3761 -> 1804[label="",style="solid", color="blue", weight=3]; 3762[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1567 -> 3762[label="",style="solid", color="blue", weight=9]; 3762 -> 1805[label="",style="solid", color="blue", weight=3]; 3763[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1567 -> 3763[label="",style="solid", color="blue", weight=9]; 3763 -> 1806[label="",style="solid", color="blue", weight=3]; 3764[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1567 -> 3764[label="",style="solid", color="blue", weight=9]; 3764 -> 1807[label="",style="solid", color="blue", weight=3]; 3765[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1567 -> 3765[label="",style="solid", color="blue", weight=9]; 3765 -> 1808[label="",style="solid", color="blue", weight=3]; 3766[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1567 -> 3766[label="",style="solid", color="blue", weight=9]; 3766 -> 1809[label="",style="solid", color="blue", weight=3]; 1568 -> 34[label="",style="dashed", color="red", weight=0]; 1568[label="xuu126 < xuu128",fontsize=16,color="magenta"];1568 -> 1810[label="",style="dashed", color="magenta", weight=3]; 1568 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1569 -> 35[label="",style="dashed", color="red", weight=0]; 1569[label="xuu126 < xuu128",fontsize=16,color="magenta"];1569 -> 1812[label="",style="dashed", color="magenta", weight=3]; 1569 -> 1813[label="",style="dashed", color="magenta", weight=3]; 1570 -> 36[label="",style="dashed", color="red", weight=0]; 1570[label="xuu126 < xuu128",fontsize=16,color="magenta"];1570 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1570 -> 1815[label="",style="dashed", color="magenta", weight=3]; 1571 -> 37[label="",style="dashed", color="red", weight=0]; 1571[label="xuu126 < xuu128",fontsize=16,color="magenta"];1571 -> 1816[label="",style="dashed", color="magenta", weight=3]; 1571 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1572 -> 38[label="",style="dashed", color="red", weight=0]; 1572[label="xuu126 < xuu128",fontsize=16,color="magenta"];1572 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1572 -> 1819[label="",style="dashed", color="magenta", weight=3]; 1573 -> 39[label="",style="dashed", color="red", weight=0]; 1573[label="xuu126 < xuu128",fontsize=16,color="magenta"];1573 -> 1820[label="",style="dashed", color="magenta", weight=3]; 1573 -> 1821[label="",style="dashed", color="magenta", weight=3]; 1574 -> 40[label="",style="dashed", color="red", weight=0]; 1574[label="xuu126 < xuu128",fontsize=16,color="magenta"];1574 -> 1822[label="",style="dashed", color="magenta", weight=3]; 1574 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1575 -> 41[label="",style="dashed", color="red", weight=0]; 1575[label="xuu126 < xuu128",fontsize=16,color="magenta"];1575 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1575 -> 1825[label="",style="dashed", color="magenta", weight=3]; 1576 -> 42[label="",style="dashed", color="red", weight=0]; 1576[label="xuu126 < xuu128",fontsize=16,color="magenta"];1576 -> 1826[label="",style="dashed", color="magenta", weight=3]; 1576 -> 1827[label="",style="dashed", color="magenta", weight=3]; 1577 -> 43[label="",style="dashed", color="red", weight=0]; 1577[label="xuu126 < xuu128",fontsize=16,color="magenta"];1577 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1577 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1578 -> 44[label="",style="dashed", color="red", weight=0]; 1578[label="xuu126 < xuu128",fontsize=16,color="magenta"];1578 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1578 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1579 -> 45[label="",style="dashed", color="red", weight=0]; 1579[label="xuu126 < xuu128",fontsize=16,color="magenta"];1579 -> 1832[label="",style="dashed", color="magenta", weight=3]; 1579 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1580 -> 46[label="",style="dashed", color="red", weight=0]; 1580[label="xuu126 < xuu128",fontsize=16,color="magenta"];1580 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1580 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1581 -> 47[label="",style="dashed", color="red", weight=0]; 1581[label="xuu126 < xuu128",fontsize=16,color="magenta"];1581 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1581 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1582[label="compare1 (xuu200,xuu201) (xuu202,xuu203) (False || xuu205)",fontsize=16,color="black",shape="box"];1582 -> 1838[label="",style="solid", color="black", weight=3]; 1583[label="compare1 (xuu200,xuu201) (xuu202,xuu203) (True || xuu205)",fontsize=16,color="black",shape="box"];1583 -> 1839[label="",style="solid", color="black", weight=3]; 1584[label="primPlusNat (Succ xuu44200) xuu1390",fontsize=16,color="burlywood",shape="box"];3767[label="xuu1390/Succ xuu13900",fontsize=10,color="white",style="solid",shape="box"];1584 -> 3767[label="",style="solid", color="burlywood", weight=9]; 3767 -> 1840[label="",style="solid", color="burlywood", weight=3]; 3768[label="xuu1390/Zero",fontsize=10,color="white",style="solid",shape="box"];1584 -> 3768[label="",style="solid", color="burlywood", weight=9]; 3768 -> 1841[label="",style="solid", color="burlywood", weight=3]; 1585[label="primPlusNat Zero xuu1390",fontsize=16,color="burlywood",shape="box"];3769[label="xuu1390/Succ xuu13900",fontsize=10,color="white",style="solid",shape="box"];1585 -> 3769[label="",style="solid", color="burlywood", weight=9]; 3769 -> 1842[label="",style="solid", color="burlywood", weight=3]; 3770[label="xuu1390/Zero",fontsize=10,color="white",style="solid",shape="box"];1585 -> 3770[label="",style="solid", color="burlywood", weight=9]; 3770 -> 1843[label="",style="solid", color="burlywood", weight=3]; 1586[label="primMinusNat (Succ xuu44200) (Succ xuu13900)",fontsize=16,color="black",shape="box"];1586 -> 1844[label="",style="solid", color="black", weight=3]; 1587[label="primMinusNat (Succ xuu44200) Zero",fontsize=16,color="black",shape="box"];1587 -> 1845[label="",style="solid", color="black", weight=3]; 1588[label="primMinusNat Zero (Succ xuu13900)",fontsize=16,color="black",shape="box"];1588 -> 1846[label="",style="solid", color="black", weight=3]; 1589[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];1589 -> 1847[label="",style="solid", color="black", weight=3]; 1590[label="xuu4420",fontsize=16,color="green",shape="box"];1591[label="xuu1390",fontsize=16,color="green",shape="box"];1592 -> 682[label="",style="dashed", color="red", weight=0]; 1592[label="FiniteMap.mkBalBranch6Size_r xuu17 xuu18 xuu44 xuu21",fontsize=16,color="magenta"];1593 -> 913[label="",style="dashed", color="red", weight=0]; 1593[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1594[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 otherwise",fontsize=16,color="black",shape="box"];1594 -> 1848[label="",style="solid", color="black", weight=3]; 1595[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu17 xuu18 xuu44 xuu21 xuu44 xuu21 xuu44",fontsize=16,color="burlywood",shape="box"];3771[label="xuu44/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1595 -> 3771[label="",style="solid", color="burlywood", weight=9]; 3771 -> 1849[label="",style="solid", color="burlywood", weight=3]; 3772[label="xuu44/FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444",fontsize=10,color="white",style="solid",shape="box"];1595 -> 3772[label="",style="solid", color="burlywood", weight=9]; 3772 -> 1850[label="",style="solid", color="burlywood", weight=3]; 1596 -> 1851[label="",style="dashed", color="red", weight=0]; 1596[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu17 xuu18 xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 (FiniteMap.sizeFM xuu213 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu214)",fontsize=16,color="magenta"];1596 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1597[label="FiniteMap.mkBranchRight_size xuu44 xuu17 xuu21",fontsize=16,color="black",shape="box"];1597 -> 1853[label="",style="solid", color="black", weight=3]; 1598[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu44 xuu17 xuu21",fontsize=16,color="black",shape="box"];1598 -> 1854[label="",style="solid", color="black", weight=3]; 1599[label="xuu116",fontsize=16,color="green",shape="box"];1600[label="xuu113",fontsize=16,color="green",shape="box"];1601[label="xuu116",fontsize=16,color="green",shape="box"];1602[label="xuu113",fontsize=16,color="green",shape="box"];1603[label="xuu116",fontsize=16,color="green",shape="box"];1604[label="xuu113",fontsize=16,color="green",shape="box"];1605[label="xuu116",fontsize=16,color="green",shape="box"];1606[label="xuu113",fontsize=16,color="green",shape="box"];1607[label="xuu116",fontsize=16,color="green",shape="box"];1608[label="xuu113",fontsize=16,color="green",shape="box"];1609[label="xuu116",fontsize=16,color="green",shape="box"];1610[label="xuu113",fontsize=16,color="green",shape="box"];1611[label="xuu116",fontsize=16,color="green",shape="box"];1612[label="xuu113",fontsize=16,color="green",shape="box"];1613[label="xuu116",fontsize=16,color="green",shape="box"];1614[label="xuu113",fontsize=16,color="green",shape="box"];1615[label="xuu116",fontsize=16,color="green",shape="box"];1616[label="xuu113",fontsize=16,color="green",shape="box"];1617[label="xuu116",fontsize=16,color="green",shape="box"];1618[label="xuu113",fontsize=16,color="green",shape="box"];1619[label="xuu116",fontsize=16,color="green",shape="box"];1620[label="xuu113",fontsize=16,color="green",shape="box"];1621[label="xuu116",fontsize=16,color="green",shape="box"];1622[label="xuu113",fontsize=16,color="green",shape="box"];1623[label="xuu116",fontsize=16,color="green",shape="box"];1624[label="xuu113",fontsize=16,color="green",shape="box"];1625[label="xuu116",fontsize=16,color="green",shape="box"];1626[label="xuu113",fontsize=16,color="green",shape="box"];1627 -> 574[label="",style="dashed", color="red", weight=0]; 1627[label="xuu113 == xuu116",fontsize=16,color="magenta"];1627 -> 1855[label="",style="dashed", color="magenta", weight=3]; 1627 -> 1856[label="",style="dashed", color="magenta", weight=3]; 1628 -> 567[label="",style="dashed", color="red", weight=0]; 1628[label="xuu113 == xuu116",fontsize=16,color="magenta"];1628 -> 1857[label="",style="dashed", color="magenta", weight=3]; 1628 -> 1858[label="",style="dashed", color="magenta", weight=3]; 1629 -> 568[label="",style="dashed", color="red", weight=0]; 1629[label="xuu113 == xuu116",fontsize=16,color="magenta"];1629 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1629 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1630 -> 566[label="",style="dashed", color="red", weight=0]; 1630[label="xuu113 == xuu116",fontsize=16,color="magenta"];1630 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1630 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1631 -> 575[label="",style="dashed", color="red", weight=0]; 1631[label="xuu113 == xuu116",fontsize=16,color="magenta"];1631 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1631 -> 1864[label="",style="dashed", color="magenta", weight=3]; 1632 -> 565[label="",style="dashed", color="red", weight=0]; 1632[label="xuu113 == xuu116",fontsize=16,color="magenta"];1632 -> 1865[label="",style="dashed", color="magenta", weight=3]; 1632 -> 1866[label="",style="dashed", color="magenta", weight=3]; 1633 -> 572[label="",style="dashed", color="red", weight=0]; 1633[label="xuu113 == xuu116",fontsize=16,color="magenta"];1633 -> 1867[label="",style="dashed", color="magenta", weight=3]; 1633 -> 1868[label="",style="dashed", color="magenta", weight=3]; 1634 -> 571[label="",style="dashed", color="red", weight=0]; 1634[label="xuu113 == xuu116",fontsize=16,color="magenta"];1634 -> 1869[label="",style="dashed", color="magenta", weight=3]; 1634 -> 1870[label="",style="dashed", color="magenta", weight=3]; 1635 -> 576[label="",style="dashed", color="red", weight=0]; 1635[label="xuu113 == xuu116",fontsize=16,color="magenta"];1635 -> 1871[label="",style="dashed", color="magenta", weight=3]; 1635 -> 1872[label="",style="dashed", color="magenta", weight=3]; 1636 -> 577[label="",style="dashed", color="red", weight=0]; 1636[label="xuu113 == xuu116",fontsize=16,color="magenta"];1636 -> 1873[label="",style="dashed", color="magenta", weight=3]; 1636 -> 1874[label="",style="dashed", color="magenta", weight=3]; 1637 -> 573[label="",style="dashed", color="red", weight=0]; 1637[label="xuu113 == xuu116",fontsize=16,color="magenta"];1637 -> 1875[label="",style="dashed", color="magenta", weight=3]; 1637 -> 1876[label="",style="dashed", color="magenta", weight=3]; 1638 -> 569[label="",style="dashed", color="red", weight=0]; 1638[label="xuu113 == xuu116",fontsize=16,color="magenta"];1638 -> 1877[label="",style="dashed", color="magenta", weight=3]; 1638 -> 1878[label="",style="dashed", color="magenta", weight=3]; 1639 -> 570[label="",style="dashed", color="red", weight=0]; 1639[label="xuu113 == xuu116",fontsize=16,color="magenta"];1639 -> 1879[label="",style="dashed", color="magenta", weight=3]; 1639 -> 1880[label="",style="dashed", color="magenta", weight=3]; 1640 -> 564[label="",style="dashed", color="red", weight=0]; 1640[label="xuu113 == xuu116",fontsize=16,color="magenta"];1640 -> 1881[label="",style="dashed", color="magenta", weight=3]; 1640 -> 1882[label="",style="dashed", color="magenta", weight=3]; 1886[label="xuu114 < xuu117",fontsize=16,color="blue",shape="box"];3773[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3773[label="",style="solid", color="blue", weight=9]; 3773 -> 1890[label="",style="solid", color="blue", weight=3]; 3774[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3774[label="",style="solid", color="blue", weight=9]; 3774 -> 1891[label="",style="solid", color="blue", weight=3]; 3775[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3775[label="",style="solid", color="blue", weight=9]; 3775 -> 1892[label="",style="solid", color="blue", weight=3]; 3776[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3776[label="",style="solid", color="blue", weight=9]; 3776 -> 1893[label="",style="solid", color="blue", weight=3]; 3777[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3777[label="",style="solid", color="blue", weight=9]; 3777 -> 1894[label="",style="solid", color="blue", weight=3]; 3778[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3778[label="",style="solid", color="blue", weight=9]; 3778 -> 1895[label="",style="solid", color="blue", weight=3]; 3779[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3779[label="",style="solid", color="blue", weight=9]; 3779 -> 1896[label="",style="solid", color="blue", weight=3]; 3780[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3780[label="",style="solid", color="blue", weight=9]; 3780 -> 1897[label="",style="solid", color="blue", weight=3]; 3781[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3781[label="",style="solid", color="blue", weight=9]; 3781 -> 1898[label="",style="solid", color="blue", weight=3]; 3782[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3782[label="",style="solid", color="blue", weight=9]; 3782 -> 1899[label="",style="solid", color="blue", weight=3]; 3783[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3783[label="",style="solid", color="blue", weight=9]; 3783 -> 1900[label="",style="solid", color="blue", weight=3]; 3784[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3784[label="",style="solid", color="blue", weight=9]; 3784 -> 1901[label="",style="solid", color="blue", weight=3]; 3785[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3785[label="",style="solid", color="blue", weight=9]; 3785 -> 1902[label="",style="solid", color="blue", weight=3]; 3786[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3786[label="",style="solid", color="blue", weight=9]; 3786 -> 1903[label="",style="solid", color="blue", weight=3]; 1887 -> 1185[label="",style="dashed", color="red", weight=0]; 1887[label="xuu114 == xuu117 && xuu115 <= xuu118",fontsize=16,color="magenta"];1887 -> 1904[label="",style="dashed", color="magenta", weight=3]; 1887 -> 1905[label="",style="dashed", color="magenta", weight=3]; 1885[label="xuu214 || xuu215",fontsize=16,color="burlywood",shape="triangle"];3787[label="xuu214/False",fontsize=10,color="white",style="solid",shape="box"];1885 -> 3787[label="",style="solid", color="burlywood", weight=9]; 3787 -> 1906[label="",style="solid", color="burlywood", weight=3]; 3788[label="xuu214/True",fontsize=10,color="white",style="solid",shape="box"];1885 -> 3788[label="",style="solid", color="burlywood", weight=9]; 3788 -> 1907[label="",style="solid", color="burlywood", weight=3]; 1643[label="compare1 (xuu185,xuu186,xuu187) (xuu188,xuu189,xuu190) xuu192",fontsize=16,color="burlywood",shape="triangle"];3789[label="xuu192/False",fontsize=10,color="white",style="solid",shape="box"];1643 -> 3789[label="",style="solid", color="burlywood", weight=9]; 3789 -> 1908[label="",style="solid", color="burlywood", weight=3]; 3790[label="xuu192/True",fontsize=10,color="white",style="solid",shape="box"];1643 -> 3790[label="",style="solid", color="burlywood", weight=9]; 3790 -> 1909[label="",style="solid", color="burlywood", weight=3]; 1644 -> 1643[label="",style="dashed", color="red", weight=0]; 1644[label="compare1 (xuu185,xuu186,xuu187) (xuu188,xuu189,xuu190) True",fontsize=16,color="magenta"];1644 -> 1910[label="",style="dashed", color="magenta", weight=3]; 1645[label="primMulNat (Succ xuu40000) (Succ xuu500100)",fontsize=16,color="black",shape="box"];1645 -> 1911[label="",style="solid", color="black", weight=3]; 1646[label="primMulNat (Succ xuu40000) Zero",fontsize=16,color="black",shape="box"];1646 -> 1912[label="",style="solid", color="black", weight=3]; 1647[label="primMulNat Zero (Succ xuu500100)",fontsize=16,color="black",shape="box"];1647 -> 1913[label="",style="solid", color="black", weight=3]; 1648[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1648 -> 1914[label="",style="solid", color="black", weight=3]; 1194[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];3791[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 3791[label="",style="solid", color="blue", weight=9]; 3791 -> 1915[label="",style="solid", color="blue", weight=3]; 3792[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1194 -> 3792[label="",style="solid", color="blue", weight=9]; 3792 -> 1916[label="",style="solid", color="blue", weight=3]; 1195[label="xuu50001 == xuu4001",fontsize=16,color="blue",shape="box"];3793[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3793[label="",style="solid", color="blue", weight=9]; 3793 -> 1917[label="",style="solid", color="blue", weight=3]; 3794[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3794[label="",style="solid", color="blue", weight=9]; 3794 -> 1918[label="",style="solid", color="blue", weight=3]; 1196[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];3795[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 3795[label="",style="solid", color="blue", weight=9]; 3795 -> 1919[label="",style="solid", color="blue", weight=3]; 3796[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 3796[label="",style="solid", color="blue", weight=9]; 3796 -> 1920[label="",style="solid", color="blue", weight=3]; 3797[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 3797[label="",style="solid", color="blue", weight=9]; 3797 -> 1921[label="",style="solid", color="blue", weight=3]; 3798[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 3798[label="",style="solid", color="blue", weight=9]; 3798 -> 1922[label="",style="solid", color="blue", weight=3]; 3799[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 3799[label="",style="solid", color="blue", weight=9]; 3799 -> 1923[label="",style="solid", color="blue", weight=3]; 3800[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 3800[label="",style="solid", color="blue", weight=9]; 3800 -> 1924[label="",style="solid", color="blue", weight=3]; 3801[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 3801[label="",style="solid", color="blue", weight=9]; 3801 -> 1925[label="",style="solid", color="blue", weight=3]; 3802[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 3802[label="",style="solid", color="blue", weight=9]; 3802 -> 1926[label="",style="solid", color="blue", weight=3]; 3803[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 3803[label="",style="solid", color="blue", weight=9]; 3803 -> 1927[label="",style="solid", color="blue", weight=3]; 3804[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 3804[label="",style="solid", color="blue", weight=9]; 3804 -> 1928[label="",style="solid", color="blue", weight=3]; 3805[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 3805[label="",style="solid", color="blue", weight=9]; 3805 -> 1929[label="",style="solid", color="blue", weight=3]; 3806[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 3806[label="",style="solid", color="blue", weight=9]; 3806 -> 1930[label="",style="solid", color="blue", weight=3]; 3807[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 3807[label="",style="solid", color="blue", weight=9]; 3807 -> 1931[label="",style="solid", color="blue", weight=3]; 3808[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1196 -> 3808[label="",style="solid", color="blue", weight=9]; 3808 -> 1932[label="",style="solid", color="blue", weight=3]; 1197 -> 1185[label="",style="dashed", color="red", weight=0]; 1197[label="xuu50001 == xuu4001 && xuu50002 == xuu4002",fontsize=16,color="magenta"];1197 -> 1933[label="",style="dashed", color="magenta", weight=3]; 1197 -> 1934[label="",style="dashed", color="magenta", weight=3]; 1649[label="primEqInt (Pos (Succ xuu500000)) (Pos xuu4000)",fontsize=16,color="burlywood",shape="box"];3809[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];1649 -> 3809[label="",style="solid", color="burlywood", weight=9]; 3809 -> 1935[label="",style="solid", color="burlywood", weight=3]; 3810[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1649 -> 3810[label="",style="solid", color="burlywood", weight=9]; 3810 -> 1936[label="",style="solid", color="burlywood", weight=3]; 1650[label="primEqInt (Pos (Succ xuu500000)) (Neg xuu4000)",fontsize=16,color="black",shape="box"];1650 -> 1937[label="",style="solid", color="black", weight=3]; 1651[label="primEqInt (Pos Zero) (Pos xuu4000)",fontsize=16,color="burlywood",shape="box"];3811[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];1651 -> 3811[label="",style="solid", color="burlywood", weight=9]; 3811 -> 1938[label="",style="solid", color="burlywood", weight=3]; 3812[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1651 -> 3812[label="",style="solid", color="burlywood", weight=9]; 3812 -> 1939[label="",style="solid", color="burlywood", weight=3]; 1652[label="primEqInt (Pos Zero) (Neg xuu4000)",fontsize=16,color="burlywood",shape="box"];3813[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];1652 -> 3813[label="",style="solid", color="burlywood", weight=9]; 3813 -> 1940[label="",style="solid", color="burlywood", weight=3]; 3814[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1652 -> 3814[label="",style="solid", color="burlywood", weight=9]; 3814 -> 1941[label="",style="solid", color="burlywood", weight=3]; 1653[label="primEqInt (Neg (Succ xuu500000)) (Pos xuu4000)",fontsize=16,color="black",shape="box"];1653 -> 1942[label="",style="solid", color="black", weight=3]; 1654[label="primEqInt (Neg (Succ xuu500000)) (Neg xuu4000)",fontsize=16,color="burlywood",shape="box"];3815[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];1654 -> 3815[label="",style="solid", color="burlywood", weight=9]; 3815 -> 1943[label="",style="solid", color="burlywood", weight=3]; 3816[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1654 -> 3816[label="",style="solid", color="burlywood", weight=9]; 3816 -> 1944[label="",style="solid", color="burlywood", weight=3]; 1655[label="primEqInt (Neg Zero) (Pos xuu4000)",fontsize=16,color="burlywood",shape="box"];3817[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];1655 -> 3817[label="",style="solid", color="burlywood", weight=9]; 3817 -> 1945[label="",style="solid", color="burlywood", weight=3]; 3818[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1655 -> 3818[label="",style="solid", color="burlywood", weight=9]; 3818 -> 1946[label="",style="solid", color="burlywood", weight=3]; 1656[label="primEqInt (Neg Zero) (Neg xuu4000)",fontsize=16,color="burlywood",shape="box"];3819[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];1656 -> 3819[label="",style="solid", color="burlywood", weight=9]; 3819 -> 1947[label="",style="solid", color="burlywood", weight=3]; 3820[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1656 -> 3820[label="",style="solid", color="burlywood", weight=9]; 3820 -> 1948[label="",style="solid", color="burlywood", weight=3]; 1657[label="xuu4000",fontsize=16,color="green",shape="box"];1658[label="xuu50000",fontsize=16,color="green",shape="box"];1198[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];3821[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1198 -> 3821[label="",style="solid", color="blue", weight=9]; 3821 -> 1949[label="",style="solid", color="blue", weight=3]; 3822[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1198 -> 3822[label="",style="solid", color="blue", weight=9]; 3822 -> 1950[label="",style="solid", color="blue", weight=3]; 3823[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1198 -> 3823[label="",style="solid", color="blue", weight=9]; 3823 -> 1951[label="",style="solid", color="blue", weight=3]; 3824[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1198 -> 3824[label="",style="solid", color="blue", weight=9]; 3824 -> 1952[label="",style="solid", color="blue", weight=3]; 3825[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1198 -> 3825[label="",style="solid", color="blue", weight=9]; 3825 -> 1953[label="",style="solid", color="blue", weight=3]; 3826[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1198 -> 3826[label="",style="solid", color="blue", weight=9]; 3826 -> 1954[label="",style="solid", color="blue", weight=3]; 3827[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1198 -> 3827[label="",style="solid", color="blue", weight=9]; 3827 -> 1955[label="",style="solid", color="blue", weight=3]; 3828[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1198 -> 3828[label="",style="solid", color="blue", weight=9]; 3828 -> 1956[label="",style="solid", color="blue", weight=3]; 3829[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1198 -> 3829[label="",style="solid", color="blue", weight=9]; 3829 -> 1957[label="",style="solid", color="blue", weight=3]; 3830[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1198 -> 3830[label="",style="solid", color="blue", weight=9]; 3830 -> 1958[label="",style="solid", color="blue", weight=3]; 3831[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1198 -> 3831[label="",style="solid", color="blue", weight=9]; 3831 -> 1959[label="",style="solid", color="blue", weight=3]; 3832[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1198 -> 3832[label="",style="solid", color="blue", weight=9]; 3832 -> 1960[label="",style="solid", color="blue", weight=3]; 3833[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1198 -> 3833[label="",style="solid", color="blue", weight=9]; 3833 -> 1961[label="",style="solid", color="blue", weight=3]; 3834[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1198 -> 3834[label="",style="solid", color="blue", weight=9]; 3834 -> 1962[label="",style="solid", color="blue", weight=3]; 1199[label="xuu50001 == xuu4001",fontsize=16,color="blue",shape="box"];3835[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3835[label="",style="solid", color="blue", weight=9]; 3835 -> 1963[label="",style="solid", color="blue", weight=3]; 3836[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3836[label="",style="solid", color="blue", weight=9]; 3836 -> 1964[label="",style="solid", color="blue", weight=3]; 3837[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3837[label="",style="solid", color="blue", weight=9]; 3837 -> 1965[label="",style="solid", color="blue", weight=3]; 3838[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3838[label="",style="solid", color="blue", weight=9]; 3838 -> 1966[label="",style="solid", color="blue", weight=3]; 3839[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3839[label="",style="solid", color="blue", weight=9]; 3839 -> 1967[label="",style="solid", color="blue", weight=3]; 3840[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3840[label="",style="solid", color="blue", weight=9]; 3840 -> 1968[label="",style="solid", color="blue", weight=3]; 3841[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3841[label="",style="solid", color="blue", weight=9]; 3841 -> 1969[label="",style="solid", color="blue", weight=3]; 3842[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3842[label="",style="solid", color="blue", weight=9]; 3842 -> 1970[label="",style="solid", color="blue", weight=3]; 3843[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3843[label="",style="solid", color="blue", weight=9]; 3843 -> 1971[label="",style="solid", color="blue", weight=3]; 3844[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3844[label="",style="solid", color="blue", weight=9]; 3844 -> 1972[label="",style="solid", color="blue", weight=3]; 3845[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3845[label="",style="solid", color="blue", weight=9]; 3845 -> 1973[label="",style="solid", color="blue", weight=3]; 3846[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3846[label="",style="solid", color="blue", weight=9]; 3846 -> 1974[label="",style="solid", color="blue", weight=3]; 3847[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3847[label="",style="solid", color="blue", weight=9]; 3847 -> 1975[label="",style="solid", color="blue", weight=3]; 3848[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3848[label="",style="solid", color="blue", weight=9]; 3848 -> 1976[label="",style="solid", color="blue", weight=3]; 1659 -> 568[label="",style="dashed", color="red", weight=0]; 1659[label="xuu50000 * xuu4001 == xuu50001 * xuu4000",fontsize=16,color="magenta"];1659 -> 1977[label="",style="dashed", color="magenta", weight=3]; 1659 -> 1978[label="",style="dashed", color="magenta", weight=3]; 1660 -> 564[label="",style="dashed", color="red", weight=0]; 1660[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1660 -> 1979[label="",style="dashed", color="magenta", weight=3]; 1660 -> 1980[label="",style="dashed", color="magenta", weight=3]; 1661 -> 565[label="",style="dashed", color="red", weight=0]; 1661[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1661 -> 1981[label="",style="dashed", color="magenta", weight=3]; 1661 -> 1982[label="",style="dashed", color="magenta", weight=3]; 1662 -> 566[label="",style="dashed", color="red", weight=0]; 1662[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1662 -> 1983[label="",style="dashed", color="magenta", weight=3]; 1662 -> 1984[label="",style="dashed", color="magenta", weight=3]; 1663 -> 567[label="",style="dashed", color="red", weight=0]; 1663[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1663 -> 1985[label="",style="dashed", color="magenta", weight=3]; 1663 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1664 -> 568[label="",style="dashed", color="red", weight=0]; 1664[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1664 -> 1987[label="",style="dashed", color="magenta", weight=3]; 1664 -> 1988[label="",style="dashed", color="magenta", weight=3]; 1665 -> 569[label="",style="dashed", color="red", weight=0]; 1665[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1665 -> 1989[label="",style="dashed", color="magenta", weight=3]; 1665 -> 1990[label="",style="dashed", color="magenta", weight=3]; 1666 -> 570[label="",style="dashed", color="red", weight=0]; 1666[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1666 -> 1991[label="",style="dashed", color="magenta", weight=3]; 1666 -> 1992[label="",style="dashed", color="magenta", weight=3]; 1667 -> 571[label="",style="dashed", color="red", weight=0]; 1667[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1667 -> 1993[label="",style="dashed", color="magenta", weight=3]; 1667 -> 1994[label="",style="dashed", color="magenta", weight=3]; 1668 -> 572[label="",style="dashed", color="red", weight=0]; 1668[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1668 -> 1995[label="",style="dashed", color="magenta", weight=3]; 1668 -> 1996[label="",style="dashed", color="magenta", weight=3]; 1669 -> 573[label="",style="dashed", color="red", weight=0]; 1669[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1669 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1669 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1670 -> 574[label="",style="dashed", color="red", weight=0]; 1670[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1670 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1670 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1671 -> 575[label="",style="dashed", color="red", weight=0]; 1671[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1671 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1671 -> 2002[label="",style="dashed", color="magenta", weight=3]; 1672 -> 576[label="",style="dashed", color="red", weight=0]; 1672[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1672 -> 2003[label="",style="dashed", color="magenta", weight=3]; 1672 -> 2004[label="",style="dashed", color="magenta", weight=3]; 1673 -> 577[label="",style="dashed", color="red", weight=0]; 1673[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1673 -> 2005[label="",style="dashed", color="magenta", weight=3]; 1673 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1200[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];3849[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3849[label="",style="solid", color="blue", weight=9]; 3849 -> 2007[label="",style="solid", color="blue", weight=3]; 3850[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3850[label="",style="solid", color="blue", weight=9]; 3850 -> 2008[label="",style="solid", color="blue", weight=3]; 3851[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3851[label="",style="solid", color="blue", weight=9]; 3851 -> 2009[label="",style="solid", color="blue", weight=3]; 3852[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3852[label="",style="solid", color="blue", weight=9]; 3852 -> 2010[label="",style="solid", color="blue", weight=3]; 3853[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3853[label="",style="solid", color="blue", weight=9]; 3853 -> 2011[label="",style="solid", color="blue", weight=3]; 3854[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3854[label="",style="solid", color="blue", weight=9]; 3854 -> 2012[label="",style="solid", color="blue", weight=3]; 3855[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3855[label="",style="solid", color="blue", weight=9]; 3855 -> 2013[label="",style="solid", color="blue", weight=3]; 3856[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3856[label="",style="solid", color="blue", weight=9]; 3856 -> 2014[label="",style="solid", color="blue", weight=3]; 3857[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3857[label="",style="solid", color="blue", weight=9]; 3857 -> 2015[label="",style="solid", color="blue", weight=3]; 3858[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3858[label="",style="solid", color="blue", weight=9]; 3858 -> 2016[label="",style="solid", color="blue", weight=3]; 3859[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3859[label="",style="solid", color="blue", weight=9]; 3859 -> 2017[label="",style="solid", color="blue", weight=3]; 3860[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3860[label="",style="solid", color="blue", weight=9]; 3860 -> 2018[label="",style="solid", color="blue", weight=3]; 3861[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3861[label="",style="solid", color="blue", weight=9]; 3861 -> 2019[label="",style="solid", color="blue", weight=3]; 3862[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1200 -> 3862[label="",style="solid", color="blue", weight=9]; 3862 -> 2020[label="",style="solid", color="blue", weight=3]; 1201 -> 574[label="",style="dashed", color="red", weight=0]; 1201[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1201 -> 2021[label="",style="dashed", color="magenta", weight=3]; 1201 -> 2022[label="",style="dashed", color="magenta", weight=3]; 1674 -> 568[label="",style="dashed", color="red", weight=0]; 1674[label="xuu50000 * xuu4001 == xuu50001 * xuu4000",fontsize=16,color="magenta"];1674 -> 2023[label="",style="dashed", color="magenta", weight=3]; 1674 -> 2024[label="",style="dashed", color="magenta", weight=3]; 1675[label="primEqNat xuu50000 xuu4000",fontsize=16,color="burlywood",shape="triangle"];3863[label="xuu50000/Succ xuu500000",fontsize=10,color="white",style="solid",shape="box"];1675 -> 3863[label="",style="solid", color="burlywood", weight=9]; 3863 -> 2025[label="",style="solid", color="burlywood", weight=3]; 3864[label="xuu50000/Zero",fontsize=10,color="white",style="solid",shape="box"];1675 -> 3864[label="",style="solid", color="burlywood", weight=9]; 3864 -> 2026[label="",style="solid", color="burlywood", weight=3]; 1676 -> 564[label="",style="dashed", color="red", weight=0]; 1676[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1676 -> 2027[label="",style="dashed", color="magenta", weight=3]; 1676 -> 2028[label="",style="dashed", color="magenta", weight=3]; 1677 -> 565[label="",style="dashed", color="red", weight=0]; 1677[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1677 -> 2029[label="",style="dashed", color="magenta", weight=3]; 1677 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1678 -> 566[label="",style="dashed", color="red", weight=0]; 1678[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1678 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1678 -> 2032[label="",style="dashed", color="magenta", weight=3]; 1679 -> 567[label="",style="dashed", color="red", weight=0]; 1679[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1679 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1679 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1680 -> 568[label="",style="dashed", color="red", weight=0]; 1680[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1680 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1680 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1681 -> 569[label="",style="dashed", color="red", weight=0]; 1681[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1681 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1681 -> 2038[label="",style="dashed", color="magenta", weight=3]; 1682 -> 570[label="",style="dashed", color="red", weight=0]; 1682[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1682 -> 2039[label="",style="dashed", color="magenta", weight=3]; 1682 -> 2040[label="",style="dashed", color="magenta", weight=3]; 1683 -> 571[label="",style="dashed", color="red", weight=0]; 1683[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1683 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1683 -> 2042[label="",style="dashed", color="magenta", weight=3]; 1684 -> 572[label="",style="dashed", color="red", weight=0]; 1684[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1684 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1684 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1685 -> 573[label="",style="dashed", color="red", weight=0]; 1685[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1685 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1685 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1686 -> 574[label="",style="dashed", color="red", weight=0]; 1686[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1686 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1686 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1687 -> 575[label="",style="dashed", color="red", weight=0]; 1687[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1687 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1687 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1688 -> 576[label="",style="dashed", color="red", weight=0]; 1688[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1688 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1688 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1689 -> 577[label="",style="dashed", color="red", weight=0]; 1689[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1689 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1689 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1690 -> 564[label="",style="dashed", color="red", weight=0]; 1690[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1690 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1690 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1691 -> 565[label="",style="dashed", color="red", weight=0]; 1691[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1691 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1691 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1692 -> 566[label="",style="dashed", color="red", weight=0]; 1692[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1692 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1692 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1693 -> 567[label="",style="dashed", color="red", weight=0]; 1693[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1693 -> 2061[label="",style="dashed", color="magenta", weight=3]; 1693 -> 2062[label="",style="dashed", color="magenta", weight=3]; 1694 -> 568[label="",style="dashed", color="red", weight=0]; 1694[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1694 -> 2063[label="",style="dashed", color="magenta", weight=3]; 1694 -> 2064[label="",style="dashed", color="magenta", weight=3]; 1695 -> 569[label="",style="dashed", color="red", weight=0]; 1695[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1695 -> 2065[label="",style="dashed", color="magenta", weight=3]; 1695 -> 2066[label="",style="dashed", color="magenta", weight=3]; 1696 -> 570[label="",style="dashed", color="red", weight=0]; 1696[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1696 -> 2067[label="",style="dashed", color="magenta", weight=3]; 1696 -> 2068[label="",style="dashed", color="magenta", weight=3]; 1697 -> 571[label="",style="dashed", color="red", weight=0]; 1697[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1697 -> 2069[label="",style="dashed", color="magenta", weight=3]; 1697 -> 2070[label="",style="dashed", color="magenta", weight=3]; 1698 -> 572[label="",style="dashed", color="red", weight=0]; 1698[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1698 -> 2071[label="",style="dashed", color="magenta", weight=3]; 1698 -> 2072[label="",style="dashed", color="magenta", weight=3]; 1699 -> 573[label="",style="dashed", color="red", weight=0]; 1699[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1699 -> 2073[label="",style="dashed", color="magenta", weight=3]; 1699 -> 2074[label="",style="dashed", color="magenta", weight=3]; 1700 -> 574[label="",style="dashed", color="red", weight=0]; 1700[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1700 -> 2075[label="",style="dashed", color="magenta", weight=3]; 1700 -> 2076[label="",style="dashed", color="magenta", weight=3]; 1701 -> 575[label="",style="dashed", color="red", weight=0]; 1701[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1701 -> 2077[label="",style="dashed", color="magenta", weight=3]; 1701 -> 2078[label="",style="dashed", color="magenta", weight=3]; 1702 -> 576[label="",style="dashed", color="red", weight=0]; 1702[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1702 -> 2079[label="",style="dashed", color="magenta", weight=3]; 1702 -> 2080[label="",style="dashed", color="magenta", weight=3]; 1703 -> 577[label="",style="dashed", color="red", weight=0]; 1703[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1703 -> 2081[label="",style="dashed", color="magenta", weight=3]; 1703 -> 2082[label="",style="dashed", color="magenta", weight=3]; 1704 -> 2083[label="",style="dashed", color="red", weight=0]; 1704[label="compare xuu75 xuu76 /= GT",fontsize=16,color="magenta"];1704 -> 2084[label="",style="dashed", color="magenta", weight=3]; 1705 -> 2083[label="",style="dashed", color="red", weight=0]; 1705[label="compare xuu75 xuu76 /= GT",fontsize=16,color="magenta"];1705 -> 2085[label="",style="dashed", color="magenta", weight=3]; 1706 -> 2083[label="",style="dashed", color="red", weight=0]; 1706[label="compare xuu75 xuu76 /= GT",fontsize=16,color="magenta"];1706 -> 2086[label="",style="dashed", color="magenta", weight=3]; 1707[label="(xuu750,xuu751,xuu752) <= xuu76",fontsize=16,color="burlywood",shape="box"];3865[label="xuu76/(xuu760,xuu761,xuu762)",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3865[label="",style="solid", color="burlywood", weight=9]; 3865 -> 2092[label="",style="solid", color="burlywood", weight=3]; 1708 -> 2083[label="",style="dashed", color="red", weight=0]; 1708[label="compare xuu75 xuu76 /= GT",fontsize=16,color="magenta"];1708 -> 2087[label="",style="dashed", color="magenta", weight=3]; 1709 -> 2083[label="",style="dashed", color="red", weight=0]; 1709[label="compare xuu75 xuu76 /= GT",fontsize=16,color="magenta"];1709 -> 2088[label="",style="dashed", color="magenta", weight=3]; 1710 -> 2083[label="",style="dashed", color="red", weight=0]; 1710[label="compare xuu75 xuu76 /= GT",fontsize=16,color="magenta"];1710 -> 2089[label="",style="dashed", color="magenta", weight=3]; 1711[label="False <= xuu76",fontsize=16,color="burlywood",shape="box"];3866[label="xuu76/False",fontsize=10,color="white",style="solid",shape="box"];1711 -> 3866[label="",style="solid", color="burlywood", weight=9]; 3866 -> 2093[label="",style="solid", color="burlywood", weight=3]; 3867[label="xuu76/True",fontsize=10,color="white",style="solid",shape="box"];1711 -> 3867[label="",style="solid", color="burlywood", weight=9]; 3867 -> 2094[label="",style="solid", color="burlywood", weight=3]; 1712[label="True <= xuu76",fontsize=16,color="burlywood",shape="box"];3868[label="xuu76/False",fontsize=10,color="white",style="solid",shape="box"];1712 -> 3868[label="",style="solid", color="burlywood", weight=9]; 3868 -> 2095[label="",style="solid", color="burlywood", weight=3]; 3869[label="xuu76/True",fontsize=10,color="white",style="solid",shape="box"];1712 -> 3869[label="",style="solid", color="burlywood", weight=9]; 3869 -> 2096[label="",style="solid", color="burlywood", weight=3]; 1713 -> 2083[label="",style="dashed", color="red", weight=0]; 1713[label="compare xuu75 xuu76 /= GT",fontsize=16,color="magenta"];1713 -> 2090[label="",style="dashed", color="magenta", weight=3]; 1714[label="Left xuu750 <= xuu76",fontsize=16,color="burlywood",shape="box"];3870[label="xuu76/Left xuu760",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3870[label="",style="solid", color="burlywood", weight=9]; 3870 -> 2097[label="",style="solid", color="burlywood", weight=3]; 3871[label="xuu76/Right xuu760",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3871[label="",style="solid", color="burlywood", weight=9]; 3871 -> 2098[label="",style="solid", color="burlywood", weight=3]; 1715[label="Right xuu750 <= xuu76",fontsize=16,color="burlywood",shape="box"];3872[label="xuu76/Left xuu760",fontsize=10,color="white",style="solid",shape="box"];1715 -> 3872[label="",style="solid", color="burlywood", weight=9]; 3872 -> 2099[label="",style="solid", color="burlywood", weight=3]; 3873[label="xuu76/Right xuu760",fontsize=10,color="white",style="solid",shape="box"];1715 -> 3873[label="",style="solid", color="burlywood", weight=9]; 3873 -> 2100[label="",style="solid", color="burlywood", weight=3]; 1716[label="Nothing <= xuu76",fontsize=16,color="burlywood",shape="box"];3874[label="xuu76/Nothing",fontsize=10,color="white",style="solid",shape="box"];1716 -> 3874[label="",style="solid", color="burlywood", weight=9]; 3874 -> 2101[label="",style="solid", color="burlywood", weight=3]; 3875[label="xuu76/Just xuu760",fontsize=10,color="white",style="solid",shape="box"];1716 -> 3875[label="",style="solid", color="burlywood", weight=9]; 3875 -> 2102[label="",style="solid", color="burlywood", weight=3]; 1717[label="Just xuu750 <= xuu76",fontsize=16,color="burlywood",shape="box"];3876[label="xuu76/Nothing",fontsize=10,color="white",style="solid",shape="box"];1717 -> 3876[label="",style="solid", color="burlywood", weight=9]; 3876 -> 2103[label="",style="solid", color="burlywood", weight=3]; 3877[label="xuu76/Just xuu760",fontsize=10,color="white",style="solid",shape="box"];1717 -> 3877[label="",style="solid", color="burlywood", weight=9]; 3877 -> 2104[label="",style="solid", color="burlywood", weight=3]; 1718 -> 2083[label="",style="dashed", color="red", weight=0]; 1718[label="compare xuu75 xuu76 /= GT",fontsize=16,color="magenta"];1718 -> 2091[label="",style="dashed", color="magenta", weight=3]; 1719[label="(xuu750,xuu751) <= xuu76",fontsize=16,color="burlywood",shape="box"];3878[label="xuu76/(xuu760,xuu761)",fontsize=10,color="white",style="solid",shape="box"];1719 -> 3878[label="",style="solid", color="burlywood", weight=9]; 3878 -> 2105[label="",style="solid", color="burlywood", weight=3]; 1720[label="LT <= xuu76",fontsize=16,color="burlywood",shape="box"];3879[label="xuu76/LT",fontsize=10,color="white",style="solid",shape="box"];1720 -> 3879[label="",style="solid", color="burlywood", weight=9]; 3879 -> 2106[label="",style="solid", color="burlywood", weight=3]; 3880[label="xuu76/EQ",fontsize=10,color="white",style="solid",shape="box"];1720 -> 3880[label="",style="solid", color="burlywood", weight=9]; 3880 -> 2107[label="",style="solid", color="burlywood", weight=3]; 3881[label="xuu76/GT",fontsize=10,color="white",style="solid",shape="box"];1720 -> 3881[label="",style="solid", color="burlywood", weight=9]; 3881 -> 2108[label="",style="solid", color="burlywood", weight=3]; 1721[label="EQ <= xuu76",fontsize=16,color="burlywood",shape="box"];3882[label="xuu76/LT",fontsize=10,color="white",style="solid",shape="box"];1721 -> 3882[label="",style="solid", color="burlywood", weight=9]; 3882 -> 2109[label="",style="solid", color="burlywood", weight=3]; 3883[label="xuu76/EQ",fontsize=10,color="white",style="solid",shape="box"];1721 -> 3883[label="",style="solid", color="burlywood", weight=9]; 3883 -> 2110[label="",style="solid", color="burlywood", weight=3]; 3884[label="xuu76/GT",fontsize=10,color="white",style="solid",shape="box"];1721 -> 3884[label="",style="solid", color="burlywood", weight=9]; 3884 -> 2111[label="",style="solid", color="burlywood", weight=3]; 1722[label="GT <= xuu76",fontsize=16,color="burlywood",shape="box"];3885[label="xuu76/LT",fontsize=10,color="white",style="solid",shape="box"];1722 -> 3885[label="",style="solid", color="burlywood", weight=9]; 3885 -> 2112[label="",style="solid", color="burlywood", weight=3]; 3886[label="xuu76/EQ",fontsize=10,color="white",style="solid",shape="box"];1722 -> 3886[label="",style="solid", color="burlywood", weight=9]; 3886 -> 2113[label="",style="solid", color="burlywood", weight=3]; 3887[label="xuu76/GT",fontsize=10,color="white",style="solid",shape="box"];1722 -> 3887[label="",style="solid", color="burlywood", weight=9]; 3887 -> 2114[label="",style="solid", color="burlywood", weight=3]; 1723[label="compare0 (Left xuu156) (Left xuu157) True",fontsize=16,color="black",shape="box"];1723 -> 2115[label="",style="solid", color="black", weight=3]; 1724[label="xuu82",fontsize=16,color="green",shape="box"];1725[label="xuu83",fontsize=16,color="green",shape="box"];1726[label="xuu82",fontsize=16,color="green",shape="box"];1727[label="xuu83",fontsize=16,color="green",shape="box"];1728[label="xuu82",fontsize=16,color="green",shape="box"];1729[label="xuu83",fontsize=16,color="green",shape="box"];1730[label="xuu82",fontsize=16,color="green",shape="box"];1731[label="xuu83",fontsize=16,color="green",shape="box"];1732[label="xuu82",fontsize=16,color="green",shape="box"];1733[label="xuu83",fontsize=16,color="green",shape="box"];1734[label="xuu82",fontsize=16,color="green",shape="box"];1735[label="xuu83",fontsize=16,color="green",shape="box"];1736[label="xuu82",fontsize=16,color="green",shape="box"];1737[label="xuu83",fontsize=16,color="green",shape="box"];1738[label="xuu82",fontsize=16,color="green",shape="box"];1739[label="xuu83",fontsize=16,color="green",shape="box"];1740[label="xuu82",fontsize=16,color="green",shape="box"];1741[label="xuu83",fontsize=16,color="green",shape="box"];1742[label="xuu82",fontsize=16,color="green",shape="box"];1743[label="xuu83",fontsize=16,color="green",shape="box"];1744[label="xuu82",fontsize=16,color="green",shape="box"];1745[label="xuu83",fontsize=16,color="green",shape="box"];1746[label="xuu82",fontsize=16,color="green",shape="box"];1747[label="xuu83",fontsize=16,color="green",shape="box"];1748[label="xuu82",fontsize=16,color="green",shape="box"];1749[label="xuu83",fontsize=16,color="green",shape="box"];1750[label="xuu82",fontsize=16,color="green",shape="box"];1751[label="xuu83",fontsize=16,color="green",shape="box"];1752[label="compare0 (Right xuu163) (Right xuu164) True",fontsize=16,color="black",shape="box"];1752 -> 2116[label="",style="solid", color="black", weight=3]; 1753[label="xuu89",fontsize=16,color="green",shape="box"];1754[label="xuu90",fontsize=16,color="green",shape="box"];1755[label="xuu89",fontsize=16,color="green",shape="box"];1756[label="xuu90",fontsize=16,color="green",shape="box"];1757[label="xuu89",fontsize=16,color="green",shape="box"];1758[label="xuu90",fontsize=16,color="green",shape="box"];1759[label="xuu89",fontsize=16,color="green",shape="box"];1760[label="xuu90",fontsize=16,color="green",shape="box"];1761[label="xuu89",fontsize=16,color="green",shape="box"];1762[label="xuu90",fontsize=16,color="green",shape="box"];1763[label="xuu89",fontsize=16,color="green",shape="box"];1764[label="xuu90",fontsize=16,color="green",shape="box"];1765[label="xuu89",fontsize=16,color="green",shape="box"];1766[label="xuu90",fontsize=16,color="green",shape="box"];1767[label="xuu89",fontsize=16,color="green",shape="box"];1768[label="xuu90",fontsize=16,color="green",shape="box"];1769[label="xuu89",fontsize=16,color="green",shape="box"];1770[label="xuu90",fontsize=16,color="green",shape="box"];1771[label="xuu89",fontsize=16,color="green",shape="box"];1772[label="xuu90",fontsize=16,color="green",shape="box"];1773[label="xuu89",fontsize=16,color="green",shape="box"];1774[label="xuu90",fontsize=16,color="green",shape="box"];1775[label="xuu89",fontsize=16,color="green",shape="box"];1776[label="xuu90",fontsize=16,color="green",shape="box"];1777[label="xuu89",fontsize=16,color="green",shape="box"];1778[label="xuu90",fontsize=16,color="green",shape="box"];1779[label="xuu89",fontsize=16,color="green",shape="box"];1780[label="xuu90",fontsize=16,color="green",shape="box"];1781[label="compare0 (Just xuu172) (Just xuu173) True",fontsize=16,color="black",shape="box"];1781 -> 2117[label="",style="solid", color="black", weight=3]; 1782 -> 574[label="",style="dashed", color="red", weight=0]; 1782[label="xuu126 == xuu128",fontsize=16,color="magenta"];1782 -> 2118[label="",style="dashed", color="magenta", weight=3]; 1782 -> 2119[label="",style="dashed", color="magenta", weight=3]; 1783 -> 567[label="",style="dashed", color="red", weight=0]; 1783[label="xuu126 == xuu128",fontsize=16,color="magenta"];1783 -> 2120[label="",style="dashed", color="magenta", weight=3]; 1783 -> 2121[label="",style="dashed", color="magenta", weight=3]; 1784 -> 568[label="",style="dashed", color="red", weight=0]; 1784[label="xuu126 == xuu128",fontsize=16,color="magenta"];1784 -> 2122[label="",style="dashed", color="magenta", weight=3]; 1784 -> 2123[label="",style="dashed", color="magenta", weight=3]; 1785 -> 566[label="",style="dashed", color="red", weight=0]; 1785[label="xuu126 == xuu128",fontsize=16,color="magenta"];1785 -> 2124[label="",style="dashed", color="magenta", weight=3]; 1785 -> 2125[label="",style="dashed", color="magenta", weight=3]; 1786 -> 575[label="",style="dashed", color="red", weight=0]; 1786[label="xuu126 == xuu128",fontsize=16,color="magenta"];1786 -> 2126[label="",style="dashed", color="magenta", weight=3]; 1786 -> 2127[label="",style="dashed", color="magenta", weight=3]; 1787 -> 565[label="",style="dashed", color="red", weight=0]; 1787[label="xuu126 == xuu128",fontsize=16,color="magenta"];1787 -> 2128[label="",style="dashed", color="magenta", weight=3]; 1787 -> 2129[label="",style="dashed", color="magenta", weight=3]; 1788 -> 572[label="",style="dashed", color="red", weight=0]; 1788[label="xuu126 == xuu128",fontsize=16,color="magenta"];1788 -> 2130[label="",style="dashed", color="magenta", weight=3]; 1788 -> 2131[label="",style="dashed", color="magenta", weight=3]; 1789 -> 571[label="",style="dashed", color="red", weight=0]; 1789[label="xuu126 == xuu128",fontsize=16,color="magenta"];1789 -> 2132[label="",style="dashed", color="magenta", weight=3]; 1789 -> 2133[label="",style="dashed", color="magenta", weight=3]; 1790 -> 576[label="",style="dashed", color="red", weight=0]; 1790[label="xuu126 == xuu128",fontsize=16,color="magenta"];1790 -> 2134[label="",style="dashed", color="magenta", weight=3]; 1790 -> 2135[label="",style="dashed", color="magenta", weight=3]; 1791 -> 577[label="",style="dashed", color="red", weight=0]; 1791[label="xuu126 == xuu128",fontsize=16,color="magenta"];1791 -> 2136[label="",style="dashed", color="magenta", weight=3]; 1791 -> 2137[label="",style="dashed", color="magenta", weight=3]; 1792 -> 573[label="",style="dashed", color="red", weight=0]; 1792[label="xuu126 == xuu128",fontsize=16,color="magenta"];1792 -> 2138[label="",style="dashed", color="magenta", weight=3]; 1792 -> 2139[label="",style="dashed", color="magenta", weight=3]; 1793 -> 569[label="",style="dashed", color="red", weight=0]; 1793[label="xuu126 == xuu128",fontsize=16,color="magenta"];1793 -> 2140[label="",style="dashed", color="magenta", weight=3]; 1793 -> 2141[label="",style="dashed", color="magenta", weight=3]; 1794 -> 570[label="",style="dashed", color="red", weight=0]; 1794[label="xuu126 == xuu128",fontsize=16,color="magenta"];1794 -> 2142[label="",style="dashed", color="magenta", weight=3]; 1794 -> 2143[label="",style="dashed", color="magenta", weight=3]; 1795 -> 564[label="",style="dashed", color="red", weight=0]; 1795[label="xuu126 == xuu128",fontsize=16,color="magenta"];1795 -> 2144[label="",style="dashed", color="magenta", weight=3]; 1795 -> 2145[label="",style="dashed", color="magenta", weight=3]; 1796 -> 1503[label="",style="dashed", color="red", weight=0]; 1796[label="xuu127 <= xuu129",fontsize=16,color="magenta"];1796 -> 2146[label="",style="dashed", color="magenta", weight=3]; 1796 -> 2147[label="",style="dashed", color="magenta", weight=3]; 1797 -> 1504[label="",style="dashed", color="red", weight=0]; 1797[label="xuu127 <= xuu129",fontsize=16,color="magenta"];1797 -> 2148[label="",style="dashed", color="magenta", weight=3]; 1797 -> 2149[label="",style="dashed", color="magenta", weight=3]; 1798 -> 1505[label="",style="dashed", color="red", weight=0]; 1798[label="xuu127 <= xuu129",fontsize=16,color="magenta"];1798 -> 2150[label="",style="dashed", color="magenta", weight=3]; 1798 -> 2151[label="",style="dashed", color="magenta", weight=3]; 1799 -> 1506[label="",style="dashed", color="red", weight=0]; 1799[label="xuu127 <= xuu129",fontsize=16,color="magenta"];1799 -> 2152[label="",style="dashed", color="magenta", weight=3]; 1799 -> 2153[label="",style="dashed", color="magenta", weight=3]; 1800 -> 1507[label="",style="dashed", color="red", weight=0]; 1800[label="xuu127 <= xuu129",fontsize=16,color="magenta"];1800 -> 2154[label="",style="dashed", color="magenta", weight=3]; 1800 -> 2155[label="",style="dashed", color="magenta", weight=3]; 1801 -> 1508[label="",style="dashed", color="red", weight=0]; 1801[label="xuu127 <= xuu129",fontsize=16,color="magenta"];1801 -> 2156[label="",style="dashed", color="magenta", weight=3]; 1801 -> 2157[label="",style="dashed", color="magenta", weight=3]; 1802 -> 1509[label="",style="dashed", color="red", weight=0]; 1802[label="xuu127 <= xuu129",fontsize=16,color="magenta"];1802 -> 2158[label="",style="dashed", color="magenta", weight=3]; 1802 -> 2159[label="",style="dashed", color="magenta", weight=3]; 1803 -> 1510[label="",style="dashed", color="red", weight=0]; 1803[label="xuu127 <= xuu129",fontsize=16,color="magenta"];1803 -> 2160[label="",style="dashed", color="magenta", weight=3]; 1803 -> 2161[label="",style="dashed", color="magenta", weight=3]; 1804 -> 1511[label="",style="dashed", color="red", weight=0]; 1804[label="xuu127 <= xuu129",fontsize=16,color="magenta"];1804 -> 2162[label="",style="dashed", color="magenta", weight=3]; 1804 -> 2163[label="",style="dashed", color="magenta", weight=3]; 1805 -> 1512[label="",style="dashed", color="red", weight=0]; 1805[label="xuu127 <= xuu129",fontsize=16,color="magenta"];1805 -> 2164[label="",style="dashed", color="magenta", weight=3]; 1805 -> 2165[label="",style="dashed", color="magenta", weight=3]; 1806 -> 1513[label="",style="dashed", color="red", weight=0]; 1806[label="xuu127 <= xuu129",fontsize=16,color="magenta"];1806 -> 2166[label="",style="dashed", color="magenta", weight=3]; 1806 -> 2167[label="",style="dashed", color="magenta", weight=3]; 1807 -> 1514[label="",style="dashed", color="red", weight=0]; 1807[label="xuu127 <= xuu129",fontsize=16,color="magenta"];1807 -> 2168[label="",style="dashed", color="magenta", weight=3]; 1807 -> 2169[label="",style="dashed", color="magenta", weight=3]; 1808 -> 1515[label="",style="dashed", color="red", weight=0]; 1808[label="xuu127 <= xuu129",fontsize=16,color="magenta"];1808 -> 2170[label="",style="dashed", color="magenta", weight=3]; 1808 -> 2171[label="",style="dashed", color="magenta", weight=3]; 1809 -> 1516[label="",style="dashed", color="red", weight=0]; 1809[label="xuu127 <= xuu129",fontsize=16,color="magenta"];1809 -> 2172[label="",style="dashed", color="magenta", weight=3]; 1809 -> 2173[label="",style="dashed", color="magenta", weight=3]; 1810[label="xuu128",fontsize=16,color="green",shape="box"];1811[label="xuu126",fontsize=16,color="green",shape="box"];1812[label="xuu128",fontsize=16,color="green",shape="box"];1813[label="xuu126",fontsize=16,color="green",shape="box"];1814[label="xuu128",fontsize=16,color="green",shape="box"];1815[label="xuu126",fontsize=16,color="green",shape="box"];1816[label="xuu128",fontsize=16,color="green",shape="box"];1817[label="xuu126",fontsize=16,color="green",shape="box"];1818[label="xuu128",fontsize=16,color="green",shape="box"];1819[label="xuu126",fontsize=16,color="green",shape="box"];1820[label="xuu128",fontsize=16,color="green",shape="box"];1821[label="xuu126",fontsize=16,color="green",shape="box"];1822[label="xuu128",fontsize=16,color="green",shape="box"];1823[label="xuu126",fontsize=16,color="green",shape="box"];1824[label="xuu128",fontsize=16,color="green",shape="box"];1825[label="xuu126",fontsize=16,color="green",shape="box"];1826[label="xuu128",fontsize=16,color="green",shape="box"];1827[label="xuu126",fontsize=16,color="green",shape="box"];1828[label="xuu128",fontsize=16,color="green",shape="box"];1829[label="xuu126",fontsize=16,color="green",shape="box"];1830[label="xuu128",fontsize=16,color="green",shape="box"];1831[label="xuu126",fontsize=16,color="green",shape="box"];1832[label="xuu128",fontsize=16,color="green",shape="box"];1833[label="xuu126",fontsize=16,color="green",shape="box"];1834[label="xuu128",fontsize=16,color="green",shape="box"];1835[label="xuu126",fontsize=16,color="green",shape="box"];1836[label="xuu128",fontsize=16,color="green",shape="box"];1837[label="xuu126",fontsize=16,color="green",shape="box"];1838[label="compare1 (xuu200,xuu201) (xuu202,xuu203) xuu205",fontsize=16,color="burlywood",shape="triangle"];3888[label="xuu205/False",fontsize=10,color="white",style="solid",shape="box"];1838 -> 3888[label="",style="solid", color="burlywood", weight=9]; 3888 -> 2174[label="",style="solid", color="burlywood", weight=3]; 3889[label="xuu205/True",fontsize=10,color="white",style="solid",shape="box"];1838 -> 3889[label="",style="solid", color="burlywood", weight=9]; 3889 -> 2175[label="",style="solid", color="burlywood", weight=3]; 1839 -> 1838[label="",style="dashed", color="red", weight=0]; 1839[label="compare1 (xuu200,xuu201) (xuu202,xuu203) True",fontsize=16,color="magenta"];1839 -> 2176[label="",style="dashed", color="magenta", weight=3]; 1840[label="primPlusNat (Succ xuu44200) (Succ xuu13900)",fontsize=16,color="black",shape="box"];1840 -> 2177[label="",style="solid", color="black", weight=3]; 1841[label="primPlusNat (Succ xuu44200) Zero",fontsize=16,color="black",shape="box"];1841 -> 2178[label="",style="solid", color="black", weight=3]; 1842[label="primPlusNat Zero (Succ xuu13900)",fontsize=16,color="black",shape="box"];1842 -> 2179[label="",style="solid", color="black", weight=3]; 1843[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1843 -> 2180[label="",style="solid", color="black", weight=3]; 1844 -> 1253[label="",style="dashed", color="red", weight=0]; 1844[label="primMinusNat xuu44200 xuu13900",fontsize=16,color="magenta"];1844 -> 2181[label="",style="dashed", color="magenta", weight=3]; 1844 -> 2182[label="",style="dashed", color="magenta", weight=3]; 1845[label="Pos (Succ xuu44200)",fontsize=16,color="green",shape="box"];1846[label="Neg (Succ xuu13900)",fontsize=16,color="green",shape="box"];1847[label="Pos Zero",fontsize=16,color="green",shape="box"];1848[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu17 xuu18 xuu44 xuu21 xuu17 xuu18 xuu44 xuu21 True",fontsize=16,color="black",shape="box"];1848 -> 2183[label="",style="solid", color="black", weight=3]; 1849[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu17 xuu18 FiniteMap.EmptyFM xuu21 FiniteMap.EmptyFM xuu21 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1849 -> 2184[label="",style="solid", color="black", weight=3]; 1850[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu17 xuu18 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];1850 -> 2185[label="",style="solid", color="black", weight=3]; 1852 -> 36[label="",style="dashed", color="red", weight=0]; 1852[label="FiniteMap.sizeFM xuu213 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu214",fontsize=16,color="magenta"];1852 -> 2186[label="",style="dashed", color="magenta", weight=3]; 1852 -> 2187[label="",style="dashed", color="magenta", weight=3]; 1851[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu17 xuu18 xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 xuu207",fontsize=16,color="burlywood",shape="triangle"];3890[label="xuu207/False",fontsize=10,color="white",style="solid",shape="box"];1851 -> 3890[label="",style="solid", color="burlywood", weight=9]; 3890 -> 2188[label="",style="solid", color="burlywood", weight=3]; 3891[label="xuu207/True",fontsize=10,color="white",style="solid",shape="box"];1851 -> 3891[label="",style="solid", color="burlywood", weight=9]; 3891 -> 2189[label="",style="solid", color="burlywood", weight=3]; 1853 -> 914[label="",style="dashed", color="red", weight=0]; 1853[label="FiniteMap.sizeFM xuu21",fontsize=16,color="magenta"];1854 -> 1054[label="",style="dashed", color="red", weight=0]; 1854[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu44 xuu17 xuu21)",fontsize=16,color="magenta"];1854 -> 2190[label="",style="dashed", color="magenta", weight=3]; 1854 -> 2191[label="",style="dashed", color="magenta", weight=3]; 1855[label="xuu116",fontsize=16,color="green",shape="box"];1856[label="xuu113",fontsize=16,color="green",shape="box"];1857[label="xuu116",fontsize=16,color="green",shape="box"];1858[label="xuu113",fontsize=16,color="green",shape="box"];1859[label="xuu116",fontsize=16,color="green",shape="box"];1860[label="xuu113",fontsize=16,color="green",shape="box"];1861[label="xuu116",fontsize=16,color="green",shape="box"];1862[label="xuu113",fontsize=16,color="green",shape="box"];1863[label="xuu116",fontsize=16,color="green",shape="box"];1864[label="xuu113",fontsize=16,color="green",shape="box"];1865[label="xuu116",fontsize=16,color="green",shape="box"];1866[label="xuu113",fontsize=16,color="green",shape="box"];1867[label="xuu116",fontsize=16,color="green",shape="box"];1868[label="xuu113",fontsize=16,color="green",shape="box"];1869[label="xuu116",fontsize=16,color="green",shape="box"];1870[label="xuu113",fontsize=16,color="green",shape="box"];1871[label="xuu116",fontsize=16,color="green",shape="box"];1872[label="xuu113",fontsize=16,color="green",shape="box"];1873[label="xuu116",fontsize=16,color="green",shape="box"];1874[label="xuu113",fontsize=16,color="green",shape="box"];1875[label="xuu116",fontsize=16,color="green",shape="box"];1876[label="xuu113",fontsize=16,color="green",shape="box"];1877[label="xuu116",fontsize=16,color="green",shape="box"];1878[label="xuu113",fontsize=16,color="green",shape="box"];1879[label="xuu116",fontsize=16,color="green",shape="box"];1880[label="xuu113",fontsize=16,color="green",shape="box"];1881[label="xuu116",fontsize=16,color="green",shape="box"];1882[label="xuu113",fontsize=16,color="green",shape="box"];1890 -> 34[label="",style="dashed", color="red", weight=0]; 1890[label="xuu114 < xuu117",fontsize=16,color="magenta"];1890 -> 2192[label="",style="dashed", color="magenta", weight=3]; 1890 -> 2193[label="",style="dashed", color="magenta", weight=3]; 1891 -> 35[label="",style="dashed", color="red", weight=0]; 1891[label="xuu114 < xuu117",fontsize=16,color="magenta"];1891 -> 2194[label="",style="dashed", color="magenta", weight=3]; 1891 -> 2195[label="",style="dashed", color="magenta", weight=3]; 1892 -> 36[label="",style="dashed", color="red", weight=0]; 1892[label="xuu114 < xuu117",fontsize=16,color="magenta"];1892 -> 2196[label="",style="dashed", color="magenta", weight=3]; 1892 -> 2197[label="",style="dashed", color="magenta", weight=3]; 1893 -> 37[label="",style="dashed", color="red", weight=0]; 1893[label="xuu114 < xuu117",fontsize=16,color="magenta"];1893 -> 2198[label="",style="dashed", color="magenta", weight=3]; 1893 -> 2199[label="",style="dashed", color="magenta", weight=3]; 1894 -> 38[label="",style="dashed", color="red", weight=0]; 1894[label="xuu114 < xuu117",fontsize=16,color="magenta"];1894 -> 2200[label="",style="dashed", color="magenta", weight=3]; 1894 -> 2201[label="",style="dashed", color="magenta", weight=3]; 1895 -> 39[label="",style="dashed", color="red", weight=0]; 1895[label="xuu114 < xuu117",fontsize=16,color="magenta"];1895 -> 2202[label="",style="dashed", color="magenta", weight=3]; 1895 -> 2203[label="",style="dashed", color="magenta", weight=3]; 1896 -> 40[label="",style="dashed", color="red", weight=0]; 1896[label="xuu114 < xuu117",fontsize=16,color="magenta"];1896 -> 2204[label="",style="dashed", color="magenta", weight=3]; 1896 -> 2205[label="",style="dashed", color="magenta", weight=3]; 1897 -> 41[label="",style="dashed", color="red", weight=0]; 1897[label="xuu114 < xuu117",fontsize=16,color="magenta"];1897 -> 2206[label="",style="dashed", color="magenta", weight=3]; 1897 -> 2207[label="",style="dashed", color="magenta", weight=3]; 1898 -> 42[label="",style="dashed", color="red", weight=0]; 1898[label="xuu114 < xuu117",fontsize=16,color="magenta"];1898 -> 2208[label="",style="dashed", color="magenta", weight=3]; 1898 -> 2209[label="",style="dashed", color="magenta", weight=3]; 1899 -> 43[label="",style="dashed", color="red", weight=0]; 1899[label="xuu114 < xuu117",fontsize=16,color="magenta"];1899 -> 2210[label="",style="dashed", color="magenta", weight=3]; 1899 -> 2211[label="",style="dashed", color="magenta", weight=3]; 1900 -> 44[label="",style="dashed", color="red", weight=0]; 1900[label="xuu114 < xuu117",fontsize=16,color="magenta"];1900 -> 2212[label="",style="dashed", color="magenta", weight=3]; 1900 -> 2213[label="",style="dashed", color="magenta", weight=3]; 1901 -> 45[label="",style="dashed", color="red", weight=0]; 1901[label="xuu114 < xuu117",fontsize=16,color="magenta"];1901 -> 2214[label="",style="dashed", color="magenta", weight=3]; 1901 -> 2215[label="",style="dashed", color="magenta", weight=3]; 1902 -> 46[label="",style="dashed", color="red", weight=0]; 1902[label="xuu114 < xuu117",fontsize=16,color="magenta"];1902 -> 2216[label="",style="dashed", color="magenta", weight=3]; 1902 -> 2217[label="",style="dashed", color="magenta", weight=3]; 1903 -> 47[label="",style="dashed", color="red", weight=0]; 1903[label="xuu114 < xuu117",fontsize=16,color="magenta"];1903 -> 2218[label="",style="dashed", color="magenta", weight=3]; 1903 -> 2219[label="",style="dashed", color="magenta", weight=3]; 1904[label="xuu114 == xuu117",fontsize=16,color="blue",shape="box"];3892[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3892[label="",style="solid", color="blue", weight=9]; 3892 -> 2220[label="",style="solid", color="blue", weight=3]; 3893[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3893[label="",style="solid", color="blue", weight=9]; 3893 -> 2221[label="",style="solid", color="blue", weight=3]; 3894[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3894[label="",style="solid", color="blue", weight=9]; 3894 -> 2222[label="",style="solid", color="blue", weight=3]; 3895[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3895[label="",style="solid", color="blue", weight=9]; 3895 -> 2223[label="",style="solid", color="blue", weight=3]; 3896[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3896[label="",style="solid", color="blue", weight=9]; 3896 -> 2224[label="",style="solid", color="blue", weight=3]; 3897[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3897[label="",style="solid", color="blue", weight=9]; 3897 -> 2225[label="",style="solid", color="blue", weight=3]; 3898[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3898[label="",style="solid", color="blue", weight=9]; 3898 -> 2226[label="",style="solid", color="blue", weight=3]; 3899[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3899[label="",style="solid", color="blue", weight=9]; 3899 -> 2227[label="",style="solid", color="blue", weight=3]; 3900[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3900[label="",style="solid", color="blue", weight=9]; 3900 -> 2228[label="",style="solid", color="blue", weight=3]; 3901[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3901[label="",style="solid", color="blue", weight=9]; 3901 -> 2229[label="",style="solid", color="blue", weight=3]; 3902[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3902[label="",style="solid", color="blue", weight=9]; 3902 -> 2230[label="",style="solid", color="blue", weight=3]; 3903[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3903[label="",style="solid", color="blue", weight=9]; 3903 -> 2231[label="",style="solid", color="blue", weight=3]; 3904[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3904[label="",style="solid", color="blue", weight=9]; 3904 -> 2232[label="",style="solid", color="blue", weight=3]; 3905[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3905[label="",style="solid", color="blue", weight=9]; 3905 -> 2233[label="",style="solid", color="blue", weight=3]; 1905[label="xuu115 <= xuu118",fontsize=16,color="blue",shape="box"];3906[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1905 -> 3906[label="",style="solid", color="blue", weight=9]; 3906 -> 2234[label="",style="solid", color="blue", weight=3]; 3907[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1905 -> 3907[label="",style="solid", color="blue", weight=9]; 3907 -> 2235[label="",style="solid", color="blue", weight=3]; 3908[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1905 -> 3908[label="",style="solid", color="blue", weight=9]; 3908 -> 2236[label="",style="solid", color="blue", weight=3]; 3909[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1905 -> 3909[label="",style="solid", color="blue", weight=9]; 3909 -> 2237[label="",style="solid", color="blue", weight=3]; 3910[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1905 -> 3910[label="",style="solid", color="blue", weight=9]; 3910 -> 2238[label="",style="solid", color="blue", weight=3]; 3911[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1905 -> 3911[label="",style="solid", color="blue", weight=9]; 3911 -> 2239[label="",style="solid", color="blue", weight=3]; 3912[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1905 -> 3912[label="",style="solid", color="blue", weight=9]; 3912 -> 2240[label="",style="solid", color="blue", weight=3]; 3913[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1905 -> 3913[label="",style="solid", color="blue", weight=9]; 3913 -> 2241[label="",style="solid", color="blue", weight=3]; 3914[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1905 -> 3914[label="",style="solid", color="blue", weight=9]; 3914 -> 2242[label="",style="solid", color="blue", weight=3]; 3915[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1905 -> 3915[label="",style="solid", color="blue", weight=9]; 3915 -> 2243[label="",style="solid", color="blue", weight=3]; 3916[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1905 -> 3916[label="",style="solid", color="blue", weight=9]; 3916 -> 2244[label="",style="solid", color="blue", weight=3]; 3917[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1905 -> 3917[label="",style="solid", color="blue", weight=9]; 3917 -> 2245[label="",style="solid", color="blue", weight=3]; 3918[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1905 -> 3918[label="",style="solid", color="blue", weight=9]; 3918 -> 2246[label="",style="solid", color="blue", weight=3]; 3919[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1905 -> 3919[label="",style="solid", color="blue", weight=9]; 3919 -> 2247[label="",style="solid", color="blue", weight=3]; 1906[label="False || xuu215",fontsize=16,color="black",shape="box"];1906 -> 2248[label="",style="solid", color="black", weight=3]; 1907[label="True || xuu215",fontsize=16,color="black",shape="box"];1907 -> 2249[label="",style="solid", color="black", weight=3]; 1908[label="compare1 (xuu185,xuu186,xuu187) (xuu188,xuu189,xuu190) False",fontsize=16,color="black",shape="box"];1908 -> 2250[label="",style="solid", color="black", weight=3]; 1909[label="compare1 (xuu185,xuu186,xuu187) (xuu188,xuu189,xuu190) True",fontsize=16,color="black",shape="box"];1909 -> 2251[label="",style="solid", color="black", weight=3]; 1910[label="True",fontsize=16,color="green",shape="box"];1911 -> 1447[label="",style="dashed", color="red", weight=0]; 1911[label="primPlusNat (primMulNat xuu40000 (Succ xuu500100)) (Succ xuu500100)",fontsize=16,color="magenta"];1911 -> 2252[label="",style="dashed", color="magenta", weight=3]; 1911 -> 2253[label="",style="dashed", color="magenta", weight=3]; 1912[label="Zero",fontsize=16,color="green",shape="box"];1913[label="Zero",fontsize=16,color="green",shape="box"];1914[label="Zero",fontsize=16,color="green",shape="box"];1915 -> 568[label="",style="dashed", color="red", weight=0]; 1915[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1915 -> 2254[label="",style="dashed", color="magenta", weight=3]; 1915 -> 2255[label="",style="dashed", color="magenta", weight=3]; 1916 -> 569[label="",style="dashed", color="red", weight=0]; 1916[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1916 -> 2256[label="",style="dashed", color="magenta", weight=3]; 1916 -> 2257[label="",style="dashed", color="magenta", weight=3]; 1917 -> 568[label="",style="dashed", color="red", weight=0]; 1917[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1917 -> 2258[label="",style="dashed", color="magenta", weight=3]; 1917 -> 2259[label="",style="dashed", color="magenta", weight=3]; 1918 -> 569[label="",style="dashed", color="red", weight=0]; 1918[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1918 -> 2260[label="",style="dashed", color="magenta", weight=3]; 1918 -> 2261[label="",style="dashed", color="magenta", weight=3]; 1919 -> 564[label="",style="dashed", color="red", weight=0]; 1919[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1919 -> 2262[label="",style="dashed", color="magenta", weight=3]; 1919 -> 2263[label="",style="dashed", color="magenta", weight=3]; 1920 -> 565[label="",style="dashed", color="red", weight=0]; 1920[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1920 -> 2264[label="",style="dashed", color="magenta", weight=3]; 1920 -> 2265[label="",style="dashed", color="magenta", weight=3]; 1921 -> 566[label="",style="dashed", color="red", weight=0]; 1921[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1921 -> 2266[label="",style="dashed", color="magenta", weight=3]; 1921 -> 2267[label="",style="dashed", color="magenta", weight=3]; 1922 -> 567[label="",style="dashed", color="red", weight=0]; 1922[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1922 -> 2268[label="",style="dashed", color="magenta", weight=3]; 1922 -> 2269[label="",style="dashed", color="magenta", weight=3]; 1923 -> 568[label="",style="dashed", color="red", weight=0]; 1923[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1923 -> 2270[label="",style="dashed", color="magenta", weight=3]; 1923 -> 2271[label="",style="dashed", color="magenta", weight=3]; 1924 -> 569[label="",style="dashed", color="red", weight=0]; 1924[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1924 -> 2272[label="",style="dashed", color="magenta", weight=3]; 1924 -> 2273[label="",style="dashed", color="magenta", weight=3]; 1925 -> 570[label="",style="dashed", color="red", weight=0]; 1925[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1925 -> 2274[label="",style="dashed", color="magenta", weight=3]; 1925 -> 2275[label="",style="dashed", color="magenta", weight=3]; 1926 -> 571[label="",style="dashed", color="red", weight=0]; 1926[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1926 -> 2276[label="",style="dashed", color="magenta", weight=3]; 1926 -> 2277[label="",style="dashed", color="magenta", weight=3]; 1927 -> 572[label="",style="dashed", color="red", weight=0]; 1927[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1927 -> 2278[label="",style="dashed", color="magenta", weight=3]; 1927 -> 2279[label="",style="dashed", color="magenta", weight=3]; 1928 -> 573[label="",style="dashed", color="red", weight=0]; 1928[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1928 -> 2280[label="",style="dashed", color="magenta", weight=3]; 1928 -> 2281[label="",style="dashed", color="magenta", weight=3]; 1929 -> 574[label="",style="dashed", color="red", weight=0]; 1929[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1929 -> 2282[label="",style="dashed", color="magenta", weight=3]; 1929 -> 2283[label="",style="dashed", color="magenta", weight=3]; 1930 -> 575[label="",style="dashed", color="red", weight=0]; 1930[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1930 -> 2284[label="",style="dashed", color="magenta", weight=3]; 1930 -> 2285[label="",style="dashed", color="magenta", weight=3]; 1931 -> 576[label="",style="dashed", color="red", weight=0]; 1931[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1931 -> 2286[label="",style="dashed", color="magenta", weight=3]; 1931 -> 2287[label="",style="dashed", color="magenta", weight=3]; 1932 -> 577[label="",style="dashed", color="red", weight=0]; 1932[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1932 -> 2288[label="",style="dashed", color="magenta", weight=3]; 1932 -> 2289[label="",style="dashed", color="magenta", weight=3]; 1933[label="xuu50001 == xuu4001",fontsize=16,color="blue",shape="box"];3920[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3920[label="",style="solid", color="blue", weight=9]; 3920 -> 2290[label="",style="solid", color="blue", weight=3]; 3921[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3921[label="",style="solid", color="blue", weight=9]; 3921 -> 2291[label="",style="solid", color="blue", weight=3]; 3922[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3922[label="",style="solid", color="blue", weight=9]; 3922 -> 2292[label="",style="solid", color="blue", weight=3]; 3923[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3923[label="",style="solid", color="blue", weight=9]; 3923 -> 2293[label="",style="solid", color="blue", weight=3]; 3924[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3924[label="",style="solid", color="blue", weight=9]; 3924 -> 2294[label="",style="solid", color="blue", weight=3]; 3925[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3925[label="",style="solid", color="blue", weight=9]; 3925 -> 2295[label="",style="solid", color="blue", weight=3]; 3926[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3926[label="",style="solid", color="blue", weight=9]; 3926 -> 2296[label="",style="solid", color="blue", weight=3]; 3927[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3927[label="",style="solid", color="blue", weight=9]; 3927 -> 2297[label="",style="solid", color="blue", weight=3]; 3928[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3928[label="",style="solid", color="blue", weight=9]; 3928 -> 2298[label="",style="solid", color="blue", weight=3]; 3929[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3929[label="",style="solid", color="blue", weight=9]; 3929 -> 2299[label="",style="solid", color="blue", weight=3]; 3930[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3930[label="",style="solid", color="blue", weight=9]; 3930 -> 2300[label="",style="solid", color="blue", weight=3]; 3931[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3931[label="",style="solid", color="blue", weight=9]; 3931 -> 2301[label="",style="solid", color="blue", weight=3]; 3932[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3932[label="",style="solid", color="blue", weight=9]; 3932 -> 2302[label="",style="solid", color="blue", weight=3]; 3933[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3933[label="",style="solid", color="blue", weight=9]; 3933 -> 2303[label="",style="solid", color="blue", weight=3]; 1934[label="xuu50002 == xuu4002",fontsize=16,color="blue",shape="box"];3934[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3934[label="",style="solid", color="blue", weight=9]; 3934 -> 2304[label="",style="solid", color="blue", weight=3]; 3935[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3935[label="",style="solid", color="blue", weight=9]; 3935 -> 2305[label="",style="solid", color="blue", weight=3]; 3936[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3936[label="",style="solid", color="blue", weight=9]; 3936 -> 2306[label="",style="solid", color="blue", weight=3]; 3937[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3937[label="",style="solid", color="blue", weight=9]; 3937 -> 2307[label="",style="solid", color="blue", weight=3]; 3938[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3938[label="",style="solid", color="blue", weight=9]; 3938 -> 2308[label="",style="solid", color="blue", weight=3]; 3939[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3939[label="",style="solid", color="blue", weight=9]; 3939 -> 2309[label="",style="solid", color="blue", weight=3]; 3940[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3940[label="",style="solid", color="blue", weight=9]; 3940 -> 2310[label="",style="solid", color="blue", weight=3]; 3941[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3941[label="",style="solid", color="blue", weight=9]; 3941 -> 2311[label="",style="solid", color="blue", weight=3]; 3942[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3942[label="",style="solid", color="blue", weight=9]; 3942 -> 2312[label="",style="solid", color="blue", weight=3]; 3943[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3943[label="",style="solid", color="blue", weight=9]; 3943 -> 2313[label="",style="solid", color="blue", weight=3]; 3944[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3944[label="",style="solid", color="blue", weight=9]; 3944 -> 2314[label="",style="solid", color="blue", weight=3]; 3945[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3945[label="",style="solid", color="blue", weight=9]; 3945 -> 2315[label="",style="solid", color="blue", weight=3]; 3946[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3946[label="",style="solid", color="blue", weight=9]; 3946 -> 2316[label="",style="solid", color="blue", weight=3]; 3947[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3947[label="",style="solid", color="blue", weight=9]; 3947 -> 2317[label="",style="solid", color="blue", weight=3]; 1935[label="primEqInt (Pos (Succ xuu500000)) (Pos (Succ xuu40000))",fontsize=16,color="black",shape="box"];1935 -> 2318[label="",style="solid", color="black", weight=3]; 1936[label="primEqInt (Pos (Succ xuu500000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1936 -> 2319[label="",style="solid", color="black", weight=3]; 1937[label="False",fontsize=16,color="green",shape="box"];1938[label="primEqInt (Pos Zero) (Pos (Succ xuu40000))",fontsize=16,color="black",shape="box"];1938 -> 2320[label="",style="solid", color="black", weight=3]; 1939[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1939 -> 2321[label="",style="solid", color="black", weight=3]; 1940[label="primEqInt (Pos Zero) (Neg (Succ xuu40000))",fontsize=16,color="black",shape="box"];1940 -> 2322[label="",style="solid", color="black", weight=3]; 1941[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1941 -> 2323[label="",style="solid", color="black", weight=3]; 1942[label="False",fontsize=16,color="green",shape="box"];1943[label="primEqInt (Neg (Succ xuu500000)) (Neg (Succ xuu40000))",fontsize=16,color="black",shape="box"];1943 -> 2324[label="",style="solid", color="black", weight=3]; 1944[label="primEqInt (Neg (Succ xuu500000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1944 -> 2325[label="",style="solid", color="black", weight=3]; 1945[label="primEqInt (Neg Zero) (Pos (Succ xuu40000))",fontsize=16,color="black",shape="box"];1945 -> 2326[label="",style="solid", color="black", weight=3]; 1946[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1946 -> 2327[label="",style="solid", color="black", weight=3]; 1947[label="primEqInt (Neg Zero) (Neg (Succ xuu40000))",fontsize=16,color="black",shape="box"];1947 -> 2328[label="",style="solid", color="black", weight=3]; 1948[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1948 -> 2329[label="",style="solid", color="black", weight=3]; 1949 -> 564[label="",style="dashed", color="red", weight=0]; 1949[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1949 -> 2330[label="",style="dashed", color="magenta", weight=3]; 1949 -> 2331[label="",style="dashed", color="magenta", weight=3]; 1950 -> 565[label="",style="dashed", color="red", weight=0]; 1950[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1950 -> 2332[label="",style="dashed", color="magenta", weight=3]; 1950 -> 2333[label="",style="dashed", color="magenta", weight=3]; 1951 -> 566[label="",style="dashed", color="red", weight=0]; 1951[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1951 -> 2334[label="",style="dashed", color="magenta", weight=3]; 1951 -> 2335[label="",style="dashed", color="magenta", weight=3]; 1952 -> 567[label="",style="dashed", color="red", weight=0]; 1952[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1952 -> 2336[label="",style="dashed", color="magenta", weight=3]; 1952 -> 2337[label="",style="dashed", color="magenta", weight=3]; 1953 -> 568[label="",style="dashed", color="red", weight=0]; 1953[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1953 -> 2338[label="",style="dashed", color="magenta", weight=3]; 1953 -> 2339[label="",style="dashed", color="magenta", weight=3]; 1954 -> 569[label="",style="dashed", color="red", weight=0]; 1954[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1954 -> 2340[label="",style="dashed", color="magenta", weight=3]; 1954 -> 2341[label="",style="dashed", color="magenta", weight=3]; 1955 -> 570[label="",style="dashed", color="red", weight=0]; 1955[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1955 -> 2342[label="",style="dashed", color="magenta", weight=3]; 1955 -> 2343[label="",style="dashed", color="magenta", weight=3]; 1956 -> 571[label="",style="dashed", color="red", weight=0]; 1956[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1956 -> 2344[label="",style="dashed", color="magenta", weight=3]; 1956 -> 2345[label="",style="dashed", color="magenta", weight=3]; 1957 -> 572[label="",style="dashed", color="red", weight=0]; 1957[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1957 -> 2346[label="",style="dashed", color="magenta", weight=3]; 1957 -> 2347[label="",style="dashed", color="magenta", weight=3]; 1958 -> 573[label="",style="dashed", color="red", weight=0]; 1958[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1958 -> 2348[label="",style="dashed", color="magenta", weight=3]; 1958 -> 2349[label="",style="dashed", color="magenta", weight=3]; 1959 -> 574[label="",style="dashed", color="red", weight=0]; 1959[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1959 -> 2350[label="",style="dashed", color="magenta", weight=3]; 1959 -> 2351[label="",style="dashed", color="magenta", weight=3]; 1960 -> 575[label="",style="dashed", color="red", weight=0]; 1960[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1960 -> 2352[label="",style="dashed", color="magenta", weight=3]; 1960 -> 2353[label="",style="dashed", color="magenta", weight=3]; 1961 -> 576[label="",style="dashed", color="red", weight=0]; 1961[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1961 -> 2354[label="",style="dashed", color="magenta", weight=3]; 1961 -> 2355[label="",style="dashed", color="magenta", weight=3]; 1962 -> 577[label="",style="dashed", color="red", weight=0]; 1962[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1962 -> 2356[label="",style="dashed", color="magenta", weight=3]; 1962 -> 2357[label="",style="dashed", color="magenta", weight=3]; 1963 -> 564[label="",style="dashed", color="red", weight=0]; 1963[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1963 -> 2358[label="",style="dashed", color="magenta", weight=3]; 1963 -> 2359[label="",style="dashed", color="magenta", weight=3]; 1964 -> 565[label="",style="dashed", color="red", weight=0]; 1964[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1964 -> 2360[label="",style="dashed", color="magenta", weight=3]; 1964 -> 2361[label="",style="dashed", color="magenta", weight=3]; 1965 -> 566[label="",style="dashed", color="red", weight=0]; 1965[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1965 -> 2362[label="",style="dashed", color="magenta", weight=3]; 1965 -> 2363[label="",style="dashed", color="magenta", weight=3]; 1966 -> 567[label="",style="dashed", color="red", weight=0]; 1966[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1966 -> 2364[label="",style="dashed", color="magenta", weight=3]; 1966 -> 2365[label="",style="dashed", color="magenta", weight=3]; 1967 -> 568[label="",style="dashed", color="red", weight=0]; 1967[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1967 -> 2366[label="",style="dashed", color="magenta", weight=3]; 1967 -> 2367[label="",style="dashed", color="magenta", weight=3]; 1968 -> 569[label="",style="dashed", color="red", weight=0]; 1968[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1968 -> 2368[label="",style="dashed", color="magenta", weight=3]; 1968 -> 2369[label="",style="dashed", color="magenta", weight=3]; 1969 -> 570[label="",style="dashed", color="red", weight=0]; 1969[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1969 -> 2370[label="",style="dashed", color="magenta", weight=3]; 1969 -> 2371[label="",style="dashed", color="magenta", weight=3]; 1970 -> 571[label="",style="dashed", color="red", weight=0]; 1970[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1970 -> 2372[label="",style="dashed", color="magenta", weight=3]; 1970 -> 2373[label="",style="dashed", color="magenta", weight=3]; 1971 -> 572[label="",style="dashed", color="red", weight=0]; 1971[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1971 -> 2374[label="",style="dashed", color="magenta", weight=3]; 1971 -> 2375[label="",style="dashed", color="magenta", weight=3]; 1972 -> 573[label="",style="dashed", color="red", weight=0]; 1972[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1972 -> 2376[label="",style="dashed", color="magenta", weight=3]; 1972 -> 2377[label="",style="dashed", color="magenta", weight=3]; 1973 -> 574[label="",style="dashed", color="red", weight=0]; 1973[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1973 -> 2378[label="",style="dashed", color="magenta", weight=3]; 1973 -> 2379[label="",style="dashed", color="magenta", weight=3]; 1974 -> 575[label="",style="dashed", color="red", weight=0]; 1974[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1974 -> 2380[label="",style="dashed", color="magenta", weight=3]; 1974 -> 2381[label="",style="dashed", color="magenta", weight=3]; 1975 -> 576[label="",style="dashed", color="red", weight=0]; 1975[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1975 -> 2382[label="",style="dashed", color="magenta", weight=3]; 1975 -> 2383[label="",style="dashed", color="magenta", weight=3]; 1976 -> 577[label="",style="dashed", color="red", weight=0]; 1976[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1976 -> 2384[label="",style="dashed", color="magenta", weight=3]; 1976 -> 2385[label="",style="dashed", color="magenta", weight=3]; 1977 -> 428[label="",style="dashed", color="red", weight=0]; 1977[label="xuu50001 * xuu4000",fontsize=16,color="magenta"];1977 -> 2386[label="",style="dashed", color="magenta", weight=3]; 1977 -> 2387[label="",style="dashed", color="magenta", weight=3]; 1978 -> 428[label="",style="dashed", color="red", weight=0]; 1978[label="xuu50000 * xuu4001",fontsize=16,color="magenta"];1978 -> 2388[label="",style="dashed", color="magenta", weight=3]; 1978 -> 2389[label="",style="dashed", color="magenta", weight=3]; 1979[label="xuu4000",fontsize=16,color="green",shape="box"];1980[label="xuu50000",fontsize=16,color="green",shape="box"];1981[label="xuu4000",fontsize=16,color="green",shape="box"];1982[label="xuu50000",fontsize=16,color="green",shape="box"];1983[label="xuu4000",fontsize=16,color="green",shape="box"];1984[label="xuu50000",fontsize=16,color="green",shape="box"];1985[label="xuu4000",fontsize=16,color="green",shape="box"];1986[label="xuu50000",fontsize=16,color="green",shape="box"];1987[label="xuu4000",fontsize=16,color="green",shape="box"];1988[label="xuu50000",fontsize=16,color="green",shape="box"];1989[label="xuu4000",fontsize=16,color="green",shape="box"];1990[label="xuu50000",fontsize=16,color="green",shape="box"];1991[label="xuu4000",fontsize=16,color="green",shape="box"];1992[label="xuu50000",fontsize=16,color="green",shape="box"];1993[label="xuu4000",fontsize=16,color="green",shape="box"];1994[label="xuu50000",fontsize=16,color="green",shape="box"];1995[label="xuu4000",fontsize=16,color="green",shape="box"];1996[label="xuu50000",fontsize=16,color="green",shape="box"];1997[label="xuu4000",fontsize=16,color="green",shape="box"];1998[label="xuu50000",fontsize=16,color="green",shape="box"];1999[label="xuu4000",fontsize=16,color="green",shape="box"];2000[label="xuu50000",fontsize=16,color="green",shape="box"];2001[label="xuu4000",fontsize=16,color="green",shape="box"];2002[label="xuu50000",fontsize=16,color="green",shape="box"];2003[label="xuu4000",fontsize=16,color="green",shape="box"];2004[label="xuu50000",fontsize=16,color="green",shape="box"];2005[label="xuu4000",fontsize=16,color="green",shape="box"];2006[label="xuu50000",fontsize=16,color="green",shape="box"];2007 -> 564[label="",style="dashed", color="red", weight=0]; 2007[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2007 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2007 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2008 -> 565[label="",style="dashed", color="red", weight=0]; 2008[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2008 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2008 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2009 -> 566[label="",style="dashed", color="red", weight=0]; 2009[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2009 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2009 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2010 -> 567[label="",style="dashed", color="red", weight=0]; 2010[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2010 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2010 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2011 -> 568[label="",style="dashed", color="red", weight=0]; 2011[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2011 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2011 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2012 -> 569[label="",style="dashed", color="red", weight=0]; 2012[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2012 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2012 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2013 -> 570[label="",style="dashed", color="red", weight=0]; 2013[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2013 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2013 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2014 -> 571[label="",style="dashed", color="red", weight=0]; 2014[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2014 -> 2404[label="",style="dashed", color="magenta", weight=3]; 2014 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2015 -> 572[label="",style="dashed", color="red", weight=0]; 2015[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2015 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2015 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2016 -> 573[label="",style="dashed", color="red", weight=0]; 2016[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2016 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2016 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2017 -> 574[label="",style="dashed", color="red", weight=0]; 2017[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2017 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2017 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2018 -> 575[label="",style="dashed", color="red", weight=0]; 2018[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2018 -> 2412[label="",style="dashed", color="magenta", weight=3]; 2018 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2019 -> 576[label="",style="dashed", color="red", weight=0]; 2019[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2019 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2019 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2020 -> 577[label="",style="dashed", color="red", weight=0]; 2020[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];2020 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2020 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2021[label="xuu4001",fontsize=16,color="green",shape="box"];2022[label="xuu50001",fontsize=16,color="green",shape="box"];2023 -> 428[label="",style="dashed", color="red", weight=0]; 2023[label="xuu50001 * xuu4000",fontsize=16,color="magenta"];2023 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2023 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2024 -> 428[label="",style="dashed", color="red", weight=0]; 2024[label="xuu50000 * xuu4001",fontsize=16,color="magenta"];2024 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2024 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2025[label="primEqNat (Succ xuu500000) xuu4000",fontsize=16,color="burlywood",shape="box"];3948[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];2025 -> 3948[label="",style="solid", color="burlywood", weight=9]; 3948 -> 2422[label="",style="solid", color="burlywood", weight=3]; 3949[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2025 -> 3949[label="",style="solid", color="burlywood", weight=9]; 3949 -> 2423[label="",style="solid", color="burlywood", weight=3]; 2026[label="primEqNat Zero xuu4000",fontsize=16,color="burlywood",shape="box"];3950[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];2026 -> 3950[label="",style="solid", color="burlywood", weight=9]; 3950 -> 2424[label="",style="solid", color="burlywood", weight=3]; 3951[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2026 -> 3951[label="",style="solid", color="burlywood", weight=9]; 3951 -> 2425[label="",style="solid", color="burlywood", weight=3]; 2027[label="xuu4000",fontsize=16,color="green",shape="box"];2028[label="xuu50000",fontsize=16,color="green",shape="box"];2029[label="xuu4000",fontsize=16,color="green",shape="box"];2030[label="xuu50000",fontsize=16,color="green",shape="box"];2031[label="xuu4000",fontsize=16,color="green",shape="box"];2032[label="xuu50000",fontsize=16,color="green",shape="box"];2033[label="xuu4000",fontsize=16,color="green",shape="box"];2034[label="xuu50000",fontsize=16,color="green",shape="box"];2035[label="xuu4000",fontsize=16,color="green",shape="box"];2036[label="xuu50000",fontsize=16,color="green",shape="box"];2037[label="xuu4000",fontsize=16,color="green",shape="box"];2038[label="xuu50000",fontsize=16,color="green",shape="box"];2039[label="xuu4000",fontsize=16,color="green",shape="box"];2040[label="xuu50000",fontsize=16,color="green",shape="box"];2041[label="xuu4000",fontsize=16,color="green",shape="box"];2042[label="xuu50000",fontsize=16,color="green",shape="box"];2043[label="xuu4000",fontsize=16,color="green",shape="box"];2044[label="xuu50000",fontsize=16,color="green",shape="box"];2045[label="xuu4000",fontsize=16,color="green",shape="box"];2046[label="xuu50000",fontsize=16,color="green",shape="box"];2047[label="xuu4000",fontsize=16,color="green",shape="box"];2048[label="xuu50000",fontsize=16,color="green",shape="box"];2049[label="xuu4000",fontsize=16,color="green",shape="box"];2050[label="xuu50000",fontsize=16,color="green",shape="box"];2051[label="xuu4000",fontsize=16,color="green",shape="box"];2052[label="xuu50000",fontsize=16,color="green",shape="box"];2053[label="xuu4000",fontsize=16,color="green",shape="box"];2054[label="xuu50000",fontsize=16,color="green",shape="box"];2055[label="xuu4000",fontsize=16,color="green",shape="box"];2056[label="xuu50000",fontsize=16,color="green",shape="box"];2057[label="xuu4000",fontsize=16,color="green",shape="box"];2058[label="xuu50000",fontsize=16,color="green",shape="box"];2059[label="xuu4000",fontsize=16,color="green",shape="box"];2060[label="xuu50000",fontsize=16,color="green",shape="box"];2061[label="xuu4000",fontsize=16,color="green",shape="box"];2062[label="xuu50000",fontsize=16,color="green",shape="box"];2063[label="xuu4000",fontsize=16,color="green",shape="box"];2064[label="xuu50000",fontsize=16,color="green",shape="box"];2065[label="xuu4000",fontsize=16,color="green",shape="box"];2066[label="xuu50000",fontsize=16,color="green",shape="box"];2067[label="xuu4000",fontsize=16,color="green",shape="box"];2068[label="xuu50000",fontsize=16,color="green",shape="box"];2069[label="xuu4000",fontsize=16,color="green",shape="box"];2070[label="xuu50000",fontsize=16,color="green",shape="box"];2071[label="xuu4000",fontsize=16,color="green",shape="box"];2072[label="xuu50000",fontsize=16,color="green",shape="box"];2073[label="xuu4000",fontsize=16,color="green",shape="box"];2074[label="xuu50000",fontsize=16,color="green",shape="box"];2075[label="xuu4000",fontsize=16,color="green",shape="box"];2076[label="xuu50000",fontsize=16,color="green",shape="box"];2077[label="xuu4000",fontsize=16,color="green",shape="box"];2078[label="xuu50000",fontsize=16,color="green",shape="box"];2079[label="xuu4000",fontsize=16,color="green",shape="box"];2080[label="xuu50000",fontsize=16,color="green",shape="box"];2081[label="xuu4000",fontsize=16,color="green",shape="box"];2082[label="xuu50000",fontsize=16,color="green",shape="box"];2084 -> 193[label="",style="dashed", color="red", weight=0]; 2084[label="compare xuu75 xuu76",fontsize=16,color="magenta"];2084 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2084 -> 2427[label="",style="dashed", color="magenta", weight=3]; 2083[label="xuu216 /= GT",fontsize=16,color="black",shape="triangle"];2083 -> 2428[label="",style="solid", color="black", weight=3]; 2085 -> 194[label="",style="dashed", color="red", weight=0]; 2085[label="compare xuu75 xuu76",fontsize=16,color="magenta"];2085 -> 2429[label="",style="dashed", color="magenta", weight=3]; 2085 -> 2430[label="",style="dashed", color="magenta", weight=3]; 2086 -> 195[label="",style="dashed", color="red", weight=0]; 2086[label="compare xuu75 xuu76",fontsize=16,color="magenta"];2086 -> 2431[label="",style="dashed", color="magenta", weight=3]; 2086 -> 2432[label="",style="dashed", color="magenta", weight=3]; 2092[label="(xuu750,xuu751,xuu752) <= (xuu760,xuu761,xuu762)",fontsize=16,color="black",shape="box"];2092 -> 2443[label="",style="solid", color="black", weight=3]; 2087 -> 197[label="",style="dashed", color="red", weight=0]; 2087[label="compare xuu75 xuu76",fontsize=16,color="magenta"];2087 -> 2433[label="",style="dashed", color="magenta", weight=3]; 2087 -> 2434[label="",style="dashed", color="magenta", weight=3]; 2088 -> 198[label="",style="dashed", color="red", weight=0]; 2088[label="compare xuu75 xuu76",fontsize=16,color="magenta"];2088 -> 2435[label="",style="dashed", color="magenta", weight=3]; 2088 -> 2436[label="",style="dashed", color="magenta", weight=3]; 2089 -> 199[label="",style="dashed", color="red", weight=0]; 2089[label="compare xuu75 xuu76",fontsize=16,color="magenta"];2089 -> 2437[label="",style="dashed", color="magenta", weight=3]; 2089 -> 2438[label="",style="dashed", color="magenta", weight=3]; 2093[label="False <= False",fontsize=16,color="black",shape="box"];2093 -> 2444[label="",style="solid", color="black", weight=3]; 2094[label="False <= True",fontsize=16,color="black",shape="box"];2094 -> 2445[label="",style="solid", color="black", weight=3]; 2095[label="True <= False",fontsize=16,color="black",shape="box"];2095 -> 2446[label="",style="solid", color="black", weight=3]; 2096[label="True <= True",fontsize=16,color="black",shape="box"];2096 -> 2447[label="",style="solid", color="black", weight=3]; 2090 -> 201[label="",style="dashed", color="red", weight=0]; 2090[label="compare xuu75 xuu76",fontsize=16,color="magenta"];2090 -> 2439[label="",style="dashed", color="magenta", weight=3]; 2090 -> 2440[label="",style="dashed", color="magenta", weight=3]; 2097[label="Left xuu750 <= Left xuu760",fontsize=16,color="black",shape="box"];2097 -> 2448[label="",style="solid", color="black", weight=3]; 2098[label="Left xuu750 <= Right xuu760",fontsize=16,color="black",shape="box"];2098 -> 2449[label="",style="solid", color="black", weight=3]; 2099[label="Right xuu750 <= Left xuu760",fontsize=16,color="black",shape="box"];2099 -> 2450[label="",style="solid", color="black", weight=3]; 2100[label="Right xuu750 <= Right xuu760",fontsize=16,color="black",shape="box"];2100 -> 2451[label="",style="solid", color="black", weight=3]; 2101[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2101 -> 2452[label="",style="solid", color="black", weight=3]; 2102[label="Nothing <= Just xuu760",fontsize=16,color="black",shape="box"];2102 -> 2453[label="",style="solid", color="black", weight=3]; 2103[label="Just xuu750 <= Nothing",fontsize=16,color="black",shape="box"];2103 -> 2454[label="",style="solid", color="black", weight=3]; 2104[label="Just xuu750 <= Just xuu760",fontsize=16,color="black",shape="box"];2104 -> 2455[label="",style="solid", color="black", weight=3]; 2091 -> 204[label="",style="dashed", color="red", weight=0]; 2091[label="compare xuu75 xuu76",fontsize=16,color="magenta"];2091 -> 2441[label="",style="dashed", color="magenta", weight=3]; 2091 -> 2442[label="",style="dashed", color="magenta", weight=3]; 2105[label="(xuu750,xuu751) <= (xuu760,xuu761)",fontsize=16,color="black",shape="box"];2105 -> 2456[label="",style="solid", color="black", weight=3]; 2106[label="LT <= LT",fontsize=16,color="black",shape="box"];2106 -> 2457[label="",style="solid", color="black", weight=3]; 2107[label="LT <= EQ",fontsize=16,color="black",shape="box"];2107 -> 2458[label="",style="solid", color="black", weight=3]; 2108[label="LT <= GT",fontsize=16,color="black",shape="box"];2108 -> 2459[label="",style="solid", color="black", weight=3]; 2109[label="EQ <= LT",fontsize=16,color="black",shape="box"];2109 -> 2460[label="",style="solid", color="black", weight=3]; 2110[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2110 -> 2461[label="",style="solid", color="black", weight=3]; 2111[label="EQ <= GT",fontsize=16,color="black",shape="box"];2111 -> 2462[label="",style="solid", color="black", weight=3]; 2112[label="GT <= LT",fontsize=16,color="black",shape="box"];2112 -> 2463[label="",style="solid", color="black", weight=3]; 2113[label="GT <= EQ",fontsize=16,color="black",shape="box"];2113 -> 2464[label="",style="solid", color="black", weight=3]; 2114[label="GT <= GT",fontsize=16,color="black",shape="box"];2114 -> 2465[label="",style="solid", color="black", weight=3]; 2115[label="GT",fontsize=16,color="green",shape="box"];2116[label="GT",fontsize=16,color="green",shape="box"];2117[label="GT",fontsize=16,color="green",shape="box"];2118[label="xuu128",fontsize=16,color="green",shape="box"];2119[label="xuu126",fontsize=16,color="green",shape="box"];2120[label="xuu128",fontsize=16,color="green",shape="box"];2121[label="xuu126",fontsize=16,color="green",shape="box"];2122[label="xuu128",fontsize=16,color="green",shape="box"];2123[label="xuu126",fontsize=16,color="green",shape="box"];2124[label="xuu128",fontsize=16,color="green",shape="box"];2125[label="xuu126",fontsize=16,color="green",shape="box"];2126[label="xuu128",fontsize=16,color="green",shape="box"];2127[label="xuu126",fontsize=16,color="green",shape="box"];2128[label="xuu128",fontsize=16,color="green",shape="box"];2129[label="xuu126",fontsize=16,color="green",shape="box"];2130[label="xuu128",fontsize=16,color="green",shape="box"];2131[label="xuu126",fontsize=16,color="green",shape="box"];2132[label="xuu128",fontsize=16,color="green",shape="box"];2133[label="xuu126",fontsize=16,color="green",shape="box"];2134[label="xuu128",fontsize=16,color="green",shape="box"];2135[label="xuu126",fontsize=16,color="green",shape="box"];2136[label="xuu128",fontsize=16,color="green",shape="box"];2137[label="xuu126",fontsize=16,color="green",shape="box"];2138[label="xuu128",fontsize=16,color="green",shape="box"];2139[label="xuu126",fontsize=16,color="green",shape="box"];2140[label="xuu128",fontsize=16,color="green",shape="box"];2141[label="xuu126",fontsize=16,color="green",shape="box"];2142[label="xuu128",fontsize=16,color="green",shape="box"];2143[label="xuu126",fontsize=16,color="green",shape="box"];2144[label="xuu128",fontsize=16,color="green",shape="box"];2145[label="xuu126",fontsize=16,color="green",shape="box"];2146[label="xuu127",fontsize=16,color="green",shape="box"];2147[label="xuu129",fontsize=16,color="green",shape="box"];2148[label="xuu127",fontsize=16,color="green",shape="box"];2149[label="xuu129",fontsize=16,color="green",shape="box"];2150[label="xuu127",fontsize=16,color="green",shape="box"];2151[label="xuu129",fontsize=16,color="green",shape="box"];2152[label="xuu127",fontsize=16,color="green",shape="box"];2153[label="xuu129",fontsize=16,color="green",shape="box"];2154[label="xuu127",fontsize=16,color="green",shape="box"];2155[label="xuu129",fontsize=16,color="green",shape="box"];2156[label="xuu127",fontsize=16,color="green",shape="box"];2157[label="xuu129",fontsize=16,color="green",shape="box"];2158[label="xuu127",fontsize=16,color="green",shape="box"];2159[label="xuu129",fontsize=16,color="green",shape="box"];2160[label="xuu127",fontsize=16,color="green",shape="box"];2161[label="xuu129",fontsize=16,color="green",shape="box"];2162[label="xuu127",fontsize=16,color="green",shape="box"];2163[label="xuu129",fontsize=16,color="green",shape="box"];2164[label="xuu127",fontsize=16,color="green",shape="box"];2165[label="xuu129",fontsize=16,color="green",shape="box"];2166[label="xuu127",fontsize=16,color="green",shape="box"];2167[label="xuu129",fontsize=16,color="green",shape="box"];2168[label="xuu127",fontsize=16,color="green",shape="box"];2169[label="xuu129",fontsize=16,color="green",shape="box"];2170[label="xuu127",fontsize=16,color="green",shape="box"];2171[label="xuu129",fontsize=16,color="green",shape="box"];2172[label="xuu127",fontsize=16,color="green",shape="box"];2173[label="xuu129",fontsize=16,color="green",shape="box"];2174[label="compare1 (xuu200,xuu201) (xuu202,xuu203) False",fontsize=16,color="black",shape="box"];2174 -> 2466[label="",style="solid", color="black", weight=3]; 2175[label="compare1 (xuu200,xuu201) (xuu202,xuu203) True",fontsize=16,color="black",shape="box"];2175 -> 2467[label="",style="solid", color="black", weight=3]; 2176[label="True",fontsize=16,color="green",shape="box"];2177[label="Succ (Succ (primPlusNat xuu44200 xuu13900))",fontsize=16,color="green",shape="box"];2177 -> 2468[label="",style="dashed", color="green", weight=3]; 2178[label="Succ xuu44200",fontsize=16,color="green",shape="box"];2179[label="Succ xuu13900",fontsize=16,color="green",shape="box"];2180[label="Zero",fontsize=16,color="green",shape="box"];2181[label="xuu44200",fontsize=16,color="green",shape="box"];2182[label="xuu13900",fontsize=16,color="green",shape="box"];2183[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) xuu17 xuu18 xuu44 xuu21",fontsize=16,color="black",shape="box"];2183 -> 2469[label="",style="solid", color="black", weight=3]; 2184[label="error []",fontsize=16,color="red",shape="box"];2185[label="FiniteMap.mkBalBranch6MkBalBranch12 xuu17 xuu18 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];2185 -> 2470[label="",style="solid", color="black", weight=3]; 2186 -> 428[label="",style="dashed", color="red", weight=0]; 2186[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu214",fontsize=16,color="magenta"];2186 -> 2471[label="",style="dashed", color="magenta", weight=3]; 2186 -> 2472[label="",style="dashed", color="magenta", weight=3]; 2187 -> 914[label="",style="dashed", color="red", weight=0]; 2187[label="FiniteMap.sizeFM xuu213",fontsize=16,color="magenta"];2187 -> 2473[label="",style="dashed", color="magenta", weight=3]; 2188[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu17 xuu18 xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 False",fontsize=16,color="black",shape="box"];2188 -> 2474[label="",style="solid", color="black", weight=3]; 2189[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu17 xuu18 xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 True",fontsize=16,color="black",shape="box"];2189 -> 2475[label="",style="solid", color="black", weight=3]; 2190[label="FiniteMap.mkBranchLeft_size xuu44 xuu17 xuu21",fontsize=16,color="black",shape="box"];2190 -> 2476[label="",style="solid", color="black", weight=3]; 2191[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];2192[label="xuu117",fontsize=16,color="green",shape="box"];2193[label="xuu114",fontsize=16,color="green",shape="box"];2194[label="xuu117",fontsize=16,color="green",shape="box"];2195[label="xuu114",fontsize=16,color="green",shape="box"];2196[label="xuu117",fontsize=16,color="green",shape="box"];2197[label="xuu114",fontsize=16,color="green",shape="box"];2198[label="xuu117",fontsize=16,color="green",shape="box"];2199[label="xuu114",fontsize=16,color="green",shape="box"];2200[label="xuu117",fontsize=16,color="green",shape="box"];2201[label="xuu114",fontsize=16,color="green",shape="box"];2202[label="xuu117",fontsize=16,color="green",shape="box"];2203[label="xuu114",fontsize=16,color="green",shape="box"];2204[label="xuu117",fontsize=16,color="green",shape="box"];2205[label="xuu114",fontsize=16,color="green",shape="box"];2206[label="xuu117",fontsize=16,color="green",shape="box"];2207[label="xuu114",fontsize=16,color="green",shape="box"];2208[label="xuu117",fontsize=16,color="green",shape="box"];2209[label="xuu114",fontsize=16,color="green",shape="box"];2210[label="xuu117",fontsize=16,color="green",shape="box"];2211[label="xuu114",fontsize=16,color="green",shape="box"];2212[label="xuu117",fontsize=16,color="green",shape="box"];2213[label="xuu114",fontsize=16,color="green",shape="box"];2214[label="xuu117",fontsize=16,color="green",shape="box"];2215[label="xuu114",fontsize=16,color="green",shape="box"];2216[label="xuu117",fontsize=16,color="green",shape="box"];2217[label="xuu114",fontsize=16,color="green",shape="box"];2218[label="xuu117",fontsize=16,color="green",shape="box"];2219[label="xuu114",fontsize=16,color="green",shape="box"];2220 -> 574[label="",style="dashed", color="red", weight=0]; 2220[label="xuu114 == xuu117",fontsize=16,color="magenta"];2220 -> 2477[label="",style="dashed", color="magenta", weight=3]; 2220 -> 2478[label="",style="dashed", color="magenta", weight=3]; 2221 -> 567[label="",style="dashed", color="red", weight=0]; 2221[label="xuu114 == xuu117",fontsize=16,color="magenta"];2221 -> 2479[label="",style="dashed", color="magenta", weight=3]; 2221 -> 2480[label="",style="dashed", color="magenta", weight=3]; 2222 -> 568[label="",style="dashed", color="red", weight=0]; 2222[label="xuu114 == xuu117",fontsize=16,color="magenta"];2222 -> 2481[label="",style="dashed", color="magenta", weight=3]; 2222 -> 2482[label="",style="dashed", color="magenta", weight=3]; 2223 -> 566[label="",style="dashed", color="red", weight=0]; 2223[label="xuu114 == xuu117",fontsize=16,color="magenta"];2223 -> 2483[label="",style="dashed", color="magenta", weight=3]; 2223 -> 2484[label="",style="dashed", color="magenta", weight=3]; 2224 -> 575[label="",style="dashed", color="red", weight=0]; 2224[label="xuu114 == xuu117",fontsize=16,color="magenta"];2224 -> 2485[label="",style="dashed", color="magenta", weight=3]; 2224 -> 2486[label="",style="dashed", color="magenta", weight=3]; 2225 -> 565[label="",style="dashed", color="red", weight=0]; 2225[label="xuu114 == xuu117",fontsize=16,color="magenta"];2225 -> 2487[label="",style="dashed", color="magenta", weight=3]; 2225 -> 2488[label="",style="dashed", color="magenta", weight=3]; 2226 -> 572[label="",style="dashed", color="red", weight=0]; 2226[label="xuu114 == xuu117",fontsize=16,color="magenta"];2226 -> 2489[label="",style="dashed", color="magenta", weight=3]; 2226 -> 2490[label="",style="dashed", color="magenta", weight=3]; 2227 -> 571[label="",style="dashed", color="red", weight=0]; 2227[label="xuu114 == xuu117",fontsize=16,color="magenta"];2227 -> 2491[label="",style="dashed", color="magenta", weight=3]; 2227 -> 2492[label="",style="dashed", color="magenta", weight=3]; 2228 -> 576[label="",style="dashed", color="red", weight=0]; 2228[label="xuu114 == xuu117",fontsize=16,color="magenta"];2228 -> 2493[label="",style="dashed", color="magenta", weight=3]; 2228 -> 2494[label="",style="dashed", color="magenta", weight=3]; 2229 -> 577[label="",style="dashed", color="red", weight=0]; 2229[label="xuu114 == xuu117",fontsize=16,color="magenta"];2229 -> 2495[label="",style="dashed", color="magenta", weight=3]; 2229 -> 2496[label="",style="dashed", color="magenta", weight=3]; 2230 -> 573[label="",style="dashed", color="red", weight=0]; 2230[label="xuu114 == xuu117",fontsize=16,color="magenta"];2230 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2230 -> 2498[label="",style="dashed", color="magenta", weight=3]; 2231 -> 569[label="",style="dashed", color="red", weight=0]; 2231[label="xuu114 == xuu117",fontsize=16,color="magenta"];2231 -> 2499[label="",style="dashed", color="magenta", weight=3]; 2231 -> 2500[label="",style="dashed", color="magenta", weight=3]; 2232 -> 570[label="",style="dashed", color="red", weight=0]; 2232[label="xuu114 == xuu117",fontsize=16,color="magenta"];2232 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2232 -> 2502[label="",style="dashed", color="magenta", weight=3]; 2233 -> 564[label="",style="dashed", color="red", weight=0]; 2233[label="xuu114 == xuu117",fontsize=16,color="magenta"];2233 -> 2503[label="",style="dashed", color="magenta", weight=3]; 2233 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2234 -> 1503[label="",style="dashed", color="red", weight=0]; 2234[label="xuu115 <= xuu118",fontsize=16,color="magenta"];2234 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2234 -> 2506[label="",style="dashed", color="magenta", weight=3]; 2235 -> 1504[label="",style="dashed", color="red", weight=0]; 2235[label="xuu115 <= xuu118",fontsize=16,color="magenta"];2235 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2235 -> 2508[label="",style="dashed", color="magenta", weight=3]; 2236 -> 1505[label="",style="dashed", color="red", weight=0]; 2236[label="xuu115 <= xuu118",fontsize=16,color="magenta"];2236 -> 2509[label="",style="dashed", color="magenta", weight=3]; 2236 -> 2510[label="",style="dashed", color="magenta", weight=3]; 2237 -> 1506[label="",style="dashed", color="red", weight=0]; 2237[label="xuu115 <= xuu118",fontsize=16,color="magenta"];2237 -> 2511[label="",style="dashed", color="magenta", weight=3]; 2237 -> 2512[label="",style="dashed", color="magenta", weight=3]; 2238 -> 1507[label="",style="dashed", color="red", weight=0]; 2238[label="xuu115 <= xuu118",fontsize=16,color="magenta"];2238 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2238 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2239 -> 1508[label="",style="dashed", color="red", weight=0]; 2239[label="xuu115 <= xuu118",fontsize=16,color="magenta"];2239 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2239 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2240 -> 1509[label="",style="dashed", color="red", weight=0]; 2240[label="xuu115 <= xuu118",fontsize=16,color="magenta"];2240 -> 2517[label="",style="dashed", color="magenta", weight=3]; 2240 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2241 -> 1510[label="",style="dashed", color="red", weight=0]; 2241[label="xuu115 <= xuu118",fontsize=16,color="magenta"];2241 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2241 -> 2520[label="",style="dashed", color="magenta", weight=3]; 2242 -> 1511[label="",style="dashed", color="red", weight=0]; 2242[label="xuu115 <= xuu118",fontsize=16,color="magenta"];2242 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2242 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2243 -> 1512[label="",style="dashed", color="red", weight=0]; 2243[label="xuu115 <= xuu118",fontsize=16,color="magenta"];2243 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2243 -> 2524[label="",style="dashed", color="magenta", weight=3]; 2244 -> 1513[label="",style="dashed", color="red", weight=0]; 2244[label="xuu115 <= xuu118",fontsize=16,color="magenta"];2244 -> 2525[label="",style="dashed", color="magenta", weight=3]; 2244 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2245 -> 1514[label="",style="dashed", color="red", weight=0]; 2245[label="xuu115 <= xuu118",fontsize=16,color="magenta"];2245 -> 2527[label="",style="dashed", color="magenta", weight=3]; 2245 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2246 -> 1515[label="",style="dashed", color="red", weight=0]; 2246[label="xuu115 <= xuu118",fontsize=16,color="magenta"];2246 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2246 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2247 -> 1516[label="",style="dashed", color="red", weight=0]; 2247[label="xuu115 <= xuu118",fontsize=16,color="magenta"];2247 -> 2531[label="",style="dashed", color="magenta", weight=3]; 2247 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2248[label="xuu215",fontsize=16,color="green",shape="box"];2249[label="True",fontsize=16,color="green",shape="box"];2250[label="compare0 (xuu185,xuu186,xuu187) (xuu188,xuu189,xuu190) otherwise",fontsize=16,color="black",shape="box"];2250 -> 2533[label="",style="solid", color="black", weight=3]; 2251[label="LT",fontsize=16,color="green",shape="box"];2252 -> 1256[label="",style="dashed", color="red", weight=0]; 2252[label="primMulNat xuu40000 (Succ xuu500100)",fontsize=16,color="magenta"];2252 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2252 -> 2535[label="",style="dashed", color="magenta", weight=3]; 2253[label="Succ xuu500100",fontsize=16,color="green",shape="box"];2254[label="xuu4000",fontsize=16,color="green",shape="box"];2255[label="xuu50000",fontsize=16,color="green",shape="box"];2256[label="xuu4000",fontsize=16,color="green",shape="box"];2257[label="xuu50000",fontsize=16,color="green",shape="box"];2258[label="xuu4001",fontsize=16,color="green",shape="box"];2259[label="xuu50001",fontsize=16,color="green",shape="box"];2260[label="xuu4001",fontsize=16,color="green",shape="box"];2261[label="xuu50001",fontsize=16,color="green",shape="box"];2262[label="xuu4000",fontsize=16,color="green",shape="box"];2263[label="xuu50000",fontsize=16,color="green",shape="box"];2264[label="xuu4000",fontsize=16,color="green",shape="box"];2265[label="xuu50000",fontsize=16,color="green",shape="box"];2266[label="xuu4000",fontsize=16,color="green",shape="box"];2267[label="xuu50000",fontsize=16,color="green",shape="box"];2268[label="xuu4000",fontsize=16,color="green",shape="box"];2269[label="xuu50000",fontsize=16,color="green",shape="box"];2270[label="xuu4000",fontsize=16,color="green",shape="box"];2271[label="xuu50000",fontsize=16,color="green",shape="box"];2272[label="xuu4000",fontsize=16,color="green",shape="box"];2273[label="xuu50000",fontsize=16,color="green",shape="box"];2274[label="xuu4000",fontsize=16,color="green",shape="box"];2275[label="xuu50000",fontsize=16,color="green",shape="box"];2276[label="xuu4000",fontsize=16,color="green",shape="box"];2277[label="xuu50000",fontsize=16,color="green",shape="box"];2278[label="xuu4000",fontsize=16,color="green",shape="box"];2279[label="xuu50000",fontsize=16,color="green",shape="box"];2280[label="xuu4000",fontsize=16,color="green",shape="box"];2281[label="xuu50000",fontsize=16,color="green",shape="box"];2282[label="xuu4000",fontsize=16,color="green",shape="box"];2283[label="xuu50000",fontsize=16,color="green",shape="box"];2284[label="xuu4000",fontsize=16,color="green",shape="box"];2285[label="xuu50000",fontsize=16,color="green",shape="box"];2286[label="xuu4000",fontsize=16,color="green",shape="box"];2287[label="xuu50000",fontsize=16,color="green",shape="box"];2288[label="xuu4000",fontsize=16,color="green",shape="box"];2289[label="xuu50000",fontsize=16,color="green",shape="box"];2290 -> 564[label="",style="dashed", color="red", weight=0]; 2290[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2290 -> 2536[label="",style="dashed", color="magenta", weight=3]; 2290 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2291 -> 565[label="",style="dashed", color="red", weight=0]; 2291[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2291 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2291 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2292 -> 566[label="",style="dashed", color="red", weight=0]; 2292[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2292 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2292 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2293 -> 567[label="",style="dashed", color="red", weight=0]; 2293[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2293 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2293 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2294 -> 568[label="",style="dashed", color="red", weight=0]; 2294[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2294 -> 2544[label="",style="dashed", color="magenta", weight=3]; 2294 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2295 -> 569[label="",style="dashed", color="red", weight=0]; 2295[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2295 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2295 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2296 -> 570[label="",style="dashed", color="red", weight=0]; 2296[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2296 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2296 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2297 -> 571[label="",style="dashed", color="red", weight=0]; 2297[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2297 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2297 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2298 -> 572[label="",style="dashed", color="red", weight=0]; 2298[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2298 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2298 -> 2553[label="",style="dashed", color="magenta", weight=3]; 2299 -> 573[label="",style="dashed", color="red", weight=0]; 2299[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2299 -> 2554[label="",style="dashed", color="magenta", weight=3]; 2299 -> 2555[label="",style="dashed", color="magenta", weight=3]; 2300 -> 574[label="",style="dashed", color="red", weight=0]; 2300[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2300 -> 2556[label="",style="dashed", color="magenta", weight=3]; 2300 -> 2557[label="",style="dashed", color="magenta", weight=3]; 2301 -> 575[label="",style="dashed", color="red", weight=0]; 2301[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2301 -> 2558[label="",style="dashed", color="magenta", weight=3]; 2301 -> 2559[label="",style="dashed", color="magenta", weight=3]; 2302 -> 576[label="",style="dashed", color="red", weight=0]; 2302[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2302 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2302 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2303 -> 577[label="",style="dashed", color="red", weight=0]; 2303[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];2303 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2303 -> 2563[label="",style="dashed", color="magenta", weight=3]; 2304 -> 564[label="",style="dashed", color="red", weight=0]; 2304[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2304 -> 2564[label="",style="dashed", color="magenta", weight=3]; 2304 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2305 -> 565[label="",style="dashed", color="red", weight=0]; 2305[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2305 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2305 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2306 -> 566[label="",style="dashed", color="red", weight=0]; 2306[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2306 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2306 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2307 -> 567[label="",style="dashed", color="red", weight=0]; 2307[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2307 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2307 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2308 -> 568[label="",style="dashed", color="red", weight=0]; 2308[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2308 -> 2572[label="",style="dashed", color="magenta", weight=3]; 2308 -> 2573[label="",style="dashed", color="magenta", weight=3]; 2309 -> 569[label="",style="dashed", color="red", weight=0]; 2309[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2309 -> 2574[label="",style="dashed", color="magenta", weight=3]; 2309 -> 2575[label="",style="dashed", color="magenta", weight=3]; 2310 -> 570[label="",style="dashed", color="red", weight=0]; 2310[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2310 -> 2576[label="",style="dashed", color="magenta", weight=3]; 2310 -> 2577[label="",style="dashed", color="magenta", weight=3]; 2311 -> 571[label="",style="dashed", color="red", weight=0]; 2311[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2311 -> 2578[label="",style="dashed", color="magenta", weight=3]; 2311 -> 2579[label="",style="dashed", color="magenta", weight=3]; 2312 -> 572[label="",style="dashed", color="red", weight=0]; 2312[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2312 -> 2580[label="",style="dashed", color="magenta", weight=3]; 2312 -> 2581[label="",style="dashed", color="magenta", weight=3]; 2313 -> 573[label="",style="dashed", color="red", weight=0]; 2313[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2313 -> 2582[label="",style="dashed", color="magenta", weight=3]; 2313 -> 2583[label="",style="dashed", color="magenta", weight=3]; 2314 -> 574[label="",style="dashed", color="red", weight=0]; 2314[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2314 -> 2584[label="",style="dashed", color="magenta", weight=3]; 2314 -> 2585[label="",style="dashed", color="magenta", weight=3]; 2315 -> 575[label="",style="dashed", color="red", weight=0]; 2315[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2315 -> 2586[label="",style="dashed", color="magenta", weight=3]; 2315 -> 2587[label="",style="dashed", color="magenta", weight=3]; 2316 -> 576[label="",style="dashed", color="red", weight=0]; 2316[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2316 -> 2588[label="",style="dashed", color="magenta", weight=3]; 2316 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2317 -> 577[label="",style="dashed", color="red", weight=0]; 2317[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];2317 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2317 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2318 -> 1675[label="",style="dashed", color="red", weight=0]; 2318[label="primEqNat xuu500000 xuu40000",fontsize=16,color="magenta"];2318 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2318 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2319[label="False",fontsize=16,color="green",shape="box"];2320[label="False",fontsize=16,color="green",shape="box"];2321[label="True",fontsize=16,color="green",shape="box"];2322[label="False",fontsize=16,color="green",shape="box"];2323[label="True",fontsize=16,color="green",shape="box"];2324 -> 1675[label="",style="dashed", color="red", weight=0]; 2324[label="primEqNat xuu500000 xuu40000",fontsize=16,color="magenta"];2324 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2324 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2325[label="False",fontsize=16,color="green",shape="box"];2326[label="False",fontsize=16,color="green",shape="box"];2327[label="True",fontsize=16,color="green",shape="box"];2328[label="False",fontsize=16,color="green",shape="box"];2329[label="True",fontsize=16,color="green",shape="box"];2330[label="xuu4000",fontsize=16,color="green",shape="box"];2331[label="xuu50000",fontsize=16,color="green",shape="box"];2332[label="xuu4000",fontsize=16,color="green",shape="box"];2333[label="xuu50000",fontsize=16,color="green",shape="box"];2334[label="xuu4000",fontsize=16,color="green",shape="box"];2335[label="xuu50000",fontsize=16,color="green",shape="box"];2336[label="xuu4000",fontsize=16,color="green",shape="box"];2337[label="xuu50000",fontsize=16,color="green",shape="box"];2338[label="xuu4000",fontsize=16,color="green",shape="box"];2339[label="xuu50000",fontsize=16,color="green",shape="box"];2340[label="xuu4000",fontsize=16,color="green",shape="box"];2341[label="xuu50000",fontsize=16,color="green",shape="box"];2342[label="xuu4000",fontsize=16,color="green",shape="box"];2343[label="xuu50000",fontsize=16,color="green",shape="box"];2344[label="xuu4000",fontsize=16,color="green",shape="box"];2345[label="xuu50000",fontsize=16,color="green",shape="box"];2346[label="xuu4000",fontsize=16,color="green",shape="box"];2347[label="xuu50000",fontsize=16,color="green",shape="box"];2348[label="xuu4000",fontsize=16,color="green",shape="box"];2349[label="xuu50000",fontsize=16,color="green",shape="box"];2350[label="xuu4000",fontsize=16,color="green",shape="box"];2351[label="xuu50000",fontsize=16,color="green",shape="box"];2352[label="xuu4000",fontsize=16,color="green",shape="box"];2353[label="xuu50000",fontsize=16,color="green",shape="box"];2354[label="xuu4000",fontsize=16,color="green",shape="box"];2355[label="xuu50000",fontsize=16,color="green",shape="box"];2356[label="xuu4000",fontsize=16,color="green",shape="box"];2357[label="xuu50000",fontsize=16,color="green",shape="box"];2358[label="xuu4001",fontsize=16,color="green",shape="box"];2359[label="xuu50001",fontsize=16,color="green",shape="box"];2360[label="xuu4001",fontsize=16,color="green",shape="box"];2361[label="xuu50001",fontsize=16,color="green",shape="box"];2362[label="xuu4001",fontsize=16,color="green",shape="box"];2363[label="xuu50001",fontsize=16,color="green",shape="box"];2364[label="xuu4001",fontsize=16,color="green",shape="box"];2365[label="xuu50001",fontsize=16,color="green",shape="box"];2366[label="xuu4001",fontsize=16,color="green",shape="box"];2367[label="xuu50001",fontsize=16,color="green",shape="box"];2368[label="xuu4001",fontsize=16,color="green",shape="box"];2369[label="xuu50001",fontsize=16,color="green",shape="box"];2370[label="xuu4001",fontsize=16,color="green",shape="box"];2371[label="xuu50001",fontsize=16,color="green",shape="box"];2372[label="xuu4001",fontsize=16,color="green",shape="box"];2373[label="xuu50001",fontsize=16,color="green",shape="box"];2374[label="xuu4001",fontsize=16,color="green",shape="box"];2375[label="xuu50001",fontsize=16,color="green",shape="box"];2376[label="xuu4001",fontsize=16,color="green",shape="box"];2377[label="xuu50001",fontsize=16,color="green",shape="box"];2378[label="xuu4001",fontsize=16,color="green",shape="box"];2379[label="xuu50001",fontsize=16,color="green",shape="box"];2380[label="xuu4001",fontsize=16,color="green",shape="box"];2381[label="xuu50001",fontsize=16,color="green",shape="box"];2382[label="xuu4001",fontsize=16,color="green",shape="box"];2383[label="xuu50001",fontsize=16,color="green",shape="box"];2384[label="xuu4001",fontsize=16,color="green",shape="box"];2385[label="xuu50001",fontsize=16,color="green",shape="box"];2386[label="xuu4000",fontsize=16,color="green",shape="box"];2387[label="xuu50001",fontsize=16,color="green",shape="box"];2388[label="xuu4001",fontsize=16,color="green",shape="box"];2389[label="xuu50000",fontsize=16,color="green",shape="box"];2390[label="xuu4000",fontsize=16,color="green",shape="box"];2391[label="xuu50000",fontsize=16,color="green",shape="box"];2392[label="xuu4000",fontsize=16,color="green",shape="box"];2393[label="xuu50000",fontsize=16,color="green",shape="box"];2394[label="xuu4000",fontsize=16,color="green",shape="box"];2395[label="xuu50000",fontsize=16,color="green",shape="box"];2396[label="xuu4000",fontsize=16,color="green",shape="box"];2397[label="xuu50000",fontsize=16,color="green",shape="box"];2398[label="xuu4000",fontsize=16,color="green",shape="box"];2399[label="xuu50000",fontsize=16,color="green",shape="box"];2400[label="xuu4000",fontsize=16,color="green",shape="box"];2401[label="xuu50000",fontsize=16,color="green",shape="box"];2402[label="xuu4000",fontsize=16,color="green",shape="box"];2403[label="xuu50000",fontsize=16,color="green",shape="box"];2404[label="xuu4000",fontsize=16,color="green",shape="box"];2405[label="xuu50000",fontsize=16,color="green",shape="box"];2406[label="xuu4000",fontsize=16,color="green",shape="box"];2407[label="xuu50000",fontsize=16,color="green",shape="box"];2408[label="xuu4000",fontsize=16,color="green",shape="box"];2409[label="xuu50000",fontsize=16,color="green",shape="box"];2410[label="xuu4000",fontsize=16,color="green",shape="box"];2411[label="xuu50000",fontsize=16,color="green",shape="box"];2412[label="xuu4000",fontsize=16,color="green",shape="box"];2413[label="xuu50000",fontsize=16,color="green",shape="box"];2414[label="xuu4000",fontsize=16,color="green",shape="box"];2415[label="xuu50000",fontsize=16,color="green",shape="box"];2416[label="xuu4000",fontsize=16,color="green",shape="box"];2417[label="xuu50000",fontsize=16,color="green",shape="box"];2418[label="xuu4000",fontsize=16,color="green",shape="box"];2419[label="xuu50001",fontsize=16,color="green",shape="box"];2420[label="xuu4001",fontsize=16,color="green",shape="box"];2421[label="xuu50000",fontsize=16,color="green",shape="box"];2422[label="primEqNat (Succ xuu500000) (Succ xuu40000)",fontsize=16,color="black",shape="box"];2422 -> 2596[label="",style="solid", color="black", weight=3]; 2423[label="primEqNat (Succ xuu500000) Zero",fontsize=16,color="black",shape="box"];2423 -> 2597[label="",style="solid", color="black", weight=3]; 2424[label="primEqNat Zero (Succ xuu40000)",fontsize=16,color="black",shape="box"];2424 -> 2598[label="",style="solid", color="black", weight=3]; 2425[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2425 -> 2599[label="",style="solid", color="black", weight=3]; 2426[label="xuu76",fontsize=16,color="green",shape="box"];2427[label="xuu75",fontsize=16,color="green",shape="box"];2428 -> 2600[label="",style="dashed", color="red", weight=0]; 2428[label="not (xuu216 == GT)",fontsize=16,color="magenta"];2428 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2429[label="xuu76",fontsize=16,color="green",shape="box"];2430[label="xuu75",fontsize=16,color="green",shape="box"];2431[label="xuu76",fontsize=16,color="green",shape="box"];2432[label="xuu75",fontsize=16,color="green",shape="box"];2443 -> 1885[label="",style="dashed", color="red", weight=0]; 2443[label="xuu750 < xuu760 || xuu750 == xuu760 && (xuu751 < xuu761 || xuu751 == xuu761 && xuu752 <= xuu762)",fontsize=16,color="magenta"];2443 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2443 -> 2603[label="",style="dashed", color="magenta", weight=3]; 2433[label="xuu76",fontsize=16,color="green",shape="box"];2434[label="xuu75",fontsize=16,color="green",shape="box"];2435[label="xuu76",fontsize=16,color="green",shape="box"];2436[label="xuu75",fontsize=16,color="green",shape="box"];2437[label="xuu76",fontsize=16,color="green",shape="box"];2438[label="xuu75",fontsize=16,color="green",shape="box"];2444[label="True",fontsize=16,color="green",shape="box"];2445[label="True",fontsize=16,color="green",shape="box"];2446[label="False",fontsize=16,color="green",shape="box"];2447[label="True",fontsize=16,color="green",shape="box"];2439[label="xuu76",fontsize=16,color="green",shape="box"];2440[label="xuu75",fontsize=16,color="green",shape="box"];2448[label="xuu750 <= xuu760",fontsize=16,color="blue",shape="box"];3952[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2448 -> 3952[label="",style="solid", color="blue", weight=9]; 3952 -> 2604[label="",style="solid", color="blue", weight=3]; 3953[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2448 -> 3953[label="",style="solid", color="blue", weight=9]; 3953 -> 2605[label="",style="solid", color="blue", weight=3]; 3954[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2448 -> 3954[label="",style="solid", color="blue", weight=9]; 3954 -> 2606[label="",style="solid", color="blue", weight=3]; 3955[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2448 -> 3955[label="",style="solid", color="blue", weight=9]; 3955 -> 2607[label="",style="solid", color="blue", weight=3]; 3956[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2448 -> 3956[label="",style="solid", color="blue", weight=9]; 3956 -> 2608[label="",style="solid", color="blue", weight=3]; 3957[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2448 -> 3957[label="",style="solid", color="blue", weight=9]; 3957 -> 2609[label="",style="solid", color="blue", weight=3]; 3958[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2448 -> 3958[label="",style="solid", color="blue", weight=9]; 3958 -> 2610[label="",style="solid", color="blue", weight=3]; 3959[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2448 -> 3959[label="",style="solid", color="blue", weight=9]; 3959 -> 2611[label="",style="solid", color="blue", weight=3]; 3960[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2448 -> 3960[label="",style="solid", color="blue", weight=9]; 3960 -> 2612[label="",style="solid", color="blue", weight=3]; 3961[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2448 -> 3961[label="",style="solid", color="blue", weight=9]; 3961 -> 2613[label="",style="solid", color="blue", weight=3]; 3962[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2448 -> 3962[label="",style="solid", color="blue", weight=9]; 3962 -> 2614[label="",style="solid", color="blue", weight=3]; 3963[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2448 -> 3963[label="",style="solid", color="blue", weight=9]; 3963 -> 2615[label="",style="solid", color="blue", weight=3]; 3964[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2448 -> 3964[label="",style="solid", color="blue", weight=9]; 3964 -> 2616[label="",style="solid", color="blue", weight=3]; 3965[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2448 -> 3965[label="",style="solid", color="blue", weight=9]; 3965 -> 2617[label="",style="solid", color="blue", weight=3]; 2449[label="True",fontsize=16,color="green",shape="box"];2450[label="False",fontsize=16,color="green",shape="box"];2451[label="xuu750 <= xuu760",fontsize=16,color="blue",shape="box"];3966[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 3966[label="",style="solid", color="blue", weight=9]; 3966 -> 2618[label="",style="solid", color="blue", weight=3]; 3967[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 3967[label="",style="solid", color="blue", weight=9]; 3967 -> 2619[label="",style="solid", color="blue", weight=3]; 3968[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 3968[label="",style="solid", color="blue", weight=9]; 3968 -> 2620[label="",style="solid", color="blue", weight=3]; 3969[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 3969[label="",style="solid", color="blue", weight=9]; 3969 -> 2621[label="",style="solid", color="blue", weight=3]; 3970[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 3970[label="",style="solid", color="blue", weight=9]; 3970 -> 2622[label="",style="solid", color="blue", weight=3]; 3971[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 3971[label="",style="solid", color="blue", weight=9]; 3971 -> 2623[label="",style="solid", color="blue", weight=3]; 3972[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 3972[label="",style="solid", color="blue", weight=9]; 3972 -> 2624[label="",style="solid", color="blue", weight=3]; 3973[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 3973[label="",style="solid", color="blue", weight=9]; 3973 -> 2625[label="",style="solid", color="blue", weight=3]; 3974[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 3974[label="",style="solid", color="blue", weight=9]; 3974 -> 2626[label="",style="solid", color="blue", weight=3]; 3975[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 3975[label="",style="solid", color="blue", weight=9]; 3975 -> 2627[label="",style="solid", color="blue", weight=3]; 3976[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 3976[label="",style="solid", color="blue", weight=9]; 3976 -> 2628[label="",style="solid", color="blue", weight=3]; 3977[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 3977[label="",style="solid", color="blue", weight=9]; 3977 -> 2629[label="",style="solid", color="blue", weight=3]; 3978[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 3978[label="",style="solid", color="blue", weight=9]; 3978 -> 2630[label="",style="solid", color="blue", weight=3]; 3979[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2451 -> 3979[label="",style="solid", color="blue", weight=9]; 3979 -> 2631[label="",style="solid", color="blue", weight=3]; 2452[label="True",fontsize=16,color="green",shape="box"];2453[label="True",fontsize=16,color="green",shape="box"];2454[label="False",fontsize=16,color="green",shape="box"];2455[label="xuu750 <= xuu760",fontsize=16,color="blue",shape="box"];3980[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3980[label="",style="solid", color="blue", weight=9]; 3980 -> 2632[label="",style="solid", color="blue", weight=3]; 3981[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3981[label="",style="solid", color="blue", weight=9]; 3981 -> 2633[label="",style="solid", color="blue", weight=3]; 3982[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3982[label="",style="solid", color="blue", weight=9]; 3982 -> 2634[label="",style="solid", color="blue", weight=3]; 3983[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3983[label="",style="solid", color="blue", weight=9]; 3983 -> 2635[label="",style="solid", color="blue", weight=3]; 3984[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3984[label="",style="solid", color="blue", weight=9]; 3984 -> 2636[label="",style="solid", color="blue", weight=3]; 3985[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3985[label="",style="solid", color="blue", weight=9]; 3985 -> 2637[label="",style="solid", color="blue", weight=3]; 3986[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3986[label="",style="solid", color="blue", weight=9]; 3986 -> 2638[label="",style="solid", color="blue", weight=3]; 3987[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3987[label="",style="solid", color="blue", weight=9]; 3987 -> 2639[label="",style="solid", color="blue", weight=3]; 3988[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3988[label="",style="solid", color="blue", weight=9]; 3988 -> 2640[label="",style="solid", color="blue", weight=3]; 3989[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3989[label="",style="solid", color="blue", weight=9]; 3989 -> 2641[label="",style="solid", color="blue", weight=3]; 3990[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3990[label="",style="solid", color="blue", weight=9]; 3990 -> 2642[label="",style="solid", color="blue", weight=3]; 3991[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3991[label="",style="solid", color="blue", weight=9]; 3991 -> 2643[label="",style="solid", color="blue", weight=3]; 3992[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3992[label="",style="solid", color="blue", weight=9]; 3992 -> 2644[label="",style="solid", color="blue", weight=3]; 3993[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3993[label="",style="solid", color="blue", weight=9]; 3993 -> 2645[label="",style="solid", color="blue", weight=3]; 2441[label="xuu76",fontsize=16,color="green",shape="box"];2442[label="xuu75",fontsize=16,color="green",shape="box"];2456 -> 1885[label="",style="dashed", color="red", weight=0]; 2456[label="xuu750 < xuu760 || xuu750 == xuu760 && xuu751 <= xuu761",fontsize=16,color="magenta"];2456 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2456 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2457[label="True",fontsize=16,color="green",shape="box"];2458[label="True",fontsize=16,color="green",shape="box"];2459[label="True",fontsize=16,color="green",shape="box"];2460[label="False",fontsize=16,color="green",shape="box"];2461[label="True",fontsize=16,color="green",shape="box"];2462[label="True",fontsize=16,color="green",shape="box"];2463[label="False",fontsize=16,color="green",shape="box"];2464[label="False",fontsize=16,color="green",shape="box"];2465[label="True",fontsize=16,color="green",shape="box"];2466[label="compare0 (xuu200,xuu201) (xuu202,xuu203) otherwise",fontsize=16,color="black",shape="box"];2466 -> 2648[label="",style="solid", color="black", weight=3]; 2467[label="LT",fontsize=16,color="green",shape="box"];2468 -> 1447[label="",style="dashed", color="red", weight=0]; 2468[label="primPlusNat xuu44200 xuu13900",fontsize=16,color="magenta"];2468 -> 2649[label="",style="dashed", color="magenta", weight=3]; 2468 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2469 -> 542[label="",style="dashed", color="red", weight=0]; 2469[label="FiniteMap.mkBranchResult xuu17 xuu18 xuu44 xuu21",fontsize=16,color="magenta"];2470 -> 2651[label="",style="dashed", color="red", weight=0]; 2470[label="FiniteMap.mkBalBranch6MkBalBranch11 xuu17 xuu18 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 xuu440 xuu441 xuu442 xuu443 xuu444 (FiniteMap.sizeFM xuu444 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu443)",fontsize=16,color="magenta"];2470 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2471 -> 914[label="",style="dashed", color="red", weight=0]; 2471[label="FiniteMap.sizeFM xuu214",fontsize=16,color="magenta"];2471 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2472[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2473[label="xuu213",fontsize=16,color="green",shape="box"];2474[label="FiniteMap.mkBalBranch6MkBalBranch00 xuu17 xuu18 xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 otherwise",fontsize=16,color="black",shape="box"];2474 -> 2654[label="",style="solid", color="black", weight=3]; 2475[label="FiniteMap.mkBalBranch6Single_L xuu17 xuu18 xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="black",shape="box"];2475 -> 2655[label="",style="solid", color="black", weight=3]; 2476 -> 914[label="",style="dashed", color="red", weight=0]; 2476[label="FiniteMap.sizeFM xuu44",fontsize=16,color="magenta"];2476 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2477[label="xuu117",fontsize=16,color="green",shape="box"];2478[label="xuu114",fontsize=16,color="green",shape="box"];2479[label="xuu117",fontsize=16,color="green",shape="box"];2480[label="xuu114",fontsize=16,color="green",shape="box"];2481[label="xuu117",fontsize=16,color="green",shape="box"];2482[label="xuu114",fontsize=16,color="green",shape="box"];2483[label="xuu117",fontsize=16,color="green",shape="box"];2484[label="xuu114",fontsize=16,color="green",shape="box"];2485[label="xuu117",fontsize=16,color="green",shape="box"];2486[label="xuu114",fontsize=16,color="green",shape="box"];2487[label="xuu117",fontsize=16,color="green",shape="box"];2488[label="xuu114",fontsize=16,color="green",shape="box"];2489[label="xuu117",fontsize=16,color="green",shape="box"];2490[label="xuu114",fontsize=16,color="green",shape="box"];2491[label="xuu117",fontsize=16,color="green",shape="box"];2492[label="xuu114",fontsize=16,color="green",shape="box"];2493[label="xuu117",fontsize=16,color="green",shape="box"];2494[label="xuu114",fontsize=16,color="green",shape="box"];2495[label="xuu117",fontsize=16,color="green",shape="box"];2496[label="xuu114",fontsize=16,color="green",shape="box"];2497[label="xuu117",fontsize=16,color="green",shape="box"];2498[label="xuu114",fontsize=16,color="green",shape="box"];2499[label="xuu117",fontsize=16,color="green",shape="box"];2500[label="xuu114",fontsize=16,color="green",shape="box"];2501[label="xuu117",fontsize=16,color="green",shape="box"];2502[label="xuu114",fontsize=16,color="green",shape="box"];2503[label="xuu117",fontsize=16,color="green",shape="box"];2504[label="xuu114",fontsize=16,color="green",shape="box"];2505[label="xuu115",fontsize=16,color="green",shape="box"];2506[label="xuu118",fontsize=16,color="green",shape="box"];2507[label="xuu115",fontsize=16,color="green",shape="box"];2508[label="xuu118",fontsize=16,color="green",shape="box"];2509[label="xuu115",fontsize=16,color="green",shape="box"];2510[label="xuu118",fontsize=16,color="green",shape="box"];2511[label="xuu115",fontsize=16,color="green",shape="box"];2512[label="xuu118",fontsize=16,color="green",shape="box"];2513[label="xuu115",fontsize=16,color="green",shape="box"];2514[label="xuu118",fontsize=16,color="green",shape="box"];2515[label="xuu115",fontsize=16,color="green",shape="box"];2516[label="xuu118",fontsize=16,color="green",shape="box"];2517[label="xuu115",fontsize=16,color="green",shape="box"];2518[label="xuu118",fontsize=16,color="green",shape="box"];2519[label="xuu115",fontsize=16,color="green",shape="box"];2520[label="xuu118",fontsize=16,color="green",shape="box"];2521[label="xuu115",fontsize=16,color="green",shape="box"];2522[label="xuu118",fontsize=16,color="green",shape="box"];2523[label="xuu115",fontsize=16,color="green",shape="box"];2524[label="xuu118",fontsize=16,color="green",shape="box"];2525[label="xuu115",fontsize=16,color="green",shape="box"];2526[label="xuu118",fontsize=16,color="green",shape="box"];2527[label="xuu115",fontsize=16,color="green",shape="box"];2528[label="xuu118",fontsize=16,color="green",shape="box"];2529[label="xuu115",fontsize=16,color="green",shape="box"];2530[label="xuu118",fontsize=16,color="green",shape="box"];2531[label="xuu115",fontsize=16,color="green",shape="box"];2532[label="xuu118",fontsize=16,color="green",shape="box"];2533[label="compare0 (xuu185,xuu186,xuu187) (xuu188,xuu189,xuu190) True",fontsize=16,color="black",shape="box"];2533 -> 2657[label="",style="solid", color="black", weight=3]; 2534[label="Succ xuu500100",fontsize=16,color="green",shape="box"];2535[label="xuu40000",fontsize=16,color="green",shape="box"];2536[label="xuu4001",fontsize=16,color="green",shape="box"];2537[label="xuu50001",fontsize=16,color="green",shape="box"];2538[label="xuu4001",fontsize=16,color="green",shape="box"];2539[label="xuu50001",fontsize=16,color="green",shape="box"];2540[label="xuu4001",fontsize=16,color="green",shape="box"];2541[label="xuu50001",fontsize=16,color="green",shape="box"];2542[label="xuu4001",fontsize=16,color="green",shape="box"];2543[label="xuu50001",fontsize=16,color="green",shape="box"];2544[label="xuu4001",fontsize=16,color="green",shape="box"];2545[label="xuu50001",fontsize=16,color="green",shape="box"];2546[label="xuu4001",fontsize=16,color="green",shape="box"];2547[label="xuu50001",fontsize=16,color="green",shape="box"];2548[label="xuu4001",fontsize=16,color="green",shape="box"];2549[label="xuu50001",fontsize=16,color="green",shape="box"];2550[label="xuu4001",fontsize=16,color="green",shape="box"];2551[label="xuu50001",fontsize=16,color="green",shape="box"];2552[label="xuu4001",fontsize=16,color="green",shape="box"];2553[label="xuu50001",fontsize=16,color="green",shape="box"];2554[label="xuu4001",fontsize=16,color="green",shape="box"];2555[label="xuu50001",fontsize=16,color="green",shape="box"];2556[label="xuu4001",fontsize=16,color="green",shape="box"];2557[label="xuu50001",fontsize=16,color="green",shape="box"];2558[label="xuu4001",fontsize=16,color="green",shape="box"];2559[label="xuu50001",fontsize=16,color="green",shape="box"];2560[label="xuu4001",fontsize=16,color="green",shape="box"];2561[label="xuu50001",fontsize=16,color="green",shape="box"];2562[label="xuu4001",fontsize=16,color="green",shape="box"];2563[label="xuu50001",fontsize=16,color="green",shape="box"];2564[label="xuu4002",fontsize=16,color="green",shape="box"];2565[label="xuu50002",fontsize=16,color="green",shape="box"];2566[label="xuu4002",fontsize=16,color="green",shape="box"];2567[label="xuu50002",fontsize=16,color="green",shape="box"];2568[label="xuu4002",fontsize=16,color="green",shape="box"];2569[label="xuu50002",fontsize=16,color="green",shape="box"];2570[label="xuu4002",fontsize=16,color="green",shape="box"];2571[label="xuu50002",fontsize=16,color="green",shape="box"];2572[label="xuu4002",fontsize=16,color="green",shape="box"];2573[label="xuu50002",fontsize=16,color="green",shape="box"];2574[label="xuu4002",fontsize=16,color="green",shape="box"];2575[label="xuu50002",fontsize=16,color="green",shape="box"];2576[label="xuu4002",fontsize=16,color="green",shape="box"];2577[label="xuu50002",fontsize=16,color="green",shape="box"];2578[label="xuu4002",fontsize=16,color="green",shape="box"];2579[label="xuu50002",fontsize=16,color="green",shape="box"];2580[label="xuu4002",fontsize=16,color="green",shape="box"];2581[label="xuu50002",fontsize=16,color="green",shape="box"];2582[label="xuu4002",fontsize=16,color="green",shape="box"];2583[label="xuu50002",fontsize=16,color="green",shape="box"];2584[label="xuu4002",fontsize=16,color="green",shape="box"];2585[label="xuu50002",fontsize=16,color="green",shape="box"];2586[label="xuu4002",fontsize=16,color="green",shape="box"];2587[label="xuu50002",fontsize=16,color="green",shape="box"];2588[label="xuu4002",fontsize=16,color="green",shape="box"];2589[label="xuu50002",fontsize=16,color="green",shape="box"];2590[label="xuu4002",fontsize=16,color="green",shape="box"];2591[label="xuu50002",fontsize=16,color="green",shape="box"];2592[label="xuu40000",fontsize=16,color="green",shape="box"];2593[label="xuu500000",fontsize=16,color="green",shape="box"];2594[label="xuu40000",fontsize=16,color="green",shape="box"];2595[label="xuu500000",fontsize=16,color="green",shape="box"];2596 -> 1675[label="",style="dashed", color="red", weight=0]; 2596[label="primEqNat xuu500000 xuu40000",fontsize=16,color="magenta"];2596 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2596 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2597[label="False",fontsize=16,color="green",shape="box"];2598[label="False",fontsize=16,color="green",shape="box"];2599[label="True",fontsize=16,color="green",shape="box"];2601 -> 564[label="",style="dashed", color="red", weight=0]; 2601[label="xuu216 == GT",fontsize=16,color="magenta"];2601 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2601 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2600[label="not xuu217",fontsize=16,color="burlywood",shape="triangle"];3994[label="xuu217/False",fontsize=10,color="white",style="solid",shape="box"];2600 -> 3994[label="",style="solid", color="burlywood", weight=9]; 3994 -> 2662[label="",style="solid", color="burlywood", weight=3]; 3995[label="xuu217/True",fontsize=10,color="white",style="solid",shape="box"];2600 -> 3995[label="",style="solid", color="burlywood", weight=9]; 3995 -> 2663[label="",style="solid", color="burlywood", weight=3]; 2602[label="xuu750 < xuu760",fontsize=16,color="blue",shape="box"];3996[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3996[label="",style="solid", color="blue", weight=9]; 3996 -> 2664[label="",style="solid", color="blue", weight=3]; 3997[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3997[label="",style="solid", color="blue", weight=9]; 3997 -> 2665[label="",style="solid", color="blue", weight=3]; 3998[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3998[label="",style="solid", color="blue", weight=9]; 3998 -> 2666[label="",style="solid", color="blue", weight=3]; 3999[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 3999[label="",style="solid", color="blue", weight=9]; 3999 -> 2667[label="",style="solid", color="blue", weight=3]; 4000[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 4000[label="",style="solid", color="blue", weight=9]; 4000 -> 2668[label="",style="solid", color="blue", weight=3]; 4001[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 4001[label="",style="solid", color="blue", weight=9]; 4001 -> 2669[label="",style="solid", color="blue", weight=3]; 4002[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 4002[label="",style="solid", color="blue", weight=9]; 4002 -> 2670[label="",style="solid", color="blue", weight=3]; 4003[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 4003[label="",style="solid", color="blue", weight=9]; 4003 -> 2671[label="",style="solid", color="blue", weight=3]; 4004[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 4004[label="",style="solid", color="blue", weight=9]; 4004 -> 2672[label="",style="solid", color="blue", weight=3]; 4005[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 4005[label="",style="solid", color="blue", weight=9]; 4005 -> 2673[label="",style="solid", color="blue", weight=3]; 4006[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 4006[label="",style="solid", color="blue", weight=9]; 4006 -> 2674[label="",style="solid", color="blue", weight=3]; 4007[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 4007[label="",style="solid", color="blue", weight=9]; 4007 -> 2675[label="",style="solid", color="blue", weight=3]; 4008[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 4008[label="",style="solid", color="blue", weight=9]; 4008 -> 2676[label="",style="solid", color="blue", weight=3]; 4009[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2602 -> 4009[label="",style="solid", color="blue", weight=9]; 4009 -> 2677[label="",style="solid", color="blue", weight=3]; 2603 -> 1185[label="",style="dashed", color="red", weight=0]; 2603[label="xuu750 == xuu760 && (xuu751 < xuu761 || xuu751 == xuu761 && xuu752 <= xuu762)",fontsize=16,color="magenta"];2603 -> 2678[label="",style="dashed", color="magenta", weight=3]; 2603 -> 2679[label="",style="dashed", color="magenta", weight=3]; 2604 -> 1503[label="",style="dashed", color="red", weight=0]; 2604[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2604 -> 2680[label="",style="dashed", color="magenta", weight=3]; 2604 -> 2681[label="",style="dashed", color="magenta", weight=3]; 2605 -> 1504[label="",style="dashed", color="red", weight=0]; 2605[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2605 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2605 -> 2683[label="",style="dashed", color="magenta", weight=3]; 2606 -> 1505[label="",style="dashed", color="red", weight=0]; 2606[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2606 -> 2684[label="",style="dashed", color="magenta", weight=3]; 2606 -> 2685[label="",style="dashed", color="magenta", weight=3]; 2607 -> 1506[label="",style="dashed", color="red", weight=0]; 2607[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2607 -> 2686[label="",style="dashed", color="magenta", weight=3]; 2607 -> 2687[label="",style="dashed", color="magenta", weight=3]; 2608 -> 1507[label="",style="dashed", color="red", weight=0]; 2608[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2608 -> 2688[label="",style="dashed", color="magenta", weight=3]; 2608 -> 2689[label="",style="dashed", color="magenta", weight=3]; 2609 -> 1508[label="",style="dashed", color="red", weight=0]; 2609[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2609 -> 2690[label="",style="dashed", color="magenta", weight=3]; 2609 -> 2691[label="",style="dashed", color="magenta", weight=3]; 2610 -> 1509[label="",style="dashed", color="red", weight=0]; 2610[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2610 -> 2692[label="",style="dashed", color="magenta", weight=3]; 2610 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2611 -> 1510[label="",style="dashed", color="red", weight=0]; 2611[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2611 -> 2694[label="",style="dashed", color="magenta", weight=3]; 2611 -> 2695[label="",style="dashed", color="magenta", weight=3]; 2612 -> 1511[label="",style="dashed", color="red", weight=0]; 2612[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2612 -> 2696[label="",style="dashed", color="magenta", weight=3]; 2612 -> 2697[label="",style="dashed", color="magenta", weight=3]; 2613 -> 1512[label="",style="dashed", color="red", weight=0]; 2613[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2613 -> 2698[label="",style="dashed", color="magenta", weight=3]; 2613 -> 2699[label="",style="dashed", color="magenta", weight=3]; 2614 -> 1513[label="",style="dashed", color="red", weight=0]; 2614[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2614 -> 2700[label="",style="dashed", color="magenta", weight=3]; 2614 -> 2701[label="",style="dashed", color="magenta", weight=3]; 2615 -> 1514[label="",style="dashed", color="red", weight=0]; 2615[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2615 -> 2702[label="",style="dashed", color="magenta", weight=3]; 2615 -> 2703[label="",style="dashed", color="magenta", weight=3]; 2616 -> 1515[label="",style="dashed", color="red", weight=0]; 2616[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2616 -> 2704[label="",style="dashed", color="magenta", weight=3]; 2616 -> 2705[label="",style="dashed", color="magenta", weight=3]; 2617 -> 1516[label="",style="dashed", color="red", weight=0]; 2617[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2617 -> 2706[label="",style="dashed", color="magenta", weight=3]; 2617 -> 2707[label="",style="dashed", color="magenta", weight=3]; 2618 -> 1503[label="",style="dashed", color="red", weight=0]; 2618[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2618 -> 2708[label="",style="dashed", color="magenta", weight=3]; 2618 -> 2709[label="",style="dashed", color="magenta", weight=3]; 2619 -> 1504[label="",style="dashed", color="red", weight=0]; 2619[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2619 -> 2710[label="",style="dashed", color="magenta", weight=3]; 2619 -> 2711[label="",style="dashed", color="magenta", weight=3]; 2620 -> 1505[label="",style="dashed", color="red", weight=0]; 2620[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2620 -> 2712[label="",style="dashed", color="magenta", weight=3]; 2620 -> 2713[label="",style="dashed", color="magenta", weight=3]; 2621 -> 1506[label="",style="dashed", color="red", weight=0]; 2621[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2621 -> 2714[label="",style="dashed", color="magenta", weight=3]; 2621 -> 2715[label="",style="dashed", color="magenta", weight=3]; 2622 -> 1507[label="",style="dashed", color="red", weight=0]; 2622[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2622 -> 2716[label="",style="dashed", color="magenta", weight=3]; 2622 -> 2717[label="",style="dashed", color="magenta", weight=3]; 2623 -> 1508[label="",style="dashed", color="red", weight=0]; 2623[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2623 -> 2718[label="",style="dashed", color="magenta", weight=3]; 2623 -> 2719[label="",style="dashed", color="magenta", weight=3]; 2624 -> 1509[label="",style="dashed", color="red", weight=0]; 2624[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2624 -> 2720[label="",style="dashed", color="magenta", weight=3]; 2624 -> 2721[label="",style="dashed", color="magenta", weight=3]; 2625 -> 1510[label="",style="dashed", color="red", weight=0]; 2625[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2625 -> 2722[label="",style="dashed", color="magenta", weight=3]; 2625 -> 2723[label="",style="dashed", color="magenta", weight=3]; 2626 -> 1511[label="",style="dashed", color="red", weight=0]; 2626[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2626 -> 2724[label="",style="dashed", color="magenta", weight=3]; 2626 -> 2725[label="",style="dashed", color="magenta", weight=3]; 2627 -> 1512[label="",style="dashed", color="red", weight=0]; 2627[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2627 -> 2726[label="",style="dashed", color="magenta", weight=3]; 2627 -> 2727[label="",style="dashed", color="magenta", weight=3]; 2628 -> 1513[label="",style="dashed", color="red", weight=0]; 2628[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2628 -> 2728[label="",style="dashed", color="magenta", weight=3]; 2628 -> 2729[label="",style="dashed", color="magenta", weight=3]; 2629 -> 1514[label="",style="dashed", color="red", weight=0]; 2629[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2629 -> 2730[label="",style="dashed", color="magenta", weight=3]; 2629 -> 2731[label="",style="dashed", color="magenta", weight=3]; 2630 -> 1515[label="",style="dashed", color="red", weight=0]; 2630[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2630 -> 2732[label="",style="dashed", color="magenta", weight=3]; 2630 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2631 -> 1516[label="",style="dashed", color="red", weight=0]; 2631[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2631 -> 2734[label="",style="dashed", color="magenta", weight=3]; 2631 -> 2735[label="",style="dashed", color="magenta", weight=3]; 2632 -> 1503[label="",style="dashed", color="red", weight=0]; 2632[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2632 -> 2736[label="",style="dashed", color="magenta", weight=3]; 2632 -> 2737[label="",style="dashed", color="magenta", weight=3]; 2633 -> 1504[label="",style="dashed", color="red", weight=0]; 2633[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2633 -> 2738[label="",style="dashed", color="magenta", weight=3]; 2633 -> 2739[label="",style="dashed", color="magenta", weight=3]; 2634 -> 1505[label="",style="dashed", color="red", weight=0]; 2634[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2634 -> 2740[label="",style="dashed", color="magenta", weight=3]; 2634 -> 2741[label="",style="dashed", color="magenta", weight=3]; 2635 -> 1506[label="",style="dashed", color="red", weight=0]; 2635[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2635 -> 2742[label="",style="dashed", color="magenta", weight=3]; 2635 -> 2743[label="",style="dashed", color="magenta", weight=3]; 2636 -> 1507[label="",style="dashed", color="red", weight=0]; 2636[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2636 -> 2744[label="",style="dashed", color="magenta", weight=3]; 2636 -> 2745[label="",style="dashed", color="magenta", weight=3]; 2637 -> 1508[label="",style="dashed", color="red", weight=0]; 2637[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2637 -> 2746[label="",style="dashed", color="magenta", weight=3]; 2637 -> 2747[label="",style="dashed", color="magenta", weight=3]; 2638 -> 1509[label="",style="dashed", color="red", weight=0]; 2638[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2638 -> 2748[label="",style="dashed", color="magenta", weight=3]; 2638 -> 2749[label="",style="dashed", color="magenta", weight=3]; 2639 -> 1510[label="",style="dashed", color="red", weight=0]; 2639[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2639 -> 2750[label="",style="dashed", color="magenta", weight=3]; 2639 -> 2751[label="",style="dashed", color="magenta", weight=3]; 2640 -> 1511[label="",style="dashed", color="red", weight=0]; 2640[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2640 -> 2752[label="",style="dashed", color="magenta", weight=3]; 2640 -> 2753[label="",style="dashed", color="magenta", weight=3]; 2641 -> 1512[label="",style="dashed", color="red", weight=0]; 2641[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2641 -> 2754[label="",style="dashed", color="magenta", weight=3]; 2641 -> 2755[label="",style="dashed", color="magenta", weight=3]; 2642 -> 1513[label="",style="dashed", color="red", weight=0]; 2642[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2642 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2642 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2643 -> 1514[label="",style="dashed", color="red", weight=0]; 2643[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2643 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2643 -> 2759[label="",style="dashed", color="magenta", weight=3]; 2644 -> 1515[label="",style="dashed", color="red", weight=0]; 2644[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2644 -> 2760[label="",style="dashed", color="magenta", weight=3]; 2644 -> 2761[label="",style="dashed", color="magenta", weight=3]; 2645 -> 1516[label="",style="dashed", color="red", weight=0]; 2645[label="xuu750 <= xuu760",fontsize=16,color="magenta"];2645 -> 2762[label="",style="dashed", color="magenta", weight=3]; 2645 -> 2763[label="",style="dashed", color="magenta", weight=3]; 2646[label="xuu750 < xuu760",fontsize=16,color="blue",shape="box"];4010[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4010[label="",style="solid", color="blue", weight=9]; 4010 -> 2764[label="",style="solid", color="blue", weight=3]; 4011[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4011[label="",style="solid", color="blue", weight=9]; 4011 -> 2765[label="",style="solid", color="blue", weight=3]; 4012[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4012[label="",style="solid", color="blue", weight=9]; 4012 -> 2766[label="",style="solid", color="blue", weight=3]; 4013[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4013[label="",style="solid", color="blue", weight=9]; 4013 -> 2767[label="",style="solid", color="blue", weight=3]; 4014[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4014[label="",style="solid", color="blue", weight=9]; 4014 -> 2768[label="",style="solid", color="blue", weight=3]; 4015[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4015[label="",style="solid", color="blue", weight=9]; 4015 -> 2769[label="",style="solid", color="blue", weight=3]; 4016[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4016[label="",style="solid", color="blue", weight=9]; 4016 -> 2770[label="",style="solid", color="blue", weight=3]; 4017[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4017[label="",style="solid", color="blue", weight=9]; 4017 -> 2771[label="",style="solid", color="blue", weight=3]; 4018[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4018[label="",style="solid", color="blue", weight=9]; 4018 -> 2772[label="",style="solid", color="blue", weight=3]; 4019[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4019[label="",style="solid", color="blue", weight=9]; 4019 -> 2773[label="",style="solid", color="blue", weight=3]; 4020[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4020[label="",style="solid", color="blue", weight=9]; 4020 -> 2774[label="",style="solid", color="blue", weight=3]; 4021[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4021[label="",style="solid", color="blue", weight=9]; 4021 -> 2775[label="",style="solid", color="blue", weight=3]; 4022[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4022[label="",style="solid", color="blue", weight=9]; 4022 -> 2776[label="",style="solid", color="blue", weight=3]; 4023[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 4023[label="",style="solid", color="blue", weight=9]; 4023 -> 2777[label="",style="solid", color="blue", weight=3]; 2647 -> 1185[label="",style="dashed", color="red", weight=0]; 2647[label="xuu750 == xuu760 && xuu751 <= xuu761",fontsize=16,color="magenta"];2647 -> 2778[label="",style="dashed", color="magenta", weight=3]; 2647 -> 2779[label="",style="dashed", color="magenta", weight=3]; 2648[label="compare0 (xuu200,xuu201) (xuu202,xuu203) True",fontsize=16,color="black",shape="box"];2648 -> 2780[label="",style="solid", color="black", weight=3]; 2649[label="xuu44200",fontsize=16,color="green",shape="box"];2650[label="xuu13900",fontsize=16,color="green",shape="box"];2652 -> 36[label="",style="dashed", color="red", weight=0]; 2652[label="FiniteMap.sizeFM xuu444 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu443",fontsize=16,color="magenta"];2652 -> 2781[label="",style="dashed", color="magenta", weight=3]; 2652 -> 2782[label="",style="dashed", color="magenta", weight=3]; 2651[label="FiniteMap.mkBalBranch6MkBalBranch11 xuu17 xuu18 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 xuu440 xuu441 xuu442 xuu443 xuu444 xuu218",fontsize=16,color="burlywood",shape="triangle"];4024[label="xuu218/False",fontsize=10,color="white",style="solid",shape="box"];2651 -> 4024[label="",style="solid", color="burlywood", weight=9]; 4024 -> 2783[label="",style="solid", color="burlywood", weight=3]; 4025[label="xuu218/True",fontsize=10,color="white",style="solid",shape="box"];2651 -> 4025[label="",style="solid", color="burlywood", weight=9]; 4025 -> 2784[label="",style="solid", color="burlywood", weight=3]; 2653[label="xuu214",fontsize=16,color="green",shape="box"];2654[label="FiniteMap.mkBalBranch6MkBalBranch00 xuu17 xuu18 xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 True",fontsize=16,color="black",shape="box"];2654 -> 2785[label="",style="solid", color="black", weight=3]; 2655[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu210 xuu211 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xuu17 xuu18 xuu44 xuu213) xuu214",fontsize=16,color="black",shape="box"];2655 -> 2786[label="",style="solid", color="black", weight=3]; 2656[label="xuu44",fontsize=16,color="green",shape="box"];2657[label="GT",fontsize=16,color="green",shape="box"];2658[label="xuu40000",fontsize=16,color="green",shape="box"];2659[label="xuu500000",fontsize=16,color="green",shape="box"];2660[label="GT",fontsize=16,color="green",shape="box"];2661[label="xuu216",fontsize=16,color="green",shape="box"];2662[label="not False",fontsize=16,color="black",shape="box"];2662 -> 2787[label="",style="solid", color="black", weight=3]; 2663[label="not True",fontsize=16,color="black",shape="box"];2663 -> 2788[label="",style="solid", color="black", weight=3]; 2664 -> 34[label="",style="dashed", color="red", weight=0]; 2664[label="xuu750 < xuu760",fontsize=16,color="magenta"];2664 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2664 -> 2790[label="",style="dashed", color="magenta", weight=3]; 2665 -> 35[label="",style="dashed", color="red", weight=0]; 2665[label="xuu750 < xuu760",fontsize=16,color="magenta"];2665 -> 2791[label="",style="dashed", color="magenta", weight=3]; 2665 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2666 -> 36[label="",style="dashed", color="red", weight=0]; 2666[label="xuu750 < xuu760",fontsize=16,color="magenta"];2666 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2666 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2667 -> 37[label="",style="dashed", color="red", weight=0]; 2667[label="xuu750 < xuu760",fontsize=16,color="magenta"];2667 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2667 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2668 -> 38[label="",style="dashed", color="red", weight=0]; 2668[label="xuu750 < xuu760",fontsize=16,color="magenta"];2668 -> 2797[label="",style="dashed", color="magenta", weight=3]; 2668 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2669 -> 39[label="",style="dashed", color="red", weight=0]; 2669[label="xuu750 < xuu760",fontsize=16,color="magenta"];2669 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2669 -> 2800[label="",style="dashed", color="magenta", weight=3]; 2670 -> 40[label="",style="dashed", color="red", weight=0]; 2670[label="xuu750 < xuu760",fontsize=16,color="magenta"];2670 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2670 -> 2802[label="",style="dashed", color="magenta", weight=3]; 2671 -> 41[label="",style="dashed", color="red", weight=0]; 2671[label="xuu750 < xuu760",fontsize=16,color="magenta"];2671 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2671 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2672 -> 42[label="",style="dashed", color="red", weight=0]; 2672[label="xuu750 < xuu760",fontsize=16,color="magenta"];2672 -> 2805[label="",style="dashed", color="magenta", weight=3]; 2672 -> 2806[label="",style="dashed", color="magenta", weight=3]; 2673 -> 43[label="",style="dashed", color="red", weight=0]; 2673[label="xuu750 < xuu760",fontsize=16,color="magenta"];2673 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2673 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2674 -> 44[label="",style="dashed", color="red", weight=0]; 2674[label="xuu750 < xuu760",fontsize=16,color="magenta"];2674 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2674 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2675 -> 45[label="",style="dashed", color="red", weight=0]; 2675[label="xuu750 < xuu760",fontsize=16,color="magenta"];2675 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2675 -> 2812[label="",style="dashed", color="magenta", weight=3]; 2676 -> 46[label="",style="dashed", color="red", weight=0]; 2676[label="xuu750 < xuu760",fontsize=16,color="magenta"];2676 -> 2813[label="",style="dashed", color="magenta", weight=3]; 2676 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2677 -> 47[label="",style="dashed", color="red", weight=0]; 2677[label="xuu750 < xuu760",fontsize=16,color="magenta"];2677 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2677 -> 2816[label="",style="dashed", color="magenta", weight=3]; 2678[label="xuu750 == xuu760",fontsize=16,color="blue",shape="box"];4026[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2678 -> 4026[label="",style="solid", color="blue", weight=9]; 4026 -> 2817[label="",style="solid", color="blue", weight=3]; 4027[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2678 -> 4027[label="",style="solid", color="blue", weight=9]; 4027 -> 2818[label="",style="solid", color="blue", weight=3]; 4028[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2678 -> 4028[label="",style="solid", color="blue", weight=9]; 4028 -> 2819[label="",style="solid", color="blue", weight=3]; 4029[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2678 -> 4029[label="",style="solid", color="blue", weight=9]; 4029 -> 2820[label="",style="solid", color="blue", weight=3]; 4030[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2678 -> 4030[label="",style="solid", color="blue", weight=9]; 4030 -> 2821[label="",style="solid", color="blue", weight=3]; 4031[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2678 -> 4031[label="",style="solid", color="blue", weight=9]; 4031 -> 2822[label="",style="solid", color="blue", weight=3]; 4032[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2678 -> 4032[label="",style="solid", color="blue", weight=9]; 4032 -> 2823[label="",style="solid", color="blue", weight=3]; 4033[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2678 -> 4033[label="",style="solid", color="blue", weight=9]; 4033 -> 2824[label="",style="solid", color="blue", weight=3]; 4034[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2678 -> 4034[label="",style="solid", color="blue", weight=9]; 4034 -> 2825[label="",style="solid", color="blue", weight=3]; 4035[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2678 -> 4035[label="",style="solid", color="blue", weight=9]; 4035 -> 2826[label="",style="solid", color="blue", weight=3]; 4036[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2678 -> 4036[label="",style="solid", color="blue", weight=9]; 4036 -> 2827[label="",style="solid", color="blue", weight=3]; 4037[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2678 -> 4037[label="",style="solid", color="blue", weight=9]; 4037 -> 2828[label="",style="solid", color="blue", weight=3]; 4038[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2678 -> 4038[label="",style="solid", color="blue", weight=9]; 4038 -> 2829[label="",style="solid", color="blue", weight=3]; 4039[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2678 -> 4039[label="",style="solid", color="blue", weight=9]; 4039 -> 2830[label="",style="solid", color="blue", weight=3]; 2679 -> 1885[label="",style="dashed", color="red", weight=0]; 2679[label="xuu751 < xuu761 || xuu751 == xuu761 && xuu752 <= xuu762",fontsize=16,color="magenta"];2679 -> 2831[label="",style="dashed", color="magenta", weight=3]; 2679 -> 2832[label="",style="dashed", color="magenta", weight=3]; 2680[label="xuu750",fontsize=16,color="green",shape="box"];2681[label="xuu760",fontsize=16,color="green",shape="box"];2682[label="xuu750",fontsize=16,color="green",shape="box"];2683[label="xuu760",fontsize=16,color="green",shape="box"];2684[label="xuu750",fontsize=16,color="green",shape="box"];2685[label="xuu760",fontsize=16,color="green",shape="box"];2686[label="xuu750",fontsize=16,color="green",shape="box"];2687[label="xuu760",fontsize=16,color="green",shape="box"];2688[label="xuu750",fontsize=16,color="green",shape="box"];2689[label="xuu760",fontsize=16,color="green",shape="box"];2690[label="xuu750",fontsize=16,color="green",shape="box"];2691[label="xuu760",fontsize=16,color="green",shape="box"];2692[label="xuu750",fontsize=16,color="green",shape="box"];2693[label="xuu760",fontsize=16,color="green",shape="box"];2694[label="xuu750",fontsize=16,color="green",shape="box"];2695[label="xuu760",fontsize=16,color="green",shape="box"];2696[label="xuu750",fontsize=16,color="green",shape="box"];2697[label="xuu760",fontsize=16,color="green",shape="box"];2698[label="xuu750",fontsize=16,color="green",shape="box"];2699[label="xuu760",fontsize=16,color="green",shape="box"];2700[label="xuu750",fontsize=16,color="green",shape="box"];2701[label="xuu760",fontsize=16,color="green",shape="box"];2702[label="xuu750",fontsize=16,color="green",shape="box"];2703[label="xuu760",fontsize=16,color="green",shape="box"];2704[label="xuu750",fontsize=16,color="green",shape="box"];2705[label="xuu760",fontsize=16,color="green",shape="box"];2706[label="xuu750",fontsize=16,color="green",shape="box"];2707[label="xuu760",fontsize=16,color="green",shape="box"];2708[label="xuu750",fontsize=16,color="green",shape="box"];2709[label="xuu760",fontsize=16,color="green",shape="box"];2710[label="xuu750",fontsize=16,color="green",shape="box"];2711[label="xuu760",fontsize=16,color="green",shape="box"];2712[label="xuu750",fontsize=16,color="green",shape="box"];2713[label="xuu760",fontsize=16,color="green",shape="box"];2714[label="xuu750",fontsize=16,color="green",shape="box"];2715[label="xuu760",fontsize=16,color="green",shape="box"];2716[label="xuu750",fontsize=16,color="green",shape="box"];2717[label="xuu760",fontsize=16,color="green",shape="box"];2718[label="xuu750",fontsize=16,color="green",shape="box"];2719[label="xuu760",fontsize=16,color="green",shape="box"];2720[label="xuu750",fontsize=16,color="green",shape="box"];2721[label="xuu760",fontsize=16,color="green",shape="box"];2722[label="xuu750",fontsize=16,color="green",shape="box"];2723[label="xuu760",fontsize=16,color="green",shape="box"];2724[label="xuu750",fontsize=16,color="green",shape="box"];2725[label="xuu760",fontsize=16,color="green",shape="box"];2726[label="xuu750",fontsize=16,color="green",shape="box"];2727[label="xuu760",fontsize=16,color="green",shape="box"];2728[label="xuu750",fontsize=16,color="green",shape="box"];2729[label="xuu760",fontsize=16,color="green",shape="box"];2730[label="xuu750",fontsize=16,color="green",shape="box"];2731[label="xuu760",fontsize=16,color="green",shape="box"];2732[label="xuu750",fontsize=16,color="green",shape="box"];2733[label="xuu760",fontsize=16,color="green",shape="box"];2734[label="xuu750",fontsize=16,color="green",shape="box"];2735[label="xuu760",fontsize=16,color="green",shape="box"];2736[label="xuu750",fontsize=16,color="green",shape="box"];2737[label="xuu760",fontsize=16,color="green",shape="box"];2738[label="xuu750",fontsize=16,color="green",shape="box"];2739[label="xuu760",fontsize=16,color="green",shape="box"];2740[label="xuu750",fontsize=16,color="green",shape="box"];2741[label="xuu760",fontsize=16,color="green",shape="box"];2742[label="xuu750",fontsize=16,color="green",shape="box"];2743[label="xuu760",fontsize=16,color="green",shape="box"];2744[label="xuu750",fontsize=16,color="green",shape="box"];2745[label="xuu760",fontsize=16,color="green",shape="box"];2746[label="xuu750",fontsize=16,color="green",shape="box"];2747[label="xuu760",fontsize=16,color="green",shape="box"];2748[label="xuu750",fontsize=16,color="green",shape="box"];2749[label="xuu760",fontsize=16,color="green",shape="box"];2750[label="xuu750",fontsize=16,color="green",shape="box"];2751[label="xuu760",fontsize=16,color="green",shape="box"];2752[label="xuu750",fontsize=16,color="green",shape="box"];2753[label="xuu760",fontsize=16,color="green",shape="box"];2754[label="xuu750",fontsize=16,color="green",shape="box"];2755[label="xuu760",fontsize=16,color="green",shape="box"];2756[label="xuu750",fontsize=16,color="green",shape="box"];2757[label="xuu760",fontsize=16,color="green",shape="box"];2758[label="xuu750",fontsize=16,color="green",shape="box"];2759[label="xuu760",fontsize=16,color="green",shape="box"];2760[label="xuu750",fontsize=16,color="green",shape="box"];2761[label="xuu760",fontsize=16,color="green",shape="box"];2762[label="xuu750",fontsize=16,color="green",shape="box"];2763[label="xuu760",fontsize=16,color="green",shape="box"];2764 -> 34[label="",style="dashed", color="red", weight=0]; 2764[label="xuu750 < xuu760",fontsize=16,color="magenta"];2764 -> 2833[label="",style="dashed", color="magenta", weight=3]; 2764 -> 2834[label="",style="dashed", color="magenta", weight=3]; 2765 -> 35[label="",style="dashed", color="red", weight=0]; 2765[label="xuu750 < xuu760",fontsize=16,color="magenta"];2765 -> 2835[label="",style="dashed", color="magenta", weight=3]; 2765 -> 2836[label="",style="dashed", color="magenta", weight=3]; 2766 -> 36[label="",style="dashed", color="red", weight=0]; 2766[label="xuu750 < xuu760",fontsize=16,color="magenta"];2766 -> 2837[label="",style="dashed", color="magenta", weight=3]; 2766 -> 2838[label="",style="dashed", color="magenta", weight=3]; 2767 -> 37[label="",style="dashed", color="red", weight=0]; 2767[label="xuu750 < xuu760",fontsize=16,color="magenta"];2767 -> 2839[label="",style="dashed", color="magenta", weight=3]; 2767 -> 2840[label="",style="dashed", color="magenta", weight=3]; 2768 -> 38[label="",style="dashed", color="red", weight=0]; 2768[label="xuu750 < xuu760",fontsize=16,color="magenta"];2768 -> 2841[label="",style="dashed", color="magenta", weight=3]; 2768 -> 2842[label="",style="dashed", color="magenta", weight=3]; 2769 -> 39[label="",style="dashed", color="red", weight=0]; 2769[label="xuu750 < xuu760",fontsize=16,color="magenta"];2769 -> 2843[label="",style="dashed", color="magenta", weight=3]; 2769 -> 2844[label="",style="dashed", color="magenta", weight=3]; 2770 -> 40[label="",style="dashed", color="red", weight=0]; 2770[label="xuu750 < xuu760",fontsize=16,color="magenta"];2770 -> 2845[label="",style="dashed", color="magenta", weight=3]; 2770 -> 2846[label="",style="dashed", color="magenta", weight=3]; 2771 -> 41[label="",style="dashed", color="red", weight=0]; 2771[label="xuu750 < xuu760",fontsize=16,color="magenta"];2771 -> 2847[label="",style="dashed", color="magenta", weight=3]; 2771 -> 2848[label="",style="dashed", color="magenta", weight=3]; 2772 -> 42[label="",style="dashed", color="red", weight=0]; 2772[label="xuu750 < xuu760",fontsize=16,color="magenta"];2772 -> 2849[label="",style="dashed", color="magenta", weight=3]; 2772 -> 2850[label="",style="dashed", color="magenta", weight=3]; 2773 -> 43[label="",style="dashed", color="red", weight=0]; 2773[label="xuu750 < xuu760",fontsize=16,color="magenta"];2773 -> 2851[label="",style="dashed", color="magenta", weight=3]; 2773 -> 2852[label="",style="dashed", color="magenta", weight=3]; 2774 -> 44[label="",style="dashed", color="red", weight=0]; 2774[label="xuu750 < xuu760",fontsize=16,color="magenta"];2774 -> 2853[label="",style="dashed", color="magenta", weight=3]; 2774 -> 2854[label="",style="dashed", color="magenta", weight=3]; 2775 -> 45[label="",style="dashed", color="red", weight=0]; 2775[label="xuu750 < xuu760",fontsize=16,color="magenta"];2775 -> 2855[label="",style="dashed", color="magenta", weight=3]; 2775 -> 2856[label="",style="dashed", color="magenta", weight=3]; 2776 -> 46[label="",style="dashed", color="red", weight=0]; 2776[label="xuu750 < xuu760",fontsize=16,color="magenta"];2776 -> 2857[label="",style="dashed", color="magenta", weight=3]; 2776 -> 2858[label="",style="dashed", color="magenta", weight=3]; 2777 -> 47[label="",style="dashed", color="red", weight=0]; 2777[label="xuu750 < xuu760",fontsize=16,color="magenta"];2777 -> 2859[label="",style="dashed", color="magenta", weight=3]; 2777 -> 2860[label="",style="dashed", color="magenta", weight=3]; 2778[label="xuu750 == xuu760",fontsize=16,color="blue",shape="box"];4040[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4040[label="",style="solid", color="blue", weight=9]; 4040 -> 2861[label="",style="solid", color="blue", weight=3]; 4041[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4041[label="",style="solid", color="blue", weight=9]; 4041 -> 2862[label="",style="solid", color="blue", weight=3]; 4042[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4042[label="",style="solid", color="blue", weight=9]; 4042 -> 2863[label="",style="solid", color="blue", weight=3]; 4043[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4043[label="",style="solid", color="blue", weight=9]; 4043 -> 2864[label="",style="solid", color="blue", weight=3]; 4044[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4044[label="",style="solid", color="blue", weight=9]; 4044 -> 2865[label="",style="solid", color="blue", weight=3]; 4045[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4045[label="",style="solid", color="blue", weight=9]; 4045 -> 2866[label="",style="solid", color="blue", weight=3]; 4046[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4046[label="",style="solid", color="blue", weight=9]; 4046 -> 2867[label="",style="solid", color="blue", weight=3]; 4047[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4047[label="",style="solid", color="blue", weight=9]; 4047 -> 2868[label="",style="solid", color="blue", weight=3]; 4048[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4048[label="",style="solid", color="blue", weight=9]; 4048 -> 2869[label="",style="solid", color="blue", weight=3]; 4049[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4049[label="",style="solid", color="blue", weight=9]; 4049 -> 2870[label="",style="solid", color="blue", weight=3]; 4050[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4050[label="",style="solid", color="blue", weight=9]; 4050 -> 2871[label="",style="solid", color="blue", weight=3]; 4051[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4051[label="",style="solid", color="blue", weight=9]; 4051 -> 2872[label="",style="solid", color="blue", weight=3]; 4052[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4052[label="",style="solid", color="blue", weight=9]; 4052 -> 2873[label="",style="solid", color="blue", weight=3]; 4053[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4053[label="",style="solid", color="blue", weight=9]; 4053 -> 2874[label="",style="solid", color="blue", weight=3]; 2779[label="xuu751 <= xuu761",fontsize=16,color="blue",shape="box"];4054[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4054[label="",style="solid", color="blue", weight=9]; 4054 -> 2875[label="",style="solid", color="blue", weight=3]; 4055[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4055[label="",style="solid", color="blue", weight=9]; 4055 -> 2876[label="",style="solid", color="blue", weight=3]; 4056[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4056[label="",style="solid", color="blue", weight=9]; 4056 -> 2877[label="",style="solid", color="blue", weight=3]; 4057[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4057[label="",style="solid", color="blue", weight=9]; 4057 -> 2878[label="",style="solid", color="blue", weight=3]; 4058[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4058[label="",style="solid", color="blue", weight=9]; 4058 -> 2879[label="",style="solid", color="blue", weight=3]; 4059[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4059[label="",style="solid", color="blue", weight=9]; 4059 -> 2880[label="",style="solid", color="blue", weight=3]; 4060[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4060[label="",style="solid", color="blue", weight=9]; 4060 -> 2881[label="",style="solid", color="blue", weight=3]; 4061[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4061[label="",style="solid", color="blue", weight=9]; 4061 -> 2882[label="",style="solid", color="blue", weight=3]; 4062[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4062[label="",style="solid", color="blue", weight=9]; 4062 -> 2883[label="",style="solid", color="blue", weight=3]; 4063[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4063[label="",style="solid", color="blue", weight=9]; 4063 -> 2884[label="",style="solid", color="blue", weight=3]; 4064[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4064[label="",style="solid", color="blue", weight=9]; 4064 -> 2885[label="",style="solid", color="blue", weight=3]; 4065[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4065[label="",style="solid", color="blue", weight=9]; 4065 -> 2886[label="",style="solid", color="blue", weight=3]; 4066[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4066[label="",style="solid", color="blue", weight=9]; 4066 -> 2887[label="",style="solid", color="blue", weight=3]; 4067[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2779 -> 4067[label="",style="solid", color="blue", weight=9]; 4067 -> 2888[label="",style="solid", color="blue", weight=3]; 2780[label="GT",fontsize=16,color="green",shape="box"];2781 -> 428[label="",style="dashed", color="red", weight=0]; 2781[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu443",fontsize=16,color="magenta"];2781 -> 2889[label="",style="dashed", color="magenta", weight=3]; 2781 -> 2890[label="",style="dashed", color="magenta", weight=3]; 2782 -> 914[label="",style="dashed", color="red", weight=0]; 2782[label="FiniteMap.sizeFM xuu444",fontsize=16,color="magenta"];2782 -> 2891[label="",style="dashed", color="magenta", weight=3]; 2783[label="FiniteMap.mkBalBranch6MkBalBranch11 xuu17 xuu18 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 xuu440 xuu441 xuu442 xuu443 xuu444 False",fontsize=16,color="black",shape="box"];2783 -> 2892[label="",style="solid", color="black", weight=3]; 2784[label="FiniteMap.mkBalBranch6MkBalBranch11 xuu17 xuu18 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 xuu440 xuu441 xuu442 xuu443 xuu444 True",fontsize=16,color="black",shape="box"];2784 -> 2893[label="",style="solid", color="black", weight=3]; 2785[label="FiniteMap.mkBalBranch6Double_L xuu17 xuu18 xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="burlywood",shape="box"];4068[label="xuu213/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4068[label="",style="solid", color="burlywood", weight=9]; 4068 -> 2894[label="",style="solid", color="burlywood", weight=3]; 4069[label="xuu213/FiniteMap.Branch xuu2130 xuu2131 xuu2132 xuu2133 xuu2134",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4069[label="",style="solid", color="burlywood", weight=9]; 4069 -> 2895[label="",style="solid", color="burlywood", weight=3]; 2786 -> 542[label="",style="dashed", color="red", weight=0]; 2786[label="FiniteMap.mkBranchResult xuu210 xuu211 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xuu17 xuu18 xuu44 xuu213) xuu214",fontsize=16,color="magenta"];2786 -> 2896[label="",style="dashed", color="magenta", weight=3]; 2786 -> 2897[label="",style="dashed", color="magenta", weight=3]; 2786 -> 2898[label="",style="dashed", color="magenta", weight=3]; 2786 -> 2899[label="",style="dashed", color="magenta", weight=3]; 2787[label="True",fontsize=16,color="green",shape="box"];2788[label="False",fontsize=16,color="green",shape="box"];2789[label="xuu760",fontsize=16,color="green",shape="box"];2790[label="xuu750",fontsize=16,color="green",shape="box"];2791[label="xuu760",fontsize=16,color="green",shape="box"];2792[label="xuu750",fontsize=16,color="green",shape="box"];2793[label="xuu760",fontsize=16,color="green",shape="box"];2794[label="xuu750",fontsize=16,color="green",shape="box"];2795[label="xuu760",fontsize=16,color="green",shape="box"];2796[label="xuu750",fontsize=16,color="green",shape="box"];2797[label="xuu760",fontsize=16,color="green",shape="box"];2798[label="xuu750",fontsize=16,color="green",shape="box"];2799[label="xuu760",fontsize=16,color="green",shape="box"];2800[label="xuu750",fontsize=16,color="green",shape="box"];2801[label="xuu760",fontsize=16,color="green",shape="box"];2802[label="xuu750",fontsize=16,color="green",shape="box"];2803[label="xuu760",fontsize=16,color="green",shape="box"];2804[label="xuu750",fontsize=16,color="green",shape="box"];2805[label="xuu760",fontsize=16,color="green",shape="box"];2806[label="xuu750",fontsize=16,color="green",shape="box"];2807[label="xuu760",fontsize=16,color="green",shape="box"];2808[label="xuu750",fontsize=16,color="green",shape="box"];2809[label="xuu760",fontsize=16,color="green",shape="box"];2810[label="xuu750",fontsize=16,color="green",shape="box"];2811[label="xuu760",fontsize=16,color="green",shape="box"];2812[label="xuu750",fontsize=16,color="green",shape="box"];2813[label="xuu760",fontsize=16,color="green",shape="box"];2814[label="xuu750",fontsize=16,color="green",shape="box"];2815[label="xuu760",fontsize=16,color="green",shape="box"];2816[label="xuu750",fontsize=16,color="green",shape="box"];2817 -> 574[label="",style="dashed", color="red", weight=0]; 2817[label="xuu750 == xuu760",fontsize=16,color="magenta"];2817 -> 2900[label="",style="dashed", color="magenta", weight=3]; 2817 -> 2901[label="",style="dashed", color="magenta", weight=3]; 2818 -> 567[label="",style="dashed", color="red", weight=0]; 2818[label="xuu750 == xuu760",fontsize=16,color="magenta"];2818 -> 2902[label="",style="dashed", color="magenta", weight=3]; 2818 -> 2903[label="",style="dashed", color="magenta", weight=3]; 2819 -> 568[label="",style="dashed", color="red", weight=0]; 2819[label="xuu750 == xuu760",fontsize=16,color="magenta"];2819 -> 2904[label="",style="dashed", color="magenta", weight=3]; 2819 -> 2905[label="",style="dashed", color="magenta", weight=3]; 2820 -> 566[label="",style="dashed", color="red", weight=0]; 2820[label="xuu750 == xuu760",fontsize=16,color="magenta"];2820 -> 2906[label="",style="dashed", color="magenta", weight=3]; 2820 -> 2907[label="",style="dashed", color="magenta", weight=3]; 2821 -> 575[label="",style="dashed", color="red", weight=0]; 2821[label="xuu750 == xuu760",fontsize=16,color="magenta"];2821 -> 2908[label="",style="dashed", color="magenta", weight=3]; 2821 -> 2909[label="",style="dashed", color="magenta", weight=3]; 2822 -> 565[label="",style="dashed", color="red", weight=0]; 2822[label="xuu750 == xuu760",fontsize=16,color="magenta"];2822 -> 2910[label="",style="dashed", color="magenta", weight=3]; 2822 -> 2911[label="",style="dashed", color="magenta", weight=3]; 2823 -> 572[label="",style="dashed", color="red", weight=0]; 2823[label="xuu750 == xuu760",fontsize=16,color="magenta"];2823 -> 2912[label="",style="dashed", color="magenta", weight=3]; 2823 -> 2913[label="",style="dashed", color="magenta", weight=3]; 2824 -> 571[label="",style="dashed", color="red", weight=0]; 2824[label="xuu750 == xuu760",fontsize=16,color="magenta"];2824 -> 2914[label="",style="dashed", color="magenta", weight=3]; 2824 -> 2915[label="",style="dashed", color="magenta", weight=3]; 2825 -> 576[label="",style="dashed", color="red", weight=0]; 2825[label="xuu750 == xuu760",fontsize=16,color="magenta"];2825 -> 2916[label="",style="dashed", color="magenta", weight=3]; 2825 -> 2917[label="",style="dashed", color="magenta", weight=3]; 2826 -> 577[label="",style="dashed", color="red", weight=0]; 2826[label="xuu750 == xuu760",fontsize=16,color="magenta"];2826 -> 2918[label="",style="dashed", color="magenta", weight=3]; 2826 -> 2919[label="",style="dashed", color="magenta", weight=3]; 2827 -> 573[label="",style="dashed", color="red", weight=0]; 2827[label="xuu750 == xuu760",fontsize=16,color="magenta"];2827 -> 2920[label="",style="dashed", color="magenta", weight=3]; 2827 -> 2921[label="",style="dashed", color="magenta", weight=3]; 2828 -> 569[label="",style="dashed", color="red", weight=0]; 2828[label="xuu750 == xuu760",fontsize=16,color="magenta"];2828 -> 2922[label="",style="dashed", color="magenta", weight=3]; 2828 -> 2923[label="",style="dashed", color="magenta", weight=3]; 2829 -> 570[label="",style="dashed", color="red", weight=0]; 2829[label="xuu750 == xuu760",fontsize=16,color="magenta"];2829 -> 2924[label="",style="dashed", color="magenta", weight=3]; 2829 -> 2925[label="",style="dashed", color="magenta", weight=3]; 2830 -> 564[label="",style="dashed", color="red", weight=0]; 2830[label="xuu750 == xuu760",fontsize=16,color="magenta"];2830 -> 2926[label="",style="dashed", color="magenta", weight=3]; 2830 -> 2927[label="",style="dashed", color="magenta", weight=3]; 2831[label="xuu751 < xuu761",fontsize=16,color="blue",shape="box"];4070[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2831 -> 4070[label="",style="solid", color="blue", weight=9]; 4070 -> 2928[label="",style="solid", color="blue", weight=3]; 4071[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2831 -> 4071[label="",style="solid", color="blue", weight=9]; 4071 -> 2929[label="",style="solid", color="blue", weight=3]; 4072[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2831 -> 4072[label="",style="solid", color="blue", weight=9]; 4072 -> 2930[label="",style="solid", color="blue", weight=3]; 4073[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2831 -> 4073[label="",style="solid", color="blue", weight=9]; 4073 -> 2931[label="",style="solid", color="blue", weight=3]; 4074[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2831 -> 4074[label="",style="solid", color="blue", weight=9]; 4074 -> 2932[label="",style="solid", color="blue", weight=3]; 4075[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2831 -> 4075[label="",style="solid", color="blue", weight=9]; 4075 -> 2933[label="",style="solid", color="blue", weight=3]; 4076[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2831 -> 4076[label="",style="solid", color="blue", weight=9]; 4076 -> 2934[label="",style="solid", color="blue", weight=3]; 4077[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2831 -> 4077[label="",style="solid", color="blue", weight=9]; 4077 -> 2935[label="",style="solid", color="blue", weight=3]; 4078[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2831 -> 4078[label="",style="solid", color="blue", weight=9]; 4078 -> 2936[label="",style="solid", color="blue", weight=3]; 4079[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2831 -> 4079[label="",style="solid", color="blue", weight=9]; 4079 -> 2937[label="",style="solid", color="blue", weight=3]; 4080[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2831 -> 4080[label="",style="solid", color="blue", weight=9]; 4080 -> 2938[label="",style="solid", color="blue", weight=3]; 4081[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2831 -> 4081[label="",style="solid", color="blue", weight=9]; 4081 -> 2939[label="",style="solid", color="blue", weight=3]; 4082[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2831 -> 4082[label="",style="solid", color="blue", weight=9]; 4082 -> 2940[label="",style="solid", color="blue", weight=3]; 4083[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2831 -> 4083[label="",style="solid", color="blue", weight=9]; 4083 -> 2941[label="",style="solid", color="blue", weight=3]; 2832 -> 1185[label="",style="dashed", color="red", weight=0]; 2832[label="xuu751 == xuu761 && xuu752 <= xuu762",fontsize=16,color="magenta"];2832 -> 2942[label="",style="dashed", color="magenta", weight=3]; 2832 -> 2943[label="",style="dashed", color="magenta", weight=3]; 2833[label="xuu760",fontsize=16,color="green",shape="box"];2834[label="xuu750",fontsize=16,color="green",shape="box"];2835[label="xuu760",fontsize=16,color="green",shape="box"];2836[label="xuu750",fontsize=16,color="green",shape="box"];2837[label="xuu760",fontsize=16,color="green",shape="box"];2838[label="xuu750",fontsize=16,color="green",shape="box"];2839[label="xuu760",fontsize=16,color="green",shape="box"];2840[label="xuu750",fontsize=16,color="green",shape="box"];2841[label="xuu760",fontsize=16,color="green",shape="box"];2842[label="xuu750",fontsize=16,color="green",shape="box"];2843[label="xuu760",fontsize=16,color="green",shape="box"];2844[label="xuu750",fontsize=16,color="green",shape="box"];2845[label="xuu760",fontsize=16,color="green",shape="box"];2846[label="xuu750",fontsize=16,color="green",shape="box"];2847[label="xuu760",fontsize=16,color="green",shape="box"];2848[label="xuu750",fontsize=16,color="green",shape="box"];2849[label="xuu760",fontsize=16,color="green",shape="box"];2850[label="xuu750",fontsize=16,color="green",shape="box"];2851[label="xuu760",fontsize=16,color="green",shape="box"];2852[label="xuu750",fontsize=16,color="green",shape="box"];2853[label="xuu760",fontsize=16,color="green",shape="box"];2854[label="xuu750",fontsize=16,color="green",shape="box"];2855[label="xuu760",fontsize=16,color="green",shape="box"];2856[label="xuu750",fontsize=16,color="green",shape="box"];2857[label="xuu760",fontsize=16,color="green",shape="box"];2858[label="xuu750",fontsize=16,color="green",shape="box"];2859[label="xuu760",fontsize=16,color="green",shape="box"];2860[label="xuu750",fontsize=16,color="green",shape="box"];2861 -> 574[label="",style="dashed", color="red", weight=0]; 2861[label="xuu750 == xuu760",fontsize=16,color="magenta"];2861 -> 2944[label="",style="dashed", color="magenta", weight=3]; 2861 -> 2945[label="",style="dashed", color="magenta", weight=3]; 2862 -> 567[label="",style="dashed", color="red", weight=0]; 2862[label="xuu750 == xuu760",fontsize=16,color="magenta"];2862 -> 2946[label="",style="dashed", color="magenta", weight=3]; 2862 -> 2947[label="",style="dashed", color="magenta", weight=3]; 2863 -> 568[label="",style="dashed", color="red", weight=0]; 2863[label="xuu750 == xuu760",fontsize=16,color="magenta"];2863 -> 2948[label="",style="dashed", color="magenta", weight=3]; 2863 -> 2949[label="",style="dashed", color="magenta", weight=3]; 2864 -> 566[label="",style="dashed", color="red", weight=0]; 2864[label="xuu750 == xuu760",fontsize=16,color="magenta"];2864 -> 2950[label="",style="dashed", color="magenta", weight=3]; 2864 -> 2951[label="",style="dashed", color="magenta", weight=3]; 2865 -> 575[label="",style="dashed", color="red", weight=0]; 2865[label="xuu750 == xuu760",fontsize=16,color="magenta"];2865 -> 2952[label="",style="dashed", color="magenta", weight=3]; 2865 -> 2953[label="",style="dashed", color="magenta", weight=3]; 2866 -> 565[label="",style="dashed", color="red", weight=0]; 2866[label="xuu750 == xuu760",fontsize=16,color="magenta"];2866 -> 2954[label="",style="dashed", color="magenta", weight=3]; 2866 -> 2955[label="",style="dashed", color="magenta", weight=3]; 2867 -> 572[label="",style="dashed", color="red", weight=0]; 2867[label="xuu750 == xuu760",fontsize=16,color="magenta"];2867 -> 2956[label="",style="dashed", color="magenta", weight=3]; 2867 -> 2957[label="",style="dashed", color="magenta", weight=3]; 2868 -> 571[label="",style="dashed", color="red", weight=0]; 2868[label="xuu750 == xuu760",fontsize=16,color="magenta"];2868 -> 2958[label="",style="dashed", color="magenta", weight=3]; 2868 -> 2959[label="",style="dashed", color="magenta", weight=3]; 2869 -> 576[label="",style="dashed", color="red", weight=0]; 2869[label="xuu750 == xuu760",fontsize=16,color="magenta"];2869 -> 2960[label="",style="dashed", color="magenta", weight=3]; 2869 -> 2961[label="",style="dashed", color="magenta", weight=3]; 2870 -> 577[label="",style="dashed", color="red", weight=0]; 2870[label="xuu750 == xuu760",fontsize=16,color="magenta"];2870 -> 2962[label="",style="dashed", color="magenta", weight=3]; 2870 -> 2963[label="",style="dashed", color="magenta", weight=3]; 2871 -> 573[label="",style="dashed", color="red", weight=0]; 2871[label="xuu750 == xuu760",fontsize=16,color="magenta"];2871 -> 2964[label="",style="dashed", color="magenta", weight=3]; 2871 -> 2965[label="",style="dashed", color="magenta", weight=3]; 2872 -> 569[label="",style="dashed", color="red", weight=0]; 2872[label="xuu750 == xuu760",fontsize=16,color="magenta"];2872 -> 2966[label="",style="dashed", color="magenta", weight=3]; 2872 -> 2967[label="",style="dashed", color="magenta", weight=3]; 2873 -> 570[label="",style="dashed", color="red", weight=0]; 2873[label="xuu750 == xuu760",fontsize=16,color="magenta"];2873 -> 2968[label="",style="dashed", color="magenta", weight=3]; 2873 -> 2969[label="",style="dashed", color="magenta", weight=3]; 2874 -> 564[label="",style="dashed", color="red", weight=0]; 2874[label="xuu750 == xuu760",fontsize=16,color="magenta"];2874 -> 2970[label="",style="dashed", color="magenta", weight=3]; 2874 -> 2971[label="",style="dashed", color="magenta", weight=3]; 2875 -> 1503[label="",style="dashed", color="red", weight=0]; 2875[label="xuu751 <= xuu761",fontsize=16,color="magenta"];2875 -> 2972[label="",style="dashed", color="magenta", weight=3]; 2875 -> 2973[label="",style="dashed", color="magenta", weight=3]; 2876 -> 1504[label="",style="dashed", color="red", weight=0]; 2876[label="xuu751 <= xuu761",fontsize=16,color="magenta"];2876 -> 2974[label="",style="dashed", color="magenta", weight=3]; 2876 -> 2975[label="",style="dashed", color="magenta", weight=3]; 2877 -> 1505[label="",style="dashed", color="red", weight=0]; 2877[label="xuu751 <= xuu761",fontsize=16,color="magenta"];2877 -> 2976[label="",style="dashed", color="magenta", weight=3]; 2877 -> 2977[label="",style="dashed", color="magenta", weight=3]; 2878 -> 1506[label="",style="dashed", color="red", weight=0]; 2878[label="xuu751 <= xuu761",fontsize=16,color="magenta"];2878 -> 2978[label="",style="dashed", color="magenta", weight=3]; 2878 -> 2979[label="",style="dashed", color="magenta", weight=3]; 2879 -> 1507[label="",style="dashed", color="red", weight=0]; 2879[label="xuu751 <= xuu761",fontsize=16,color="magenta"];2879 -> 2980[label="",style="dashed", color="magenta", weight=3]; 2879 -> 2981[label="",style="dashed", color="magenta", weight=3]; 2880 -> 1508[label="",style="dashed", color="red", weight=0]; 2880[label="xuu751 <= xuu761",fontsize=16,color="magenta"];2880 -> 2982[label="",style="dashed", color="magenta", weight=3]; 2880 -> 2983[label="",style="dashed", color="magenta", weight=3]; 2881 -> 1509[label="",style="dashed", color="red", weight=0]; 2881[label="xuu751 <= xuu761",fontsize=16,color="magenta"];2881 -> 2984[label="",style="dashed", color="magenta", weight=3]; 2881 -> 2985[label="",style="dashed", color="magenta", weight=3]; 2882 -> 1510[label="",style="dashed", color="red", weight=0]; 2882[label="xuu751 <= xuu761",fontsize=16,color="magenta"];2882 -> 2986[label="",style="dashed", color="magenta", weight=3]; 2882 -> 2987[label="",style="dashed", color="magenta", weight=3]; 2883 -> 1511[label="",style="dashed", color="red", weight=0]; 2883[label="xuu751 <= xuu761",fontsize=16,color="magenta"];2883 -> 2988[label="",style="dashed", color="magenta", weight=3]; 2883 -> 2989[label="",style="dashed", color="magenta", weight=3]; 2884 -> 1512[label="",style="dashed", color="red", weight=0]; 2884[label="xuu751 <= xuu761",fontsize=16,color="magenta"];2884 -> 2990[label="",style="dashed", color="magenta", weight=3]; 2884 -> 2991[label="",style="dashed", color="magenta", weight=3]; 2885 -> 1513[label="",style="dashed", color="red", weight=0]; 2885[label="xuu751 <= xuu761",fontsize=16,color="magenta"];2885 -> 2992[label="",style="dashed", color="magenta", weight=3]; 2885 -> 2993[label="",style="dashed", color="magenta", weight=3]; 2886 -> 1514[label="",style="dashed", color="red", weight=0]; 2886[label="xuu751 <= xuu761",fontsize=16,color="magenta"];2886 -> 2994[label="",style="dashed", color="magenta", weight=3]; 2886 -> 2995[label="",style="dashed", color="magenta", weight=3]; 2887 -> 1515[label="",style="dashed", color="red", weight=0]; 2887[label="xuu751 <= xuu761",fontsize=16,color="magenta"];2887 -> 2996[label="",style="dashed", color="magenta", weight=3]; 2887 -> 2997[label="",style="dashed", color="magenta", weight=3]; 2888 -> 1516[label="",style="dashed", color="red", weight=0]; 2888[label="xuu751 <= xuu761",fontsize=16,color="magenta"];2888 -> 2998[label="",style="dashed", color="magenta", weight=3]; 2888 -> 2999[label="",style="dashed", color="magenta", weight=3]; 2889 -> 914[label="",style="dashed", color="red", weight=0]; 2889[label="FiniteMap.sizeFM xuu443",fontsize=16,color="magenta"];2889 -> 3000[label="",style="dashed", color="magenta", weight=3]; 2890[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2891[label="xuu444",fontsize=16,color="green",shape="box"];2892[label="FiniteMap.mkBalBranch6MkBalBranch10 xuu17 xuu18 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 xuu440 xuu441 xuu442 xuu443 xuu444 otherwise",fontsize=16,color="black",shape="box"];2892 -> 3001[label="",style="solid", color="black", weight=3]; 2893[label="FiniteMap.mkBalBranch6Single_R xuu17 xuu18 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21",fontsize=16,color="black",shape="box"];2893 -> 3002[label="",style="solid", color="black", weight=3]; 2894[label="FiniteMap.mkBalBranch6Double_L xuu17 xuu18 xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 FiniteMap.EmptyFM xuu214) xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 FiniteMap.EmptyFM xuu214)",fontsize=16,color="black",shape="box"];2894 -> 3003[label="",style="solid", color="black", weight=3]; 2895[label="FiniteMap.mkBalBranch6Double_L xuu17 xuu18 xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 (FiniteMap.Branch xuu2130 xuu2131 xuu2132 xuu2133 xuu2134) xuu214) xuu44 (FiniteMap.Branch xuu210 xuu211 xuu212 (FiniteMap.Branch xuu2130 xuu2131 xuu2132 xuu2133 xuu2134) xuu214)",fontsize=16,color="black",shape="box"];2895 -> 3004[label="",style="solid", color="black", weight=3]; 2896[label="xuu210",fontsize=16,color="green",shape="box"];2897[label="xuu211",fontsize=16,color="green",shape="box"];2898[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xuu17 xuu18 xuu44 xuu213",fontsize=16,color="black",shape="box"];2898 -> 3005[label="",style="solid", color="black", weight=3]; 2899[label="xuu214",fontsize=16,color="green",shape="box"];2900[label="xuu760",fontsize=16,color="green",shape="box"];2901[label="xuu750",fontsize=16,color="green",shape="box"];2902[label="xuu760",fontsize=16,color="green",shape="box"];2903[label="xuu750",fontsize=16,color="green",shape="box"];2904[label="xuu760",fontsize=16,color="green",shape="box"];2905[label="xuu750",fontsize=16,color="green",shape="box"];2906[label="xuu760",fontsize=16,color="green",shape="box"];2907[label="xuu750",fontsize=16,color="green",shape="box"];2908[label="xuu760",fontsize=16,color="green",shape="box"];2909[label="xuu750",fontsize=16,color="green",shape="box"];2910[label="xuu760",fontsize=16,color="green",shape="box"];2911[label="xuu750",fontsize=16,color="green",shape="box"];2912[label="xuu760",fontsize=16,color="green",shape="box"];2913[label="xuu750",fontsize=16,color="green",shape="box"];2914[label="xuu760",fontsize=16,color="green",shape="box"];2915[label="xuu750",fontsize=16,color="green",shape="box"];2916[label="xuu760",fontsize=16,color="green",shape="box"];2917[label="xuu750",fontsize=16,color="green",shape="box"];2918[label="xuu760",fontsize=16,color="green",shape="box"];2919[label="xuu750",fontsize=16,color="green",shape="box"];2920[label="xuu760",fontsize=16,color="green",shape="box"];2921[label="xuu750",fontsize=16,color="green",shape="box"];2922[label="xuu760",fontsize=16,color="green",shape="box"];2923[label="xuu750",fontsize=16,color="green",shape="box"];2924[label="xuu760",fontsize=16,color="green",shape="box"];2925[label="xuu750",fontsize=16,color="green",shape="box"];2926[label="xuu760",fontsize=16,color="green",shape="box"];2927[label="xuu750",fontsize=16,color="green",shape="box"];2928 -> 34[label="",style="dashed", color="red", weight=0]; 2928[label="xuu751 < xuu761",fontsize=16,color="magenta"];2928 -> 3006[label="",style="dashed", color="magenta", weight=3]; 2928 -> 3007[label="",style="dashed", color="magenta", weight=3]; 2929 -> 35[label="",style="dashed", color="red", weight=0]; 2929[label="xuu751 < xuu761",fontsize=16,color="magenta"];2929 -> 3008[label="",style="dashed", color="magenta", weight=3]; 2929 -> 3009[label="",style="dashed", color="magenta", weight=3]; 2930 -> 36[label="",style="dashed", color="red", weight=0]; 2930[label="xuu751 < xuu761",fontsize=16,color="magenta"];2930 -> 3010[label="",style="dashed", color="magenta", weight=3]; 2930 -> 3011[label="",style="dashed", color="magenta", weight=3]; 2931 -> 37[label="",style="dashed", color="red", weight=0]; 2931[label="xuu751 < xuu761",fontsize=16,color="magenta"];2931 -> 3012[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3013[label="",style="dashed", color="magenta", weight=3]; 2932 -> 38[label="",style="dashed", color="red", weight=0]; 2932[label="xuu751 < xuu761",fontsize=16,color="magenta"];2932 -> 3014[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3015[label="",style="dashed", color="magenta", weight=3]; 2933 -> 39[label="",style="dashed", color="red", weight=0]; 2933[label="xuu751 < xuu761",fontsize=16,color="magenta"];2933 -> 3016[label="",style="dashed", color="magenta", weight=3]; 2933 -> 3017[label="",style="dashed", color="magenta", weight=3]; 2934 -> 40[label="",style="dashed", color="red", weight=0]; 2934[label="xuu751 < xuu761",fontsize=16,color="magenta"];2934 -> 3018[label="",style="dashed", color="magenta", weight=3]; 2934 -> 3019[label="",style="dashed", color="magenta", weight=3]; 2935 -> 41[label="",style="dashed", color="red", weight=0]; 2935[label="xuu751 < xuu761",fontsize=16,color="magenta"];2935 -> 3020[label="",style="dashed", color="magenta", weight=3]; 2935 -> 3021[label="",style="dashed", color="magenta", weight=3]; 2936 -> 42[label="",style="dashed", color="red", weight=0]; 2936[label="xuu751 < xuu761",fontsize=16,color="magenta"];2936 -> 3022[label="",style="dashed", color="magenta", weight=3]; 2936 -> 3023[label="",style="dashed", color="magenta", weight=3]; 2937 -> 43[label="",style="dashed", color="red", weight=0]; 2937[label="xuu751 < xuu761",fontsize=16,color="magenta"];2937 -> 3024[label="",style="dashed", color="magenta", weight=3]; 2937 -> 3025[label="",style="dashed", color="magenta", weight=3]; 2938 -> 44[label="",style="dashed", color="red", weight=0]; 2938[label="xuu751 < xuu761",fontsize=16,color="magenta"];2938 -> 3026[label="",style="dashed", color="magenta", weight=3]; 2938 -> 3027[label="",style="dashed", color="magenta", weight=3]; 2939 -> 45[label="",style="dashed", color="red", weight=0]; 2939[label="xuu751 < xuu761",fontsize=16,color="magenta"];2939 -> 3028[label="",style="dashed", color="magenta", weight=3]; 2939 -> 3029[label="",style="dashed", color="magenta", weight=3]; 2940 -> 46[label="",style="dashed", color="red", weight=0]; 2940[label="xuu751 < xuu761",fontsize=16,color="magenta"];2940 -> 3030[label="",style="dashed", color="magenta", weight=3]; 2940 -> 3031[label="",style="dashed", color="magenta", weight=3]; 2941 -> 47[label="",style="dashed", color="red", weight=0]; 2941[label="xuu751 < xuu761",fontsize=16,color="magenta"];2941 -> 3032[label="",style="dashed", color="magenta", weight=3]; 2941 -> 3033[label="",style="dashed", color="magenta", weight=3]; 2942[label="xuu751 == xuu761",fontsize=16,color="blue",shape="box"];4084[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4084[label="",style="solid", color="blue", weight=9]; 4084 -> 3034[label="",style="solid", color="blue", weight=3]; 4085[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4085[label="",style="solid", color="blue", weight=9]; 4085 -> 3035[label="",style="solid", color="blue", weight=3]; 4086[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4086[label="",style="solid", color="blue", weight=9]; 4086 -> 3036[label="",style="solid", color="blue", weight=3]; 4087[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4087[label="",style="solid", color="blue", weight=9]; 4087 -> 3037[label="",style="solid", color="blue", weight=3]; 4088[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4088[label="",style="solid", color="blue", weight=9]; 4088 -> 3038[label="",style="solid", color="blue", weight=3]; 4089[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4089[label="",style="solid", color="blue", weight=9]; 4089 -> 3039[label="",style="solid", color="blue", weight=3]; 4090[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4090[label="",style="solid", color="blue", weight=9]; 4090 -> 3040[label="",style="solid", color="blue", weight=3]; 4091[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4091[label="",style="solid", color="blue", weight=9]; 4091 -> 3041[label="",style="solid", color="blue", weight=3]; 4092[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4092[label="",style="solid", color="blue", weight=9]; 4092 -> 3042[label="",style="solid", color="blue", weight=3]; 4093[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4093[label="",style="solid", color="blue", weight=9]; 4093 -> 3043[label="",style="solid", color="blue", weight=3]; 4094[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4094[label="",style="solid", color="blue", weight=9]; 4094 -> 3044[label="",style="solid", color="blue", weight=3]; 4095[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4095[label="",style="solid", color="blue", weight=9]; 4095 -> 3045[label="",style="solid", color="blue", weight=3]; 4096[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4096[label="",style="solid", color="blue", weight=9]; 4096 -> 3046[label="",style="solid", color="blue", weight=3]; 4097[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2942 -> 4097[label="",style="solid", color="blue", weight=9]; 4097 -> 3047[label="",style="solid", color="blue", weight=3]; 2943[label="xuu752 <= xuu762",fontsize=16,color="blue",shape="box"];4098[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2943 -> 4098[label="",style="solid", color="blue", weight=9]; 4098 -> 3048[label="",style="solid", color="blue", weight=3]; 4099[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2943 -> 4099[label="",style="solid", color="blue", weight=9]; 4099 -> 3049[label="",style="solid", color="blue", weight=3]; 4100[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2943 -> 4100[label="",style="solid", color="blue", weight=9]; 4100 -> 3050[label="",style="solid", color="blue", weight=3]; 4101[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2943 -> 4101[label="",style="solid", color="blue", weight=9]; 4101 -> 3051[label="",style="solid", color="blue", weight=3]; 4102[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2943 -> 4102[label="",style="solid", color="blue", weight=9]; 4102 -> 3052[label="",style="solid", color="blue", weight=3]; 4103[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2943 -> 4103[label="",style="solid", color="blue", weight=9]; 4103 -> 3053[label="",style="solid", color="blue", weight=3]; 4104[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2943 -> 4104[label="",style="solid", color="blue", weight=9]; 4104 -> 3054[label="",style="solid", color="blue", weight=3]; 4105[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2943 -> 4105[label="",style="solid", color="blue", weight=9]; 4105 -> 3055[label="",style="solid", color="blue", weight=3]; 4106[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2943 -> 4106[label="",style="solid", color="blue", weight=9]; 4106 -> 3056[label="",style="solid", color="blue", weight=3]; 4107[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2943 -> 4107[label="",style="solid", color="blue", weight=9]; 4107 -> 3057[label="",style="solid", color="blue", weight=3]; 4108[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2943 -> 4108[label="",style="solid", color="blue", weight=9]; 4108 -> 3058[label="",style="solid", color="blue", weight=3]; 4109[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2943 -> 4109[label="",style="solid", color="blue", weight=9]; 4109 -> 3059[label="",style="solid", color="blue", weight=3]; 4110[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2943 -> 4110[label="",style="solid", color="blue", weight=9]; 4110 -> 3060[label="",style="solid", color="blue", weight=3]; 4111[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2943 -> 4111[label="",style="solid", color="blue", weight=9]; 4111 -> 3061[label="",style="solid", color="blue", weight=3]; 2944[label="xuu760",fontsize=16,color="green",shape="box"];2945[label="xuu750",fontsize=16,color="green",shape="box"];2946[label="xuu760",fontsize=16,color="green",shape="box"];2947[label="xuu750",fontsize=16,color="green",shape="box"];2948[label="xuu760",fontsize=16,color="green",shape="box"];2949[label="xuu750",fontsize=16,color="green",shape="box"];2950[label="xuu760",fontsize=16,color="green",shape="box"];2951[label="xuu750",fontsize=16,color="green",shape="box"];2952[label="xuu760",fontsize=16,color="green",shape="box"];2953[label="xuu750",fontsize=16,color="green",shape="box"];2954[label="xuu760",fontsize=16,color="green",shape="box"];2955[label="xuu750",fontsize=16,color="green",shape="box"];2956[label="xuu760",fontsize=16,color="green",shape="box"];2957[label="xuu750",fontsize=16,color="green",shape="box"];2958[label="xuu760",fontsize=16,color="green",shape="box"];2959[label="xuu750",fontsize=16,color="green",shape="box"];2960[label="xuu760",fontsize=16,color="green",shape="box"];2961[label="xuu750",fontsize=16,color="green",shape="box"];2962[label="xuu760",fontsize=16,color="green",shape="box"];2963[label="xuu750",fontsize=16,color="green",shape="box"];2964[label="xuu760",fontsize=16,color="green",shape="box"];2965[label="xuu750",fontsize=16,color="green",shape="box"];2966[label="xuu760",fontsize=16,color="green",shape="box"];2967[label="xuu750",fontsize=16,color="green",shape="box"];2968[label="xuu760",fontsize=16,color="green",shape="box"];2969[label="xuu750",fontsize=16,color="green",shape="box"];2970[label="xuu760",fontsize=16,color="green",shape="box"];2971[label="xuu750",fontsize=16,color="green",shape="box"];2972[label="xuu751",fontsize=16,color="green",shape="box"];2973[label="xuu761",fontsize=16,color="green",shape="box"];2974[label="xuu751",fontsize=16,color="green",shape="box"];2975[label="xuu761",fontsize=16,color="green",shape="box"];2976[label="xuu751",fontsize=16,color="green",shape="box"];2977[label="xuu761",fontsize=16,color="green",shape="box"];2978[label="xuu751",fontsize=16,color="green",shape="box"];2979[label="xuu761",fontsize=16,color="green",shape="box"];2980[label="xuu751",fontsize=16,color="green",shape="box"];2981[label="xuu761",fontsize=16,color="green",shape="box"];2982[label="xuu751",fontsize=16,color="green",shape="box"];2983[label="xuu761",fontsize=16,color="green",shape="box"];2984[label="xuu751",fontsize=16,color="green",shape="box"];2985[label="xuu761",fontsize=16,color="green",shape="box"];2986[label="xuu751",fontsize=16,color="green",shape="box"];2987[label="xuu761",fontsize=16,color="green",shape="box"];2988[label="xuu751",fontsize=16,color="green",shape="box"];2989[label="xuu761",fontsize=16,color="green",shape="box"];2990[label="xuu751",fontsize=16,color="green",shape="box"];2991[label="xuu761",fontsize=16,color="green",shape="box"];2992[label="xuu751",fontsize=16,color="green",shape="box"];2993[label="xuu761",fontsize=16,color="green",shape="box"];2994[label="xuu751",fontsize=16,color="green",shape="box"];2995[label="xuu761",fontsize=16,color="green",shape="box"];2996[label="xuu751",fontsize=16,color="green",shape="box"];2997[label="xuu761",fontsize=16,color="green",shape="box"];2998[label="xuu751",fontsize=16,color="green",shape="box"];2999[label="xuu761",fontsize=16,color="green",shape="box"];3000[label="xuu443",fontsize=16,color="green",shape="box"];3001[label="FiniteMap.mkBalBranch6MkBalBranch10 xuu17 xuu18 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 xuu440 xuu441 xuu442 xuu443 xuu444 True",fontsize=16,color="black",shape="box"];3001 -> 3062[label="",style="solid", color="black", weight=3]; 3002 -> 3143[label="",style="dashed", color="red", weight=0]; 3002[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu440 xuu441 xuu443 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xuu17 xuu18 xuu444 xuu21)",fontsize=16,color="magenta"];3002 -> 3144[label="",style="dashed", color="magenta", weight=3]; 3002 -> 3145[label="",style="dashed", color="magenta", weight=3]; 3002 -> 3146[label="",style="dashed", color="magenta", weight=3]; 3002 -> 3147[label="",style="dashed", color="magenta", weight=3]; 3002 -> 3148[label="",style="dashed", color="magenta", weight=3]; 3002 -> 3149[label="",style="dashed", color="magenta", weight=3]; 3002 -> 3150[label="",style="dashed", color="magenta", weight=3]; 3002 -> 3151[label="",style="dashed", color="magenta", weight=3]; 3002 -> 3152[label="",style="dashed", color="magenta", weight=3]; 3003[label="error []",fontsize=16,color="red",shape="box"];3004 -> 3143[label="",style="dashed", color="red", weight=0]; 3004[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu2130 xuu2131 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xuu17 xuu18 xuu44 xuu2133) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu210 xuu211 xuu2134 xuu214)",fontsize=16,color="magenta"];3004 -> 3153[label="",style="dashed", color="magenta", weight=3]; 3004 -> 3154[label="",style="dashed", color="magenta", weight=3]; 3004 -> 3155[label="",style="dashed", color="magenta", weight=3]; 3004 -> 3156[label="",style="dashed", color="magenta", weight=3]; 3004 -> 3157[label="",style="dashed", color="magenta", weight=3]; 3004 -> 3158[label="",style="dashed", color="magenta", weight=3]; 3004 -> 3159[label="",style="dashed", color="magenta", weight=3]; 3004 -> 3160[label="",style="dashed", color="magenta", weight=3]; 3004 -> 3161[label="",style="dashed", color="magenta", weight=3]; 3005 -> 542[label="",style="dashed", color="red", weight=0]; 3005[label="FiniteMap.mkBranchResult xuu17 xuu18 xuu44 xuu213",fontsize=16,color="magenta"];3005 -> 3084[label="",style="dashed", color="magenta", weight=3]; 3006[label="xuu761",fontsize=16,color="green",shape="box"];3007[label="xuu751",fontsize=16,color="green",shape="box"];3008[label="xuu761",fontsize=16,color="green",shape="box"];3009[label="xuu751",fontsize=16,color="green",shape="box"];3010[label="xuu761",fontsize=16,color="green",shape="box"];3011[label="xuu751",fontsize=16,color="green",shape="box"];3012[label="xuu761",fontsize=16,color="green",shape="box"];3013[label="xuu751",fontsize=16,color="green",shape="box"];3014[label="xuu761",fontsize=16,color="green",shape="box"];3015[label="xuu751",fontsize=16,color="green",shape="box"];3016[label="xuu761",fontsize=16,color="green",shape="box"];3017[label="xuu751",fontsize=16,color="green",shape="box"];3018[label="xuu761",fontsize=16,color="green",shape="box"];3019[label="xuu751",fontsize=16,color="green",shape="box"];3020[label="xuu761",fontsize=16,color="green",shape="box"];3021[label="xuu751",fontsize=16,color="green",shape="box"];3022[label="xuu761",fontsize=16,color="green",shape="box"];3023[label="xuu751",fontsize=16,color="green",shape="box"];3024[label="xuu761",fontsize=16,color="green",shape="box"];3025[label="xuu751",fontsize=16,color="green",shape="box"];3026[label="xuu761",fontsize=16,color="green",shape="box"];3027[label="xuu751",fontsize=16,color="green",shape="box"];3028[label="xuu761",fontsize=16,color="green",shape="box"];3029[label="xuu751",fontsize=16,color="green",shape="box"];3030[label="xuu761",fontsize=16,color="green",shape="box"];3031[label="xuu751",fontsize=16,color="green",shape="box"];3032[label="xuu761",fontsize=16,color="green",shape="box"];3033[label="xuu751",fontsize=16,color="green",shape="box"];3034 -> 574[label="",style="dashed", color="red", weight=0]; 3034[label="xuu751 == xuu761",fontsize=16,color="magenta"];3034 -> 3085[label="",style="dashed", color="magenta", weight=3]; 3034 -> 3086[label="",style="dashed", color="magenta", weight=3]; 3035 -> 567[label="",style="dashed", color="red", weight=0]; 3035[label="xuu751 == xuu761",fontsize=16,color="magenta"];3035 -> 3087[label="",style="dashed", color="magenta", weight=3]; 3035 -> 3088[label="",style="dashed", color="magenta", weight=3]; 3036 -> 568[label="",style="dashed", color="red", weight=0]; 3036[label="xuu751 == xuu761",fontsize=16,color="magenta"];3036 -> 3089[label="",style="dashed", color="magenta", weight=3]; 3036 -> 3090[label="",style="dashed", color="magenta", weight=3]; 3037 -> 566[label="",style="dashed", color="red", weight=0]; 3037[label="xuu751 == xuu761",fontsize=16,color="magenta"];3037 -> 3091[label="",style="dashed", color="magenta", weight=3]; 3037 -> 3092[label="",style="dashed", color="magenta", weight=3]; 3038 -> 575[label="",style="dashed", color="red", weight=0]; 3038[label="xuu751 == xuu761",fontsize=16,color="magenta"];3038 -> 3093[label="",style="dashed", color="magenta", weight=3]; 3038 -> 3094[label="",style="dashed", color="magenta", weight=3]; 3039 -> 565[label="",style="dashed", color="red", weight=0]; 3039[label="xuu751 == xuu761",fontsize=16,color="magenta"];3039 -> 3095[label="",style="dashed", color="magenta", weight=3]; 3039 -> 3096[label="",style="dashed", color="magenta", weight=3]; 3040 -> 572[label="",style="dashed", color="red", weight=0]; 3040[label="xuu751 == xuu761",fontsize=16,color="magenta"];3040 -> 3097[label="",style="dashed", color="magenta", weight=3]; 3040 -> 3098[label="",style="dashed", color="magenta", weight=3]; 3041 -> 571[label="",style="dashed", color="red", weight=0]; 3041[label="xuu751 == xuu761",fontsize=16,color="magenta"];3041 -> 3099[label="",style="dashed", color="magenta", weight=3]; 3041 -> 3100[label="",style="dashed", color="magenta", weight=3]; 3042 -> 576[label="",style="dashed", color="red", weight=0]; 3042[label="xuu751 == xuu761",fontsize=16,color="magenta"];3042 -> 3101[label="",style="dashed", color="magenta", weight=3]; 3042 -> 3102[label="",style="dashed", color="magenta", weight=3]; 3043 -> 577[label="",style="dashed", color="red", weight=0]; 3043[label="xuu751 == xuu761",fontsize=16,color="magenta"];3043 -> 3103[label="",style="dashed", color="magenta", weight=3]; 3043 -> 3104[label="",style="dashed", color="magenta", weight=3]; 3044 -> 573[label="",style="dashed", color="red", weight=0]; 3044[label="xuu751 == xuu761",fontsize=16,color="magenta"];3044 -> 3105[label="",style="dashed", color="magenta", weight=3]; 3044 -> 3106[label="",style="dashed", color="magenta", weight=3]; 3045 -> 569[label="",style="dashed", color="red", weight=0]; 3045[label="xuu751 == xuu761",fontsize=16,color="magenta"];3045 -> 3107[label="",style="dashed", color="magenta", weight=3]; 3045 -> 3108[label="",style="dashed", color="magenta", weight=3]; 3046 -> 570[label="",style="dashed", color="red", weight=0]; 3046[label="xuu751 == xuu761",fontsize=16,color="magenta"];3046 -> 3109[label="",style="dashed", color="magenta", weight=3]; 3046 -> 3110[label="",style="dashed", color="magenta", weight=3]; 3047 -> 564[label="",style="dashed", color="red", weight=0]; 3047[label="xuu751 == xuu761",fontsize=16,color="magenta"];3047 -> 3111[label="",style="dashed", color="magenta", weight=3]; 3047 -> 3112[label="",style="dashed", color="magenta", weight=3]; 3048 -> 1503[label="",style="dashed", color="red", weight=0]; 3048[label="xuu752 <= xuu762",fontsize=16,color="magenta"];3048 -> 3113[label="",style="dashed", color="magenta", weight=3]; 3048 -> 3114[label="",style="dashed", color="magenta", weight=3]; 3049 -> 1504[label="",style="dashed", color="red", weight=0]; 3049[label="xuu752 <= xuu762",fontsize=16,color="magenta"];3049 -> 3115[label="",style="dashed", color="magenta", weight=3]; 3049 -> 3116[label="",style="dashed", color="magenta", weight=3]; 3050 -> 1505[label="",style="dashed", color="red", weight=0]; 3050[label="xuu752 <= xuu762",fontsize=16,color="magenta"];3050 -> 3117[label="",style="dashed", color="magenta", weight=3]; 3050 -> 3118[label="",style="dashed", color="magenta", weight=3]; 3051 -> 1506[label="",style="dashed", color="red", weight=0]; 3051[label="xuu752 <= xuu762",fontsize=16,color="magenta"];3051 -> 3119[label="",style="dashed", color="magenta", weight=3]; 3051 -> 3120[label="",style="dashed", color="magenta", weight=3]; 3052 -> 1507[label="",style="dashed", color="red", weight=0]; 3052[label="xuu752 <= xuu762",fontsize=16,color="magenta"];3052 -> 3121[label="",style="dashed", color="magenta", weight=3]; 3052 -> 3122[label="",style="dashed", color="magenta", weight=3]; 3053 -> 1508[label="",style="dashed", color="red", weight=0]; 3053[label="xuu752 <= xuu762",fontsize=16,color="magenta"];3053 -> 3123[label="",style="dashed", color="magenta", weight=3]; 3053 -> 3124[label="",style="dashed", color="magenta", weight=3]; 3054 -> 1509[label="",style="dashed", color="red", weight=0]; 3054[label="xuu752 <= xuu762",fontsize=16,color="magenta"];3054 -> 3125[label="",style="dashed", color="magenta", weight=3]; 3054 -> 3126[label="",style="dashed", color="magenta", weight=3]; 3055 -> 1510[label="",style="dashed", color="red", weight=0]; 3055[label="xuu752 <= xuu762",fontsize=16,color="magenta"];3055 -> 3127[label="",style="dashed", color="magenta", weight=3]; 3055 -> 3128[label="",style="dashed", color="magenta", weight=3]; 3056 -> 1511[label="",style="dashed", color="red", weight=0]; 3056[label="xuu752 <= xuu762",fontsize=16,color="magenta"];3056 -> 3129[label="",style="dashed", color="magenta", weight=3]; 3056 -> 3130[label="",style="dashed", color="magenta", weight=3]; 3057 -> 1512[label="",style="dashed", color="red", weight=0]; 3057[label="xuu752 <= xuu762",fontsize=16,color="magenta"];3057 -> 3131[label="",style="dashed", color="magenta", weight=3]; 3057 -> 3132[label="",style="dashed", color="magenta", weight=3]; 3058 -> 1513[label="",style="dashed", color="red", weight=0]; 3058[label="xuu752 <= xuu762",fontsize=16,color="magenta"];3058 -> 3133[label="",style="dashed", color="magenta", weight=3]; 3058 -> 3134[label="",style="dashed", color="magenta", weight=3]; 3059 -> 1514[label="",style="dashed", color="red", weight=0]; 3059[label="xuu752 <= xuu762",fontsize=16,color="magenta"];3059 -> 3135[label="",style="dashed", color="magenta", weight=3]; 3059 -> 3136[label="",style="dashed", color="magenta", weight=3]; 3060 -> 1515[label="",style="dashed", color="red", weight=0]; 3060[label="xuu752 <= xuu762",fontsize=16,color="magenta"];3060 -> 3137[label="",style="dashed", color="magenta", weight=3]; 3060 -> 3138[label="",style="dashed", color="magenta", weight=3]; 3061 -> 1516[label="",style="dashed", color="red", weight=0]; 3061[label="xuu752 <= xuu762",fontsize=16,color="magenta"];3061 -> 3139[label="",style="dashed", color="magenta", weight=3]; 3061 -> 3140[label="",style="dashed", color="magenta", weight=3]; 3062[label="FiniteMap.mkBalBranch6Double_R xuu17 xuu18 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu21",fontsize=16,color="burlywood",shape="box"];4112[label="xuu444/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3062 -> 4112[label="",style="solid", color="burlywood", weight=9]; 4112 -> 3141[label="",style="solid", color="burlywood", weight=3]; 4113[label="xuu444/FiniteMap.Branch xuu4440 xuu4441 xuu4442 xuu4443 xuu4444",fontsize=10,color="white",style="solid",shape="box"];3062 -> 4113[label="",style="solid", color="burlywood", weight=9]; 4113 -> 3142[label="",style="solid", color="burlywood", weight=3]; 3144[label="xuu18",fontsize=16,color="green",shape="box"];3145[label="xuu444",fontsize=16,color="green",shape="box"];3146[label="xuu21",fontsize=16,color="green",shape="box"];3147[label="xuu440",fontsize=16,color="green",shape="box"];3148[label="xuu443",fontsize=16,color="green",shape="box"];3149[label="xuu17",fontsize=16,color="green",shape="box"];3150[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3151[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3152[label="xuu441",fontsize=16,color="green",shape="box"];3143[label="FiniteMap.mkBranch (Pos (Succ xuu244)) xuu245 xuu246 xuu247 (FiniteMap.mkBranch (Pos (Succ xuu248)) xuu249 xuu250 xuu251 xuu252)",fontsize=16,color="black",shape="triangle"];3143 -> 3180[label="",style="solid", color="black", weight=3]; 3153[label="xuu211",fontsize=16,color="green",shape="box"];3154[label="xuu2134",fontsize=16,color="green",shape="box"];3155[label="xuu214",fontsize=16,color="green",shape="box"];3156[label="xuu2130",fontsize=16,color="green",shape="box"];3157[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xuu17 xuu18 xuu44 xuu2133",fontsize=16,color="black",shape="box"];3157 -> 3181[label="",style="solid", color="black", weight=3]; 3158[label="xuu210",fontsize=16,color="green",shape="box"];3159[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3160[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3161[label="xuu2131",fontsize=16,color="green",shape="box"];3084[label="xuu213",fontsize=16,color="green",shape="box"];3085[label="xuu761",fontsize=16,color="green",shape="box"];3086[label="xuu751",fontsize=16,color="green",shape="box"];3087[label="xuu761",fontsize=16,color="green",shape="box"];3088[label="xuu751",fontsize=16,color="green",shape="box"];3089[label="xuu761",fontsize=16,color="green",shape="box"];3090[label="xuu751",fontsize=16,color="green",shape="box"];3091[label="xuu761",fontsize=16,color="green",shape="box"];3092[label="xuu751",fontsize=16,color="green",shape="box"];3093[label="xuu761",fontsize=16,color="green",shape="box"];3094[label="xuu751",fontsize=16,color="green",shape="box"];3095[label="xuu761",fontsize=16,color="green",shape="box"];3096[label="xuu751",fontsize=16,color="green",shape="box"];3097[label="xuu761",fontsize=16,color="green",shape="box"];3098[label="xuu751",fontsize=16,color="green",shape="box"];3099[label="xuu761",fontsize=16,color="green",shape="box"];3100[label="xuu751",fontsize=16,color="green",shape="box"];3101[label="xuu761",fontsize=16,color="green",shape="box"];3102[label="xuu751",fontsize=16,color="green",shape="box"];3103[label="xuu761",fontsize=16,color="green",shape="box"];3104[label="xuu751",fontsize=16,color="green",shape="box"];3105[label="xuu761",fontsize=16,color="green",shape="box"];3106[label="xuu751",fontsize=16,color="green",shape="box"];3107[label="xuu761",fontsize=16,color="green",shape="box"];3108[label="xuu751",fontsize=16,color="green",shape="box"];3109[label="xuu761",fontsize=16,color="green",shape="box"];3110[label="xuu751",fontsize=16,color="green",shape="box"];3111[label="xuu761",fontsize=16,color="green",shape="box"];3112[label="xuu751",fontsize=16,color="green",shape="box"];3113[label="xuu752",fontsize=16,color="green",shape="box"];3114[label="xuu762",fontsize=16,color="green",shape="box"];3115[label="xuu752",fontsize=16,color="green",shape="box"];3116[label="xuu762",fontsize=16,color="green",shape="box"];3117[label="xuu752",fontsize=16,color="green",shape="box"];3118[label="xuu762",fontsize=16,color="green",shape="box"];3119[label="xuu752",fontsize=16,color="green",shape="box"];3120[label="xuu762",fontsize=16,color="green",shape="box"];3121[label="xuu752",fontsize=16,color="green",shape="box"];3122[label="xuu762",fontsize=16,color="green",shape="box"];3123[label="xuu752",fontsize=16,color="green",shape="box"];3124[label="xuu762",fontsize=16,color="green",shape="box"];3125[label="xuu752",fontsize=16,color="green",shape="box"];3126[label="xuu762",fontsize=16,color="green",shape="box"];3127[label="xuu752",fontsize=16,color="green",shape="box"];3128[label="xuu762",fontsize=16,color="green",shape="box"];3129[label="xuu752",fontsize=16,color="green",shape="box"];3130[label="xuu762",fontsize=16,color="green",shape="box"];3131[label="xuu752",fontsize=16,color="green",shape="box"];3132[label="xuu762",fontsize=16,color="green",shape="box"];3133[label="xuu752",fontsize=16,color="green",shape="box"];3134[label="xuu762",fontsize=16,color="green",shape="box"];3135[label="xuu752",fontsize=16,color="green",shape="box"];3136[label="xuu762",fontsize=16,color="green",shape="box"];3137[label="xuu752",fontsize=16,color="green",shape="box"];3138[label="xuu762",fontsize=16,color="green",shape="box"];3139[label="xuu752",fontsize=16,color="green",shape="box"];3140[label="xuu762",fontsize=16,color="green",shape="box"];3141[label="FiniteMap.mkBalBranch6Double_R xuu17 xuu18 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 FiniteMap.EmptyFM) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 FiniteMap.EmptyFM) xuu21",fontsize=16,color="black",shape="box"];3141 -> 3182[label="",style="solid", color="black", weight=3]; 3142[label="FiniteMap.mkBalBranch6Double_R xuu17 xuu18 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 (FiniteMap.Branch xuu4440 xuu4441 xuu4442 xuu4443 xuu4444)) xuu21 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 (FiniteMap.Branch xuu4440 xuu4441 xuu4442 xuu4443 xuu4444)) xuu21",fontsize=16,color="black",shape="box"];3142 -> 3183[label="",style="solid", color="black", weight=3]; 3180 -> 542[label="",style="dashed", color="red", weight=0]; 3180[label="FiniteMap.mkBranchResult xuu245 xuu246 xuu247 (FiniteMap.mkBranch (Pos (Succ xuu248)) xuu249 xuu250 xuu251 xuu252)",fontsize=16,color="magenta"];3180 -> 3184[label="",style="dashed", color="magenta", weight=3]; 3180 -> 3185[label="",style="dashed", color="magenta", weight=3]; 3180 -> 3186[label="",style="dashed", color="magenta", weight=3]; 3180 -> 3187[label="",style="dashed", color="magenta", weight=3]; 3181 -> 542[label="",style="dashed", color="red", weight=0]; 3181[label="FiniteMap.mkBranchResult xuu17 xuu18 xuu44 xuu2133",fontsize=16,color="magenta"];3181 -> 3188[label="",style="dashed", color="magenta", weight=3]; 3182[label="error []",fontsize=16,color="red",shape="box"];3183 -> 3143[label="",style="dashed", color="red", weight=0]; 3183[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu4440 xuu4441 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu440 xuu441 xuu443 xuu4443) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xuu17 xuu18 xuu4444 xuu21)",fontsize=16,color="magenta"];3183 -> 3189[label="",style="dashed", color="magenta", weight=3]; 3183 -> 3190[label="",style="dashed", color="magenta", weight=3]; 3183 -> 3191[label="",style="dashed", color="magenta", weight=3]; 3183 -> 3192[label="",style="dashed", color="magenta", weight=3]; 3183 -> 3193[label="",style="dashed", color="magenta", weight=3]; 3183 -> 3194[label="",style="dashed", color="magenta", weight=3]; 3183 -> 3195[label="",style="dashed", color="magenta", weight=3]; 3183 -> 3196[label="",style="dashed", color="magenta", weight=3]; 3183 -> 3197[label="",style="dashed", color="magenta", weight=3]; 3184[label="xuu245",fontsize=16,color="green",shape="box"];3185[label="xuu246",fontsize=16,color="green",shape="box"];3186[label="xuu247",fontsize=16,color="green",shape="box"];3187[label="FiniteMap.mkBranch (Pos (Succ xuu248)) xuu249 xuu250 xuu251 xuu252",fontsize=16,color="black",shape="triangle"];3187 -> 3198[label="",style="solid", color="black", weight=3]; 3188[label="xuu2133",fontsize=16,color="green",shape="box"];3189[label="xuu18",fontsize=16,color="green",shape="box"];3190[label="xuu4444",fontsize=16,color="green",shape="box"];3191[label="xuu21",fontsize=16,color="green",shape="box"];3192[label="xuu4440",fontsize=16,color="green",shape="box"];3193 -> 3187[label="",style="dashed", color="red", weight=0]; 3193[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu440 xuu441 xuu443 xuu4443",fontsize=16,color="magenta"];3193 -> 3199[label="",style="dashed", color="magenta", weight=3]; 3193 -> 3200[label="",style="dashed", color="magenta", weight=3]; 3193 -> 3201[label="",style="dashed", color="magenta", weight=3]; 3193 -> 3202[label="",style="dashed", color="magenta", weight=3]; 3193 -> 3203[label="",style="dashed", color="magenta", weight=3]; 3194[label="xuu17",fontsize=16,color="green",shape="box"];3195[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3196[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3197[label="xuu4441",fontsize=16,color="green",shape="box"];3198 -> 542[label="",style="dashed", color="red", weight=0]; 3198[label="FiniteMap.mkBranchResult xuu249 xuu250 xuu251 xuu252",fontsize=16,color="magenta"];3198 -> 3204[label="",style="dashed", color="magenta", weight=3]; 3198 -> 3205[label="",style="dashed", color="magenta", weight=3]; 3198 -> 3206[label="",style="dashed", color="magenta", weight=3]; 3198 -> 3207[label="",style="dashed", color="magenta", weight=3]; 3199[label="xuu441",fontsize=16,color="green",shape="box"];3200[label="xuu443",fontsize=16,color="green",shape="box"];3201[label="xuu4443",fontsize=16,color="green",shape="box"];3202[label="xuu440",fontsize=16,color="green",shape="box"];3203[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3204[label="xuu249",fontsize=16,color="green",shape="box"];3205[label="xuu250",fontsize=16,color="green",shape="box"];3206[label="xuu251",fontsize=16,color="green",shape="box"];3207[label="xuu252",fontsize=16,color="green",shape="box"];} ---------------------------------------- (16) Complex Obligation (AND) ---------------------------------------- (17) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(xuu50000), Succ(xuu4000)) -> new_primCmpNat(xuu50000, xuu4000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (18) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_primCmpNat(Succ(xuu50000), Succ(xuu4000)) -> new_primCmpNat(xuu50000, xuu4000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (19) YES ---------------------------------------- (20) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C(xuu3, Branch(xuu40, xuu41, xuu42, xuu43, xuu44), xuu500, xuu501, bd, be) -> new_addToFM_C2(xuu3, xuu40, xuu41, xuu42, xuu43, xuu44, xuu500, xuu501, new_lt24(xuu500, xuu40, bd), bd, be) new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, h, ba) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_gt(xuu22, xuu17, h), h, ba) new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba) -> new_addToFM_C(xuu16, xuu20, xuu22, xuu23, h, ba) new_addToFM_C1(xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, xuu41, xuu42, True, bb, bc) -> new_addToFM_C(xuu35, xuu40, xuu41, xuu42, bb, bc) The TRS R consists of the following rules: new_esEs27(xuu50001, xuu4001, app(ty_Ratio, bcc)) -> new_esEs13(xuu50001, xuu4001, bcc) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt22(xuu113, xuu116, ty_Integer) -> new_lt16(xuu113, xuu116) new_lt20(xuu750, xuu760, ty_Float) -> new_lt15(xuu750, xuu760) new_primPlusNat0(Zero, Zero) -> Zero new_pePe(True, xuu215) -> True new_esEs8(xuu5000, xuu400, app(ty_[], bad)) -> new_esEs22(xuu5000, xuu400, bad) new_lt18(xuu500, xuu40, caf) -> new_esEs29(new_compare13(xuu500, xuu40, caf)) new_esEs38(xuu114, xuu117, ty_Bool) -> new_esEs19(xuu114, xuu117) new_esEs17(Integer(xuu50000), Integer(xuu4000)) -> new_primEqInt(xuu50000, xuu4000) new_esEs19(False, True) -> False new_esEs19(True, False) -> False new_lt19(xuu126, xuu128, app(ty_Maybe, ebe)) -> new_lt18(xuu126, xuu128, ebe) new_esEs5(xuu5001, xuu401, app(ty_Maybe, eb)) -> new_esEs21(xuu5001, xuu401, eb) new_compare25(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, fcg, fch, fda) -> new_compare112(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, new_lt22(xuu113, xuu116, fcg), new_asAs(new_esEs37(xuu113, xuu116, fcg), new_pePe(new_lt23(xuu114, xuu117, fch), new_asAs(new_esEs38(xuu114, xuu117, fch), new_ltEs24(xuu115, xuu118, fda)))), fcg, fch, fda) new_esEs34(xuu126, xuu128, app(app(ty_@2, ebf), ebg)) -> new_esEs18(xuu126, xuu128, ebf, ebg) new_compare14(xuu5000, xuu400, app(ty_Ratio, ccf)) -> new_compare15(xuu5000, xuu400, ccf) new_compare14(xuu5000, xuu400, app(app(ty_@2, cdb), cdc)) -> new_compare18(xuu5000, xuu400, cdb, cdc) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs22(xuu752, xuu762, ty_Char) -> new_ltEs14(xuu752, xuu762) new_compare26(xuu75, xuu76, True, cgd, cge) -> EQ new_esEs32(xuu50000, xuu4000, ty_Char) -> new_esEs24(xuu50000, xuu4000) new_lt20(xuu750, xuu760, ty_Ordering) -> new_lt7(xuu750, xuu760) new_compare11(Double(xuu5000, Pos(xuu50010)), Double(xuu400, Pos(xuu4010))) -> new_compare12(new_sr(xuu5000, Pos(xuu4010)), new_sr(Pos(xuu50010), xuu400)) new_esEs25(Left(xuu50000), Left(xuu4000), ty_Bool, dc) -> new_esEs19(xuu50000, xuu4000) new_esEs4(xuu5000, xuu400, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs14(xuu5000, xuu400, cb, cc, cd) new_compare111(xuu156, xuu157, True, ded, dee) -> LT new_lt19(xuu126, xuu128, app(app(app(ty_@3, eag), eah), eba)) -> new_lt4(xuu126, xuu128, eag, eah, eba) new_esEs21(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, deg), deh), dfa)) -> new_esEs14(xuu50000, xuu4000, deg, deh, dfa) new_lt20(xuu750, xuu760, ty_Double) -> new_lt9(xuu750, xuu760) new_lt19(xuu126, xuu128, app(ty_Ratio, ebb)) -> new_lt11(xuu126, xuu128, ebb) new_lt17(xuu750, xuu760, app(app(ty_@2, dgh), dha)) -> new_lt10(xuu750, xuu760, dgh, dha) new_lt15(xuu500, xuu40) -> new_esEs29(new_compare7(xuu500, xuu40)) new_ltEs18(xuu82, xuu83, ty_Float) -> new_ltEs5(xuu82, xuu83) new_esEs6(xuu5002, xuu402, app(ty_Ratio, ef)) -> new_esEs13(xuu5002, xuu402, ef) new_ltEs15(Right(xuu750), Right(xuu760), chc, app(ty_[], ddb)) -> new_ltEs8(xuu750, xuu760, ddb) new_esEs37(xuu113, xuu116, ty_@0) -> new_esEs15(xuu113, xuu116) new_compare5(@3(xuu5000, xuu5001, xuu5002), @3(xuu400, xuu401, xuu402), bf, bg, bh) -> new_compare25(xuu5000, xuu5001, xuu5002, xuu400, xuu401, xuu402, new_asAs(new_esEs4(xuu5000, xuu400, bf), new_asAs(new_esEs5(xuu5001, xuu401, bg), new_esEs6(xuu5002, xuu402, bh))), bf, bg, bh) new_ltEs15(Right(xuu750), Right(xuu760), chc, ty_@0) -> new_ltEs6(xuu750, xuu760) new_compare26(xuu75, xuu76, False, cgd, cge) -> new_compare111(xuu75, xuu76, new_ltEs19(xuu75, xuu76, cgd), cgd, cge) new_primEqNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) new_lt7(xuu500, xuu40) -> new_esEs29(new_compare19(xuu500, xuu40)) new_compare25(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, True, fcg, fch, fda) -> EQ new_compare16(False, False) -> EQ new_lt21(xuu751, xuu761, ty_Char) -> new_lt5(xuu751, xuu761) new_ltEs18(xuu82, xuu83, app(ty_Maybe, ceg)) -> new_ltEs7(xuu82, xuu83, ceg) new_not(True) -> False new_esEs7(xuu5000, xuu400, ty_Double) -> new_esEs20(xuu5000, xuu400) new_primCompAux00(xuu54, LT) -> LT new_esEs33(xuu750, xuu760, ty_Bool) -> new_esEs19(xuu750, xuu760) new_esEs7(xuu5000, xuu400, ty_Float) -> new_esEs23(xuu5000, xuu400) new_esEs10(xuu5000, xuu400, ty_Double) -> new_esEs20(xuu5000, xuu400) new_esEs40(xuu50001, xuu4001, ty_Bool) -> new_esEs19(xuu50001, xuu4001) new_esEs27(xuu50001, xuu4001, ty_@0) -> new_esEs15(xuu50001, xuu4001) new_esEs10(xuu5000, xuu400, ty_Float) -> new_esEs23(xuu5000, xuu400) new_esEs36(xuu751, xuu761, app(ty_Maybe, ehg)) -> new_esEs21(xuu751, xuu761, ehg) new_ltEs24(xuu115, xuu118, ty_Integer) -> new_ltEs16(xuu115, xuu118) new_compare13(Nothing, Just(xuu400), caf) -> LT new_esEs35(xuu750, xuu760, app(app(app(ty_@3, efg), efh), ega)) -> new_esEs14(xuu750, xuu760, efg, efh, ega) new_ltEs15(Right(xuu750), Right(xuu760), chc, ty_Double) -> new_ltEs12(xuu750, xuu760) new_primEqNat0(Succ(xuu500000), Zero) -> False new_primEqNat0(Zero, Succ(xuu40000)) -> False new_ltEs24(xuu115, xuu118, app(app(app(ty_@3, ffg), ffh), fga)) -> new_ltEs10(xuu115, xuu118, ffg, ffh, fga) new_esEs25(Left(xuu50000), Left(xuu4000), app(app(ty_@2, bgf), bgg), dc) -> new_esEs18(xuu50000, xuu4000, bgf, bgg) new_gt(xuu22, xuu17, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_esEs41(new_compare5(xuu22, xuu17, cfc, cfd, cfe)) new_esEs25(Right(xuu50000), Right(xuu4000), db, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_esEs14(xuu50000, xuu4000, bhe, bhf, bhg) new_compare10(xuu163, xuu164, True, bag, bah) -> LT new_esEs25(Right(xuu50000), Right(xuu4000), db, app(ty_Maybe, cab)) -> new_esEs21(xuu50000, xuu4000, cab) new_lt21(xuu751, xuu761, app(app(app(ty_@3, eha), ehb), ehc)) -> new_lt4(xuu751, xuu761, eha, ehb, ehc) new_esEs34(xuu126, xuu128, ty_Integer) -> new_esEs17(xuu126, xuu128) new_compare115(xuu200, xuu201, xuu202, xuu203, False, xuu205, cdd, cde) -> new_compare110(xuu200, xuu201, xuu202, xuu203, xuu205, cdd, cde) new_ltEs15(Left(xuu750), Left(xuu760), ty_Float, chd) -> new_ltEs5(xuu750, xuu760) new_esEs9(xuu5000, xuu400, ty_@0) -> new_esEs15(xuu5000, xuu400) new_esEs32(xuu50000, xuu4000, ty_@0) -> new_esEs15(xuu50000, xuu4000) new_ltEs22(xuu752, xuu762, ty_Double) -> new_ltEs12(xuu752, xuu762) new_ltEs23(xuu89, xuu90, ty_Float) -> new_ltEs5(xuu89, xuu90) new_compare28(xuu89, xuu90, True, fbd) -> EQ new_esEs39(xuu50000, xuu4000, ty_Integer) -> new_esEs17(xuu50000, xuu4000) new_compare17(Integer(xuu5000), Integer(xuu400)) -> new_primCmpInt(xuu5000, xuu400) new_esEs27(xuu50001, xuu4001, ty_Integer) -> new_esEs17(xuu50001, xuu4001) new_esEs26(xuu50000, xuu4000, app(ty_Maybe, bbg)) -> new_esEs21(xuu50000, xuu4000, bbg) new_esEs25(Right(xuu50000), Right(xuu4000), db, ty_Float) -> new_esEs23(xuu50000, xuu4000) new_ltEs20(xuu751, xuu761, ty_Bool) -> new_ltEs13(xuu751, xuu761) new_compare14(xuu5000, xuu400, ty_Integer) -> new_compare17(xuu5000, xuu400) new_lt20(xuu750, xuu760, ty_Int) -> new_lt12(xuu750, xuu760) new_esEs9(xuu5000, xuu400, ty_Char) -> new_esEs24(xuu5000, xuu400) new_esEs19(False, False) -> True new_primCmpInt(Pos(Succ(xuu50000)), Neg(xuu400)) -> GT new_esEs28(xuu50002, xuu4002, ty_Bool) -> new_esEs19(xuu50002, xuu4002) new_ltEs15(Right(xuu750), Right(xuu760), chc, ty_Ordering) -> new_ltEs4(xuu750, xuu760) new_esEs33(xuu750, xuu760, ty_Int) -> new_esEs16(xuu750, xuu760) new_esEs35(xuu750, xuu760, app(app(ty_Either, egc), egd)) -> new_esEs25(xuu750, xuu760, egc, egd) new_ltEs7(Just(xuu750), Just(xuu760), ty_Bool) -> new_ltEs13(xuu750, xuu760) new_gt(xuu22, xuu17, ty_Bool) -> new_esEs41(new_compare16(xuu22, xuu17)) new_esEs33(xuu750, xuu760, ty_Ordering) -> new_esEs12(xuu750, xuu760) new_primCmpNat0(Zero, Succ(xuu4000)) -> LT new_esEs4(xuu5000, xuu400, ty_Char) -> new_esEs24(xuu5000, xuu400) new_esEs25(Right(xuu50000), Right(xuu4000), db, ty_Double) -> new_esEs20(xuu50000, xuu4000) new_ltEs22(xuu752, xuu762, ty_Ordering) -> new_ltEs4(xuu752, xuu762) new_ltEs23(xuu89, xuu90, ty_Int) -> new_ltEs9(xuu89, xuu90) new_esEs6(xuu5002, xuu402, app(app(ty_@2, fb), fc)) -> new_esEs18(xuu5002, xuu402, fb, fc) new_ltEs20(xuu751, xuu761, app(ty_Maybe, eaa)) -> new_ltEs7(xuu751, xuu761, eaa) new_ltEs15(Right(xuu750), Left(xuu760), chc, chd) -> False new_esEs8(xuu5000, xuu400, app(app(ty_@2, baa), bab)) -> new_esEs18(xuu5000, xuu400, baa, bab) new_lt23(xuu114, xuu117, app(ty_[], fed)) -> new_lt6(xuu114, xuu117, fed) new_esEs10(xuu5000, xuu400, ty_Char) -> new_esEs24(xuu5000, xuu400) new_esEs34(xuu126, xuu128, app(ty_Ratio, ebb)) -> new_esEs13(xuu126, xuu128, ebb) new_esEs25(Right(xuu50000), Right(xuu4000), db, app(ty_[], cac)) -> new_esEs22(xuu50000, xuu4000, cac) new_ltEs23(xuu89, xuu90, app(ty_Ratio, fca)) -> new_ltEs11(xuu89, xuu90, fca) new_lt13(xuu500, xuu40, ga, gb) -> new_esEs29(new_compare6(xuu500, xuu40, ga, gb)) new_esEs38(xuu114, xuu117, ty_Double) -> new_esEs20(xuu114, xuu117) new_lt24(xuu500, xuu40, app(ty_Ratio, chg)) -> new_lt11(xuu500, xuu40, chg) new_esEs11(xuu5001, xuu401, ty_Int) -> new_esEs16(xuu5001, xuu401) new_esEs6(xuu5002, xuu402, ty_Char) -> new_esEs24(xuu5002, xuu402) new_esEs38(xuu114, xuu117, ty_Ordering) -> new_esEs12(xuu114, xuu117) new_compare6(Left(xuu5000), Right(xuu400), ga, gb) -> LT new_esEs26(xuu50000, xuu4000, app(ty_[], bbh)) -> new_esEs22(xuu50000, xuu4000, bbh) new_lt24(xuu500, xuu40, app(ty_Maybe, caf)) -> new_lt18(xuu500, xuu40, caf) new_esEs9(xuu5000, xuu400, app(app(ty_Either, cbg), cbh)) -> new_esEs25(xuu5000, xuu400, cbg, cbh) new_compare6(Left(xuu5000), Left(xuu400), ga, gb) -> new_compare26(xuu5000, xuu400, new_esEs7(xuu5000, xuu400, ga), ga, gb) new_ltEs20(xuu751, xuu761, ty_@0) -> new_ltEs6(xuu751, xuu761) new_esEs11(xuu5001, xuu401, ty_Ordering) -> new_esEs12(xuu5001, xuu401) new_esEs25(Right(xuu50000), Right(xuu4000), db, app(app(ty_Either, cad), cae)) -> new_esEs25(xuu50000, xuu4000, cad, cae) new_esEs25(Left(xuu50000), Left(xuu4000), ty_Double, dc) -> new_esEs20(xuu50000, xuu4000) new_ltEs15(Right(xuu750), Right(xuu760), chc, app(app(ty_Either, ddg), ddh)) -> new_ltEs15(xuu750, xuu760, ddg, ddh) new_ltEs15(Left(xuu750), Left(xuu760), app(app(ty_@2, dch), dda), chd) -> new_ltEs17(xuu750, xuu760, dch, dda) new_ltEs18(xuu82, xuu83, ty_Bool) -> new_ltEs13(xuu82, xuu83) new_esEs38(xuu114, xuu117, app(ty_Maybe, ffc)) -> new_esEs21(xuu114, xuu117, ffc) new_esEs38(xuu114, xuu117, ty_Int) -> new_esEs16(xuu114, xuu117) new_esEs21(Just(xuu50000), Just(xuu4000), ty_Float) -> new_esEs23(xuu50000, xuu4000) new_primEqInt(Neg(Succ(xuu500000)), Neg(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) new_esEs9(xuu5000, xuu400, ty_Float) -> new_esEs23(xuu5000, xuu400) new_primCmpInt(Neg(Zero), Pos(Succ(xuu4000))) -> LT new_esEs4(xuu5000, xuu400, ty_@0) -> new_esEs15(xuu5000, xuu400) new_esEs8(xuu5000, xuu400, ty_Integer) -> new_esEs17(xuu5000, xuu400) new_primMulInt(Pos(xuu4000), Pos(xuu50010)) -> Pos(new_primMulNat0(xuu4000, xuu50010)) new_ltEs15(Left(xuu750), Right(xuu760), chc, chd) -> True new_esEs5(xuu5001, xuu401, ty_Bool) -> new_esEs19(xuu5001, xuu401) new_esEs28(xuu50002, xuu4002, ty_Double) -> new_esEs20(xuu50002, xuu4002) new_ltEs15(Right(xuu750), Right(xuu760), chc, ty_Char) -> new_ltEs14(xuu750, xuu760) new_esEs26(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_lt21(xuu751, xuu761, app(app(ty_Either, ehe), ehf)) -> new_lt13(xuu751, xuu761, ehe, ehf) new_esEs7(xuu5000, xuu400, app(app(ty_Either, hc), hd)) -> new_esEs25(xuu5000, xuu400, hc, hd) new_ltEs22(xuu752, xuu762, ty_Integer) -> new_ltEs16(xuu752, xuu762) new_ltEs22(xuu752, xuu762, app(app(ty_@2, fbb), fbc)) -> new_ltEs17(xuu752, xuu762, fbb, fbc) new_compare113(xuu185, xuu186, xuu187, xuu188, xuu189, xuu190, True, dab, dac, dad) -> LT new_esEs9(xuu5000, xuu400, app(ty_Ratio, cag)) -> new_esEs13(xuu5000, xuu400, cag) new_esEs33(xuu750, xuu760, ty_Float) -> new_esEs23(xuu750, xuu760) new_primMulNat0(Succ(xuu40000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu500100)) -> Zero new_esEs4(xuu5000, xuu400, ty_Double) -> new_esEs20(xuu5000, xuu400) new_ltEs20(xuu751, xuu761, ty_Double) -> new_ltEs12(xuu751, xuu761) new_esEs37(xuu113, xuu116, app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs14(xuu113, xuu116, fdc, fdd, fde) new_compare16(True, False) -> GT new_esEs26(xuu50000, xuu4000, ty_Int) -> new_esEs16(xuu50000, xuu4000) new_ltEs18(xuu82, xuu83, app(app(ty_Either, cee), cef)) -> new_ltEs15(xuu82, xuu83, cee, cef) new_primPlusNat0(Succ(xuu44200), Zero) -> Succ(xuu44200) new_primPlusNat0(Zero, Succ(xuu13900)) -> Succ(xuu13900) new_ltEs7(Just(xuu750), Just(xuu760), ty_Ordering) -> new_ltEs4(xuu750, xuu760) new_esEs28(xuu50002, xuu4002, app(ty_Maybe, bec)) -> new_esEs21(xuu50002, xuu4002, bec) new_esEs7(xuu5000, xuu400, ty_Bool) -> new_esEs19(xuu5000, xuu400) new_compare14(xuu5000, xuu400, ty_Float) -> new_compare7(xuu5000, xuu400) new_ltEs19(xuu75, xuu76, ty_Integer) -> new_ltEs16(xuu75, xuu76) new_esEs10(xuu5000, xuu400, app(app(ty_Either, eeb), eec)) -> new_esEs25(xuu5000, xuu400, eeb, eec) new_esEs40(xuu50001, xuu4001, ty_Double) -> new_esEs20(xuu50001, xuu4001) new_esEs6(xuu5002, xuu402, ty_@0) -> new_esEs15(xuu5002, xuu402) new_lt22(xuu113, xuu116, app(app(ty_@2, feb), fec)) -> new_lt10(xuu113, xuu116, feb, fec) new_esEs28(xuu50002, xuu4002, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs14(xuu50002, xuu4002, bdf, bdg, bdh) new_esEs33(xuu750, xuu760, app(app(ty_Either, dge), dgf)) -> new_esEs25(xuu750, xuu760, dge, dgf) new_ltEs15(Right(xuu750), Right(xuu760), chc, ty_Bool) -> new_ltEs13(xuu750, xuu760) new_esEs31(xuu50001, xuu4001, ty_Integer) -> new_esEs17(xuu50001, xuu4001) new_esEs40(xuu50001, xuu4001, app(app(app(ty_@3, gac), gad), gae)) -> new_esEs14(xuu50001, xuu4001, gac, gad, gae) new_compare19(EQ, GT) -> LT new_lt23(xuu114, xuu117, app(app(ty_Either, ffa), ffb)) -> new_lt13(xuu114, xuu117, ffa, ffb) new_esEs35(xuu750, xuu760, ty_Float) -> new_esEs23(xuu750, xuu760) new_esEs5(xuu5001, xuu401, app(ty_[], ec)) -> new_esEs22(xuu5001, xuu401, ec) new_gt(xuu22, xuu17, app(app(ty_@2, cgb), cgc)) -> new_esEs41(new_compare18(xuu22, xuu17, cgb, cgc)) new_ltEs24(xuu115, xuu118, app(app(ty_@2, fgf), fgg)) -> new_ltEs17(xuu115, xuu118, fgf, fgg) new_ltEs18(xuu82, xuu83, ty_@0) -> new_ltEs6(xuu82, xuu83) new_esEs32(xuu50000, xuu4000, app(app(ty_Either, dbf), dbg)) -> new_esEs25(xuu50000, xuu4000, dbf, dbg) new_esEs39(xuu50000, xuu4000, app(ty_[], fhg)) -> new_esEs22(xuu50000, xuu4000, fhg) new_ltEs20(xuu751, xuu761, ty_Float) -> new_ltEs5(xuu751, xuu761) new_esEs32(xuu50000, xuu4000, app(ty_Ratio, daf)) -> new_esEs13(xuu50000, xuu4000, daf) new_lt24(xuu500, xuu40, app(app(app(ty_@3, bf), bg), bh)) -> new_lt4(xuu500, xuu40, bf, bg, bh) new_ltEs21(xuu127, xuu129, app(ty_Ratio, ecd)) -> new_ltEs11(xuu127, xuu129, ecd) new_fsEs(xuu216) -> new_not(new_esEs12(xuu216, GT)) new_ltEs15(Right(xuu750), Right(xuu760), chc, app(ty_Ratio, ddf)) -> new_ltEs11(xuu750, xuu760, ddf) new_compare7(Float(xuu5000, Neg(xuu50010)), Float(xuu400, Neg(xuu4010))) -> new_compare12(new_sr(xuu5000, Neg(xuu4010)), new_sr(Neg(xuu50010), xuu400)) new_compare([], :(xuu400, xuu401), cca) -> LT new_esEs40(xuu50001, xuu4001, app(ty_Maybe, gah)) -> new_esEs21(xuu50001, xuu4001, gah) new_compare14(xuu5000, xuu400, ty_@0) -> new_compare9(xuu5000, xuu400) new_ltEs5(xuu75, xuu76) -> new_fsEs(new_compare7(xuu75, xuu76)) new_lt12(xuu500, xuu40) -> new_esEs29(new_compare12(xuu500, xuu40)) new_gt(xuu22, xuu17, ty_Integer) -> new_esEs41(new_compare17(xuu22, xuu17)) new_esEs6(xuu5002, xuu402, ty_Integer) -> new_esEs17(xuu5002, xuu402) new_compare14(xuu5000, xuu400, ty_Int) -> new_compare12(xuu5000, xuu400) new_esEs36(xuu751, xuu761, ty_Ordering) -> new_esEs12(xuu751, xuu761) new_compare19(LT, GT) -> LT new_ltEs18(xuu82, xuu83, ty_Double) -> new_ltEs12(xuu82, xuu83) new_esEs36(xuu751, xuu761, ty_Int) -> new_esEs16(xuu751, xuu761) new_ltEs20(xuu751, xuu761, app(app(ty_Either, dhg), dhh)) -> new_ltEs15(xuu751, xuu761, dhg, dhh) new_esEs27(xuu50001, xuu4001, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs14(xuu50001, xuu4001, bcd, bce, bcf) new_esEs21(Just(xuu50000), Just(xuu4000), ty_Integer) -> new_esEs17(xuu50000, xuu4000) new_esEs34(xuu126, xuu128, ty_Char) -> new_esEs24(xuu126, xuu128) new_compare19(LT, EQ) -> LT new_lt20(xuu750, xuu760, app(app(ty_Either, egc), egd)) -> new_lt13(xuu750, xuu760, egc, egd) new_esEs18(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), ce, cf) -> new_asAs(new_esEs39(xuu50000, xuu4000, ce), new_esEs40(xuu50001, xuu4001, cf)) new_esEs8(xuu5000, xuu400, app(ty_Ratio, he)) -> new_esEs13(xuu5000, xuu400, he) new_esEs37(xuu113, xuu116, app(app(ty_Either, fdg), fdh)) -> new_esEs25(xuu113, xuu116, fdg, fdh) new_esEs38(xuu114, xuu117, app(app(app(ty_@3, fee), fef), feg)) -> new_esEs14(xuu114, xuu117, fee, fef, feg) new_esEs39(xuu50000, xuu4000, ty_@0) -> new_esEs15(xuu50000, xuu4000) new_esEs9(xuu5000, xuu400, app(app(ty_@2, cbc), cbd)) -> new_esEs18(xuu5000, xuu400, cbc, cbd) new_ltEs15(Left(xuu750), Left(xuu760), ty_@0, chd) -> new_ltEs6(xuu750, xuu760) new_esEs35(xuu750, xuu760, ty_Int) -> new_esEs16(xuu750, xuu760) new_ltEs7(Just(xuu750), Just(xuu760), ty_Int) -> new_ltEs9(xuu750, xuu760) new_esEs35(xuu750, xuu760, ty_Ordering) -> new_esEs12(xuu750, xuu760) new_ltEs6(xuu75, xuu76) -> new_fsEs(new_compare9(xuu75, xuu76)) new_esEs39(xuu50000, xuu4000, app(ty_Maybe, fhf)) -> new_esEs21(xuu50000, xuu4000, fhf) new_esEs11(xuu5001, xuu401, ty_Integer) -> new_esEs17(xuu5001, xuu401) new_lt17(xuu750, xuu760, app(app(app(ty_@3, dga), dgb), dgc)) -> new_lt4(xuu750, xuu760, dga, dgb, dgc) new_esEs12(GT, GT) -> True new_compare114(xuu172, xuu173, True, dae) -> LT new_esEs6(xuu5002, xuu402, app(ty_[], ff)) -> new_esEs22(xuu5002, xuu402, ff) new_compare10(xuu163, xuu164, False, bag, bah) -> GT new_esEs26(xuu50000, xuu4000, app(app(ty_@2, bbe), bbf)) -> new_esEs18(xuu50000, xuu4000, bbe, bbf) new_lt24(xuu500, xuu40, ty_Integer) -> new_lt16(xuu500, xuu40) new_esEs32(xuu50000, xuu4000, app(app(ty_@2, dbb), dbc)) -> new_esEs18(xuu50000, xuu4000, dbb, dbc) new_compare11(Double(xuu5000, Pos(xuu50010)), Double(xuu400, Neg(xuu4010))) -> new_compare12(new_sr(xuu5000, Pos(xuu4010)), new_sr(Neg(xuu50010), xuu400)) new_compare11(Double(xuu5000, Neg(xuu50010)), Double(xuu400, Pos(xuu4010))) -> new_compare12(new_sr(xuu5000, Neg(xuu4010)), new_sr(Pos(xuu50010), xuu400)) new_lt20(xuu750, xuu760, ty_Bool) -> new_lt8(xuu750, xuu760) new_lt23(xuu114, xuu117, app(app(app(ty_@3, fee), fef), feg)) -> new_lt4(xuu114, xuu117, fee, fef, feg) new_esEs25(Right(xuu50000), Right(xuu4000), db, ty_Int) -> new_esEs16(xuu50000, xuu4000) new_lt24(xuu500, xuu40, ty_Char) -> new_lt5(xuu500, xuu40) new_ltEs15(Right(xuu750), Right(xuu760), chc, ty_Integer) -> new_ltEs16(xuu750, xuu760) new_lt22(xuu113, xuu116, ty_Ordering) -> new_lt7(xuu113, xuu116) new_esEs27(xuu50001, xuu4001, app(ty_[], bdb)) -> new_esEs22(xuu50001, xuu4001, bdb) new_ltEs24(xuu115, xuu118, app(ty_[], fff)) -> new_ltEs8(xuu115, xuu118, fff) new_primCmpInt(Pos(Succ(xuu50000)), Pos(xuu400)) -> new_primCmpNat0(Succ(xuu50000), xuu400) new_esEs40(xuu50001, xuu4001, ty_@0) -> new_esEs15(xuu50001, xuu4001) new_ltEs18(xuu82, xuu83, app(ty_[], cdh)) -> new_ltEs8(xuu82, xuu83, cdh) new_lt23(xuu114, xuu117, ty_@0) -> new_lt14(xuu114, xuu117) new_esEs38(xuu114, xuu117, ty_Char) -> new_esEs24(xuu114, xuu117) new_lt17(xuu750, xuu760, ty_@0) -> new_lt14(xuu750, xuu760) new_primCompAux00(xuu54, EQ) -> xuu54 new_esEs12(EQ, EQ) -> True new_compare13(Just(xuu5000), Just(xuu400), caf) -> new_compare28(xuu5000, xuu400, new_esEs9(xuu5000, xuu400, caf), caf) new_esEs6(xuu5002, xuu402, app(app(ty_Either, fg), fh)) -> new_esEs25(xuu5002, xuu402, fg, fh) new_esEs32(xuu50000, xuu4000, ty_Integer) -> new_esEs17(xuu50000, xuu4000) new_ltEs15(Right(xuu750), Right(xuu760), chc, ty_Float) -> new_ltEs5(xuu750, xuu760) new_esEs10(xuu5000, xuu400, ty_@0) -> new_esEs15(xuu5000, xuu400) new_esEs25(Right(xuu50000), Right(xuu4000), db, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_lt23(xuu114, xuu117, ty_Ordering) -> new_lt7(xuu114, xuu117) new_esEs10(xuu5000, xuu400, ty_Bool) -> new_esEs19(xuu5000, xuu400) new_gt(xuu22, xuu17, app(ty_Maybe, cga)) -> new_esEs41(new_compare13(xuu22, xuu17, cga)) new_esEs26(xuu50000, xuu4000, ty_Double) -> new_esEs20(xuu50000, xuu4000) new_esEs39(xuu50000, xuu4000, ty_Char) -> new_esEs24(xuu50000, xuu4000) new_ltEs19(xuu75, xuu76, app(ty_[], cgf)) -> new_ltEs8(xuu75, xuu76, cgf) new_primMulNat0(Succ(xuu40000), Succ(xuu500100)) -> new_primPlusNat0(new_primMulNat0(xuu40000, Succ(xuu500100)), Succ(xuu500100)) new_lt22(xuu113, xuu116, app(app(app(ty_@3, fdc), fdd), fde)) -> new_lt4(xuu113, xuu116, fdc, fdd, fde) new_esEs4(xuu5000, xuu400, ty_Integer) -> new_esEs17(xuu5000, xuu400) new_esEs5(xuu5001, xuu401, app(app(ty_Either, ed), ee)) -> new_esEs25(xuu5001, xuu401, ed, ee) new_ltEs13(False, True) -> True new_ltEs13(False, False) -> True new_esEs20(Double(xuu50000, xuu50001), Double(xuu4000, xuu4001)) -> new_esEs16(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) new_lt23(xuu114, xuu117, ty_Char) -> new_lt5(xuu114, xuu117) new_lt17(xuu750, xuu760, ty_Char) -> new_lt5(xuu750, xuu760) new_esEs27(xuu50001, xuu4001, ty_Double) -> new_esEs20(xuu50001, xuu4001) new_lt19(xuu126, xuu128, ty_Bool) -> new_lt8(xuu126, xuu128) new_compare19(GT, LT) -> GT new_esEs4(xuu5000, xuu400, ty_Bool) -> new_esEs19(xuu5000, xuu400) new_ltEs20(xuu751, xuu761, app(ty_[], dhb)) -> new_ltEs8(xuu751, xuu761, dhb) new_lt24(xuu500, xuu40, app(app(ty_@2, chh), daa)) -> new_lt10(xuu500, xuu40, chh, daa) new_esEs10(xuu5000, xuu400, ty_Int) -> new_esEs16(xuu5000, xuu400) new_esEs15(@0, @0) -> True new_lt23(xuu114, xuu117, app(ty_Maybe, ffc)) -> new_lt18(xuu114, xuu117, ffc) new_lt24(xuu500, xuu40, ty_Bool) -> new_lt8(xuu500, xuu40) new_ltEs15(Left(xuu750), Left(xuu760), ty_Char, chd) -> new_ltEs14(xuu750, xuu760) new_esEs37(xuu113, xuu116, ty_Float) -> new_esEs23(xuu113, xuu116) new_ltEs16(xuu75, xuu76) -> new_fsEs(new_compare17(xuu75, xuu76)) new_lt19(xuu126, xuu128, app(app(ty_Either, ebc), ebd)) -> new_lt13(xuu126, xuu128, ebc, ebd) new_esEs10(xuu5000, xuu400, ty_Ordering) -> new_esEs12(xuu5000, xuu400) new_lt17(xuu750, xuu760, app(ty_Maybe, dgg)) -> new_lt18(xuu750, xuu760, dgg) new_ltEs15(Left(xuu750), Left(xuu760), ty_Ordering, chd) -> new_ltEs4(xuu750, xuu760) new_esEs10(xuu5000, xuu400, ty_Integer) -> new_esEs17(xuu5000, xuu400) new_lt22(xuu113, xuu116, ty_@0) -> new_lt14(xuu113, xuu116) new_esEs25(Left(xuu50000), Left(xuu4000), ty_Float, dc) -> new_esEs23(xuu50000, xuu4000) new_ltEs12(xuu75, xuu76) -> new_fsEs(new_compare11(xuu75, xuu76)) new_ltEs24(xuu115, xuu118, app(ty_Ratio, fgb)) -> new_ltEs11(xuu115, xuu118, fgb) new_gt(xuu22, xuu17, ty_Double) -> new_esEs41(new_compare11(xuu22, xuu17)) new_esEs11(xuu5001, xuu401, ty_Bool) -> new_esEs19(xuu5001, xuu401) new_lt17(xuu750, xuu760, ty_Ordering) -> new_lt7(xuu750, xuu760) new_esEs41(GT) -> True new_esEs40(xuu50001, xuu4001, ty_Char) -> new_esEs24(xuu50001, xuu4001) new_esEs38(xuu114, xuu117, ty_@0) -> new_esEs15(xuu114, xuu117) new_lt21(xuu751, xuu761, ty_Bool) -> new_lt8(xuu751, xuu761) new_compare14(xuu5000, xuu400, app(ty_[], ccb)) -> new_compare(xuu5000, xuu400, ccb) new_compare14(xuu5000, xuu400, ty_Double) -> new_compare11(xuu5000, xuu400) new_ltEs7(Just(xuu750), Just(xuu760), app(ty_Maybe, bfg)) -> new_ltEs7(xuu750, xuu760, bfg) new_ltEs23(xuu89, xuu90, app(ty_[], fbe)) -> new_ltEs8(xuu89, xuu90, fbe) new_compare19(LT, LT) -> EQ new_esEs21(Just(xuu50000), Just(xuu4000), app(app(ty_Either, dff), dfg)) -> new_esEs25(xuu50000, xuu4000, dff, dfg) new_esEs37(xuu113, xuu116, ty_Integer) -> new_esEs17(xuu113, xuu116) new_esEs28(xuu50002, xuu4002, ty_Ordering) -> new_esEs12(xuu50002, xuu4002) new_esEs28(xuu50002, xuu4002, app(ty_Ratio, bde)) -> new_esEs13(xuu50002, xuu4002, bde) new_esEs38(xuu114, xuu117, ty_Float) -> new_esEs23(xuu114, xuu117) new_esEs9(xuu5000, xuu400, app(ty_[], cbf)) -> new_esEs22(xuu5000, xuu400, cbf) new_esEs37(xuu113, xuu116, ty_Bool) -> new_esEs19(xuu113, xuu116) new_esEs28(xuu50002, xuu4002, ty_Int) -> new_esEs16(xuu50002, xuu4002) new_lt17(xuu750, xuu760, ty_Integer) -> new_lt16(xuu750, xuu760) new_esEs36(xuu751, xuu761, app(app(ty_Either, ehe), ehf)) -> new_esEs25(xuu751, xuu761, ehe, ehf) new_primPlusNat0(Succ(xuu44200), Succ(xuu13900)) -> Succ(Succ(new_primPlusNat0(xuu44200, xuu13900))) new_esEs4(xuu5000, xuu400, ty_Float) -> new_esEs23(xuu5000, xuu400) new_ltEs15(Left(xuu750), Left(xuu760), ty_Bool, chd) -> new_ltEs13(xuu750, xuu760) new_ltEs15(Left(xuu750), Left(xuu760), ty_Int, chd) -> new_ltEs9(xuu750, xuu760) new_esEs10(xuu5000, xuu400, app(ty_Maybe, edh)) -> new_esEs21(xuu5000, xuu400, edh) new_compare27(xuu82, xuu83, True, cdf, cdg) -> EQ new_esEs4(xuu5000, xuu400, app(app(ty_Either, db), dc)) -> new_esEs25(xuu5000, xuu400, db, dc) new_ltEs4(GT, LT) -> False new_compare110(xuu200, xuu201, xuu202, xuu203, False, cdd, cde) -> GT new_ltEs7(Just(xuu750), Just(xuu760), ty_@0) -> new_ltEs6(xuu750, xuu760) new_ltEs7(Just(xuu750), Just(xuu760), ty_Integer) -> new_ltEs16(xuu750, xuu760) new_esEs9(xuu5000, xuu400, ty_Double) -> new_esEs20(xuu5000, xuu400) new_esEs32(xuu50000, xuu4000, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs14(xuu50000, xuu4000, dag, dah, dba) new_esEs21(Just(xuu50000), Just(xuu4000), ty_@0) -> new_esEs15(xuu50000, xuu4000) new_esEs35(xuu750, xuu760, ty_Integer) -> new_esEs17(xuu750, xuu760) new_lt21(xuu751, xuu761, ty_Integer) -> new_lt16(xuu751, xuu761) new_lt22(xuu113, xuu116, app(ty_Maybe, fea)) -> new_lt18(xuu113, xuu116, fea) new_esEs6(xuu5002, xuu402, ty_Float) -> new_esEs23(xuu5002, xuu402) new_ltEs21(xuu127, xuu129, app(ty_[], ebh)) -> new_ltEs8(xuu127, xuu129, ebh) new_esEs35(xuu750, xuu760, ty_Char) -> new_esEs24(xuu750, xuu760) new_esEs11(xuu5001, xuu401, ty_@0) -> new_esEs15(xuu5001, xuu401) new_compare11(Double(xuu5000, Neg(xuu50010)), Double(xuu400, Neg(xuu4010))) -> new_compare12(new_sr(xuu5000, Neg(xuu4010)), new_sr(Neg(xuu50010), xuu400)) new_lt8(xuu500, xuu40) -> new_esEs29(new_compare16(xuu500, xuu40)) new_esEs35(xuu750, xuu760, ty_Bool) -> new_esEs19(xuu750, xuu760) new_lt21(xuu751, xuu761, ty_Float) -> new_lt15(xuu751, xuu761) new_ltEs13(True, False) -> False new_esEs32(xuu50000, xuu4000, ty_Int) -> new_esEs16(xuu50000, xuu4000) new_esEs33(xuu750, xuu760, app(ty_Maybe, dgg)) -> new_esEs21(xuu750, xuu760, dgg) new_lt5(xuu500, xuu40) -> new_esEs29(new_compare8(xuu500, xuu40)) new_esEs34(xuu126, xuu128, ty_@0) -> new_esEs15(xuu126, xuu128) new_lt23(xuu114, xuu117, ty_Bool) -> new_lt8(xuu114, xuu117) new_esEs34(xuu126, xuu128, app(app(app(ty_@3, eag), eah), eba)) -> new_esEs14(xuu126, xuu128, eag, eah, eba) new_lt21(xuu751, xuu761, app(ty_Maybe, ehg)) -> new_lt18(xuu751, xuu761, ehg) new_esEs31(xuu50001, xuu4001, ty_Int) -> new_esEs16(xuu50001, xuu4001) new_esEs40(xuu50001, xuu4001, app(app(ty_Either, gbb), gbc)) -> new_esEs25(xuu50001, xuu4001, gbb, gbc) new_esEs10(xuu5000, xuu400, app(app(app(ty_@3, edc), edd), ede)) -> new_esEs14(xuu5000, xuu400, edc, edd, ede) new_lt17(xuu750, xuu760, app(app(ty_Either, dge), dgf)) -> new_lt13(xuu750, xuu760, dge, dgf) new_esEs11(xuu5001, xuu401, app(app(app(ty_@3, eee), eef), eeg)) -> new_esEs14(xuu5001, xuu401, eee, eef, eeg) new_ltEs7(Just(xuu750), Just(xuu760), ty_Char) -> new_ltEs14(xuu750, xuu760) new_lt20(xuu750, xuu760, ty_@0) -> new_lt14(xuu750, xuu760) new_primCmpNat0(Succ(xuu50000), Succ(xuu4000)) -> new_primCmpNat0(xuu50000, xuu4000) new_ltEs23(xuu89, xuu90, ty_Double) -> new_ltEs12(xuu89, xuu90) new_esEs22([], [], da) -> True new_compare7(Float(xuu5000, Pos(xuu50010)), Float(xuu400, Neg(xuu4010))) -> new_compare12(new_sr(xuu5000, Pos(xuu4010)), new_sr(Neg(xuu50010), xuu400)) new_compare7(Float(xuu5000, Neg(xuu50010)), Float(xuu400, Pos(xuu4010))) -> new_compare12(new_sr(xuu5000, Neg(xuu4010)), new_sr(Pos(xuu50010), xuu400)) new_esEs40(xuu50001, xuu4001, ty_Float) -> new_esEs23(xuu50001, xuu4001) new_esEs30(xuu50000, xuu4000, ty_Int) -> new_esEs16(xuu50000, xuu4000) new_compare110(xuu200, xuu201, xuu202, xuu203, True, cdd, cde) -> LT new_esEs37(xuu113, xuu116, ty_Char) -> new_esEs24(xuu113, xuu116) new_esEs11(xuu5001, xuu401, app(ty_Maybe, efb)) -> new_esEs21(xuu5001, xuu401, efb) new_lt20(xuu750, xuu760, app(ty_Maybe, ege)) -> new_lt18(xuu750, xuu760, ege) new_compare19(EQ, LT) -> GT new_compare12(xuu500, xuu40) -> new_primCmpInt(xuu500, xuu40) new_lt23(xuu114, xuu117, ty_Float) -> new_lt15(xuu114, xuu117) new_esEs29(LT) -> True new_esEs35(xuu750, xuu760, app(ty_Maybe, ege)) -> new_esEs21(xuu750, xuu760, ege) new_lt21(xuu751, xuu761, ty_Ordering) -> new_lt7(xuu751, xuu761) new_esEs36(xuu751, xuu761, ty_@0) -> new_esEs15(xuu751, xuu761) new_esEs5(xuu5001, xuu401, ty_Float) -> new_esEs23(xuu5001, xuu401) new_lt20(xuu750, xuu760, ty_Char) -> new_lt5(xuu750, xuu760) new_lt20(xuu750, xuu760, ty_Integer) -> new_lt16(xuu750, xuu760) new_esEs36(xuu751, xuu761, ty_Char) -> new_esEs24(xuu751, xuu761) new_ltEs14(xuu75, xuu76) -> new_fsEs(new_compare8(xuu75, xuu76)) new_esEs22(:(xuu50000, xuu50001), :(xuu4000, xuu4001), da) -> new_asAs(new_esEs32(xuu50000, xuu4000, da), new_esEs22(xuu50001, xuu4001, da)) new_esEs36(xuu751, xuu761, ty_Bool) -> new_esEs19(xuu751, xuu761) new_gt(xuu22, xuu17, app(ty_Ratio, cff)) -> new_esEs41(new_compare15(xuu22, xuu17, cff)) new_lt22(xuu113, xuu116, ty_Float) -> new_lt15(xuu113, xuu116) new_ltEs7(Just(xuu750), Just(xuu760), app(app(ty_Either, bfe), bff)) -> new_ltEs15(xuu750, xuu760, bfe, bff) new_esEs35(xuu750, xuu760, ty_@0) -> new_esEs15(xuu750, xuu760) new_esEs34(xuu126, xuu128, app(ty_Maybe, ebe)) -> new_esEs21(xuu126, xuu128, ebe) new_esEs26(xuu50000, xuu4000, app(ty_Ratio, bba)) -> new_esEs13(xuu50000, xuu4000, bba) new_ltEs15(Left(xuu750), Left(xuu760), app(ty_Ratio, dcd), chd) -> new_ltEs11(xuu750, xuu760, dcd) new_lt19(xuu126, xuu128, ty_Char) -> new_lt5(xuu126, xuu128) new_esEs21(Just(xuu50000), Just(xuu4000), ty_Bool) -> new_esEs19(xuu50000, xuu4000) new_ltEs11(xuu75, xuu76, chb) -> new_fsEs(new_compare15(xuu75, xuu76, chb)) new_esEs21(Just(xuu50000), Just(xuu4000), ty_Char) -> new_esEs24(xuu50000, xuu4000) new_esEs36(xuu751, xuu761, ty_Integer) -> new_esEs17(xuu751, xuu761) new_esEs38(xuu114, xuu117, app(app(ty_Either, ffa), ffb)) -> new_esEs25(xuu114, xuu117, ffa, ffb) new_lt19(xuu126, xuu128, ty_Integer) -> new_lt16(xuu126, xuu128) new_ltEs7(Just(xuu750), Just(xuu760), ty_Float) -> new_ltEs5(xuu750, xuu760) new_esEs19(True, True) -> True new_esEs33(xuu750, xuu760, app(app(app(ty_@3, dga), dgb), dgc)) -> new_esEs14(xuu750, xuu760, dga, dgb, dgc) new_esEs27(xuu50001, xuu4001, app(app(ty_@2, bcg), bch)) -> new_esEs18(xuu50001, xuu4001, bcg, bch) new_ltEs24(xuu115, xuu118, ty_Double) -> new_ltEs12(xuu115, xuu118) new_esEs29(EQ) -> False new_ltEs15(Left(xuu750), Left(xuu760), ty_Integer, chd) -> new_ltEs16(xuu750, xuu760) new_ltEs21(xuu127, xuu129, ty_@0) -> new_ltEs6(xuu127, xuu129) new_primCmpInt(Neg(Succ(xuu50000)), Pos(xuu400)) -> LT new_ltEs22(xuu752, xuu762, app(ty_[], fab)) -> new_ltEs8(xuu752, xuu762, fab) new_esEs35(xuu750, xuu760, app(ty_[], eff)) -> new_esEs22(xuu750, xuu760, eff) new_esEs39(xuu50000, xuu4000, ty_Float) -> new_esEs23(xuu50000, xuu4000) new_esEs26(xuu50000, xuu4000, ty_Char) -> new_esEs24(xuu50000, xuu4000) new_esEs37(xuu113, xuu116, ty_Ordering) -> new_esEs12(xuu113, xuu116) new_esEs28(xuu50002, xuu4002, app(app(ty_@2, bea), beb)) -> new_esEs18(xuu50002, xuu4002, bea, beb) new_esEs32(xuu50000, xuu4000, app(ty_Maybe, dbd)) -> new_esEs21(xuu50000, xuu4000, dbd) new_esEs29(GT) -> False new_compare(:(xuu5000, xuu5001), [], cca) -> GT new_lt22(xuu113, xuu116, ty_Bool) -> new_lt8(xuu113, xuu116) new_esEs7(xuu5000, xuu400, app(app(ty_@2, gg), gh)) -> new_esEs18(xuu5000, xuu400, gg, gh) new_ltEs19(xuu75, xuu76, app(app(ty_Either, chc), chd)) -> new_ltEs15(xuu75, xuu76, chc, chd) new_esEs37(xuu113, xuu116, ty_Int) -> new_esEs16(xuu113, xuu116) new_primCmpInt(Pos(Zero), Neg(Succ(xuu4000))) -> GT new_compare(:(xuu5000, xuu5001), :(xuu400, xuu401), cca) -> new_primCompAux0(xuu5000, xuu400, new_compare(xuu5001, xuu401, cca), cca) new_compare13(Nothing, Nothing, caf) -> EQ new_esEs33(xuu750, xuu760, app(ty_Ratio, dgd)) -> new_esEs13(xuu750, xuu760, dgd) new_ltEs22(xuu752, xuu762, app(ty_Ratio, faf)) -> new_ltEs11(xuu752, xuu762, faf) new_lt22(xuu113, xuu116, app(ty_[], fdb)) -> new_lt6(xuu113, xuu116, fdb) new_primCmpInt(Neg(Succ(xuu50000)), Neg(xuu400)) -> new_primCmpNat0(xuu400, Succ(xuu50000)) new_compare19(EQ, EQ) -> EQ new_esEs28(xuu50002, xuu4002, ty_Integer) -> new_esEs17(xuu50002, xuu4002) new_esEs13(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), ca) -> new_asAs(new_esEs30(xuu50000, xuu4000, ca), new_esEs31(xuu50001, xuu4001, ca)) new_compare14(xuu5000, xuu400, app(app(ty_Either, ccg), cch)) -> new_compare6(xuu5000, xuu400, ccg, cch) new_lt19(xuu126, xuu128, ty_@0) -> new_lt14(xuu126, xuu128) new_esEs38(xuu114, xuu117, ty_Integer) -> new_esEs17(xuu114, xuu117) new_compare29(xuu126, xuu127, xuu128, xuu129, False, ead, eae) -> new_compare115(xuu126, xuu127, xuu128, xuu129, new_lt19(xuu126, xuu128, ead), new_asAs(new_esEs34(xuu126, xuu128, ead), new_ltEs21(xuu127, xuu129, eae)), ead, eae) new_lt24(xuu500, xuu40, ty_Int) -> new_lt12(xuu500, xuu40) new_lt19(xuu126, xuu128, ty_Ordering) -> new_lt7(xuu126, xuu128) new_compare16(False, True) -> LT new_esEs41(EQ) -> False new_ltEs15(Left(xuu750), Left(xuu760), app(ty_[], dbh), chd) -> new_ltEs8(xuu750, xuu760, dbh) new_lt20(xuu750, xuu760, app(app(app(ty_@3, efg), efh), ega)) -> new_lt4(xuu750, xuu760, efg, efh, ega) new_esEs5(xuu5001, xuu401, ty_Char) -> new_esEs24(xuu5001, xuu401) new_esEs25(Right(xuu50000), Right(xuu4000), db, app(app(ty_@2, bhh), caa)) -> new_esEs18(xuu50000, xuu4000, bhh, caa) new_esEs40(xuu50001, xuu4001, app(app(ty_@2, gaf), gag)) -> new_esEs18(xuu50001, xuu4001, gaf, gag) new_esEs25(Left(xuu50000), Left(xuu4000), ty_Integer, dc) -> new_esEs17(xuu50000, xuu4000) new_esEs39(xuu50000, xuu4000, app(app(ty_Either, fhh), gaa)) -> new_esEs25(xuu50000, xuu4000, fhh, gaa) new_primEqInt(Pos(Succ(xuu500000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu40000))) -> False new_ltEs4(GT, EQ) -> False new_ltEs24(xuu115, xuu118, ty_Float) -> new_ltEs5(xuu115, xuu118) new_esEs10(xuu5000, xuu400, app(ty_[], eea)) -> new_esEs22(xuu5000, xuu400, eea) new_ltEs13(True, True) -> True new_compare19(GT, GT) -> EQ new_lt23(xuu114, xuu117, app(app(ty_@2, ffd), ffe)) -> new_lt10(xuu114, xuu117, ffd, ffe) new_ltEs15(Left(xuu750), Left(xuu760), app(app(ty_Either, dce), dcf), chd) -> new_ltEs15(xuu750, xuu760, dce, dcf) new_ltEs15(Right(xuu750), Right(xuu760), chc, app(app(ty_@2, deb), dec)) -> new_ltEs17(xuu750, xuu760, deb, dec) new_esEs25(Left(xuu50000), Left(xuu4000), app(app(ty_Either, bhb), bhc), dc) -> new_esEs25(xuu50000, xuu4000, bhb, bhc) new_esEs39(xuu50000, xuu4000, ty_Double) -> new_esEs20(xuu50000, xuu4000) new_compare13(Just(xuu5000), Nothing, caf) -> GT new_compare7(Float(xuu5000, Pos(xuu50010)), Float(xuu400, Pos(xuu4010))) -> new_compare12(new_sr(xuu5000, Pos(xuu4010)), new_sr(Pos(xuu50010), xuu400)) new_ltEs24(xuu115, xuu118, app(ty_Maybe, fge)) -> new_ltEs7(xuu115, xuu118, fge) new_ltEs18(xuu82, xuu83, ty_Integer) -> new_ltEs16(xuu82, xuu83) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs23(xuu89, xuu90, app(app(app(ty_@3, fbf), fbg), fbh)) -> new_ltEs10(xuu89, xuu90, fbf, fbg, fbh) new_esEs32(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_ltEs22(xuu752, xuu762, ty_Int) -> new_ltEs9(xuu752, xuu762) new_ltEs19(xuu75, xuu76, ty_@0) -> new_ltEs6(xuu75, xuu76) new_lt22(xuu113, xuu116, ty_Char) -> new_lt5(xuu113, xuu116) new_lt24(xuu500, xuu40, ty_Float) -> new_lt15(xuu500, xuu40) new_esEs33(xuu750, xuu760, ty_@0) -> new_esEs15(xuu750, xuu760) new_ltEs10(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), cgg, cgh, cha) -> new_pePe(new_lt20(xuu750, xuu760, cgg), new_asAs(new_esEs35(xuu750, xuu760, cgg), new_pePe(new_lt21(xuu751, xuu761, cgh), new_asAs(new_esEs36(xuu751, xuu761, cgh), new_ltEs22(xuu752, xuu762, cha))))) new_esEs12(LT, LT) -> True new_esEs27(xuu50001, xuu4001, ty_Bool) -> new_esEs19(xuu50001, xuu4001) new_compare15(:%(xuu5000, xuu5001), :%(xuu400, xuu401), ty_Integer) -> new_compare17(new_sr0(xuu5000, xuu401), new_sr0(xuu400, xuu5001)) new_ltEs7(Nothing, Just(xuu760), beg) -> True new_compare114(xuu172, xuu173, False, dae) -> GT new_esEs26(xuu50000, xuu4000, ty_@0) -> new_esEs15(xuu50000, xuu4000) new_gt(xuu22, xuu17, ty_Ordering) -> new_esEs41(new_compare19(xuu22, xuu17)) new_lt21(xuu751, xuu761, ty_@0) -> new_lt14(xuu751, xuu761) new_esEs8(xuu5000, xuu400, ty_Float) -> new_esEs23(xuu5000, xuu400) new_ltEs18(xuu82, xuu83, app(app(app(ty_@3, cea), ceb), cec)) -> new_ltEs10(xuu82, xuu83, cea, ceb, cec) new_lt24(xuu500, xuu40, ty_Ordering) -> new_lt7(xuu500, xuu40) new_esEs24(Char(xuu50000), Char(xuu4000)) -> new_primEqNat0(xuu50000, xuu4000) new_esEs21(Just(xuu50000), Just(xuu4000), app(ty_Maybe, dfd)) -> new_esEs21(xuu50000, xuu4000, dfd) new_primCompAux00(xuu54, GT) -> GT new_esEs40(xuu50001, xuu4001, ty_Integer) -> new_esEs17(xuu50001, xuu4001) new_ltEs21(xuu127, xuu129, ty_Char) -> new_ltEs14(xuu127, xuu129) new_esEs5(xuu5001, xuu401, app(ty_Ratio, dd)) -> new_esEs13(xuu5001, xuu401, dd) new_esEs27(xuu50001, xuu4001, ty_Ordering) -> new_esEs12(xuu50001, xuu4001) new_ltEs23(xuu89, xuu90, ty_Integer) -> new_ltEs16(xuu89, xuu90) new_lt4(xuu500, xuu40, bf, bg, bh) -> new_esEs29(new_compare5(xuu500, xuu40, bf, bg, bh)) new_esEs21(Just(xuu50000), Just(xuu4000), app(ty_[], dfe)) -> new_esEs22(xuu50000, xuu4000, dfe) new_compare6(Right(xuu5000), Right(xuu400), ga, gb) -> new_compare27(xuu5000, xuu400, new_esEs8(xuu5000, xuu400, gb), ga, gb) new_esEs27(xuu50001, xuu4001, ty_Int) -> new_esEs16(xuu50001, xuu4001) new_lt14(xuu500, xuu40) -> new_esEs29(new_compare9(xuu500, xuu40)) new_esEs36(xuu751, xuu761, app(app(app(ty_@3, eha), ehb), ehc)) -> new_esEs14(xuu751, xuu761, eha, ehb, ehc) new_ltEs21(xuu127, xuu129, ty_Double) -> new_ltEs12(xuu127, xuu129) new_esEs39(xuu50000, xuu4000, ty_Bool) -> new_esEs19(xuu50000, xuu4000) new_ltEs19(xuu75, xuu76, ty_Bool) -> new_ltEs13(xuu75, xuu76) new_esEs33(xuu750, xuu760, ty_Integer) -> new_esEs17(xuu750, xuu760) new_lt19(xuu126, xuu128, ty_Float) -> new_lt15(xuu126, xuu128) new_esEs34(xuu126, xuu128, ty_Bool) -> new_esEs19(xuu126, xuu128) new_esEs25(Left(xuu50000), Left(xuu4000), app(ty_Maybe, bgh), dc) -> new_esEs21(xuu50000, xuu4000, bgh) new_esEs9(xuu5000, xuu400, ty_Ordering) -> new_esEs12(xuu5000, xuu400) new_esEs7(xuu5000, xuu400, app(ty_[], hb)) -> new_esEs22(xuu5000, xuu400, hb) new_esEs11(xuu5001, xuu401, ty_Char) -> new_esEs24(xuu5001, xuu401) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs8(xuu5000, xuu400, ty_Double) -> new_esEs20(xuu5000, xuu400) new_esEs37(xuu113, xuu116, app(ty_Maybe, fea)) -> new_esEs21(xuu113, xuu116, fea) new_esEs9(xuu5000, xuu400, ty_Int) -> new_esEs16(xuu5000, xuu400) new_primCmpNat0(Succ(xuu50000), Zero) -> GT new_esEs35(xuu750, xuu760, app(app(ty_@2, egf), egg)) -> new_esEs18(xuu750, xuu760, egf, egg) new_esEs11(xuu5001, xuu401, app(ty_Ratio, eed)) -> new_esEs13(xuu5001, xuu401, eed) new_ltEs7(Just(xuu750), Just(xuu760), app(app(ty_@2, bfh), bga)) -> new_ltEs17(xuu750, xuu760, bfh, bga) new_pePe(False, xuu215) -> xuu215 new_esEs4(xuu5000, xuu400, app(ty_Maybe, cg)) -> new_esEs21(xuu5000, xuu400, cg) new_esEs39(xuu50000, xuu4000, app(app(app(ty_@3, fha), fhb), fhc)) -> new_esEs14(xuu50000, xuu4000, fha, fhb, fhc) new_esEs28(xuu50002, xuu4002, app(ty_[], bed)) -> new_esEs22(xuu50002, xuu4002, bed) new_esEs21(Just(xuu50000), Just(xuu4000), ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_ltEs23(xuu89, xuu90, ty_Ordering) -> new_ltEs4(xuu89, xuu90) new_ltEs7(Just(xuu750), Just(xuu760), app(app(app(ty_@3, bfa), bfb), bfc)) -> new_ltEs10(xuu750, xuu760, bfa, bfb, bfc) new_lt19(xuu126, xuu128, ty_Int) -> new_lt12(xuu126, xuu128) new_compare15(:%(xuu5000, xuu5001), :%(xuu400, xuu401), ty_Int) -> new_compare12(new_sr(xuu5000, xuu401), new_sr(xuu400, xuu5001)) new_esEs25(Right(xuu50000), Right(xuu4000), db, app(ty_Ratio, bhd)) -> new_esEs13(xuu50000, xuu4000, bhd) new_esEs33(xuu750, xuu760, ty_Char) -> new_esEs24(xuu750, xuu760) new_compare14(xuu5000, xuu400, ty_Char) -> new_compare8(xuu5000, xuu400) new_esEs21(Just(xuu50000), Just(xuu4000), ty_Int) -> new_esEs16(xuu50000, xuu4000) new_lt24(xuu500, xuu40, ty_@0) -> new_lt14(xuu500, xuu40) new_lt21(xuu751, xuu761, ty_Double) -> new_lt9(xuu751, xuu761) new_primEqInt(Pos(Zero), Neg(Succ(xuu40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu40000))) -> False new_ltEs20(xuu751, xuu761, ty_Integer) -> new_ltEs16(xuu751, xuu761) new_esEs7(xuu5000, xuu400, app(ty_Ratio, gc)) -> new_esEs13(xuu5000, xuu400, gc) new_lt23(xuu114, xuu117, ty_Integer) -> new_lt16(xuu114, xuu117) new_esEs34(xuu126, xuu128, ty_Int) -> new_esEs16(xuu126, xuu128) new_ltEs4(LT, GT) -> True new_gt(xuu22, xuu17, app(ty_[], cfb)) -> new_esEs41(new_compare(xuu22, xuu17, cfb)) new_esEs34(xuu126, xuu128, ty_Ordering) -> new_esEs12(xuu126, xuu128) new_esEs36(xuu751, xuu761, ty_Float) -> new_esEs23(xuu751, xuu761) new_gt(xuu22, xuu17, ty_@0) -> new_esEs41(new_compare9(xuu22, xuu17)) new_ltEs4(LT, LT) -> True new_ltEs4(EQ, LT) -> False new_ltEs19(xuu75, xuu76, ty_Char) -> new_ltEs14(xuu75, xuu76) new_ltEs21(xuu127, xuu129, app(app(ty_Either, ece), ecf)) -> new_ltEs15(xuu127, xuu129, ece, ecf) new_esEs25(Left(xuu50000), Left(xuu4000), ty_@0, dc) -> new_esEs15(xuu50000, xuu4000) new_esEs38(xuu114, xuu117, app(ty_[], fed)) -> new_esEs22(xuu114, xuu117, fed) new_esEs5(xuu5001, xuu401, app(app(app(ty_@3, de), df), dg)) -> new_esEs14(xuu5001, xuu401, de, df, dg) new_lt17(xuu750, xuu760, ty_Double) -> new_lt9(xuu750, xuu760) new_ltEs19(xuu75, xuu76, ty_Double) -> new_ltEs12(xuu75, xuu76) new_esEs8(xuu5000, xuu400, ty_Char) -> new_esEs24(xuu5000, xuu400) new_ltEs24(xuu115, xuu118, ty_Int) -> new_ltEs9(xuu115, xuu118) new_esEs6(xuu5002, xuu402, app(ty_Maybe, fd)) -> new_esEs21(xuu5002, xuu402, fd) new_esEs11(xuu5001, xuu401, app(app(ty_Either, efd), efe)) -> new_esEs25(xuu5001, xuu401, efd, efe) new_lt17(xuu750, xuu760, ty_Bool) -> new_lt8(xuu750, xuu760) new_esEs27(xuu50001, xuu4001, app(ty_Maybe, bda)) -> new_esEs21(xuu50001, xuu4001, bda) new_esEs8(xuu5000, xuu400, ty_Bool) -> new_esEs19(xuu5000, xuu400) new_esEs28(xuu50002, xuu4002, ty_@0) -> new_esEs15(xuu50002, xuu4002) new_esEs34(xuu126, xuu128, app(app(ty_Either, ebc), ebd)) -> new_esEs25(xuu126, xuu128, ebc, ebd) new_esEs34(xuu126, xuu128, ty_Float) -> new_esEs23(xuu126, xuu128) new_esEs16(xuu5000, xuu400) -> new_primEqInt(xuu5000, xuu400) new_lt6(xuu500, xuu40, cca) -> new_esEs29(new_compare(xuu500, xuu40, cca)) new_esEs5(xuu5001, xuu401, ty_Integer) -> new_esEs17(xuu5001, xuu401) new_esEs4(xuu5000, xuu400, app(ty_[], da)) -> new_esEs22(xuu5000, xuu400, da) new_ltEs23(xuu89, xuu90, app(app(ty_@2, fce), fcf)) -> new_ltEs17(xuu89, xuu90, fce, fcf) new_esEs26(xuu50000, xuu4000, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs14(xuu50000, xuu4000, bbb, bbc, bbd) new_compare27(xuu82, xuu83, False, cdf, cdg) -> new_compare10(xuu82, xuu83, new_ltEs18(xuu82, xuu83, cdg), cdf, cdg) new_lt19(xuu126, xuu128, ty_Double) -> new_lt9(xuu126, xuu128) new_lt10(xuu500, xuu40, chh, daa) -> new_esEs29(new_compare18(xuu500, xuu40, chh, daa)) new_esEs32(xuu50000, xuu4000, ty_Bool) -> new_esEs19(xuu50000, xuu4000) new_esEs25(Left(xuu50000), Left(xuu4000), ty_Char, dc) -> new_esEs24(xuu50000, xuu4000) new_lt11(xuu500, xuu40, chg) -> new_esEs29(new_compare15(xuu500, xuu40, chg)) new_lt17(xuu750, xuu760, ty_Float) -> new_lt15(xuu750, xuu760) new_esEs7(xuu5000, xuu400, ty_Integer) -> new_esEs17(xuu5000, xuu400) new_lt21(xuu751, xuu761, app(app(ty_@2, ehh), faa)) -> new_lt10(xuu751, xuu761, ehh, faa) new_esEs30(xuu50000, xuu4000, ty_Integer) -> new_esEs17(xuu50000, xuu4000) new_esEs22(:(xuu50000, xuu50001), [], da) -> False new_esEs22([], :(xuu4000, xuu4001), da) -> False new_esEs11(xuu5001, xuu401, ty_Float) -> new_esEs23(xuu5001, xuu401) new_esEs5(xuu5001, xuu401, ty_@0) -> new_esEs15(xuu5001, xuu401) new_esEs6(xuu5002, xuu402, ty_Double) -> new_esEs20(xuu5002, xuu402) new_compare113(xuu185, xuu186, xuu187, xuu188, xuu189, xuu190, False, dab, dac, dad) -> GT new_esEs6(xuu5002, xuu402, ty_Bool) -> new_esEs19(xuu5002, xuu402) new_lt22(xuu113, xuu116, app(app(ty_Either, fdg), fdh)) -> new_lt13(xuu113, xuu116, fdg, fdh) new_ltEs4(LT, EQ) -> True new_lt17(xuu750, xuu760, ty_Int) -> new_lt12(xuu750, xuu760) new_primMulInt(Neg(xuu4000), Neg(xuu50010)) -> Pos(new_primMulNat0(xuu4000, xuu50010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu4000))) -> new_primCmpNat0(Zero, Succ(xuu4000)) new_esEs40(xuu50001, xuu4001, app(ty_[], gba)) -> new_esEs22(xuu50001, xuu4001, gba) new_ltEs17(@2(xuu750, xuu751), @2(xuu760, xuu761), che, chf) -> new_pePe(new_lt17(xuu750, xuu760, che), new_asAs(new_esEs33(xuu750, xuu760, che), new_ltEs20(xuu751, xuu761, chf))) new_esEs5(xuu5001, xuu401, ty_Double) -> new_esEs20(xuu5001, xuu401) new_esEs8(xuu5000, xuu400, app(app(ty_Either, bae), baf)) -> new_esEs25(xuu5000, xuu400, bae, baf) new_esEs25(Left(xuu50000), Right(xuu4000), db, dc) -> False new_esEs25(Right(xuu50000), Left(xuu4000), db, dc) -> False new_ltEs4(EQ, EQ) -> True new_ltEs15(Left(xuu750), Left(xuu760), app(app(app(ty_@3, dca), dcb), dcc), chd) -> new_ltEs10(xuu750, xuu760, dca, dcb, dcc) new_esEs10(xuu5000, xuu400, app(app(ty_@2, edf), edg)) -> new_esEs18(xuu5000, xuu400, edf, edg) new_esEs33(xuu750, xuu760, app(app(ty_@2, dgh), dha)) -> new_esEs18(xuu750, xuu760, dgh, dha) new_ltEs18(xuu82, xuu83, ty_Char) -> new_ltEs14(xuu82, xuu83) new_ltEs19(xuu75, xuu76, ty_Float) -> new_ltEs5(xuu75, xuu76) new_esEs11(xuu5001, xuu401, app(app(ty_@2, eeh), efa)) -> new_esEs18(xuu5001, xuu401, eeh, efa) new_esEs7(xuu5000, xuu400, ty_Char) -> new_esEs24(xuu5000, xuu400) new_primMulInt(Pos(xuu4000), Neg(xuu50010)) -> Neg(new_primMulNat0(xuu4000, xuu50010)) new_primMulInt(Neg(xuu4000), Pos(xuu50010)) -> Neg(new_primMulNat0(xuu4000, xuu50010)) new_ltEs21(xuu127, xuu129, ty_Integer) -> new_ltEs16(xuu127, xuu129) new_compare19(GT, EQ) -> GT new_esEs8(xuu5000, xuu400, ty_Int) -> new_esEs16(xuu5000, xuu400) new_ltEs19(xuu75, xuu76, ty_Int) -> new_ltEs9(xuu75, xuu76) new_esEs37(xuu113, xuu116, ty_Double) -> new_esEs20(xuu113, xuu116) new_sr0(Integer(xuu4000), Integer(xuu50010)) -> Integer(new_primMulInt(xuu4000, xuu50010)) new_gt0(xuu22, xuu17) -> new_esEs41(new_compare12(xuu22, xuu17)) new_compare115(xuu200, xuu201, xuu202, xuu203, True, xuu205, cdd, cde) -> new_compare110(xuu200, xuu201, xuu202, xuu203, True, cdd, cde) new_esEs8(xuu5000, xuu400, ty_Ordering) -> new_esEs12(xuu5000, xuu400) new_ltEs9(xuu75, xuu76) -> new_fsEs(new_compare12(xuu75, xuu76)) new_lt9(xuu500, xuu40) -> new_esEs29(new_compare11(xuu500, xuu40)) new_esEs21(Just(xuu50000), Just(xuu4000), app(app(ty_@2, dfb), dfc)) -> new_esEs18(xuu50000, xuu4000, dfb, dfc) new_esEs10(xuu5000, xuu400, app(ty_Ratio, edb)) -> new_esEs13(xuu5000, xuu400, edb) new_ltEs18(xuu82, xuu83, ty_Ordering) -> new_ltEs4(xuu82, xuu83) new_lt19(xuu126, xuu128, app(app(ty_@2, ebf), ebg)) -> new_lt10(xuu126, xuu128, ebf, ebg) new_ltEs24(xuu115, xuu118, ty_Ordering) -> new_ltEs4(xuu115, xuu118) new_asAs(True, xuu151) -> xuu151 new_gt(xuu22, xuu17, app(app(ty_Either, cfg), cfh)) -> new_esEs41(new_compare6(xuu22, xuu17, cfg, cfh)) new_ltEs15(Right(xuu750), Right(xuu760), chc, app(ty_Maybe, dea)) -> new_ltEs7(xuu750, xuu760, dea) new_lt20(xuu750, xuu760, app(app(ty_@2, egf), egg)) -> new_lt10(xuu750, xuu760, egf, egg) new_ltEs21(xuu127, xuu129, app(ty_Maybe, ecg)) -> new_ltEs7(xuu127, xuu129, ecg) new_esEs5(xuu5001, xuu401, app(app(ty_@2, dh), ea)) -> new_esEs18(xuu5001, xuu401, dh, ea) new_esEs4(xuu5000, xuu400, app(ty_Ratio, ca)) -> new_esEs13(xuu5000, xuu400, ca) new_esEs26(xuu50000, xuu4000, ty_Integer) -> new_esEs17(xuu50000, xuu4000) new_ltEs21(xuu127, xuu129, ty_Float) -> new_ltEs5(xuu127, xuu129) new_ltEs15(Left(xuu750), Left(xuu760), app(ty_Maybe, dcg), chd) -> new_ltEs7(xuu750, xuu760, dcg) new_compare111(xuu156, xuu157, False, ded, dee) -> GT new_ltEs20(xuu751, xuu761, ty_Char) -> new_ltEs14(xuu751, xuu761) new_compare28(xuu89, xuu90, False, fbd) -> new_compare114(xuu89, xuu90, new_ltEs23(xuu89, xuu90, fbd), fbd) new_lt21(xuu751, xuu761, ty_Int) -> new_lt12(xuu751, xuu761) new_esEs25(Right(xuu50000), Right(xuu4000), db, ty_Bool) -> new_esEs19(xuu50000, xuu4000) new_lt24(xuu500, xuu40, app(ty_[], cca)) -> new_lt6(xuu500, xuu40, cca) new_ltEs20(xuu751, xuu761, app(ty_Ratio, dhf)) -> new_ltEs11(xuu751, xuu761, dhf) new_ltEs8(xuu75, xuu76, cgf) -> new_fsEs(new_compare(xuu75, xuu76, cgf)) new_esEs33(xuu750, xuu760, app(ty_[], dfh)) -> new_esEs22(xuu750, xuu760, dfh) new_compare6(Right(xuu5000), Left(xuu400), ga, gb) -> GT new_lt24(xuu500, xuu40, app(app(ty_Either, ga), gb)) -> new_lt13(xuu500, xuu40, ga, gb) new_lt16(xuu500, xuu40) -> new_esEs29(new_compare17(xuu500, xuu40)) new_compare8(Char(xuu5000), Char(xuu400)) -> new_primCmpNat0(xuu5000, xuu400) new_compare14(xuu5000, xuu400, ty_Bool) -> new_compare16(xuu5000, xuu400) new_sr(xuu400, xuu5001) -> new_primMulInt(xuu400, xuu5001) new_esEs39(xuu50000, xuu4000, app(ty_Ratio, fgh)) -> new_esEs13(xuu50000, xuu4000, fgh) new_ltEs7(Nothing, Nothing, beg) -> True new_esEs7(xuu5000, xuu400, ty_@0) -> new_esEs15(xuu5000, xuu400) new_esEs27(xuu50001, xuu4001, ty_Float) -> new_esEs23(xuu50001, xuu4001) new_primMulNat0(Zero, Zero) -> Zero new_esEs4(xuu5000, xuu400, ty_Int) -> new_esEs16(xuu5000, xuu400) new_esEs14(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cb, cc, cd) -> new_asAs(new_esEs26(xuu50000, xuu4000, cb), new_asAs(new_esEs27(xuu50001, xuu4001, cc), new_esEs28(xuu50002, xuu4002, cd))) new_gt(xuu22, xuu17, ty_Float) -> new_esEs41(new_compare7(xuu22, xuu17)) new_ltEs7(Just(xuu750), Nothing, beg) -> False new_compare16(True, True) -> EQ new_compare9(@0, @0) -> EQ new_ltEs22(xuu752, xuu762, ty_Float) -> new_ltEs5(xuu752, xuu762) new_esEs25(Right(xuu50000), Right(xuu4000), db, ty_Integer) -> new_esEs17(xuu50000, xuu4000) new_esEs7(xuu5000, xuu400, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs14(xuu5000, xuu400, gd, ge, gf) new_ltEs23(xuu89, xuu90, app(app(ty_Either, fcb), fcc)) -> new_ltEs15(xuu89, xuu90, fcb, fcc) new_esEs21(Nothing, Just(xuu4000), cg) -> False new_esEs21(Just(xuu50000), Nothing, cg) -> False new_esEs40(xuu50001, xuu4001, ty_Ordering) -> new_esEs12(xuu50001, xuu4001) new_esEs4(xuu5000, xuu400, ty_Ordering) -> new_esEs12(xuu5000, xuu400) new_esEs21(Nothing, Nothing, cg) -> True new_ltEs7(Just(xuu750), Just(xuu760), app(ty_Ratio, bfd)) -> new_ltEs11(xuu750, xuu760, bfd) new_ltEs19(xuu75, xuu76, app(ty_Ratio, chb)) -> new_ltEs11(xuu75, xuu76, chb) new_compare14(xuu5000, xuu400, ty_Ordering) -> new_compare19(xuu5000, xuu400) new_esEs40(xuu50001, xuu4001, ty_Int) -> new_esEs16(xuu50001, xuu4001) new_esEs8(xuu5000, xuu400, app(ty_Maybe, bac)) -> new_esEs21(xuu5000, xuu400, bac) new_esEs25(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, bgc), bgd), bge), dc) -> new_esEs14(xuu50000, xuu4000, bgc, bgd, bge) new_esEs33(xuu750, xuu760, ty_Double) -> new_esEs20(xuu750, xuu760) new_ltEs15(Right(xuu750), Right(xuu760), chc, ty_Int) -> new_ltEs9(xuu750, xuu760) new_ltEs22(xuu752, xuu762, app(app(ty_Either, fag), fah)) -> new_ltEs15(xuu752, xuu762, fag, fah) new_esEs37(xuu113, xuu116, app(ty_[], fdb)) -> new_esEs22(xuu113, xuu116, fdb) new_esEs39(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_esEs32(xuu50000, xuu4000, ty_Float) -> new_esEs23(xuu50000, xuu4000) new_primCompAux0(xuu5000, xuu400, xuu50, cca) -> new_primCompAux00(xuu50, new_compare14(xuu5000, xuu400, cca)) new_ltEs18(xuu82, xuu83, app(ty_Ratio, ced)) -> new_ltEs11(xuu82, xuu83, ced) new_esEs23(Float(xuu50000, xuu50001), Float(xuu4000, xuu4001)) -> new_esEs16(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) new_esEs32(xuu50000, xuu4000, app(ty_[], dbe)) -> new_esEs22(xuu50000, xuu4000, dbe) new_ltEs21(xuu127, xuu129, app(app(ty_@2, ech), eda)) -> new_ltEs17(xuu127, xuu129, ech, eda) new_esEs32(xuu50000, xuu4000, ty_Double) -> new_esEs20(xuu50000, xuu4000) new_ltEs19(xuu75, xuu76, app(ty_Maybe, beg)) -> new_ltEs7(xuu75, xuu76, beg) new_primEqInt(Neg(Succ(xuu500000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu40000))) -> False new_esEs7(xuu5000, xuu400, app(ty_Maybe, ha)) -> new_esEs21(xuu5000, xuu400, ha) new_compare([], [], cca) -> EQ new_ltEs7(Just(xuu750), Just(xuu760), app(ty_[], beh)) -> new_ltEs8(xuu750, xuu760, beh) new_esEs25(Right(xuu50000), Right(xuu4000), db, ty_@0) -> new_esEs15(xuu50000, xuu4000) new_esEs9(xuu5000, xuu400, ty_Bool) -> new_esEs19(xuu5000, xuu400) new_primEqInt(Pos(Succ(xuu500000)), Pos(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) new_esEs39(xuu50000, xuu4000, ty_Int) -> new_esEs16(xuu50000, xuu4000) new_ltEs15(Left(xuu750), Left(xuu760), ty_Double, chd) -> new_ltEs12(xuu750, xuu760) new_esEs36(xuu751, xuu761, app(app(ty_@2, ehh), faa)) -> new_esEs18(xuu751, xuu761, ehh, faa) new_esEs6(xuu5002, xuu402, app(app(app(ty_@3, eg), eh), fa)) -> new_esEs14(xuu5002, xuu402, eg, eh, fa) new_esEs8(xuu5000, xuu400, ty_@0) -> new_esEs15(xuu5000, xuu400) new_esEs26(xuu50000, xuu4000, ty_Float) -> new_esEs23(xuu50000, xuu4000) new_esEs28(xuu50002, xuu4002, ty_Char) -> new_esEs24(xuu50002, xuu4002) new_compare112(xuu185, xuu186, xuu187, xuu188, xuu189, xuu190, True, xuu192, dab, dac, dad) -> new_compare113(xuu185, xuu186, xuu187, xuu188, xuu189, xuu190, True, dab, dac, dad) new_esEs35(xuu750, xuu760, app(ty_Ratio, egb)) -> new_esEs13(xuu750, xuu760, egb) new_primEqInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> False new_primEqInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> False new_gt(xuu22, xuu17, ty_Int) -> new_gt0(xuu22, xuu17) new_ltEs4(EQ, GT) -> True new_primCmpInt(Neg(Zero), Neg(Succ(xuu4000))) -> new_primCmpNat0(Succ(xuu4000), Zero) new_lt17(xuu750, xuu760, app(ty_Ratio, dgd)) -> new_lt11(xuu750, xuu760, dgd) new_esEs25(Left(xuu50000), Left(xuu4000), app(ty_[], bha), dc) -> new_esEs22(xuu50000, xuu4000, bha) new_esEs9(xuu5000, xuu400, ty_Integer) -> new_esEs17(xuu5000, xuu400) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_lt22(xuu113, xuu116, ty_Double) -> new_lt9(xuu113, xuu116) new_lt23(xuu114, xuu117, app(ty_Ratio, feh)) -> new_lt11(xuu114, xuu117, feh) new_esEs25(Left(xuu50000), Left(xuu4000), app(ty_Ratio, bgb), dc) -> new_esEs13(xuu50000, xuu4000, bgb) new_ltEs23(xuu89, xuu90, ty_Char) -> new_ltEs14(xuu89, xuu90) new_esEs27(xuu50001, xuu4001, ty_Char) -> new_esEs24(xuu50001, xuu4001) new_esEs34(xuu126, xuu128, app(ty_[], eaf)) -> new_esEs22(xuu126, xuu128, eaf) new_ltEs7(Just(xuu750), Just(xuu760), ty_Double) -> new_ltEs12(xuu750, xuu760) new_esEs11(xuu5001, xuu401, app(ty_[], efc)) -> new_esEs22(xuu5001, xuu401, efc) new_lt17(xuu750, xuu760, app(ty_[], dfh)) -> new_lt6(xuu750, xuu760, dfh) new_not(False) -> True new_esEs36(xuu751, xuu761, app(ty_[], egh)) -> new_esEs22(xuu751, xuu761, egh) new_esEs40(xuu50001, xuu4001, app(ty_Ratio, gab)) -> new_esEs13(xuu50001, xuu4001, gab) new_ltEs20(xuu751, xuu761, app(app(ty_@2, eab), eac)) -> new_ltEs17(xuu751, xuu761, eab, eac) new_ltEs20(xuu751, xuu761, app(app(app(ty_@3, dhc), dhd), dhe)) -> new_ltEs10(xuu751, xuu761, dhc, dhd, dhe) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs7(xuu5000, xuu400, ty_Int) -> new_esEs16(xuu5000, xuu400) new_compare14(xuu5000, xuu400, app(app(app(ty_@3, ccc), ccd), cce)) -> new_compare5(xuu5000, xuu400, ccc, ccd, cce) new_esEs28(xuu50002, xuu4002, app(app(ty_Either, bee), bef)) -> new_esEs25(xuu50002, xuu4002, bee, bef) new_ltEs18(xuu82, xuu83, ty_Int) -> new_ltEs9(xuu82, xuu83) new_esEs36(xuu751, xuu761, ty_Double) -> new_esEs20(xuu751, xuu761) new_esEs37(xuu113, xuu116, app(app(ty_@2, feb), fec)) -> new_esEs18(xuu113, xuu116, feb, fec) new_ltEs21(xuu127, xuu129, ty_Ordering) -> new_ltEs4(xuu127, xuu129) new_ltEs19(xuu75, xuu76, app(app(ty_@2, che), chf)) -> new_ltEs17(xuu75, xuu76, che, chf) new_esEs41(LT) -> False new_esEs21(Just(xuu50000), Just(xuu4000), app(ty_Ratio, def)) -> new_esEs13(xuu50000, xuu4000, def) new_lt21(xuu751, xuu761, app(ty_[], egh)) -> new_lt6(xuu751, xuu761, egh) new_ltEs19(xuu75, xuu76, app(app(app(ty_@3, cgg), cgh), cha)) -> new_ltEs10(xuu75, xuu76, cgg, cgh, cha) new_esEs36(xuu751, xuu761, app(ty_Ratio, ehd)) -> new_esEs13(xuu751, xuu761, ehd) new_ltEs21(xuu127, xuu129, ty_Bool) -> new_ltEs13(xuu127, xuu129) new_esEs7(xuu5000, xuu400, ty_Ordering) -> new_esEs12(xuu5000, xuu400) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs25(Right(xuu50000), Right(xuu4000), db, ty_Char) -> new_esEs24(xuu50000, xuu4000) new_lt23(xuu114, xuu117, ty_Double) -> new_lt9(xuu114, xuu117) new_lt22(xuu113, xuu116, app(ty_Ratio, fdf)) -> new_lt11(xuu113, xuu116, fdf) new_ltEs22(xuu752, xuu762, ty_@0) -> new_ltEs6(xuu752, xuu762) new_ltEs22(xuu752, xuu762, app(app(app(ty_@3, fac), fad), fae)) -> new_ltEs10(xuu752, xuu762, fac, fad, fae) new_ltEs24(xuu115, xuu118, ty_Bool) -> new_ltEs13(xuu115, xuu118) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(Left(xuu50000), Left(xuu4000), ty_Ordering, dc) -> new_esEs12(xuu50000, xuu4000) new_esEs11(xuu5001, xuu401, ty_Double) -> new_esEs20(xuu5001, xuu401) new_esEs21(Just(xuu50000), Just(xuu4000), ty_Double) -> new_esEs20(xuu50000, xuu4000) new_esEs5(xuu5001, xuu401, ty_Int) -> new_esEs16(xuu5001, xuu401) new_ltEs24(xuu115, xuu118, app(app(ty_Either, fgc), fgd)) -> new_ltEs15(xuu115, xuu118, fgc, fgd) new_esEs9(xuu5000, xuu400, app(ty_Maybe, cbe)) -> new_esEs21(xuu5000, xuu400, cbe) new_esEs26(xuu50000, xuu4000, ty_Bool) -> new_esEs19(xuu50000, xuu4000) new_lt20(xuu750, xuu760, app(ty_Ratio, egb)) -> new_lt11(xuu750, xuu760, egb) new_lt22(xuu113, xuu116, ty_Int) -> new_lt12(xuu113, xuu116) new_esEs5(xuu5001, xuu401, ty_Ordering) -> new_esEs12(xuu5001, xuu401) new_ltEs23(xuu89, xuu90, ty_Bool) -> new_ltEs13(xuu89, xuu90) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs15(Right(xuu750), Right(xuu760), chc, app(app(app(ty_@3, ddc), ddd), dde)) -> new_ltEs10(xuu750, xuu760, ddc, ddd, dde) new_ltEs23(xuu89, xuu90, app(ty_Maybe, fcd)) -> new_ltEs7(xuu89, xuu90, fcd) new_esEs34(xuu126, xuu128, ty_Double) -> new_esEs20(xuu126, xuu128) new_esEs25(Left(xuu50000), Left(xuu4000), ty_Int, dc) -> new_esEs16(xuu50000, xuu4000) new_ltEs22(xuu752, xuu762, app(ty_Maybe, fba)) -> new_ltEs7(xuu752, xuu762, fba) new_esEs27(xuu50001, xuu4001, app(app(ty_Either, bdc), bdd)) -> new_esEs25(xuu50001, xuu4001, bdc, bdd) new_esEs28(xuu50002, xuu4002, ty_Float) -> new_esEs23(xuu50002, xuu4002) new_ltEs20(xuu751, xuu761, ty_Ordering) -> new_ltEs4(xuu751, xuu761) new_lt23(xuu114, xuu117, ty_Int) -> new_lt12(xuu114, xuu117) new_compare29(xuu126, xuu127, xuu128, xuu129, True, ead, eae) -> EQ new_esEs38(xuu114, xuu117, app(ty_Ratio, feh)) -> new_esEs13(xuu114, xuu117, feh) new_esEs38(xuu114, xuu117, app(app(ty_@2, ffd), ffe)) -> new_esEs18(xuu114, xuu117, ffd, ffe) new_ltEs18(xuu82, xuu83, app(app(ty_@2, ceh), cfa)) -> new_ltEs17(xuu82, xuu83, ceh, cfa) new_esEs39(xuu50000, xuu4000, app(app(ty_@2, fhd), fhe)) -> new_esEs18(xuu50000, xuu4000, fhd, fhe) new_esEs4(xuu5000, xuu400, app(app(ty_@2, ce), cf)) -> new_esEs18(xuu5000, xuu400, ce, cf) new_lt24(xuu500, xuu40, ty_Double) -> new_lt9(xuu500, xuu40) new_ltEs21(xuu127, xuu129, ty_Int) -> new_ltEs9(xuu127, xuu129) new_ltEs22(xuu752, xuu762, ty_Bool) -> new_ltEs13(xuu752, xuu762) new_esEs26(xuu50000, xuu4000, app(app(ty_Either, bca), bcb)) -> new_esEs25(xuu50000, xuu4000, bca, bcb) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_gt(xuu22, xuu17, ty_Char) -> new_esEs41(new_compare8(xuu22, xuu17)) new_lt21(xuu751, xuu761, app(ty_Ratio, ehd)) -> new_lt11(xuu751, xuu761, ehd) new_esEs8(xuu5000, xuu400, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs14(xuu5000, xuu400, hf, hg, hh) new_ltEs24(xuu115, xuu118, ty_@0) -> new_ltEs6(xuu115, xuu118) new_ltEs21(xuu127, xuu129, app(app(app(ty_@3, eca), ecb), ecc)) -> new_ltEs10(xuu127, xuu129, eca, ecb, ecc) new_ltEs19(xuu75, xuu76, ty_Ordering) -> new_ltEs4(xuu75, xuu76) new_primEqNat0(Zero, Zero) -> True new_esEs37(xuu113, xuu116, app(ty_Ratio, fdf)) -> new_esEs13(xuu113, xuu116, fdf) new_ltEs20(xuu751, xuu761, ty_Int) -> new_ltEs9(xuu751, xuu761) new_esEs9(xuu5000, xuu400, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs14(xuu5000, xuu400, cah, cba, cbb) new_lt20(xuu750, xuu760, app(ty_[], eff)) -> new_lt6(xuu750, xuu760, eff) new_compare14(xuu5000, xuu400, app(ty_Maybe, cda)) -> new_compare13(xuu5000, xuu400, cda) new_ltEs4(GT, GT) -> True new_esEs6(xuu5002, xuu402, ty_Int) -> new_esEs16(xuu5002, xuu402) new_asAs(False, xuu151) -> False new_compare112(xuu185, xuu186, xuu187, xuu188, xuu189, xuu190, False, xuu192, dab, dac, dad) -> new_compare113(xuu185, xuu186, xuu187, xuu188, xuu189, xuu190, xuu192, dab, dac, dad) new_ltEs23(xuu89, xuu90, ty_@0) -> new_ltEs6(xuu89, xuu90) new_compare18(@2(xuu5000, xuu5001), @2(xuu400, xuu401), chh, daa) -> new_compare29(xuu5000, xuu5001, xuu400, xuu401, new_asAs(new_esEs10(xuu5000, xuu400, chh), new_esEs11(xuu5001, xuu401, daa)), chh, daa) new_esEs35(xuu750, xuu760, ty_Double) -> new_esEs20(xuu750, xuu760) new_esEs6(xuu5002, xuu402, ty_Ordering) -> new_esEs12(xuu5002, xuu402) new_lt19(xuu126, xuu128, app(ty_[], eaf)) -> new_lt6(xuu126, xuu128, eaf) new_ltEs24(xuu115, xuu118, ty_Char) -> new_ltEs14(xuu115, xuu118) The set Q consists of the following terms: new_esEs35(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs23(x0, x1, ty_@0) new_lt20(x0, x1, ty_Integer) new_compare29(x0, x1, x2, x3, False, x4, x5) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Bool) new_compare19(LT, GT) new_compare19(GT, LT) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs27(x0, x1, ty_Bool) new_lt14(x0, x1) new_esEs27(x0, x1, ty_@0) new_lt19(x0, x1, ty_Integer) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_Float) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(LT, LT) new_ltEs8(x0, x1, x2) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs40(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Int) new_esEs19(False, False) new_esEs32(x0, x1, ty_Integer) new_esEs23(Float(x0, x1), Float(x2, x3)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Pos(Zero)) new_gt(x0, x1, ty_Float) new_compare14(x0, x1, ty_@0) new_compare11(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare11(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs27(x0, x1, ty_Integer) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Float) new_lt20(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_Float) new_gt(x0, x1, ty_Integer) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1, ty_Float) new_esEs40(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Integer) new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs13(:%(x0, x1), :%(x2, x3), x4) new_esEs4(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Integer) new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Float) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs16(x0, x1) new_esEs31(x0, x1, ty_Integer) new_compare110(x0, x1, x2, x3, True, x4, x5) new_esEs34(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_lt6(x0, x1, x2) new_lt19(x0, x1, ty_Float) new_asAs(True, x0) new_esEs25(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs9(x0, x1, ty_Char) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs9(x0, x1, ty_Double) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Double) new_lt24(x0, x1, ty_Ordering) new_ltEs4(GT, EQ) new_ltEs4(EQ, GT) new_ltEs10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt20(x0, x1, ty_@0) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(@2(x0, x1), @2(x2, x3), x4, x5) new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_@0) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Float) new_lt24(x0, x1, ty_Char) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs21(Just(x0), Nothing, x1) new_esEs35(x0, x1, ty_Bool) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_lt17(x0, x1, app(ty_Ratio, x2)) new_ltEs4(EQ, LT) new_ltEs4(LT, EQ) new_gt(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, ty_Ordering) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_compare111(x0, x1, True, x2, x3) new_lt22(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, x2) new_esEs12(GT, GT) new_ltEs7(Just(x0), Just(x1), ty_Integer) new_esEs35(x0, x1, ty_Integer) new_compare115(x0, x1, x2, x3, False, x4, x5, x6) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, True, x2) new_ltEs18(x0, x1, ty_Double) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Bool) new_esEs11(x0, x1, ty_Bool) new_esEs11(x0, x1, app(ty_[], x2)) new_compare13(Just(x0), Nothing, x1) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs15(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs23(x0, x1, ty_Int) new_esEs25(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_sr0(Integer(x0), Integer(x1)) new_lt22(x0, x1, ty_Bool) new_compare14(x0, x1, app(ty_Ratio, x2)) new_lt17(x0, x1, ty_@0) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Int) new_gt0(x0, x1) new_esEs8(x0, x1, ty_Int) new_lt17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(Right(x0), Right(x1), x2, ty_Double) new_esEs32(x0, x1, ty_@0) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Just(x0), Just(x1), ty_@0) new_lt17(x0, x1, ty_Double) new_esEs37(x0, x1, ty_Ordering) new_pePe(False, x0) new_esEs25(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare25(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Zero) new_esEs22(:(x0, x1), [], x2) new_lt24(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Ordering) new_esEs21(Just(x0), Just(x1), ty_Bool) new_esEs37(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Int) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Ordering) new_gt(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Float) new_lt21(x0, x1, ty_Double) new_compare113(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs15(Right(x0), Right(x1), x2, ty_Double) new_gt(x0, x1, ty_Bool) new_lt19(x0, x1, app(ty_[], x2)) new_compare19(EQ, GT) new_compare19(GT, EQ) new_esEs8(x0, x1, ty_Bool) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs34(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Float) new_ltEs15(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs11(x0, x1, ty_Integer) new_ltEs13(True, True) new_esEs38(x0, x1, ty_Int) new_esEs21(Just(x0), Just(x1), ty_Int) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_@0) new_esEs25(Left(x0), Left(x1), ty_Ordering, x2) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_Bool) new_compare17(Integer(x0), Integer(x1)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt17(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Double) new_lt22(x0, x1, ty_Double) new_esEs25(Left(x0), Left(x1), ty_Double, x2) new_esEs5(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Ordering) new_ltEs15(Right(x0), Right(x1), x2, ty_Bool) new_esEs35(x0, x1, ty_Int) new_lt24(x0, x1, ty_Integer) new_esEs25(Left(x0), Right(x1), x2, x3) new_esEs25(Right(x0), Left(x1), x2, x3) new_ltEs24(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Bool) new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt9(x0, x1) new_ltEs15(Right(x0), Right(x1), x2, ty_Integer) new_esEs35(x0, x1, ty_Ordering) new_lt17(x0, x1, ty_Int) new_ltEs15(Right(x0), Left(x1), x2, x3) new_ltEs15(Left(x0), Right(x1), x2, x3) new_esEs21(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs34(x0, x1, ty_Bool) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare9(@0, @0) new_esEs33(x0, x1, ty_Double) new_compare19(LT, LT) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_lt23(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Char) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Int) new_lt5(x0, x1) new_compare14(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_fsEs(x0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs4(x0, x1, ty_Double) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Zero, Zero) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_esEs25(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs24(x0, x1, ty_Char) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(False, False) new_lt17(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Ordering) new_ltEs7(Just(x0), Just(x1), ty_Ordering) new_ltEs15(Left(x0), Left(x1), ty_Char, x2) new_esEs6(x0, x1, ty_Double) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Bool) new_ltEs15(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_compare12(x0, x1) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Float) new_ltEs15(Left(x0), Left(x1), ty_Int, x2) new_esEs38(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_@0) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, ty_Float) new_ltEs4(EQ, EQ) new_esEs34(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_primCmpNat0(Succ(x0), Zero) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Double) new_esEs12(LT, LT) new_esEs34(x0, x1, ty_@0) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(True, True) new_esEs36(x0, x1, ty_Double) new_lt19(x0, x1, ty_Int) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Int) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(EQ) new_compare14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, ty_Char) new_lt20(x0, x1, ty_Int) new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs23(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Float) new_gt(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Char) new_esEs39(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Bool) new_ltEs15(Right(x0), Right(x1), x2, ty_Float) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Int) new_esEs25(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Char) new_ltEs5(x0, x1) new_lt21(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Char) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs39(x0, x1, ty_Char) new_lt23(x0, x1, app(ty_[], x2)) new_gt(x0, x1, ty_@0) new_esEs25(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs20(x0, x1, ty_Bool) new_ltEs15(Left(x0), Left(x1), ty_Bool, x2) new_esEs28(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs23(x0, x1, ty_Ordering) new_compare14(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Bool) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_compare14(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Integer) new_lt17(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_@0) new_compare16(True, True) new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Nothing, Just(x0), x1) new_ltEs15(Left(x0), Left(x1), ty_Integer, x2) new_compare(:(x0, x1), [], x2) new_esEs32(x0, x1, ty_Float) new_primEqNat0(Zero, Zero) new_lt24(x0, x1, ty_@0) new_primMulNat0(Succ(x0), Succ(x1)) new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Bool) new_not(False) new_esEs10(x0, x1, ty_Char) new_esEs20(Double(x0, x1), Double(x2, x3)) new_ltEs15(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt21(x0, x1, ty_Bool) new_esEs21(Just(x0), Just(x1), ty_Double) new_lt21(x0, x1, ty_Float) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Ordering) new_primMulNat0(Zero, Succ(x0)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_compare14(x0, x1, ty_Char) new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare19(EQ, EQ) new_esEs27(x0, x1, ty_Int) new_compare13(Nothing, Nothing, x0) new_esEs21(Nothing, Just(x0), x1) new_ltEs15(Right(x0), Right(x1), x2, ty_Char) new_esEs5(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_lt24(x0, x1, app(ty_Ratio, x2)) new_esEs41(LT) new_esEs39(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Ordering) new_lt24(x0, x1, app(ty_Maybe, x2)) new_compare14(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs12(x0, x1) new_ltEs7(Just(x0), Nothing, x1) new_esEs35(x0, x1, ty_Double) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Integer) new_lt17(x0, x1, ty_Bool) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Int) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Right(x0), Right(x1), x2, ty_Int) new_compare27(x0, x1, True, x2, x3) new_compare([], [], x0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1) new_compare6(Left(x0), Right(x1), x2, x3) new_compare6(Right(x0), Left(x1), x2, x3) new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs12(EQ, EQ) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare114(x0, x1, False, x2) new_compare27(x0, x1, False, x2, x3) new_esEs22(:(x0, x1), :(x2, x3), x4) new_esEs40(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Integer) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Integer) new_esEs25(Left(x0), Left(x1), ty_Float, x2) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs25(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primPlusNat0(Succ(x0), Zero) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Bool) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Double) new_lt16(x0, x1) new_compare11(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs20(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Double) new_esEs40(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(Just(x0), Just(x1), x2) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Zero, Succ(x0)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs40(x0, x1, ty_@0) new_lt24(x0, x1, app(app(ty_@2, x2), x3)) new_lt8(x0, x1) new_ltEs19(x0, x1, ty_Float) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs29(GT) new_gt(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Float) new_pePe(True, x0) new_ltEs19(x0, x1, ty_Bool) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(False, True) new_ltEs13(True, False) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22([], [], x0) new_esEs36(x0, x1, ty_Float) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, ty_Ordering) new_esEs7(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_sr(x0, x1) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs21(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_compare6(Right(x0), Right(x1), x2, x3) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_compare115(x0, x1, x2, x3, True, x4, x5, x6) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Bool) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs21(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Bool) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Int) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_@0) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Left(x0), Left(x1), ty_Float, x2) new_ltEs18(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Float) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Float) new_ltEs24(x0, x1, ty_Float) new_esEs41(GT) new_esEs17(Integer(x0), Integer(x1)) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare29(x0, x1, x2, x3, True, x4, x5) new_esEs15(@0, @0) new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs21(Just(x0), Just(x1), ty_Char) new_esEs10(x0, x1, ty_@0) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_gt(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Left(x0), Left(x1), ty_@0, x2) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Integer) new_ltEs4(GT, GT) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs38(x0, x1, ty_Float) new_ltEs24(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs5(x0, x1, ty_Bool) new_ltEs14(x0, x1) new_esEs26(x0, x1, ty_Float) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Nothing, Nothing, x0) new_esEs40(x0, x1, ty_Integer) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(False, True) new_esEs19(True, False) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Int) new_compare14(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_ltEs6(x0, x1) new_compare6(Left(x0), Left(x1), x2, x3) new_compare10(x0, x1, True, x2, x3) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs22(x0, x1, ty_Double) new_ltEs15(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_gt(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(Right(x0), Right(x1), x2, ty_@0) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs25(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs32(x0, x1, ty_Double) new_esEs40(x0, x1, ty_Bool) new_primCompAux00(x0, LT) new_esEs38(x0, x1, ty_Char) new_esEs21(Just(x0), Just(x1), ty_Float) new_lt22(x0, x1, ty_Char) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_esEs21(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Char) new_lt24(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs15(Right(x0), Right(x1), x2, ty_@0) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_compare16(True, False) new_compare16(False, True) new_compare11(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare26(x0, x1, True, x2, x3) new_compare14(x0, x1, ty_Double) new_primCmpNat0(Zero, Succ(x0)) new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt17(x0, x1, app(app(ty_@2, x2), x3)) new_gt(x0, x1, ty_Char) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_primMulInt(Pos(x0), Pos(x1)) new_ltEs15(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt19(x0, x1, app(ty_Ratio, x2)) new_ltEs11(x0, x1, x2) new_esEs27(x0, x1, ty_Double) new_lt24(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_lt24(x0, x1, app(ty_[], x2)) new_ltEs7(Nothing, Nothing, x0) new_esEs25(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt21(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_primCompAux0(x0, x1, x2, x3) new_esEs36(x0, x1, ty_Char) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_lt24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Int) new_compare8(Char(x0), Char(x1)) new_esEs6(x0, x1, ty_Char) new_esEs22([], :(x0, x1), x2) new_ltEs7(Just(x0), Just(x1), ty_Char) new_compare111(x0, x1, False, x2, x3) new_esEs36(x0, x1, ty_Int) new_primMulNat0(Zero, Zero) new_esEs4(x0, x1, ty_Ordering) new_esEs21(Just(x0), Just(x1), ty_Integer) new_ltEs22(x0, x1, ty_Char) new_lt23(x0, x1, ty_Int) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_compare113(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_compare14(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Just(x0), Just(x1), ty_Int) new_esEs6(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Char) new_compare(:(x0, x1), :(x2, x3), x4) new_compare13(Nothing, Just(x0), x1) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_esEs29(LT) new_esEs31(x0, x1, ty_Int) new_esEs25(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs15(Left(x0), Left(x1), ty_Double, x2) new_esEs8(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(ty_[], x2)) new_compare5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs25(Right(x0), Right(x1), x2, ty_Integer) new_ltEs22(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(x0, x1, False, x2, x3) new_ltEs4(GT, LT) new_ltEs4(LT, GT) new_ltEs7(Just(x0), Just(x1), ty_Bool) new_esEs40(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Double) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_asAs(False, x0) new_esEs32(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Double) new_ltEs7(Just(x0), Just(x1), ty_Double) new_esEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs37(x0, x1, ty_Bool) new_lt17(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Double) new_esEs24(Char(x0), Char(x1)) new_gt(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Bool) new_esEs36(x0, x1, ty_@0) new_primCompAux00(x0, EQ) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs9(x0, x1, ty_@0) new_esEs11(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Double) new_esEs37(x0, x1, ty_Char) new_lt13(x0, x1, x2, x3) new_lt23(x0, x1, ty_@0) new_esEs33(x0, x1, ty_@0) new_esEs25(Left(x0), Left(x1), ty_Char, x2) new_esEs10(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Int) new_lt17(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, ty_Ordering) new_esEs25(Left(x0), Left(x1), ty_@0, x2) new_esEs7(x0, x1, ty_Integer) new_lt15(x0, x1) new_lt21(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs21(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs21(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs25(Left(x0), Left(x1), ty_Int, x2) new_esEs27(x0, x1, ty_Ordering) new_ltEs21(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Double) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs25(Left(x0), Left(x1), ty_Bool, x2) new_ltEs15(Right(x0), Right(x1), x2, ty_Ordering) new_esEs25(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs38(x0, x1, ty_Double) new_lt22(x0, x1, ty_@0) new_lt18(x0, x1, x2) new_esEs36(x0, x1, ty_Integer) new_esEs25(Right(x0), Right(x1), x2, ty_Char) new_esEs25(Right(x0), Right(x1), x2, ty_Int) new_ltEs15(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare114(x0, x1, True, x2) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Ordering) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, ty_@0) new_esEs7(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(x0, x1, ty_@0) new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Zero, Succ(x0)) new_ltEs9(x0, x1) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare16(False, False) new_ltEs18(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Integer) new_esEs25(Right(x0), Right(x1), x2, ty_Float) new_primCompAux00(x0, GT) new_lt23(x0, x1, ty_Bool) new_esEs33(x0, x1, ty_Bool) new_lt4(x0, x1, x2, x3, x4) new_esEs41(EQ) new_compare19(LT, EQ) new_compare19(EQ, LT) new_esEs25(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs21(Just(x0), Just(x1), app(ty_[], x2)) new_esEs40(x0, x1, ty_Double) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs21(Just(x0), Just(x1), ty_@0) new_esEs6(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_lt24(x0, x1, ty_Double) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs7(Just(x0), Just(x1), ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare([], :(x0, x1), x2) new_compare19(GT, GT) new_esEs8(x0, x1, ty_Double) new_esEs16(x0, x1) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Left(x0), Left(x1), ty_Ordering, x2) new_gt(x0, x1, ty_Double) new_lt20(x0, x1, ty_Ordering) new_compare28(x0, x1, False, x2) new_esEs25(Left(x0), Left(x1), ty_Integer, x2) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_compare110(x0, x1, x2, x3, False, x4, x5) new_compare10(x0, x1, False, x2, x3) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_Integer) new_esEs25(Right(x0), Right(x1), x2, ty_Bool) new_ltEs15(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs39(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Ordering) new_primMulNat0(Succ(x0), Zero) new_lt23(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Float) new_primCmpNat0(Zero, Zero) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Integer) new_lt10(x0, x1, x2, x3) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba) -> new_addToFM_C(xuu16, xuu20, xuu22, xuu23, h, ba) The graph contains the following edges 1 >= 1, 5 >= 2, 7 >= 3, 8 >= 4, 10 >= 5, 11 >= 6 *new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, h, ba) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_gt(xuu22, xuu17, h), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 10 >= 10, 11 >= 11 *new_addToFM_C1(xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, xuu41, xuu42, True, bb, bc) -> new_addToFM_C(xuu35, xuu40, xuu41, xuu42, bb, bc) The graph contains the following edges 1 >= 1, 6 >= 2, 7 >= 3, 8 >= 4, 10 >= 5, 11 >= 6 *new_addToFM_C(xuu3, Branch(xuu40, xuu41, xuu42, xuu43, xuu44), xuu500, xuu501, bd, be) -> new_addToFM_C2(xuu3, xuu40, xuu41, xuu42, xuu43, xuu44, xuu500, xuu501, new_lt24(xuu500, xuu40, bd), bd, be) The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 7, 4 >= 8, 5 >= 10, 6 >= 11 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs3(Left(xuu50000), Left(xuu4000), app(app(ty_Either, bcg), bch), bcb) -> new_esEs3(xuu50000, xuu4000, bcg, bch) new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(ty_Maybe, ff), fb) -> new_esEs1(xuu50000, xuu4000, ff) new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), bbf) -> new_esEs2(xuu50001, xuu4001, bbf) new_esEs3(Right(xuu50000), Right(xuu4000), bda, app(ty_[], bdh)) -> new_esEs2(xuu50000, xuu4000, bdh) new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_esEs(xuu50002, xuu4002, df, dg, dh) new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), gb, app(ty_Maybe, gh)) -> new_esEs1(xuu50001, xuu4001, gh) new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(app(ty_@2, bah), bba)) -> new_esEs0(xuu50000, xuu4000, bah, bba) new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, app(app(ty_@2, cg), da), bd) -> new_esEs0(xuu50001, xuu4001, cg, da) new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(app(app(ty_@3, eg), eh), fa), fb) -> new_esEs(xuu50000, xuu4000, eg, eh, fa) new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(app(app(ty_@3, bae), baf), bag)) -> new_esEs(xuu50000, xuu4000, bae, baf, bag) new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), gb, app(app(ty_@2, gf), gg)) -> new_esEs0(xuu50001, xuu4001, gf, gg) new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(app(ty_Either, fh), ga), fb) -> new_esEs3(xuu50000, xuu4000, fh, ga) new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(ty_Maybe, bg), bc, bd) -> new_esEs1(xuu50000, xuu4000, bg) new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(app(ty_Either, ca), cb), bc, bd) -> new_esEs3(xuu50000, xuu4000, ca, cb) new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(ty_[], bh), bc, bd) -> new_esEs2(xuu50000, xuu4000, bh) new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, app(ty_Maybe, db), bd) -> new_esEs1(xuu50001, xuu4001, db) new_esEs3(Left(xuu50000), Left(xuu4000), app(app(ty_@2, bcc), bcd), bcb) -> new_esEs0(xuu50000, xuu4000, bcc, bcd) new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, app(ty_[], dc), bd) -> new_esEs2(xuu50001, xuu4001, dc) new_esEs3(Right(xuu50000), Right(xuu4000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(xuu50000, xuu4000, bea, beb) new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_esEs(xuu50001, xuu4001, cd, ce, cf) new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), gb, app(app(ty_Either, hb), hc)) -> new_esEs3(xuu50001, xuu4001, hb, hc) new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, bc, app(ty_[], ed)) -> new_esEs2(xuu50002, xuu4002, ed) new_esEs3(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, bbg), bbh), bca), bcb) -> new_esEs(xuu50000, xuu4000, bbg, bbh, bca) new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, app(app(ty_Either, dd), de), bd) -> new_esEs3(xuu50001, xuu4001, dd, de) new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, bc, app(app(ty_@2, ea), eb)) -> new_esEs0(xuu50002, xuu4002, ea, eb) new_esEs1(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, hd), he), hf)) -> new_esEs(xuu50000, xuu4000, hd, he, hf) new_esEs3(Right(xuu50000), Right(xuu4000), bda, app(app(ty_@2, bde), bdf)) -> new_esEs0(xuu50000, xuu4000, bde, bdf) new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, bc, app(app(ty_Either, ee), ef)) -> new_esEs3(xuu50002, xuu4002, ee, ef) new_esEs3(Right(xuu50000), Right(xuu4000), bda, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs(xuu50000, xuu4000, bdb, bdc, bdd) new_esEs3(Right(xuu50000), Right(xuu4000), bda, app(ty_Maybe, bdg)) -> new_esEs1(xuu50000, xuu4000, bdg) new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, bc, app(ty_Maybe, ec)) -> new_esEs1(xuu50002, xuu4002, ec) new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(ty_[], fg), fb) -> new_esEs2(xuu50000, xuu4000, fg) new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_esEs(xuu50000, xuu4000, h, ba, bb) new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), gb, app(ty_[], ha)) -> new_esEs2(xuu50001, xuu4001, ha) new_esEs1(Just(xuu50000), Just(xuu4000), app(ty_[], bab)) -> new_esEs2(xuu50000, xuu4000, bab) new_esEs1(Just(xuu50000), Just(xuu4000), app(app(ty_@2, hg), hh)) -> new_esEs0(xuu50000, xuu4000, hg, hh) new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(ty_[], bbc)) -> new_esEs2(xuu50000, xuu4000, bbc) new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(app(ty_Either, bbd), bbe)) -> new_esEs3(xuu50000, xuu4000, bbd, bbe) new_esEs3(Left(xuu50000), Left(xuu4000), app(ty_Maybe, bce), bcb) -> new_esEs1(xuu50000, xuu4000, bce) new_esEs1(Just(xuu50000), Just(xuu4000), app(ty_Maybe, baa)) -> new_esEs1(xuu50000, xuu4000, baa) new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(app(ty_@2, fc), fd), fb) -> new_esEs0(xuu50000, xuu4000, fc, fd) new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(app(ty_@2, be), bf), bc, bd) -> new_esEs0(xuu50000, xuu4000, be, bf) new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), gb, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs(xuu50001, xuu4001, gc, gd, ge) new_esEs1(Just(xuu50000), Just(xuu4000), app(app(ty_Either, bac), bad)) -> new_esEs3(xuu50000, xuu4000, bac, bad) new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(ty_Maybe, bbb)) -> new_esEs1(xuu50000, xuu4000, bbb) new_esEs3(Left(xuu50000), Left(xuu4000), app(ty_[], bcf), bcb) -> new_esEs2(xuu50000, xuu4000, bcf) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (24) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_esEs1(Just(xuu50000), Just(xuu4000), app(app(ty_Either, bac), bad)) -> new_esEs3(xuu50000, xuu4000, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(xuu50000), Just(xuu4000), app(app(ty_@2, hg), hh)) -> new_esEs0(xuu50000, xuu4000, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(app(ty_Either, bbd), bbe)) -> new_esEs3(xuu50000, xuu4000, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(xuu50000), Just(xuu4000), app(ty_[], bab)) -> new_esEs2(xuu50000, xuu4000, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(app(ty_@2, bah), bba)) -> new_esEs0(xuu50000, xuu4000, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, hd), he), hf)) -> new_esEs(xuu50000, xuu4000, hd, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(Just(xuu50000), Just(xuu4000), app(ty_Maybe, baa)) -> new_esEs1(xuu50000, xuu4000, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(app(app(ty_@3, bae), baf), bag)) -> new_esEs(xuu50000, xuu4000, bae, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(ty_Maybe, bbb)) -> new_esEs1(xuu50000, xuu4000, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Left(xuu50000), Left(xuu4000), app(app(ty_Either, bcg), bch), bcb) -> new_esEs3(xuu50000, xuu4000, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(xuu50000), Right(xuu4000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(xuu50000, xuu4000, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(Left(xuu50000), Left(xuu4000), app(app(ty_@2, bcc), bcd), bcb) -> new_esEs0(xuu50000, xuu4000, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(xuu50000), Right(xuu4000), bda, app(app(ty_@2, bde), bdf)) -> new_esEs0(xuu50000, xuu4000, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(Right(xuu50000), Right(xuu4000), bda, app(ty_[], bdh)) -> new_esEs2(xuu50000, xuu4000, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(xuu50000), Left(xuu4000), app(ty_[], bcf), bcb) -> new_esEs2(xuu50000, xuu4000, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, bbg), bbh), bca), bcb) -> new_esEs(xuu50000, xuu4000, bbg, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(Right(xuu50000), Right(xuu4000), bda, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs(xuu50000, xuu4000, bdb, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(Right(xuu50000), Right(xuu4000), bda, app(ty_Maybe, bdg)) -> new_esEs1(xuu50000, xuu4000, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(xuu50000), Left(xuu4000), app(ty_Maybe, bce), bcb) -> new_esEs1(xuu50000, xuu4000, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(app(ty_Either, ca), cb), bc, bd) -> new_esEs3(xuu50000, xuu4000, ca, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, app(app(ty_Either, dd), de), bd) -> new_esEs3(xuu50001, xuu4001, dd, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, bc, app(app(ty_Either, ee), ef)) -> new_esEs3(xuu50002, xuu4002, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(app(ty_Either, fh), ga), fb) -> new_esEs3(xuu50000, xuu4000, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), gb, app(app(ty_Either, hb), hc)) -> new_esEs3(xuu50001, xuu4001, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, app(app(ty_@2, cg), da), bd) -> new_esEs0(xuu50001, xuu4001, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, bc, app(app(ty_@2, ea), eb)) -> new_esEs0(xuu50002, xuu4002, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(app(ty_@2, be), bf), bc, bd) -> new_esEs0(xuu50000, xuu4000, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), gb, app(app(ty_@2, gf), gg)) -> new_esEs0(xuu50001, xuu4001, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(app(ty_@2, fc), fd), fb) -> new_esEs0(xuu50000, xuu4000, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), bbf) -> new_esEs2(xuu50001, xuu4001, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs2(:(xuu50000, xuu50001), :(xuu4000, xuu4001), app(ty_[], bbc)) -> new_esEs2(xuu50000, xuu4000, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(ty_[], bh), bc, bd) -> new_esEs2(xuu50000, xuu4000, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, app(ty_[], dc), bd) -> new_esEs2(xuu50001, xuu4001, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, bc, app(ty_[], ed)) -> new_esEs2(xuu50002, xuu4002, ed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(ty_[], fg), fb) -> new_esEs2(xuu50000, xuu4000, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), gb, app(ty_[], ha)) -> new_esEs2(xuu50001, xuu4001, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_esEs(xuu50002, xuu4002, df, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_esEs(xuu50001, xuu4001, cd, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_esEs(xuu50000, xuu4000, h, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), app(ty_Maybe, bg), bc, bd) -> new_esEs1(xuu50000, xuu4000, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, app(ty_Maybe, db), bd) -> new_esEs1(xuu50001, xuu4001, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), cc, bc, app(ty_Maybe, ec)) -> new_esEs1(xuu50002, xuu4002, ec) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(app(app(ty_@3, eg), eh), fa), fb) -> new_esEs(xuu50000, xuu4000, eg, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), gb, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs(xuu50001, xuu4001, gc, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), app(ty_Maybe, ff), fb) -> new_esEs1(xuu50000, xuu4000, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), gb, app(ty_Maybe, gh)) -> new_esEs1(xuu50001, xuu4001, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 ---------------------------------------- (25) YES ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(xuu40000), Succ(xuu500100)) -> new_primMulNat(xuu40000, Succ(xuu500100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (27) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_primMulNat(Succ(xuu40000), Succ(xuu500100)) -> new_primMulNat(xuu40000, Succ(xuu500100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (28) YES ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCompAux(xuu5000, xuu400, xuu50, app(ty_[], ba)) -> new_compare0(xuu5000, xuu400, ba) new_compare21(Just(xuu750), Just(xuu760), False, app(ty_Maybe, app(app(ty_Either, bfg), bfh)), gh) -> new_ltEs1(xuu750, xuu760, bfg, bfh) new_compare21(Just(xuu750), Just(xuu760), False, app(ty_Maybe, app(app(ty_@2, bgb), bgc)), gh) -> new_ltEs3(xuu750, xuu760, bgb, bgc) new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, bad), app(app(ty_@2, bbd), bbe)), hc), gh) -> new_lt3(xuu751, xuu761, bbd, bbe) new_ltEs3(@2(xuu750, xuu751), @2(xuu760, xuu761), bhf, app(app(ty_Either, cac), cad)) -> new_ltEs1(xuu751, xuu761, cac, cad) new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, app(ty_Maybe, baa)), hb), hc), gh) -> new_lt2(xuu750, xuu760, baa) new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), bad, hb, app(app(app(ty_@3, bbg), bbh), bca)) -> new_ltEs0(xuu752, xuu762, bbg, bbh, bca) new_compare21(xuu75, xuu76, False, app(ty_[], gg), gh) -> new_compare0(xuu75, xuu76, gg) new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, bad), hb), app(ty_[], bbf)), gh) -> new_ltEs(xuu752, xuu762, bbf) new_compare24(xuu126, xuu127, xuu128, xuu129, False, ccd, app(app(app(ty_@3, ccf), ccg), cch)) -> new_ltEs0(xuu127, xuu129, ccf, ccg, cch) new_compare21(Right(xuu750), Right(xuu760), False, app(app(ty_Either, bea), app(ty_Maybe, beh)), gh) -> new_ltEs2(xuu750, xuu760, beh) new_compare24(xuu126, xuu127, xuu128, xuu129, False, app(app(app(ty_@3, cdh), cea), ceb), cdg) -> new_lt0(xuu126, xuu128, cdh, cea, ceb) new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), app(app(app(ty_@3, hd), he), hf), hb, hc) -> new_lt0(xuu750, xuu760, hd, he, hf) new_ltEs1(Right(xuu750), Right(xuu760), bea, app(ty_[], beb)) -> new_ltEs(xuu750, xuu760, beb) new_compare21(Right(xuu750), Right(xuu760), False, app(app(ty_Either, bea), app(ty_[], beb)), gh) -> new_ltEs(xuu750, xuu760, beb) new_compare21(@2(xuu750, xuu751), @2(xuu760, xuu761), False, app(app(ty_@2, app(ty_Maybe, bhc)), bge), gh) -> new_lt2(xuu750, xuu760, bhc) new_compare21(Just(xuu750), Just(xuu760), False, app(ty_Maybe, app(ty_Maybe, bga)), gh) -> new_ltEs2(xuu750, xuu760, bga) new_compare21(Left(xuu750), Left(xuu760), False, app(app(ty_Either, app(ty_Maybe, bdf)), bch), gh) -> new_ltEs2(xuu750, xuu760, bdf) new_ltEs1(Left(xuu750), Left(xuu760), app(ty_Maybe, bdf), bch) -> new_ltEs2(xuu750, xuu760, bdf) new_compare22(xuu82, xuu83, False, ceh, app(ty_[], cfa)) -> new_ltEs(xuu82, xuu83, cfa) new_ltEs1(Left(xuu750), Left(xuu760), app(ty_[], bcg), bch) -> new_ltEs(xuu750, xuu760, bcg) new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, bad), app(ty_[], bae)), hc), gh) -> new_lt(xuu751, xuu761, bae) new_compare21(Left(xuu750), Left(xuu760), False, app(app(ty_Either, app(ty_[], bcg)), bch), gh) -> new_ltEs(xuu750, xuu760, bcg) new_compare22(xuu82, xuu83, False, ceh, app(app(ty_@2, cfh), cga)) -> new_ltEs3(xuu82, xuu83, cfh, cga) new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, ea, cf, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs0(xuu115, xuu118, fd, ff, fg) new_compare24(xuu126, xuu127, xuu128, xuu129, False, app(ty_Maybe, cee), cdg) -> new_lt2(xuu126, xuu128, cee) new_lt1(Left(xuu5000), Left(xuu400), ge, gf) -> new_compare21(xuu5000, xuu400, new_esEs7(xuu5000, xuu400, ge), ge, gf) new_compare21(@2(xuu750, xuu751), @2(xuu760, xuu761), False, app(app(ty_@2, app(app(ty_@2, bhd), bhe)), bge), gh) -> new_lt3(xuu750, xuu760, bhd, bhe) new_ltEs3(@2(xuu750, xuu751), @2(xuu760, xuu761), bhf, app(app(ty_@2, caf), cag)) -> new_ltEs3(xuu751, xuu761, caf, cag) new_ltEs1(Right(xuu750), Right(xuu760), bea, app(app(ty_Either, bef), beg)) -> new_ltEs1(xuu750, xuu760, bef, beg) new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, ea, cf, app(ty_Maybe, gb)) -> new_ltEs2(xuu115, xuu118, gb) new_ltEs1(Left(xuu750), Left(xuu760), app(app(ty_@2, bdg), bdh), bch) -> new_ltEs3(xuu750, xuu760, bdg, bdh) new_compare2(Left(xuu5000), Left(xuu400), ge, gf) -> new_compare21(xuu5000, xuu400, new_esEs7(xuu5000, xuu400, ge), ge, gf) new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, bad), hb), app(ty_Maybe, bcd)), gh) -> new_ltEs2(xuu752, xuu762, bcd) new_ltEs3(@2(xuu750, xuu751), @2(xuu760, xuu761), app(app(ty_@2, bhd), bhe), bge) -> new_lt3(xuu750, xuu760, bhd, bhe) new_lt3(@2(xuu5000, xuu5001), @2(xuu400, xuu401), ccb, ccc) -> new_compare24(xuu5000, xuu5001, xuu400, xuu401, new_asAs(new_esEs10(xuu5000, xuu400, ccb), new_esEs11(xuu5001, xuu401, ccc)), ccb, ccc) new_ltEs3(@2(xuu750, xuu751), @2(xuu760, xuu761), bhf, app(ty_Maybe, cae)) -> new_ltEs2(xuu751, xuu761, cae) new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), app(ty_Maybe, baa), hb, hc) -> new_lt2(xuu750, xuu760, baa) new_compare21(@2(xuu750, xuu751), @2(xuu760, xuu761), False, app(app(ty_@2, bhf), app(app(ty_@2, caf), cag)), gh) -> new_ltEs3(xuu751, xuu761, caf, cag) new_compare24(xuu126, xuu127, xuu128, xuu129, False, ccd, app(ty_[], cce)) -> new_ltEs(xuu127, xuu129, cce) new_compare24(xuu126, xuu127, xuu128, xuu129, False, app(ty_[], cdf), cdg) -> new_lt(xuu126, xuu128, cdf) new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, bad), app(ty_Maybe, bbc)), hc), gh) -> new_lt2(xuu751, xuu761, bbc) new_compare21(Left(xuu750), Left(xuu760), False, app(app(ty_Either, app(app(ty_@2, bdg), bdh)), bch), gh) -> new_ltEs3(xuu750, xuu760, bdg, bdh) new_compare21(@2(xuu750, xuu751), @2(xuu760, xuu761), False, app(app(ty_@2, app(app(app(ty_@3, bgf), bgg), bgh)), bge), gh) -> new_lt0(xuu750, xuu760, bgf, bgg, bgh) new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, app(app(ty_@2, bab), bac)), hb), hc), gh) -> new_lt3(xuu750, xuu760, bab, bac) new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), app(ty_[], ha), hb, hc) -> new_lt(xuu750, xuu760, ha) new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, app(ty_Maybe, df), cf, cg) -> new_lt2(xuu113, xuu116, df) new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, bad), app(app(ty_Either, bba), bbb)), hc), gh) -> new_lt1(xuu751, xuu761, bba, bbb) new_compare22(xuu82, xuu83, False, ceh, app(app(ty_Either, cfe), cff)) -> new_ltEs1(xuu82, xuu83, cfe, cff) new_compare21(@2(xuu750, xuu751), @2(xuu760, xuu761), False, app(app(ty_@2, app(ty_[], bgd)), bge), gh) -> new_lt(xuu750, xuu760, bgd) new_compare21(@2(xuu750, xuu751), @2(xuu760, xuu761), False, app(app(ty_@2, bhf), app(ty_[], bhg)), gh) -> new_ltEs(xuu751, xuu761, bhg) new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), bad, app(ty_[], bae), hc) -> new_lt(xuu751, xuu761, bae) new_ltEs1(Right(xuu750), Right(xuu760), bea, app(ty_Maybe, beh)) -> new_ltEs2(xuu750, xuu760, beh) new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, app(app(ty_@2, dg), dh), cf, cg) -> new_lt3(xuu113, xuu116, dg, dh) new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, ea, app(ty_[], eb), cg) -> new_lt(xuu114, xuu117, eb) new_compare21(@2(xuu750, xuu751), @2(xuu760, xuu761), False, app(app(ty_@2, bhf), app(app(ty_Either, cac), cad)), gh) -> new_ltEs1(xuu751, xuu761, cac, cad) new_compare24(xuu126, xuu127, xuu128, xuu129, False, ccd, app(ty_Maybe, cdc)) -> new_ltEs2(xuu127, xuu129, cdc) new_ltEs3(@2(xuu750, xuu751), @2(xuu760, xuu761), app(ty_[], bgd), bge) -> new_lt(xuu750, xuu760, bgd) new_compare24(xuu126, xuu127, xuu128, xuu129, False, ccd, app(app(ty_@2, cdd), cde)) -> new_ltEs3(xuu127, xuu129, cdd, cde) new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, bad), hb), app(app(ty_@2, bce), bcf)), gh) -> new_ltEs3(xuu752, xuu762, bce, bcf) new_compare21(Left(xuu750), Left(xuu760), False, app(app(ty_Either, app(app(ty_Either, bdd), bde)), bch), gh) -> new_ltEs1(xuu750, xuu760, bdd, bde) new_compare21(Right(xuu750), Right(xuu760), False, app(app(ty_Either, bea), app(app(ty_Either, bef), beg)), gh) -> new_ltEs1(xuu750, xuu760, bef, beg) new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, app(ty_[], ha)), hb), hc), gh) -> new_lt(xuu750, xuu760, ha) new_ltEs3(@2(xuu750, xuu751), @2(xuu760, xuu761), bhf, app(app(app(ty_@3, bhh), caa), cab)) -> new_ltEs0(xuu751, xuu761, bhh, caa, cab) new_compare0(:(xuu5000, xuu5001), :(xuu400, xuu401), h) -> new_compare0(xuu5001, xuu401, h) new_compare1(@3(xuu5000, xuu5001, xuu5002), @3(xuu400, xuu401, xuu402), cb, cc, cd) -> new_compare20(xuu5000, xuu5001, xuu5002, xuu400, xuu401, xuu402, new_asAs(new_esEs4(xuu5000, xuu400, cb), new_asAs(new_esEs5(xuu5001, xuu401, cc), new_esEs6(xuu5002, xuu402, cd))), cb, cc, cd) new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), bad, hb, app(app(ty_Either, bcb), bcc)) -> new_ltEs1(xuu752, xuu762, bcb, bcc) new_ltEs2(Just(xuu750), Just(xuu760), app(ty_[], bfc)) -> new_ltEs(xuu750, xuu760, bfc) new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, app(app(app(ty_@3, da), db), dc), cf, cg) -> new_lt0(xuu113, xuu116, da, db, dc) new_compare21(@2(xuu750, xuu751), @2(xuu760, xuu761), False, app(app(ty_@2, app(app(ty_Either, bha), bhb)), bge), gh) -> new_lt1(xuu750, xuu760, bha, bhb) new_ltEs2(Just(xuu750), Just(xuu760), app(ty_Maybe, bga)) -> new_ltEs2(xuu750, xuu760, bga) new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), app(app(ty_@2, bab), bac), hb, hc) -> new_lt3(xuu750, xuu760, bab, bac) new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, bad), hb), app(app(app(ty_@3, bbg), bbh), bca)), gh) -> new_ltEs0(xuu752, xuu762, bbg, bbh, bca) new_compare23(xuu89, xuu90, False, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_ltEs0(xuu89, xuu90, cbb, cbc, cbd) new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, ea, cf, app(app(ty_Either, fh), ga)) -> new_ltEs1(xuu115, xuu118, fh, ga) new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), bad, hb, app(ty_[], bbf)) -> new_ltEs(xuu752, xuu762, bbf) new_ltEs2(Just(xuu750), Just(xuu760), app(app(ty_@2, bgb), bgc)) -> new_ltEs3(xuu750, xuu760, bgb, bgc) new_compare23(xuu89, xuu90, False, app(ty_[], cba)) -> new_ltEs(xuu89, xuu90, cba) new_primCompAux(xuu5000, xuu400, xuu50, app(ty_Maybe, bg)) -> new_compare3(xuu5000, xuu400, bg) new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), bad, app(app(ty_@2, bbd), bbe), hc) -> new_lt3(xuu751, xuu761, bbd, bbe) new_ltEs3(@2(xuu750, xuu751), @2(xuu760, xuu761), bhf, app(ty_[], bhg)) -> new_ltEs(xuu751, xuu761, bhg) new_lt1(Right(xuu5000), Right(xuu400), ge, gf) -> new_compare22(xuu5000, xuu400, new_esEs8(xuu5000, xuu400, gf), ge, gf) new_compare24(xuu126, xuu127, xuu128, xuu129, False, app(app(ty_Either, cec), ced), cdg) -> new_lt1(xuu126, xuu128, cec, ced) new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, ea, cf, app(ty_[], fc)) -> new_ltEs(xuu115, xuu118, fc) new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, app(app(ty_Either, dd), de), cf, cg) -> new_lt1(xuu113, xuu116, dd, de) new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, app(app(ty_Either, hg), hh)), hb), hc), gh) -> new_lt1(xuu750, xuu760, hg, hh) new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, ea, app(app(ty_@2, fa), fb), cg) -> new_lt3(xuu114, xuu117, fa, fb) new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, bad), app(app(app(ty_@3, baf), bag), bah)), hc), gh) -> new_lt0(xuu751, xuu761, baf, bag, bah) new_lt(:(xuu5000, xuu5001), :(xuu400, xuu401), h) -> new_compare0(xuu5001, xuu401, h) new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), bad, app(app(ty_Either, bba), bbb), hc) -> new_lt1(xuu751, xuu761, bba, bbb) new_compare24(xuu126, xuu127, xuu128, xuu129, False, ccd, app(app(ty_Either, cda), cdb)) -> new_ltEs1(xuu127, xuu129, cda, cdb) new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, ea, cf, app(app(ty_@2, gc), gd)) -> new_ltEs3(xuu115, xuu118, gc, gd) new_compare24(xuu126, xuu127, xuu128, xuu129, False, app(app(ty_@2, cef), ceg), cdg) -> new_lt3(xuu126, xuu128, cef, ceg) new_compare21(Left(xuu750), Left(xuu760), False, app(app(ty_Either, app(app(app(ty_@3, bda), bdb), bdc)), bch), gh) -> new_ltEs0(xuu750, xuu760, bda, bdb, bdc) new_lt(:(xuu5000, xuu5001), :(xuu400, xuu401), h) -> new_primCompAux(xuu5000, xuu400, new_compare(xuu5001, xuu401, h), h) new_ltEs2(Just(xuu750), Just(xuu760), app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs0(xuu750, xuu760, bfd, bfe, bff) new_ltEs2(Just(xuu750), Just(xuu760), app(app(ty_Either, bfg), bfh)) -> new_ltEs1(xuu750, xuu760, bfg, bfh) new_primCompAux(xuu5000, xuu400, xuu50, app(app(ty_Either, be), bf)) -> new_compare2(xuu5000, xuu400, be, bf) new_ltEs1(Left(xuu750), Left(xuu760), app(app(app(ty_@3, bda), bdb), bdc), bch) -> new_ltEs0(xuu750, xuu760, bda, bdb, bdc) new_compare21(Right(xuu750), Right(xuu760), False, app(app(ty_Either, bea), app(app(ty_@2, bfa), bfb)), gh) -> new_ltEs3(xuu750, xuu760, bfa, bfb) new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), bad, app(app(app(ty_@3, baf), bag), bah), hc) -> new_lt0(xuu751, xuu761, baf, bag, bah) new_compare23(xuu89, xuu90, False, app(app(ty_@2, cbh), cca)) -> new_ltEs3(xuu89, xuu90, cbh, cca) new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), bad, hb, app(app(ty_@2, bce), bcf)) -> new_ltEs3(xuu752, xuu762, bce, bcf) new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), app(app(ty_Either, hg), hh), hb, hc) -> new_lt1(xuu750, xuu760, hg, hh) new_lt2(Just(xuu5000), Just(xuu400), cah) -> new_compare23(xuu5000, xuu400, new_esEs9(xuu5000, xuu400, cah), cah) new_compare21(@2(xuu750, xuu751), @2(xuu760, xuu761), False, app(app(ty_@2, bhf), app(app(app(ty_@3, bhh), caa), cab)), gh) -> new_ltEs0(xuu751, xuu761, bhh, caa, cab) new_ltEs3(@2(xuu750, xuu751), @2(xuu760, xuu761), app(app(app(ty_@3, bgf), bgg), bgh), bge) -> new_lt0(xuu750, xuu760, bgf, bgg, bgh) new_compare21(Just(xuu750), Just(xuu760), False, app(ty_Maybe, app(app(app(ty_@3, bfd), bfe), bff)), gh) -> new_ltEs0(xuu750, xuu760, bfd, bfe, bff) new_compare0(:(xuu5000, xuu5001), :(xuu400, xuu401), h) -> new_primCompAux(xuu5000, xuu400, new_compare(xuu5001, xuu401, h), h) new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, bad), hb), app(app(ty_Either, bcb), bcc)), gh) -> new_ltEs1(xuu752, xuu762, bcb, bcc) new_ltEs(xuu75, xuu76, gg) -> new_compare0(xuu75, xuu76, gg) new_ltEs1(Left(xuu750), Left(xuu760), app(app(ty_Either, bdd), bde), bch) -> new_ltEs1(xuu750, xuu760, bdd, bde) new_compare4(@2(xuu5000, xuu5001), @2(xuu400, xuu401), ccb, ccc) -> new_compare24(xuu5000, xuu5001, xuu400, xuu401, new_asAs(new_esEs10(xuu5000, xuu400, ccb), new_esEs11(xuu5001, xuu401, ccc)), ccb, ccc) new_compare2(Right(xuu5000), Right(xuu400), ge, gf) -> new_compare22(xuu5000, xuu400, new_esEs8(xuu5000, xuu400, gf), ge, gf) new_compare3(Just(xuu5000), Just(xuu400), cah) -> new_compare23(xuu5000, xuu400, new_esEs9(xuu5000, xuu400, cah), cah) new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), bad, hb, app(ty_Maybe, bcd)) -> new_ltEs2(xuu752, xuu762, bcd) new_ltEs3(@2(xuu750, xuu751), @2(xuu760, xuu761), app(ty_Maybe, bhc), bge) -> new_lt2(xuu750, xuu760, bhc) new_compare21(Just(xuu750), Just(xuu760), False, app(ty_Maybe, app(ty_[], bfc)), gh) -> new_ltEs(xuu750, xuu760, bfc) new_compare22(xuu82, xuu83, False, ceh, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_ltEs0(xuu82, xuu83, cfb, cfc, cfd) new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, app(ty_[], ce), cf, cg) -> new_lt(xuu113, xuu116, ce) new_ltEs1(Right(xuu750), Right(xuu760), bea, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs0(xuu750, xuu760, bec, bed, bee) new_primCompAux(xuu5000, xuu400, xuu50, app(app(ty_@2, bh), ca)) -> new_compare4(xuu5000, xuu400, bh, ca) new_compare23(xuu89, xuu90, False, app(ty_Maybe, cbg)) -> new_ltEs2(xuu89, xuu90, cbg) new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, ea, app(ty_Maybe, eh), cg) -> new_lt2(xuu114, xuu117, eh) new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), bad, app(ty_Maybe, bbc), hc) -> new_lt2(xuu751, xuu761, bbc) new_compare21(@2(xuu750, xuu751), @2(xuu760, xuu761), False, app(app(ty_@2, bhf), app(ty_Maybe, cae)), gh) -> new_ltEs2(xuu751, xuu761, cae) new_compare22(xuu82, xuu83, False, ceh, app(ty_Maybe, cfg)) -> new_ltEs2(xuu82, xuu83, cfg) new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, ea, app(app(ty_Either, ef), eg), cg) -> new_lt1(xuu114, xuu117, ef, eg) new_lt0(@3(xuu5000, xuu5001, xuu5002), @3(xuu400, xuu401, xuu402), cb, cc, cd) -> new_compare20(xuu5000, xuu5001, xuu5002, xuu400, xuu401, xuu402, new_asAs(new_esEs4(xuu5000, xuu400, cb), new_asAs(new_esEs5(xuu5001, xuu401, cc), new_esEs6(xuu5002, xuu402, cd))), cb, cc, cd) new_compare21(Right(xuu750), Right(xuu760), False, app(app(ty_Either, bea), app(app(app(ty_@3, bec), bed), bee)), gh) -> new_ltEs0(xuu750, xuu760, bec, bed, bee) new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, app(app(app(ty_@3, hd), he), hf)), hb), hc), gh) -> new_lt0(xuu750, xuu760, hd, he, hf) new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, ea, app(app(app(ty_@3, ec), ed), ee), cg) -> new_lt0(xuu114, xuu117, ec, ed, ee) new_primCompAux(xuu5000, xuu400, xuu50, app(app(app(ty_@3, bb), bc), bd)) -> new_compare1(xuu5000, xuu400, bb, bc, bd) new_ltEs1(Right(xuu750), Right(xuu760), bea, app(app(ty_@2, bfa), bfb)) -> new_ltEs3(xuu750, xuu760, bfa, bfb) new_compare23(xuu89, xuu90, False, app(app(ty_Either, cbe), cbf)) -> new_ltEs1(xuu89, xuu90, cbe, cbf) new_ltEs3(@2(xuu750, xuu751), @2(xuu760, xuu761), app(app(ty_Either, bha), bhb), bge) -> new_lt1(xuu750, xuu760, bha, bhb) The TRS R consists of the following rules: new_esEs29(EQ) -> False new_ltEs15(Left(xuu750), Left(xuu760), ty_Integer, bch) -> new_ltEs16(xuu750, xuu760) new_ltEs21(xuu127, xuu129, ty_@0) -> new_ltEs6(xuu127, xuu129) new_esEs27(xuu50001, xuu4001, app(ty_Ratio, dfh)) -> new_esEs13(xuu50001, xuu4001, dfh) new_primCmpInt(Neg(Succ(xuu50000)), Pos(xuu400)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs22(xuu752, xuu762, app(ty_[], bbf)) -> new_ltEs8(xuu752, xuu762, bbf) new_lt22(xuu113, xuu116, ty_Integer) -> new_lt16(xuu113, xuu116) new_lt20(xuu750, xuu760, ty_Float) -> new_lt15(xuu750, xuu760) new_esEs35(xuu750, xuu760, app(ty_[], ha)) -> new_esEs22(xuu750, xuu760, ha) new_esEs39(xuu50000, xuu4000, ty_Float) -> new_esEs23(xuu50000, xuu4000) new_primPlusNat0(Zero, Zero) -> Zero new_pePe(True, xuu215) -> True new_esEs8(xuu5000, xuu400, app(ty_[], cha)) -> new_esEs22(xuu5000, xuu400, cha) new_lt18(xuu500, xuu40, cah) -> new_esEs29(new_compare13(xuu500, xuu40, cah)) new_esEs38(xuu114, xuu117, ty_Bool) -> new_esEs19(xuu114, xuu117) new_esEs26(xuu50000, xuu4000, ty_Char) -> new_esEs24(xuu50000, xuu4000) new_esEs17(Integer(xuu50000), Integer(xuu4000)) -> new_primEqInt(xuu50000, xuu4000) new_esEs19(False, True) -> False new_esEs19(True, False) -> False new_lt19(xuu126, xuu128, app(ty_Maybe, cee)) -> new_lt18(xuu126, xuu128, cee) new_esEs37(xuu113, xuu116, ty_Ordering) -> new_esEs12(xuu113, xuu116) new_esEs5(xuu5001, xuu401, app(ty_Maybe, dbd)) -> new_esEs21(xuu5001, xuu401, dbd) new_compare25(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, ea, cf, cg) -> new_compare112(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, new_lt22(xuu113, xuu116, ea), new_asAs(new_esEs37(xuu113, xuu116, ea), new_pePe(new_lt23(xuu114, xuu117, cf), new_asAs(new_esEs38(xuu114, xuu117, cf), new_ltEs24(xuu115, xuu118, cg)))), ea, cf, cg) new_esEs28(xuu50002, xuu4002, app(app(ty_@2, dhf), dhg)) -> new_esEs18(xuu50002, xuu4002, dhf, dhg) new_esEs34(xuu126, xuu128, app(app(ty_@2, cef), ceg)) -> new_esEs18(xuu126, xuu128, cef, ceg) new_esEs32(xuu50000, xuu4000, app(ty_Maybe, ehh)) -> new_esEs21(xuu50000, xuu4000, ehh) new_esEs29(GT) -> False new_compare14(xuu5000, xuu400, app(ty_Ratio, eff)) -> new_compare15(xuu5000, xuu400, eff) new_compare14(xuu5000, xuu400, app(app(ty_@2, bh), ca)) -> new_compare18(xuu5000, xuu400, bh, ca) new_compare(:(xuu5000, xuu5001), [], h) -> GT new_lt22(xuu113, xuu116, ty_Bool) -> new_lt8(xuu113, xuu116) new_esEs7(xuu5000, xuu400, app(app(ty_@2, ddf), ddg)) -> new_esEs18(xuu5000, xuu400, ddf, ddg) new_ltEs19(xuu75, xuu76, app(app(ty_Either, bea), bch)) -> new_ltEs15(xuu75, xuu76, bea, bch) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs37(xuu113, xuu116, ty_Int) -> new_esEs16(xuu113, xuu116) new_primCmpInt(Pos(Zero), Neg(Succ(xuu4000))) -> GT new_ltEs22(xuu752, xuu762, ty_Char) -> new_ltEs14(xuu752, xuu762) new_compare(:(xuu5000, xuu5001), :(xuu400, xuu401), h) -> new_primCompAux0(xuu5000, xuu400, new_compare(xuu5001, xuu401, h), h) new_compare26(xuu75, xuu76, True, egc, gh) -> EQ new_compare13(Nothing, Nothing, cah) -> EQ new_esEs32(xuu50000, xuu4000, ty_Char) -> new_esEs24(xuu50000, xuu4000) new_lt20(xuu750, xuu760, ty_Ordering) -> new_lt7(xuu750, xuu760) new_esEs33(xuu750, xuu760, app(ty_Ratio, fcb)) -> new_esEs13(xuu750, xuu760, fcb) new_ltEs22(xuu752, xuu762, app(ty_Ratio, feb)) -> new_ltEs11(xuu752, xuu762, feb) new_lt22(xuu113, xuu116, app(ty_[], ce)) -> new_lt6(xuu113, xuu116, ce) new_primCmpInt(Neg(Succ(xuu50000)), Neg(xuu400)) -> new_primCmpNat0(xuu400, Succ(xuu50000)) new_compare19(EQ, EQ) -> EQ new_compare11(Double(xuu5000, Pos(xuu50010)), Double(xuu400, Pos(xuu4010))) -> new_compare12(new_sr(xuu5000, Pos(xuu4010)), new_sr(Pos(xuu50010), xuu400)) new_esEs28(xuu50002, xuu4002, ty_Integer) -> new_esEs17(xuu50002, xuu4002) new_esEs25(Left(xuu50000), Left(xuu4000), ty_Bool, dae) -> new_esEs19(xuu50000, xuu4000) new_esEs13(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), chd) -> new_asAs(new_esEs30(xuu50000, xuu4000, chd), new_esEs31(xuu50001, xuu4001, chd)) new_esEs4(xuu5000, xuu400, app(app(app(ty_@3, che), chf), chg)) -> new_esEs14(xuu5000, xuu400, che, chf, chg) new_compare111(xuu156, xuu157, True, faf, fag) -> LT new_lt19(xuu126, xuu128, app(app(app(ty_@3, cdh), cea), ceb)) -> new_lt4(xuu126, xuu128, cdh, cea, ceb) new_esEs21(Just(xuu50000), Just(xuu4000), app(app(app(ty_@3, fba), fbb), fbc)) -> new_esEs14(xuu50000, xuu4000, fba, fbb, fbc) new_compare14(xuu5000, xuu400, app(app(ty_Either, be), bf)) -> new_compare6(xuu5000, xuu400, be, bf) new_lt20(xuu750, xuu760, ty_Double) -> new_lt9(xuu750, xuu760) new_lt19(xuu126, xuu128, ty_@0) -> new_lt14(xuu126, xuu128) new_lt19(xuu126, xuu128, app(ty_Ratio, fcd)) -> new_lt11(xuu126, xuu128, fcd) new_esEs38(xuu114, xuu117, ty_Integer) -> new_esEs17(xuu114, xuu117) new_lt17(xuu750, xuu760, app(app(ty_@2, bhd), bhe)) -> new_lt10(xuu750, xuu760, bhd, bhe) new_compare29(xuu126, xuu127, xuu128, xuu129, False, ccd, cdg) -> new_compare115(xuu126, xuu127, xuu128, xuu129, new_lt19(xuu126, xuu128, ccd), new_asAs(new_esEs34(xuu126, xuu128, ccd), new_ltEs21(xuu127, xuu129, cdg)), ccd, cdg) new_lt19(xuu126, xuu128, ty_Ordering) -> new_lt7(xuu126, xuu128) new_compare16(False, True) -> LT new_ltEs15(Left(xuu750), Left(xuu760), app(ty_[], bcg), bch) -> new_ltEs8(xuu750, xuu760, bcg) new_lt20(xuu750, xuu760, app(app(app(ty_@3, hd), he), hf)) -> new_lt4(xuu750, xuu760, hd, he, hf) new_esEs5(xuu5001, xuu401, ty_Char) -> new_esEs24(xuu5001, xuu401) new_esEs25(Right(xuu50000), Right(xuu4000), dad, app(app(ty_@2, ecd), ece)) -> new_esEs18(xuu50000, xuu4000, ecd, ece) new_lt15(xuu500, xuu40) -> new_esEs29(new_compare7(xuu500, xuu40)) new_ltEs18(xuu82, xuu83, ty_Float) -> new_ltEs5(xuu82, xuu83) new_esEs40(xuu50001, xuu4001, app(app(ty_@2, fgf), fgg)) -> new_esEs18(xuu50001, xuu4001, fgf, fgg) new_esEs25(Left(xuu50000), Left(xuu4000), ty_Integer, dae) -> new_esEs17(xuu50000, xuu4000) new_esEs39(xuu50000, xuu4000, app(app(ty_Either, ffh), fga)) -> new_esEs25(xuu50000, xuu4000, ffh, fga) new_esEs6(xuu5002, xuu402, app(ty_Ratio, dbh)) -> new_esEs13(xuu5002, xuu402, dbh) new_ltEs15(Right(xuu750), Right(xuu760), bea, app(ty_[], beb)) -> new_ltEs8(xuu750, xuu760, beb) new_primEqInt(Pos(Succ(xuu500000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu40000))) -> False new_ltEs4(GT, EQ) -> False new_ltEs24(xuu115, xuu118, ty_Float) -> new_ltEs5(xuu115, xuu118) new_esEs10(xuu5000, xuu400, app(ty_[], fde)) -> new_esEs22(xuu5000, xuu400, fde) new_esEs37(xuu113, xuu116, ty_@0) -> new_esEs15(xuu113, xuu116) new_ltEs13(True, True) -> True new_compare5(@3(xuu5000, xuu5001, xuu5002), @3(xuu400, xuu401, xuu402), cb, cc, cd) -> new_compare25(xuu5000, xuu5001, xuu5002, xuu400, xuu401, xuu402, new_asAs(new_esEs4(xuu5000, xuu400, cb), new_asAs(new_esEs5(xuu5001, xuu401, cc), new_esEs6(xuu5002, xuu402, cd))), cb, cc, cd) new_ltEs15(Right(xuu750), Right(xuu760), bea, ty_@0) -> new_ltEs6(xuu750, xuu760) new_compare19(GT, GT) -> EQ new_compare26(xuu75, xuu76, False, egc, gh) -> new_compare111(xuu75, xuu76, new_ltEs19(xuu75, xuu76, egc), egc, gh) new_lt23(xuu114, xuu117, app(app(ty_@2, fa), fb)) -> new_lt10(xuu114, xuu117, fa, fb) new_ltEs15(Left(xuu750), Left(xuu760), app(app(ty_Either, bdd), bde), bch) -> new_ltEs15(xuu750, xuu760, bdd, bde) new_ltEs15(Right(xuu750), Right(xuu760), bea, app(app(ty_@2, bfa), bfb)) -> new_ltEs17(xuu750, xuu760, bfa, bfb) new_primEqNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) new_esEs25(Left(xuu50000), Left(xuu4000), app(app(ty_Either, ebf), ebg), dae) -> new_esEs25(xuu50000, xuu4000, ebf, ebg) new_esEs39(xuu50000, xuu4000, ty_Double) -> new_esEs20(xuu50000, xuu4000) new_lt7(xuu500, xuu40) -> new_esEs29(new_compare19(xuu500, xuu40)) new_compare25(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, True, ea, cf, cg) -> EQ new_compare13(Just(xuu5000), Nothing, cah) -> GT new_compare16(False, False) -> EQ new_compare7(Float(xuu5000, Pos(xuu50010)), Float(xuu400, Pos(xuu4010))) -> new_compare12(new_sr(xuu5000, Pos(xuu4010)), new_sr(Pos(xuu50010), xuu400)) new_lt21(xuu751, xuu761, ty_Char) -> new_lt5(xuu751, xuu761) new_ltEs24(xuu115, xuu118, app(ty_Maybe, gb)) -> new_ltEs7(xuu115, xuu118, gb) new_ltEs18(xuu82, xuu83, app(ty_Maybe, cfg)) -> new_ltEs7(xuu82, xuu83, cfg) new_not(True) -> False new_esEs7(xuu5000, xuu400, ty_Double) -> new_esEs20(xuu5000, xuu400) new_ltEs18(xuu82, xuu83, ty_Integer) -> new_ltEs16(xuu82, xuu83) new_primCompAux00(xuu54, LT) -> LT new_esEs33(xuu750, xuu760, ty_Bool) -> new_esEs19(xuu750, xuu760) new_primCmpNat0(Zero, Zero) -> EQ new_esEs7(xuu5000, xuu400, ty_Float) -> new_esEs23(xuu5000, xuu400) new_esEs10(xuu5000, xuu400, ty_Double) -> new_esEs20(xuu5000, xuu400) new_ltEs23(xuu89, xuu90, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_ltEs10(xuu89, xuu90, cbb, cbc, cbd) new_esEs32(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_esEs40(xuu50001, xuu4001, ty_Bool) -> new_esEs19(xuu50001, xuu4001) new_ltEs22(xuu752, xuu762, ty_Int) -> new_ltEs9(xuu752, xuu762) new_ltEs19(xuu75, xuu76, ty_@0) -> new_ltEs6(xuu75, xuu76) new_esEs27(xuu50001, xuu4001, ty_@0) -> new_esEs15(xuu50001, xuu4001) new_lt22(xuu113, xuu116, ty_Char) -> new_lt5(xuu113, xuu116) new_esEs10(xuu5000, xuu400, ty_Float) -> new_esEs23(xuu5000, xuu400) new_esEs36(xuu751, xuu761, app(ty_Maybe, bbc)) -> new_esEs21(xuu751, xuu761, bbc) new_esEs33(xuu750, xuu760, ty_@0) -> new_esEs15(xuu750, xuu760) new_ltEs10(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), bad, hb, hc) -> new_pePe(new_lt20(xuu750, xuu760, bad), new_asAs(new_esEs35(xuu750, xuu760, bad), new_pePe(new_lt21(xuu751, xuu761, hb), new_asAs(new_esEs36(xuu751, xuu761, hb), new_ltEs22(xuu752, xuu762, hc))))) new_esEs12(LT, LT) -> True new_ltEs24(xuu115, xuu118, ty_Integer) -> new_ltEs16(xuu115, xuu118) new_compare13(Nothing, Just(xuu400), cah) -> LT new_esEs27(xuu50001, xuu4001, ty_Bool) -> new_esEs19(xuu50001, xuu4001) new_esEs35(xuu750, xuu760, app(app(app(ty_@3, hd), he), hf)) -> new_esEs14(xuu750, xuu760, hd, he, hf) new_ltEs15(Right(xuu750), Right(xuu760), bea, ty_Double) -> new_ltEs12(xuu750, xuu760) new_primEqNat0(Succ(xuu500000), Zero) -> False new_primEqNat0(Zero, Succ(xuu40000)) -> False new_ltEs24(xuu115, xuu118, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs10(xuu115, xuu118, fd, ff, fg) new_compare15(:%(xuu5000, xuu5001), :%(xuu400, xuu401), ty_Integer) -> new_compare17(new_sr0(xuu5000, xuu401), new_sr0(xuu400, xuu5001)) new_esEs25(Left(xuu50000), Left(xuu4000), app(app(ty_@2, ebb), ebc), dae) -> new_esEs18(xuu50000, xuu4000, ebb, ebc) new_ltEs7(Nothing, Just(xuu760), ead) -> True new_compare114(xuu172, xuu173, False, eha) -> GT new_esEs26(xuu50000, xuu4000, ty_@0) -> new_esEs15(xuu50000, xuu4000) new_esEs25(Right(xuu50000), Right(xuu4000), dad, app(app(app(ty_@3, eca), ecb), ecc)) -> new_esEs14(xuu50000, xuu4000, eca, ecb, ecc) new_lt21(xuu751, xuu761, ty_@0) -> new_lt14(xuu751, xuu761) new_esEs8(xuu5000, xuu400, ty_Float) -> new_esEs23(xuu5000, xuu400) new_compare10(xuu163, xuu164, True, ded, dee) -> LT new_esEs25(Right(xuu50000), Right(xuu4000), dad, app(ty_Maybe, ecf)) -> new_esEs21(xuu50000, xuu4000, ecf) new_ltEs18(xuu82, xuu83, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_ltEs10(xuu82, xuu83, cfb, cfc, cfd) new_lt21(xuu751, xuu761, app(app(app(ty_@3, baf), bag), bah)) -> new_lt4(xuu751, xuu761, baf, bag, bah) new_esEs34(xuu126, xuu128, ty_Integer) -> new_esEs17(xuu126, xuu128) new_esEs24(Char(xuu50000), Char(xuu4000)) -> new_primEqNat0(xuu50000, xuu4000) new_compare115(xuu200, xuu201, xuu202, xuu203, False, xuu205, efg, efh) -> new_compare110(xuu200, xuu201, xuu202, xuu203, xuu205, efg, efh) new_ltEs15(Left(xuu750), Left(xuu760), ty_Float, bch) -> new_ltEs5(xuu750, xuu760) new_esEs21(Just(xuu50000), Just(xuu4000), app(ty_Maybe, fbf)) -> new_esEs21(xuu50000, xuu4000, fbf) new_esEs9(xuu5000, xuu400, ty_@0) -> new_esEs15(xuu5000, xuu400) new_primCompAux00(xuu54, GT) -> GT new_esEs32(xuu50000, xuu4000, ty_@0) -> new_esEs15(xuu50000, xuu4000) new_ltEs22(xuu752, xuu762, ty_Double) -> new_ltEs12(xuu752, xuu762) new_ltEs23(xuu89, xuu90, ty_Float) -> new_ltEs5(xuu89, xuu90) new_esEs40(xuu50001, xuu4001, ty_Integer) -> new_esEs17(xuu50001, xuu4001) new_compare28(xuu89, xuu90, True, fec) -> EQ new_esEs39(xuu50000, xuu4000, ty_Integer) -> new_esEs17(xuu50000, xuu4000) new_ltEs21(xuu127, xuu129, ty_Char) -> new_ltEs14(xuu127, xuu129) new_esEs5(xuu5001, xuu401, app(ty_Ratio, daf)) -> new_esEs13(xuu5001, xuu401, daf) new_esEs27(xuu50001, xuu4001, ty_Ordering) -> new_esEs12(xuu50001, xuu4001) new_compare17(Integer(xuu5000), Integer(xuu400)) -> new_primCmpInt(xuu5000, xuu400) new_esEs27(xuu50001, xuu4001, ty_Integer) -> new_esEs17(xuu50001, xuu4001) new_ltEs23(xuu89, xuu90, ty_Integer) -> new_ltEs16(xuu89, xuu90) new_esEs26(xuu50000, xuu4000, app(ty_Maybe, dfd)) -> new_esEs21(xuu50000, xuu4000, dfd) new_lt4(xuu500, xuu40, cb, cc, cd) -> new_esEs29(new_compare5(xuu500, xuu40, cb, cc, cd)) new_esEs25(Right(xuu50000), Right(xuu4000), dad, ty_Float) -> new_esEs23(xuu50000, xuu4000) new_ltEs20(xuu751, xuu761, ty_Bool) -> new_ltEs13(xuu751, xuu761) new_compare14(xuu5000, xuu400, ty_Integer) -> new_compare17(xuu5000, xuu400) new_esEs21(Just(xuu50000), Just(xuu4000), app(ty_[], fbg)) -> new_esEs22(xuu50000, xuu4000, fbg) new_lt20(xuu750, xuu760, ty_Int) -> new_lt12(xuu750, xuu760) new_compare6(Right(xuu5000), Right(xuu400), ge, gf) -> new_compare27(xuu5000, xuu400, new_esEs8(xuu5000, xuu400, gf), ge, gf) new_esEs9(xuu5000, xuu400, ty_Char) -> new_esEs24(xuu5000, xuu400) new_esEs27(xuu50001, xuu4001, ty_Int) -> new_esEs16(xuu50001, xuu4001) new_esEs19(False, False) -> True new_primCmpInt(Pos(Succ(xuu50000)), Neg(xuu400)) -> GT new_lt14(xuu500, xuu40) -> new_esEs29(new_compare9(xuu500, xuu40)) new_esEs28(xuu50002, xuu4002, ty_Bool) -> new_esEs19(xuu50002, xuu4002) new_esEs36(xuu751, xuu761, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs14(xuu751, xuu761, baf, bag, bah) new_ltEs21(xuu127, xuu129, ty_Double) -> new_ltEs12(xuu127, xuu129) new_ltEs15(Right(xuu750), Right(xuu760), bea, ty_Ordering) -> new_ltEs4(xuu750, xuu760) new_esEs33(xuu750, xuu760, ty_Int) -> new_esEs16(xuu750, xuu760) new_esEs35(xuu750, xuu760, app(app(ty_Either, hg), hh)) -> new_esEs25(xuu750, xuu760, hg, hh) new_esEs39(xuu50000, xuu4000, ty_Bool) -> new_esEs19(xuu50000, xuu4000) new_ltEs7(Just(xuu750), Just(xuu760), ty_Bool) -> new_ltEs13(xuu750, xuu760) new_ltEs19(xuu75, xuu76, ty_Bool) -> new_ltEs13(xuu75, xuu76) new_esEs33(xuu750, xuu760, ty_Integer) -> new_esEs17(xuu750, xuu760) new_lt19(xuu126, xuu128, ty_Float) -> new_lt15(xuu126, xuu128) new_esEs34(xuu126, xuu128, ty_Bool) -> new_esEs19(xuu126, xuu128) new_esEs25(Left(xuu50000), Left(xuu4000), app(ty_Maybe, ebd), dae) -> new_esEs21(xuu50000, xuu4000, ebd) new_esEs9(xuu5000, xuu400, ty_Ordering) -> new_esEs12(xuu5000, xuu400) new_esEs7(xuu5000, xuu400, app(ty_[], dea)) -> new_esEs22(xuu5000, xuu400, dea) new_esEs33(xuu750, xuu760, ty_Ordering) -> new_esEs12(xuu750, xuu760) new_primCmpNat0(Zero, Succ(xuu4000)) -> LT new_esEs4(xuu5000, xuu400, ty_Char) -> new_esEs24(xuu5000, xuu400) new_esEs25(Right(xuu50000), Right(xuu4000), dad, ty_Double) -> new_esEs20(xuu50000, xuu4000) new_ltEs22(xuu752, xuu762, ty_Ordering) -> new_ltEs4(xuu752, xuu762) new_ltEs23(xuu89, xuu90, ty_Int) -> new_ltEs9(xuu89, xuu90) new_esEs6(xuu5002, xuu402, app(app(ty_@2, dcd), dce)) -> new_esEs18(xuu5002, xuu402, dcd, dce) new_ltEs20(xuu751, xuu761, app(ty_Maybe, cae)) -> new_ltEs7(xuu751, xuu761, cae) new_esEs11(xuu5001, xuu401, ty_Char) -> new_esEs24(xuu5001, xuu401) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs8(xuu5000, xuu400, ty_Double) -> new_esEs20(xuu5000, xuu400) new_esEs37(xuu113, xuu116, app(ty_Maybe, df)) -> new_esEs21(xuu113, xuu116, df) new_ltEs15(Right(xuu750), Left(xuu760), bea, bch) -> False new_esEs9(xuu5000, xuu400, ty_Int) -> new_esEs16(xuu5000, xuu400) new_esEs8(xuu5000, xuu400, app(app(ty_@2, cgf), cgg)) -> new_esEs18(xuu5000, xuu400, cgf, cgg) new_lt23(xuu114, xuu117, app(ty_[], eb)) -> new_lt6(xuu114, xuu117, eb) new_esEs10(xuu5000, xuu400, ty_Char) -> new_esEs24(xuu5000, xuu400) new_primCmpNat0(Succ(xuu50000), Zero) -> GT new_esEs35(xuu750, xuu760, app(app(ty_@2, bab), bac)) -> new_esEs18(xuu750, xuu760, bab, bac) new_esEs11(xuu5001, xuu401, app(ty_Ratio, eed)) -> new_esEs13(xuu5001, xuu401, eed) new_esEs34(xuu126, xuu128, app(ty_Ratio, fcd)) -> new_esEs13(xuu126, xuu128, fcd) new_ltEs7(Just(xuu750), Just(xuu760), app(app(ty_@2, bgb), bgc)) -> new_ltEs17(xuu750, xuu760, bgb, bgc) new_pePe(False, xuu215) -> xuu215 new_esEs25(Right(xuu50000), Right(xuu4000), dad, app(ty_[], ecg)) -> new_esEs22(xuu50000, xuu4000, ecg) new_esEs4(xuu5000, xuu400, app(ty_Maybe, dab)) -> new_esEs21(xuu5000, xuu400, dab) new_esEs39(xuu50000, xuu4000, app(app(app(ty_@3, ffa), ffb), ffc)) -> new_esEs14(xuu50000, xuu4000, ffa, ffb, ffc) new_esEs28(xuu50002, xuu4002, app(ty_[], eaa)) -> new_esEs22(xuu50002, xuu4002, eaa) new_ltEs23(xuu89, xuu90, app(ty_Ratio, fed)) -> new_ltEs11(xuu89, xuu90, fed) new_lt13(xuu500, xuu40, ge, gf) -> new_esEs29(new_compare6(xuu500, xuu40, ge, gf)) new_esEs21(Just(xuu50000), Just(xuu4000), ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_ltEs23(xuu89, xuu90, ty_Ordering) -> new_ltEs4(xuu89, xuu90) new_ltEs7(Just(xuu750), Just(xuu760), app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs10(xuu750, xuu760, bfd, bfe, bff) new_lt19(xuu126, xuu128, ty_Int) -> new_lt12(xuu126, xuu128) new_compare15(:%(xuu5000, xuu5001), :%(xuu400, xuu401), ty_Int) -> new_compare12(new_sr(xuu5000, xuu401), new_sr(xuu400, xuu5001)) new_esEs25(Right(xuu50000), Right(xuu4000), dad, app(ty_Ratio, ebh)) -> new_esEs13(xuu50000, xuu4000, ebh) new_esEs33(xuu750, xuu760, ty_Char) -> new_esEs24(xuu750, xuu760) new_esEs38(xuu114, xuu117, ty_Double) -> new_esEs20(xuu114, xuu117) new_compare14(xuu5000, xuu400, ty_Char) -> new_compare8(xuu5000, xuu400) new_esEs21(Just(xuu50000), Just(xuu4000), ty_Int) -> new_esEs16(xuu50000, xuu4000) new_lt21(xuu751, xuu761, ty_Double) -> new_lt9(xuu751, xuu761) new_esEs11(xuu5001, xuu401, ty_Int) -> new_esEs16(xuu5001, xuu401) new_esEs6(xuu5002, xuu402, ty_Char) -> new_esEs24(xuu5002, xuu402) new_esEs38(xuu114, xuu117, ty_Ordering) -> new_esEs12(xuu114, xuu117) new_compare6(Left(xuu5000), Right(xuu400), ge, gf) -> LT new_esEs26(xuu50000, xuu4000, app(ty_[], dfe)) -> new_esEs22(xuu50000, xuu4000, dfe) new_primEqInt(Pos(Zero), Neg(Succ(xuu40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu40000))) -> False new_ltEs20(xuu751, xuu761, ty_Integer) -> new_ltEs16(xuu751, xuu761) new_esEs9(xuu5000, xuu400, app(app(ty_Either, eeb), eec)) -> new_esEs25(xuu5000, xuu400, eeb, eec) new_compare6(Left(xuu5000), Left(xuu400), ge, gf) -> new_compare26(xuu5000, xuu400, new_esEs7(xuu5000, xuu400, ge), ge, gf) new_esEs7(xuu5000, xuu400, app(ty_Ratio, ddb)) -> new_esEs13(xuu5000, xuu400, ddb) new_esEs11(xuu5001, xuu401, ty_Ordering) -> new_esEs12(xuu5001, xuu401) new_ltEs20(xuu751, xuu761, ty_@0) -> new_ltEs6(xuu751, xuu761) new_lt23(xuu114, xuu117, ty_Integer) -> new_lt16(xuu114, xuu117) new_esEs25(Right(xuu50000), Right(xuu4000), dad, app(app(ty_Either, ech), eda)) -> new_esEs25(xuu50000, xuu4000, ech, eda) new_esEs25(Left(xuu50000), Left(xuu4000), ty_Double, dae) -> new_esEs20(xuu50000, xuu4000) new_ltEs15(Right(xuu750), Right(xuu760), bea, app(app(ty_Either, bef), beg)) -> new_ltEs15(xuu750, xuu760, bef, beg) new_ltEs15(Left(xuu750), Left(xuu760), app(app(ty_@2, bdg), bdh), bch) -> new_ltEs17(xuu750, xuu760, bdg, bdh) new_esEs34(xuu126, xuu128, ty_Int) -> new_esEs16(xuu126, xuu128) new_ltEs4(LT, GT) -> True new_ltEs18(xuu82, xuu83, ty_Bool) -> new_ltEs13(xuu82, xuu83) new_esEs38(xuu114, xuu117, app(ty_Maybe, eh)) -> new_esEs21(xuu114, xuu117, eh) new_esEs38(xuu114, xuu117, ty_Int) -> new_esEs16(xuu114, xuu117) new_esEs21(Just(xuu50000), Just(xuu4000), ty_Float) -> new_esEs23(xuu50000, xuu4000) new_primEqInt(Neg(Succ(xuu500000)), Neg(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) new_esEs34(xuu126, xuu128, ty_Ordering) -> new_esEs12(xuu126, xuu128) new_esEs36(xuu751, xuu761, ty_Float) -> new_esEs23(xuu751, xuu761) new_esEs9(xuu5000, xuu400, ty_Float) -> new_esEs23(xuu5000, xuu400) new_primCmpInt(Neg(Zero), Pos(Succ(xuu4000))) -> LT new_ltEs4(LT, LT) -> True new_ltEs4(EQ, LT) -> False new_ltEs19(xuu75, xuu76, ty_Char) -> new_ltEs14(xuu75, xuu76) new_esEs8(xuu5000, xuu400, ty_Integer) -> new_esEs17(xuu5000, xuu400) new_esEs4(xuu5000, xuu400, ty_@0) -> new_esEs15(xuu5000, xuu400) new_primMulInt(Pos(xuu4000), Pos(xuu50010)) -> Pos(new_primMulNat0(xuu4000, xuu50010)) new_ltEs21(xuu127, xuu129, app(app(ty_Either, cda), cdb)) -> new_ltEs15(xuu127, xuu129, cda, cdb) new_esEs25(Left(xuu50000), Left(xuu4000), ty_@0, dae) -> new_esEs15(xuu50000, xuu4000) new_esEs38(xuu114, xuu117, app(ty_[], eb)) -> new_esEs22(xuu114, xuu117, eb) new_esEs5(xuu5001, xuu401, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs14(xuu5001, xuu401, dag, dah, dba) new_ltEs15(Left(xuu750), Right(xuu760), bea, bch) -> True new_lt17(xuu750, xuu760, ty_Double) -> new_lt9(xuu750, xuu760) new_esEs5(xuu5001, xuu401, ty_Bool) -> new_esEs19(xuu5001, xuu401) new_ltEs19(xuu75, xuu76, ty_Double) -> new_ltEs12(xuu75, xuu76) new_esEs28(xuu50002, xuu4002, ty_Double) -> new_esEs20(xuu50002, xuu4002) new_ltEs15(Right(xuu750), Right(xuu760), bea, ty_Char) -> new_ltEs14(xuu750, xuu760) new_esEs8(xuu5000, xuu400, ty_Char) -> new_esEs24(xuu5000, xuu400) new_esEs26(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_lt21(xuu751, xuu761, app(app(ty_Either, bba), bbb)) -> new_lt13(xuu751, xuu761, bba, bbb) new_esEs7(xuu5000, xuu400, app(app(ty_Either, deb), dec)) -> new_esEs25(xuu5000, xuu400, deb, dec) new_ltEs24(xuu115, xuu118, ty_Int) -> new_ltEs9(xuu115, xuu118) new_ltEs22(xuu752, xuu762, ty_Integer) -> new_ltEs16(xuu752, xuu762) new_ltEs22(xuu752, xuu762, app(app(ty_@2, bce), bcf)) -> new_ltEs17(xuu752, xuu762, bce, bcf) new_compare113(xuu185, xuu186, xuu187, xuu188, xuu189, xuu190, True, ege, egf, egg) -> LT new_esEs9(xuu5000, xuu400, app(ty_Ratio, edb)) -> new_esEs13(xuu5000, xuu400, edb) new_esEs33(xuu750, xuu760, ty_Float) -> new_esEs23(xuu750, xuu760) new_primMulNat0(Succ(xuu40000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu500100)) -> Zero new_esEs6(xuu5002, xuu402, app(ty_Maybe, dcf)) -> new_esEs21(xuu5002, xuu402, dcf) new_esEs11(xuu5001, xuu401, app(app(ty_Either, efd), efe)) -> new_esEs25(xuu5001, xuu401, efd, efe) new_esEs4(xuu5000, xuu400, ty_Double) -> new_esEs20(xuu5000, xuu400) new_lt17(xuu750, xuu760, ty_Bool) -> new_lt8(xuu750, xuu760) new_ltEs20(xuu751, xuu761, ty_Double) -> new_ltEs12(xuu751, xuu761) new_esEs27(xuu50001, xuu4001, app(ty_Maybe, dgf)) -> new_esEs21(xuu50001, xuu4001, dgf) new_esEs8(xuu5000, xuu400, ty_Bool) -> new_esEs19(xuu5000, xuu400) new_esEs37(xuu113, xuu116, app(app(app(ty_@3, da), db), dc)) -> new_esEs14(xuu113, xuu116, da, db, dc) new_compare16(True, False) -> GT new_esEs28(xuu50002, xuu4002, ty_@0) -> new_esEs15(xuu50002, xuu4002) new_esEs26(xuu50000, xuu4000, ty_Int) -> new_esEs16(xuu50000, xuu4000) new_ltEs18(xuu82, xuu83, app(app(ty_Either, cfe), cff)) -> new_ltEs15(xuu82, xuu83, cfe, cff) new_esEs34(xuu126, xuu128, app(app(ty_Either, cec), ced)) -> new_esEs25(xuu126, xuu128, cec, ced) new_esEs34(xuu126, xuu128, ty_Float) -> new_esEs23(xuu126, xuu128) new_esEs16(xuu5000, xuu400) -> new_primEqInt(xuu5000, xuu400) new_primPlusNat0(Succ(xuu44200), Zero) -> Succ(xuu44200) new_primPlusNat0(Zero, Succ(xuu13900)) -> Succ(xuu13900) new_ltEs7(Just(xuu750), Just(xuu760), ty_Ordering) -> new_ltEs4(xuu750, xuu760) new_lt6(xuu500, xuu40, h) -> new_esEs29(new_compare(xuu500, xuu40, h)) new_esEs5(xuu5001, xuu401, ty_Integer) -> new_esEs17(xuu5001, xuu401) new_esEs28(xuu50002, xuu4002, app(ty_Maybe, dhh)) -> new_esEs21(xuu50002, xuu4002, dhh) new_esEs7(xuu5000, xuu400, ty_Bool) -> new_esEs19(xuu5000, xuu400) new_esEs4(xuu5000, xuu400, app(ty_[], dac)) -> new_esEs22(xuu5000, xuu400, dac) new_ltEs23(xuu89, xuu90, app(app(ty_@2, cbh), cca)) -> new_ltEs17(xuu89, xuu90, cbh, cca) new_compare14(xuu5000, xuu400, ty_Float) -> new_compare7(xuu5000, xuu400) new_ltEs19(xuu75, xuu76, ty_Integer) -> new_ltEs16(xuu75, xuu76) new_esEs10(xuu5000, xuu400, app(app(ty_Either, fdf), fdg)) -> new_esEs25(xuu5000, xuu400, fdf, fdg) new_esEs40(xuu50001, xuu4001, ty_Double) -> new_esEs20(xuu50001, xuu4001) new_esEs6(xuu5002, xuu402, ty_@0) -> new_esEs15(xuu5002, xuu402) new_esEs26(xuu50000, xuu4000, app(app(app(ty_@3, deg), deh), dfa)) -> new_esEs14(xuu50000, xuu4000, deg, deh, dfa) new_lt22(xuu113, xuu116, app(app(ty_@2, dg), dh)) -> new_lt10(xuu113, xuu116, dg, dh) new_esEs28(xuu50002, xuu4002, app(app(app(ty_@3, dhc), dhd), dhe)) -> new_esEs14(xuu50002, xuu4002, dhc, dhd, dhe) new_compare27(xuu82, xuu83, False, ceh, ega) -> new_compare10(xuu82, xuu83, new_ltEs18(xuu82, xuu83, ega), ceh, ega) new_esEs33(xuu750, xuu760, app(app(ty_Either, bha), bhb)) -> new_esEs25(xuu750, xuu760, bha, bhb) new_lt19(xuu126, xuu128, ty_Double) -> new_lt9(xuu126, xuu128) new_ltEs15(Right(xuu750), Right(xuu760), bea, ty_Bool) -> new_ltEs13(xuu750, xuu760) new_esEs31(xuu50001, xuu4001, ty_Integer) -> new_esEs17(xuu50001, xuu4001) new_esEs40(xuu50001, xuu4001, app(app(app(ty_@3, fgc), fgd), fge)) -> new_esEs14(xuu50001, xuu4001, fgc, fgd, fge) new_lt10(xuu500, xuu40, ccb, ccc) -> new_esEs29(new_compare18(xuu500, xuu40, ccb, ccc)) new_esEs32(xuu50000, xuu4000, ty_Bool) -> new_esEs19(xuu50000, xuu4000) new_esEs25(Left(xuu50000), Left(xuu4000), ty_Char, dae) -> new_esEs24(xuu50000, xuu4000) new_lt11(xuu500, xuu40, egh) -> new_esEs29(new_compare15(xuu500, xuu40, egh)) new_lt17(xuu750, xuu760, ty_Float) -> new_lt15(xuu750, xuu760) new_compare19(EQ, GT) -> LT new_lt23(xuu114, xuu117, app(app(ty_Either, ef), eg)) -> new_lt13(xuu114, xuu117, ef, eg) new_esEs35(xuu750, xuu760, ty_Float) -> new_esEs23(xuu750, xuu760) new_esEs5(xuu5001, xuu401, app(ty_[], dbe)) -> new_esEs22(xuu5001, xuu401, dbe) new_ltEs24(xuu115, xuu118, app(app(ty_@2, gc), gd)) -> new_ltEs17(xuu115, xuu118, gc, gd) new_esEs7(xuu5000, xuu400, ty_Integer) -> new_esEs17(xuu5000, xuu400) new_ltEs18(xuu82, xuu83, ty_@0) -> new_ltEs6(xuu82, xuu83) new_lt21(xuu751, xuu761, app(app(ty_@2, bbd), bbe)) -> new_lt10(xuu751, xuu761, bbd, bbe) new_esEs30(xuu50000, xuu4000, ty_Integer) -> new_esEs17(xuu50000, xuu4000) new_esEs11(xuu5001, xuu401, ty_Float) -> new_esEs23(xuu5001, xuu401) new_esEs22(:(xuu50000, xuu50001), [], dac) -> False new_esEs22([], :(xuu4000, xuu4001), dac) -> False new_esEs5(xuu5001, xuu401, ty_@0) -> new_esEs15(xuu5001, xuu401) new_esEs6(xuu5002, xuu402, ty_Double) -> new_esEs20(xuu5002, xuu402) new_esEs32(xuu50000, xuu4000, app(app(ty_Either, fab), fac)) -> new_esEs25(xuu50000, xuu4000, fab, fac) new_compare113(xuu185, xuu186, xuu187, xuu188, xuu189, xuu190, False, ege, egf, egg) -> GT new_esEs6(xuu5002, xuu402, ty_Bool) -> new_esEs19(xuu5002, xuu402) new_esEs39(xuu50000, xuu4000, app(ty_[], ffg)) -> new_esEs22(xuu50000, xuu4000, ffg) new_ltEs20(xuu751, xuu761, ty_Float) -> new_ltEs5(xuu751, xuu761) new_esEs32(xuu50000, xuu4000, app(ty_Ratio, ehb)) -> new_esEs13(xuu50000, xuu4000, ehb) new_lt22(xuu113, xuu116, app(app(ty_Either, dd), de)) -> new_lt13(xuu113, xuu116, dd, de) new_ltEs4(LT, EQ) -> True new_ltEs21(xuu127, xuu129, app(ty_Ratio, fce)) -> new_ltEs11(xuu127, xuu129, fce) new_fsEs(xuu216) -> new_not(new_esEs12(xuu216, GT)) new_ltEs15(Right(xuu750), Right(xuu760), bea, app(ty_Ratio, fae)) -> new_ltEs11(xuu750, xuu760, fae) new_lt17(xuu750, xuu760, ty_Int) -> new_lt12(xuu750, xuu760) new_primMulInt(Neg(xuu4000), Neg(xuu50010)) -> Pos(new_primMulNat0(xuu4000, xuu50010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu4000))) -> new_primCmpNat0(Zero, Succ(xuu4000)) new_esEs40(xuu50001, xuu4001, app(ty_[], fha)) -> new_esEs22(xuu50001, xuu4001, fha) new_ltEs17(@2(xuu750, xuu751), @2(xuu760, xuu761), bhf, bge) -> new_pePe(new_lt17(xuu750, xuu760, bhf), new_asAs(new_esEs33(xuu750, xuu760, bhf), new_ltEs20(xuu751, xuu761, bge))) new_esEs8(xuu5000, xuu400, app(app(ty_Either, chb), chc)) -> new_esEs25(xuu5000, xuu400, chb, chc) new_esEs5(xuu5001, xuu401, ty_Double) -> new_esEs20(xuu5001, xuu401) new_compare7(Float(xuu5000, Neg(xuu50010)), Float(xuu400, Neg(xuu4010))) -> new_compare12(new_sr(xuu5000, Neg(xuu4010)), new_sr(Neg(xuu50010), xuu400)) new_compare([], :(xuu400, xuu401), h) -> LT new_esEs40(xuu50001, xuu4001, app(ty_Maybe, fgh)) -> new_esEs21(xuu50001, xuu4001, fgh) new_esEs25(Left(xuu50000), Right(xuu4000), dad, dae) -> False new_esEs25(Right(xuu50000), Left(xuu4000), dad, dae) -> False new_ltEs4(EQ, EQ) -> True new_compare14(xuu5000, xuu400, ty_@0) -> new_compare9(xuu5000, xuu400) new_ltEs5(xuu75, xuu76) -> new_fsEs(new_compare7(xuu75, xuu76)) new_lt12(xuu500, xuu40) -> new_esEs29(new_compare12(xuu500, xuu40)) new_esEs6(xuu5002, xuu402, ty_Integer) -> new_esEs17(xuu5002, xuu402) new_ltEs15(Left(xuu750), Left(xuu760), app(app(app(ty_@3, bda), bdb), bdc), bch) -> new_ltEs10(xuu750, xuu760, bda, bdb, bdc) new_esEs10(xuu5000, xuu400, app(app(ty_@2, fdb), fdc)) -> new_esEs18(xuu5000, xuu400, fdb, fdc) new_esEs33(xuu750, xuu760, app(app(ty_@2, bhd), bhe)) -> new_esEs18(xuu750, xuu760, bhd, bhe) new_compare14(xuu5000, xuu400, ty_Int) -> new_compare12(xuu5000, xuu400) new_ltEs18(xuu82, xuu83, ty_Char) -> new_ltEs14(xuu82, xuu83) new_esEs36(xuu751, xuu761, ty_Ordering) -> new_esEs12(xuu751, xuu761) new_compare19(LT, GT) -> LT new_ltEs18(xuu82, xuu83, ty_Double) -> new_ltEs12(xuu82, xuu83) new_esEs36(xuu751, xuu761, ty_Int) -> new_esEs16(xuu751, xuu761) new_ltEs19(xuu75, xuu76, ty_Float) -> new_ltEs5(xuu75, xuu76) new_ltEs20(xuu751, xuu761, app(app(ty_Either, cac), cad)) -> new_ltEs15(xuu751, xuu761, cac, cad) new_esEs27(xuu50001, xuu4001, app(app(app(ty_@3, dga), dgb), dgc)) -> new_esEs14(xuu50001, xuu4001, dga, dgb, dgc) new_esEs21(Just(xuu50000), Just(xuu4000), ty_Integer) -> new_esEs17(xuu50000, xuu4000) new_esEs11(xuu5001, xuu401, app(app(ty_@2, eeh), efa)) -> new_esEs18(xuu5001, xuu401, eeh, efa) new_esEs34(xuu126, xuu128, ty_Char) -> new_esEs24(xuu126, xuu128) new_esEs7(xuu5000, xuu400, ty_Char) -> new_esEs24(xuu5000, xuu400) new_primMulInt(Pos(xuu4000), Neg(xuu50010)) -> Neg(new_primMulNat0(xuu4000, xuu50010)) new_primMulInt(Neg(xuu4000), Pos(xuu50010)) -> Neg(new_primMulNat0(xuu4000, xuu50010)) new_compare19(LT, EQ) -> LT new_lt20(xuu750, xuu760, app(app(ty_Either, hg), hh)) -> new_lt13(xuu750, xuu760, hg, hh) new_esEs18(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), chh, daa) -> new_asAs(new_esEs39(xuu50000, xuu4000, chh), new_esEs40(xuu50001, xuu4001, daa)) new_esEs8(xuu5000, xuu400, app(ty_Ratio, cgb)) -> new_esEs13(xuu5000, xuu400, cgb) new_esEs37(xuu113, xuu116, app(app(ty_Either, dd), de)) -> new_esEs25(xuu113, xuu116, dd, de) new_ltEs21(xuu127, xuu129, ty_Integer) -> new_ltEs16(xuu127, xuu129) new_esEs38(xuu114, xuu117, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs14(xuu114, xuu117, ec, ed, ee) new_compare19(GT, EQ) -> GT new_esEs39(xuu50000, xuu4000, ty_@0) -> new_esEs15(xuu50000, xuu4000) new_esEs9(xuu5000, xuu400, app(app(ty_@2, edf), edg)) -> new_esEs18(xuu5000, xuu400, edf, edg) new_esEs8(xuu5000, xuu400, ty_Int) -> new_esEs16(xuu5000, xuu400) new_ltEs15(Left(xuu750), Left(xuu760), ty_@0, bch) -> new_ltEs6(xuu750, xuu760) new_esEs35(xuu750, xuu760, ty_Int) -> new_esEs16(xuu750, xuu760) new_ltEs19(xuu75, xuu76, ty_Int) -> new_ltEs9(xuu75, xuu76) new_ltEs7(Just(xuu750), Just(xuu760), ty_Int) -> new_ltEs9(xuu750, xuu760) new_esEs37(xuu113, xuu116, ty_Double) -> new_esEs20(xuu113, xuu116) new_sr0(Integer(xuu4000), Integer(xuu50010)) -> Integer(new_primMulInt(xuu4000, xuu50010)) new_esEs35(xuu750, xuu760, ty_Ordering) -> new_esEs12(xuu750, xuu760) new_compare115(xuu200, xuu201, xuu202, xuu203, True, xuu205, efg, efh) -> new_compare110(xuu200, xuu201, xuu202, xuu203, True, efg, efh) new_ltEs6(xuu75, xuu76) -> new_fsEs(new_compare9(xuu75, xuu76)) new_esEs8(xuu5000, xuu400, ty_Ordering) -> new_esEs12(xuu5000, xuu400) new_ltEs9(xuu75, xuu76) -> new_fsEs(new_compare12(xuu75, xuu76)) new_lt9(xuu500, xuu40) -> new_esEs29(new_compare11(xuu500, xuu40)) new_esEs21(Just(xuu50000), Just(xuu4000), app(app(ty_@2, fbd), fbe)) -> new_esEs18(xuu50000, xuu4000, fbd, fbe) new_esEs10(xuu5000, xuu400, app(ty_Ratio, fcf)) -> new_esEs13(xuu5000, xuu400, fcf) new_ltEs18(xuu82, xuu83, ty_Ordering) -> new_ltEs4(xuu82, xuu83) new_lt19(xuu126, xuu128, app(app(ty_@2, cef), ceg)) -> new_lt10(xuu126, xuu128, cef, ceg) new_esEs39(xuu50000, xuu4000, app(ty_Maybe, fff)) -> new_esEs21(xuu50000, xuu4000, fff) new_esEs11(xuu5001, xuu401, ty_Integer) -> new_esEs17(xuu5001, xuu401) new_ltEs24(xuu115, xuu118, ty_Ordering) -> new_ltEs4(xuu115, xuu118) new_lt17(xuu750, xuu760, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_lt4(xuu750, xuu760, bgf, bgg, bgh) new_esEs12(GT, GT) -> True new_compare114(xuu172, xuu173, True, eha) -> LT new_asAs(True, xuu151) -> xuu151 new_esEs6(xuu5002, xuu402, app(ty_[], dcg)) -> new_esEs22(xuu5002, xuu402, dcg) new_compare10(xuu163, xuu164, False, ded, dee) -> GT new_esEs26(xuu50000, xuu4000, app(app(ty_@2, dfb), dfc)) -> new_esEs18(xuu50000, xuu4000, dfb, dfc) new_ltEs15(Right(xuu750), Right(xuu760), bea, app(ty_Maybe, beh)) -> new_ltEs7(xuu750, xuu760, beh) new_esEs32(xuu50000, xuu4000, app(app(ty_@2, ehf), ehg)) -> new_esEs18(xuu50000, xuu4000, ehf, ehg) new_compare11(Double(xuu5000, Pos(xuu50010)), Double(xuu400, Neg(xuu4010))) -> new_compare12(new_sr(xuu5000, Pos(xuu4010)), new_sr(Neg(xuu50010), xuu400)) new_compare11(Double(xuu5000, Neg(xuu50010)), Double(xuu400, Pos(xuu4010))) -> new_compare12(new_sr(xuu5000, Neg(xuu4010)), new_sr(Pos(xuu50010), xuu400)) new_lt20(xuu750, xuu760, app(app(ty_@2, bab), bac)) -> new_lt10(xuu750, xuu760, bab, bac) new_ltEs21(xuu127, xuu129, app(ty_Maybe, cdc)) -> new_ltEs7(xuu127, xuu129, cdc) new_esEs5(xuu5001, xuu401, app(app(ty_@2, dbb), dbc)) -> new_esEs18(xuu5001, xuu401, dbb, dbc) new_esEs4(xuu5000, xuu400, app(ty_Ratio, chd)) -> new_esEs13(xuu5000, xuu400, chd) new_esEs26(xuu50000, xuu4000, ty_Integer) -> new_esEs17(xuu50000, xuu4000) new_lt20(xuu750, xuu760, ty_Bool) -> new_lt8(xuu750, xuu760) new_ltEs21(xuu127, xuu129, ty_Float) -> new_ltEs5(xuu127, xuu129) new_lt23(xuu114, xuu117, app(app(app(ty_@3, ec), ed), ee)) -> new_lt4(xuu114, xuu117, ec, ed, ee) new_esEs25(Right(xuu50000), Right(xuu4000), dad, ty_Int) -> new_esEs16(xuu50000, xuu4000) new_ltEs15(Left(xuu750), Left(xuu760), app(ty_Maybe, bdf), bch) -> new_ltEs7(xuu750, xuu760, bdf) new_compare111(xuu156, xuu157, False, faf, fag) -> GT new_ltEs15(Right(xuu750), Right(xuu760), bea, ty_Integer) -> new_ltEs16(xuu750, xuu760) new_ltEs20(xuu751, xuu761, ty_Char) -> new_ltEs14(xuu751, xuu761) new_compare28(xuu89, xuu90, False, fec) -> new_compare114(xuu89, xuu90, new_ltEs23(xuu89, xuu90, fec), fec) new_lt21(xuu751, xuu761, ty_Int) -> new_lt12(xuu751, xuu761) new_lt22(xuu113, xuu116, ty_Ordering) -> new_lt7(xuu113, xuu116) new_esEs25(Right(xuu50000), Right(xuu4000), dad, ty_Bool) -> new_esEs19(xuu50000, xuu4000) new_ltEs20(xuu751, xuu761, app(ty_Ratio, fcc)) -> new_ltEs11(xuu751, xuu761, fcc) new_esEs27(xuu50001, xuu4001, app(ty_[], dgg)) -> new_esEs22(xuu50001, xuu4001, dgg) new_ltEs8(xuu75, xuu76, gg) -> new_fsEs(new_compare(xuu75, xuu76, gg)) new_ltEs24(xuu115, xuu118, app(ty_[], fc)) -> new_ltEs8(xuu115, xuu118, fc) new_esEs33(xuu750, xuu760, app(ty_[], bgd)) -> new_esEs22(xuu750, xuu760, bgd) new_primCmpInt(Pos(Succ(xuu50000)), Pos(xuu400)) -> new_primCmpNat0(Succ(xuu50000), xuu400) new_esEs40(xuu50001, xuu4001, ty_@0) -> new_esEs15(xuu50001, xuu4001) new_ltEs18(xuu82, xuu83, app(ty_[], cfa)) -> new_ltEs8(xuu82, xuu83, cfa) new_compare6(Right(xuu5000), Left(xuu400), ge, gf) -> GT new_lt16(xuu500, xuu40) -> new_esEs29(new_compare17(xuu500, xuu40)) new_lt23(xuu114, xuu117, ty_@0) -> new_lt14(xuu114, xuu117) new_esEs38(xuu114, xuu117, ty_Char) -> new_esEs24(xuu114, xuu117) new_compare8(Char(xuu5000), Char(xuu400)) -> new_primCmpNat0(xuu5000, xuu400) new_lt17(xuu750, xuu760, ty_@0) -> new_lt14(xuu750, xuu760) new_compare14(xuu5000, xuu400, ty_Bool) -> new_compare16(xuu5000, xuu400) new_primCompAux00(xuu54, EQ) -> xuu54 new_esEs12(EQ, EQ) -> True new_compare13(Just(xuu5000), Just(xuu400), cah) -> new_compare28(xuu5000, xuu400, new_esEs9(xuu5000, xuu400, cah), cah) new_sr(xuu400, xuu5001) -> new_primMulInt(xuu400, xuu5001) new_esEs6(xuu5002, xuu402, app(app(ty_Either, dch), dda)) -> new_esEs25(xuu5002, xuu402, dch, dda) new_esEs39(xuu50000, xuu4000, app(ty_Ratio, feh)) -> new_esEs13(xuu50000, xuu4000, feh) new_ltEs7(Nothing, Nothing, ead) -> True new_esEs7(xuu5000, xuu400, ty_@0) -> new_esEs15(xuu5000, xuu400) new_esEs32(xuu50000, xuu4000, ty_Integer) -> new_esEs17(xuu50000, xuu4000) new_ltEs15(Right(xuu750), Right(xuu760), bea, ty_Float) -> new_ltEs5(xuu750, xuu760) new_esEs10(xuu5000, xuu400, ty_@0) -> new_esEs15(xuu5000, xuu400) new_esEs27(xuu50001, xuu4001, ty_Float) -> new_esEs23(xuu50001, xuu4001) new_esEs25(Right(xuu50000), Right(xuu4000), dad, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_primMulNat0(Zero, Zero) -> Zero new_esEs4(xuu5000, xuu400, ty_Int) -> new_esEs16(xuu5000, xuu400) new_lt23(xuu114, xuu117, ty_Ordering) -> new_lt7(xuu114, xuu117) new_esEs14(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), che, chf, chg) -> new_asAs(new_esEs26(xuu50000, xuu4000, che), new_asAs(new_esEs27(xuu50001, xuu4001, chf), new_esEs28(xuu50002, xuu4002, chg))) new_esEs10(xuu5000, xuu400, ty_Bool) -> new_esEs19(xuu5000, xuu400) new_esEs26(xuu50000, xuu4000, ty_Double) -> new_esEs20(xuu50000, xuu4000) new_esEs39(xuu50000, xuu4000, ty_Char) -> new_esEs24(xuu50000, xuu4000) new_ltEs19(xuu75, xuu76, app(ty_[], gg)) -> new_ltEs8(xuu75, xuu76, gg) new_primMulNat0(Succ(xuu40000), Succ(xuu500100)) -> new_primPlusNat0(new_primMulNat0(xuu40000, Succ(xuu500100)), Succ(xuu500100)) new_ltEs7(Just(xuu750), Nothing, ead) -> False new_lt22(xuu113, xuu116, app(app(app(ty_@3, da), db), dc)) -> new_lt4(xuu113, xuu116, da, db, dc) new_compare16(True, True) -> EQ new_compare9(@0, @0) -> EQ new_ltEs22(xuu752, xuu762, ty_Float) -> new_ltEs5(xuu752, xuu762) new_esEs25(Right(xuu50000), Right(xuu4000), dad, ty_Integer) -> new_esEs17(xuu50000, xuu4000) new_esEs7(xuu5000, xuu400, app(app(app(ty_@3, ddc), ddd), dde)) -> new_esEs14(xuu5000, xuu400, ddc, ddd, dde) new_ltEs23(xuu89, xuu90, app(app(ty_Either, cbe), cbf)) -> new_ltEs15(xuu89, xuu90, cbe, cbf) new_esEs4(xuu5000, xuu400, ty_Integer) -> new_esEs17(xuu5000, xuu400) new_esEs21(Nothing, Just(xuu4000), dab) -> False new_esEs21(Just(xuu50000), Nothing, dab) -> False new_esEs5(xuu5001, xuu401, app(app(ty_Either, dbf), dbg)) -> new_esEs25(xuu5001, xuu401, dbf, dbg) new_esEs40(xuu50001, xuu4001, ty_Ordering) -> new_esEs12(xuu50001, xuu4001) new_esEs4(xuu5000, xuu400, ty_Ordering) -> new_esEs12(xuu5000, xuu400) new_ltEs13(False, True) -> True new_ltEs13(False, False) -> True new_esEs21(Nothing, Nothing, dab) -> True new_ltEs7(Just(xuu750), Just(xuu760), app(ty_Ratio, eae)) -> new_ltEs11(xuu750, xuu760, eae) new_esEs20(Double(xuu50000, xuu50001), Double(xuu4000, xuu4001)) -> new_esEs16(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) new_ltEs19(xuu75, xuu76, app(ty_Ratio, egd)) -> new_ltEs11(xuu75, xuu76, egd) new_compare14(xuu5000, xuu400, ty_Ordering) -> new_compare19(xuu5000, xuu400) new_lt23(xuu114, xuu117, ty_Char) -> new_lt5(xuu114, xuu117) new_esEs40(xuu50001, xuu4001, ty_Int) -> new_esEs16(xuu50001, xuu4001) new_lt17(xuu750, xuu760, ty_Char) -> new_lt5(xuu750, xuu760) new_esEs8(xuu5000, xuu400, app(ty_Maybe, cgh)) -> new_esEs21(xuu5000, xuu400, cgh) new_esEs27(xuu50001, xuu4001, ty_Double) -> new_esEs20(xuu50001, xuu4001) new_lt19(xuu126, xuu128, ty_Bool) -> new_lt8(xuu126, xuu128) new_esEs25(Left(xuu50000), Left(xuu4000), app(app(app(ty_@3, eag), eah), eba), dae) -> new_esEs14(xuu50000, xuu4000, eag, eah, eba) new_compare19(GT, LT) -> GT new_esEs33(xuu750, xuu760, ty_Double) -> new_esEs20(xuu750, xuu760) new_ltEs15(Right(xuu750), Right(xuu760), bea, ty_Int) -> new_ltEs9(xuu750, xuu760) new_ltEs22(xuu752, xuu762, app(app(ty_Either, bcb), bcc)) -> new_ltEs15(xuu752, xuu762, bcb, bcc) new_esEs4(xuu5000, xuu400, ty_Bool) -> new_esEs19(xuu5000, xuu400) new_ltEs20(xuu751, xuu761, app(ty_[], bhg)) -> new_ltEs8(xuu751, xuu761, bhg) new_esEs37(xuu113, xuu116, app(ty_[], ce)) -> new_esEs22(xuu113, xuu116, ce) new_esEs10(xuu5000, xuu400, ty_Int) -> new_esEs16(xuu5000, xuu400) new_esEs39(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_esEs32(xuu50000, xuu4000, ty_Float) -> new_esEs23(xuu50000, xuu4000) new_primCompAux0(xuu5000, xuu400, xuu50, h) -> new_primCompAux00(xuu50, new_compare14(xuu5000, xuu400, h)) new_ltEs18(xuu82, xuu83, app(ty_Ratio, egb)) -> new_ltEs11(xuu82, xuu83, egb) new_esEs23(Float(xuu50000, xuu50001), Float(xuu4000, xuu4001)) -> new_esEs16(new_sr(xuu50000, xuu4001), new_sr(xuu50001, xuu4000)) new_esEs32(xuu50000, xuu4000, app(ty_[], faa)) -> new_esEs22(xuu50000, xuu4000, faa) new_esEs15(@0, @0) -> True new_lt23(xuu114, xuu117, app(ty_Maybe, eh)) -> new_lt18(xuu114, xuu117, eh) new_ltEs21(xuu127, xuu129, app(app(ty_@2, cdd), cde)) -> new_ltEs17(xuu127, xuu129, cdd, cde) new_esEs32(xuu50000, xuu4000, ty_Double) -> new_esEs20(xuu50000, xuu4000) new_ltEs15(Left(xuu750), Left(xuu760), ty_Char, bch) -> new_ltEs14(xuu750, xuu760) new_ltEs19(xuu75, xuu76, app(ty_Maybe, ead)) -> new_ltEs7(xuu75, xuu76, ead) new_esEs37(xuu113, xuu116, ty_Float) -> new_esEs23(xuu113, xuu116) new_primEqInt(Neg(Succ(xuu500000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu40000))) -> False new_ltEs16(xuu75, xuu76) -> new_fsEs(new_compare17(xuu75, xuu76)) new_esEs7(xuu5000, xuu400, app(ty_Maybe, ddh)) -> new_esEs21(xuu5000, xuu400, ddh) new_compare([], [], h) -> EQ new_lt19(xuu126, xuu128, app(app(ty_Either, cec), ced)) -> new_lt13(xuu126, xuu128, cec, ced) new_esEs10(xuu5000, xuu400, ty_Ordering) -> new_esEs12(xuu5000, xuu400) new_ltEs7(Just(xuu750), Just(xuu760), app(ty_[], bfc)) -> new_ltEs8(xuu750, xuu760, bfc) new_esEs25(Right(xuu50000), Right(xuu4000), dad, ty_@0) -> new_esEs15(xuu50000, xuu4000) new_esEs9(xuu5000, xuu400, ty_Bool) -> new_esEs19(xuu5000, xuu400) new_lt17(xuu750, xuu760, app(ty_Maybe, bhc)) -> new_lt18(xuu750, xuu760, bhc) new_primEqInt(Pos(Succ(xuu500000)), Pos(Succ(xuu40000))) -> new_primEqNat0(xuu500000, xuu40000) new_esEs39(xuu50000, xuu4000, ty_Int) -> new_esEs16(xuu50000, xuu4000) new_ltEs15(Left(xuu750), Left(xuu760), ty_Double, bch) -> new_ltEs12(xuu750, xuu760) new_ltEs15(Left(xuu750), Left(xuu760), ty_Ordering, bch) -> new_ltEs4(xuu750, xuu760) new_esEs10(xuu5000, xuu400, ty_Integer) -> new_esEs17(xuu5000, xuu400) new_lt22(xuu113, xuu116, ty_@0) -> new_lt14(xuu113, xuu116) new_esEs36(xuu751, xuu761, app(app(ty_@2, bbd), bbe)) -> new_esEs18(xuu751, xuu761, bbd, bbe) new_esEs6(xuu5002, xuu402, app(app(app(ty_@3, dca), dcb), dcc)) -> new_esEs14(xuu5002, xuu402, dca, dcb, dcc) new_esEs8(xuu5000, xuu400, ty_@0) -> new_esEs15(xuu5000, xuu400) new_esEs25(Left(xuu50000), Left(xuu4000), ty_Float, dae) -> new_esEs23(xuu50000, xuu4000) new_ltEs12(xuu75, xuu76) -> new_fsEs(new_compare11(xuu75, xuu76)) new_esEs26(xuu50000, xuu4000, ty_Float) -> new_esEs23(xuu50000, xuu4000) new_esEs28(xuu50002, xuu4002, ty_Char) -> new_esEs24(xuu50002, xuu4002) new_compare112(xuu185, xuu186, xuu187, xuu188, xuu189, xuu190, True, xuu192, ege, egf, egg) -> new_compare113(xuu185, xuu186, xuu187, xuu188, xuu189, xuu190, True, ege, egf, egg) new_ltEs24(xuu115, xuu118, app(ty_Ratio, feg)) -> new_ltEs11(xuu115, xuu118, feg) new_esEs11(xuu5001, xuu401, ty_Bool) -> new_esEs19(xuu5001, xuu401) new_lt17(xuu750, xuu760, ty_Ordering) -> new_lt7(xuu750, xuu760) new_esEs35(xuu750, xuu760, app(ty_Ratio, fdh)) -> new_esEs13(xuu750, xuu760, fdh) new_primEqInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> False new_primEqInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> False new_ltEs4(EQ, GT) -> True new_primCmpInt(Neg(Zero), Neg(Succ(xuu4000))) -> new_primCmpNat0(Succ(xuu4000), Zero) new_lt17(xuu750, xuu760, app(ty_Ratio, fcb)) -> new_lt11(xuu750, xuu760, fcb) new_esEs40(xuu50001, xuu4001, ty_Char) -> new_esEs24(xuu50001, xuu4001) new_esEs25(Left(xuu50000), Left(xuu4000), app(ty_[], ebe), dae) -> new_esEs22(xuu50000, xuu4000, ebe) new_esEs9(xuu5000, xuu400, ty_Integer) -> new_esEs17(xuu5000, xuu400) new_esEs38(xuu114, xuu117, ty_@0) -> new_esEs15(xuu114, xuu117) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_lt22(xuu113, xuu116, ty_Double) -> new_lt9(xuu113, xuu116) new_lt23(xuu114, xuu117, app(ty_Ratio, fef)) -> new_lt11(xuu114, xuu117, fef) new_esEs25(Left(xuu50000), Left(xuu4000), app(ty_Ratio, eaf), dae) -> new_esEs13(xuu50000, xuu4000, eaf) new_lt21(xuu751, xuu761, ty_Bool) -> new_lt8(xuu751, xuu761) new_compare14(xuu5000, xuu400, app(ty_[], ba)) -> new_compare(xuu5000, xuu400, ba) new_ltEs23(xuu89, xuu90, ty_Char) -> new_ltEs14(xuu89, xuu90) new_compare14(xuu5000, xuu400, ty_Double) -> new_compare11(xuu5000, xuu400) new_esEs27(xuu50001, xuu4001, ty_Char) -> new_esEs24(xuu50001, xuu4001) new_ltEs7(Just(xuu750), Just(xuu760), app(ty_Maybe, bga)) -> new_ltEs7(xuu750, xuu760, bga) new_esEs34(xuu126, xuu128, app(ty_[], cdf)) -> new_esEs22(xuu126, xuu128, cdf) new_ltEs23(xuu89, xuu90, app(ty_[], cba)) -> new_ltEs8(xuu89, xuu90, cba) new_compare19(LT, LT) -> EQ new_ltEs7(Just(xuu750), Just(xuu760), ty_Double) -> new_ltEs12(xuu750, xuu760) new_esEs21(Just(xuu50000), Just(xuu4000), app(app(ty_Either, fbh), fca)) -> new_esEs25(xuu50000, xuu4000, fbh, fca) new_esEs11(xuu5001, xuu401, app(ty_[], efc)) -> new_esEs22(xuu5001, xuu401, efc) new_esEs37(xuu113, xuu116, ty_Integer) -> new_esEs17(xuu113, xuu116) new_lt17(xuu750, xuu760, app(ty_[], bgd)) -> new_lt6(xuu750, xuu760, bgd) new_not(False) -> True new_esEs36(xuu751, xuu761, app(ty_[], bae)) -> new_esEs22(xuu751, xuu761, bae) new_esEs28(xuu50002, xuu4002, ty_Ordering) -> new_esEs12(xuu50002, xuu4002) new_esEs28(xuu50002, xuu4002, app(ty_Ratio, dhb)) -> new_esEs13(xuu50002, xuu4002, dhb) new_esEs40(xuu50001, xuu4001, app(ty_Ratio, fgb)) -> new_esEs13(xuu50001, xuu4001, fgb) new_esEs38(xuu114, xuu117, ty_Float) -> new_esEs23(xuu114, xuu117) new_esEs9(xuu5000, xuu400, app(ty_[], eea)) -> new_esEs22(xuu5000, xuu400, eea) new_ltEs20(xuu751, xuu761, app(app(ty_@2, caf), cag)) -> new_ltEs17(xuu751, xuu761, caf, cag) new_esEs37(xuu113, xuu116, ty_Bool) -> new_esEs19(xuu113, xuu116) new_esEs28(xuu50002, xuu4002, ty_Int) -> new_esEs16(xuu50002, xuu4002) new_lt17(xuu750, xuu760, ty_Integer) -> new_lt16(xuu750, xuu760) new_ltEs20(xuu751, xuu761, app(app(app(ty_@3, bhh), caa), cab)) -> new_ltEs10(xuu751, xuu761, bhh, caa, cab) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs36(xuu751, xuu761, app(app(ty_Either, bba), bbb)) -> new_esEs25(xuu751, xuu761, bba, bbb) new_esEs7(xuu5000, xuu400, ty_Int) -> new_esEs16(xuu5000, xuu400) new_primPlusNat0(Succ(xuu44200), Succ(xuu13900)) -> Succ(Succ(new_primPlusNat0(xuu44200, xuu13900))) new_esEs4(xuu5000, xuu400, ty_Float) -> new_esEs23(xuu5000, xuu400) new_compare14(xuu5000, xuu400, app(app(app(ty_@3, bb), bc), bd)) -> new_compare5(xuu5000, xuu400, bb, bc, bd) new_ltEs15(Left(xuu750), Left(xuu760), ty_Bool, bch) -> new_ltEs13(xuu750, xuu760) new_esEs28(xuu50002, xuu4002, app(app(ty_Either, eab), eac)) -> new_esEs25(xuu50002, xuu4002, eab, eac) new_ltEs18(xuu82, xuu83, ty_Int) -> new_ltEs9(xuu82, xuu83) new_ltEs15(Left(xuu750), Left(xuu760), ty_Int, bch) -> new_ltEs9(xuu750, xuu760) new_esEs10(xuu5000, xuu400, app(ty_Maybe, fdd)) -> new_esEs21(xuu5000, xuu400, fdd) new_esEs36(xuu751, xuu761, ty_Double) -> new_esEs20(xuu751, xuu761) new_esEs37(xuu113, xuu116, app(app(ty_@2, dg), dh)) -> new_esEs18(xuu113, xuu116, dg, dh) new_compare27(xuu82, xuu83, True, ceh, ega) -> EQ new_ltEs21(xuu127, xuu129, ty_Ordering) -> new_ltEs4(xuu127, xuu129) new_ltEs19(xuu75, xuu76, app(app(ty_@2, bhf), bge)) -> new_ltEs17(xuu75, xuu76, bhf, bge) new_esEs4(xuu5000, xuu400, app(app(ty_Either, dad), dae)) -> new_esEs25(xuu5000, xuu400, dad, dae) new_ltEs4(GT, LT) -> False new_esEs21(Just(xuu50000), Just(xuu4000), app(ty_Ratio, fah)) -> new_esEs13(xuu50000, xuu4000, fah) new_lt21(xuu751, xuu761, app(ty_[], bae)) -> new_lt6(xuu751, xuu761, bae) new_ltEs19(xuu75, xuu76, app(app(app(ty_@3, bad), hb), hc)) -> new_ltEs10(xuu75, xuu76, bad, hb, hc) new_compare110(xuu200, xuu201, xuu202, xuu203, False, efg, efh) -> GT new_esEs36(xuu751, xuu761, app(ty_Ratio, fea)) -> new_esEs13(xuu751, xuu761, fea) new_ltEs21(xuu127, xuu129, ty_Bool) -> new_ltEs13(xuu127, xuu129) new_ltEs7(Just(xuu750), Just(xuu760), ty_@0) -> new_ltEs6(xuu750, xuu760) new_esEs7(xuu5000, xuu400, ty_Ordering) -> new_esEs12(xuu5000, xuu400) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_ltEs7(Just(xuu750), Just(xuu760), ty_Integer) -> new_ltEs16(xuu750, xuu760) new_esEs9(xuu5000, xuu400, ty_Double) -> new_esEs20(xuu5000, xuu400) new_esEs32(xuu50000, xuu4000, app(app(app(ty_@3, ehc), ehd), ehe)) -> new_esEs14(xuu50000, xuu4000, ehc, ehd, ehe) new_esEs25(Right(xuu50000), Right(xuu4000), dad, ty_Char) -> new_esEs24(xuu50000, xuu4000) new_lt23(xuu114, xuu117, ty_Double) -> new_lt9(xuu114, xuu117) new_esEs21(Just(xuu50000), Just(xuu4000), ty_@0) -> new_esEs15(xuu50000, xuu4000) new_esEs35(xuu750, xuu760, ty_Integer) -> new_esEs17(xuu750, xuu760) new_lt22(xuu113, xuu116, app(ty_Ratio, fee)) -> new_lt11(xuu113, xuu116, fee) new_lt21(xuu751, xuu761, ty_Integer) -> new_lt16(xuu751, xuu761) new_ltEs22(xuu752, xuu762, ty_@0) -> new_ltEs6(xuu752, xuu762) new_ltEs22(xuu752, xuu762, app(app(app(ty_@3, bbg), bbh), bca)) -> new_ltEs10(xuu752, xuu762, bbg, bbh, bca) new_lt22(xuu113, xuu116, app(ty_Maybe, df)) -> new_lt18(xuu113, xuu116, df) new_ltEs24(xuu115, xuu118, ty_Bool) -> new_ltEs13(xuu115, xuu118) new_esEs6(xuu5002, xuu402, ty_Float) -> new_esEs23(xuu5002, xuu402) new_ltEs21(xuu127, xuu129, app(ty_[], cce)) -> new_ltEs8(xuu127, xuu129, cce) new_esEs35(xuu750, xuu760, ty_Char) -> new_esEs24(xuu750, xuu760) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(Left(xuu50000), Left(xuu4000), ty_Ordering, dae) -> new_esEs12(xuu50000, xuu4000) new_esEs11(xuu5001, xuu401, ty_@0) -> new_esEs15(xuu5001, xuu401) new_compare11(Double(xuu5000, Neg(xuu50010)), Double(xuu400, Neg(xuu4010))) -> new_compare12(new_sr(xuu5000, Neg(xuu4010)), new_sr(Neg(xuu50010), xuu400)) new_esEs11(xuu5001, xuu401, ty_Double) -> new_esEs20(xuu5001, xuu401) new_lt8(xuu500, xuu40) -> new_esEs29(new_compare16(xuu500, xuu40)) new_esEs21(Just(xuu50000), Just(xuu4000), ty_Double) -> new_esEs20(xuu50000, xuu4000) new_esEs35(xuu750, xuu760, ty_Bool) -> new_esEs19(xuu750, xuu760) new_lt21(xuu751, xuu761, ty_Float) -> new_lt15(xuu751, xuu761) new_ltEs13(True, False) -> False new_esEs5(xuu5001, xuu401, ty_Int) -> new_esEs16(xuu5001, xuu401) new_esEs32(xuu50000, xuu4000, ty_Int) -> new_esEs16(xuu50000, xuu4000) new_esEs33(xuu750, xuu760, app(ty_Maybe, bhc)) -> new_esEs21(xuu750, xuu760, bhc) new_ltEs24(xuu115, xuu118, app(app(ty_Either, fh), ga)) -> new_ltEs15(xuu115, xuu118, fh, ga) new_lt5(xuu500, xuu40) -> new_esEs29(new_compare8(xuu500, xuu40)) new_esEs34(xuu126, xuu128, ty_@0) -> new_esEs15(xuu126, xuu128) new_lt23(xuu114, xuu117, ty_Bool) -> new_lt8(xuu114, xuu117) new_esEs34(xuu126, xuu128, app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs14(xuu126, xuu128, cdh, cea, ceb) new_lt21(xuu751, xuu761, app(ty_Maybe, bbc)) -> new_lt18(xuu751, xuu761, bbc) new_esEs9(xuu5000, xuu400, app(ty_Maybe, edh)) -> new_esEs21(xuu5000, xuu400, edh) new_esEs26(xuu50000, xuu4000, ty_Bool) -> new_esEs19(xuu50000, xuu4000) new_esEs31(xuu50001, xuu4001, ty_Int) -> new_esEs16(xuu50001, xuu4001) new_lt20(xuu750, xuu760, app(ty_Ratio, fdh)) -> new_lt11(xuu750, xuu760, fdh) new_esEs40(xuu50001, xuu4001, app(app(ty_Either, fhb), fhc)) -> new_esEs25(xuu50001, xuu4001, fhb, fhc) new_lt22(xuu113, xuu116, ty_Int) -> new_lt12(xuu113, xuu116) new_esEs5(xuu5001, xuu401, ty_Ordering) -> new_esEs12(xuu5001, xuu401) new_ltEs23(xuu89, xuu90, ty_Bool) -> new_ltEs13(xuu89, xuu90) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs10(xuu5000, xuu400, app(app(app(ty_@3, fcg), fch), fda)) -> new_esEs14(xuu5000, xuu400, fcg, fch, fda) new_lt17(xuu750, xuu760, app(app(ty_Either, bha), bhb)) -> new_lt13(xuu750, xuu760, bha, bhb) new_esEs11(xuu5001, xuu401, app(app(app(ty_@3, eee), eef), eeg)) -> new_esEs14(xuu5001, xuu401, eee, eef, eeg) new_ltEs7(Just(xuu750), Just(xuu760), ty_Char) -> new_ltEs14(xuu750, xuu760) new_ltEs15(Right(xuu750), Right(xuu760), bea, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs10(xuu750, xuu760, bec, bed, bee) new_lt20(xuu750, xuu760, ty_@0) -> new_lt14(xuu750, xuu760) new_ltEs23(xuu89, xuu90, app(ty_Maybe, cbg)) -> new_ltEs7(xuu89, xuu90, cbg) new_primCmpNat0(Succ(xuu50000), Succ(xuu4000)) -> new_primCmpNat0(xuu50000, xuu4000) new_esEs34(xuu126, xuu128, ty_Double) -> new_esEs20(xuu126, xuu128) new_esEs25(Left(xuu50000), Left(xuu4000), ty_Int, dae) -> new_esEs16(xuu50000, xuu4000) new_ltEs23(xuu89, xuu90, ty_Double) -> new_ltEs12(xuu89, xuu90) new_esEs22([], [], dac) -> True new_compare7(Float(xuu5000, Pos(xuu50010)), Float(xuu400, Neg(xuu4010))) -> new_compare12(new_sr(xuu5000, Pos(xuu4010)), new_sr(Neg(xuu50010), xuu400)) new_compare7(Float(xuu5000, Neg(xuu50010)), Float(xuu400, Pos(xuu4010))) -> new_compare12(new_sr(xuu5000, Neg(xuu4010)), new_sr(Pos(xuu50010), xuu400)) new_ltEs22(xuu752, xuu762, app(ty_Maybe, bcd)) -> new_ltEs7(xuu752, xuu762, bcd) new_esEs40(xuu50001, xuu4001, ty_Float) -> new_esEs23(xuu50001, xuu4001) new_esEs30(xuu50000, xuu4000, ty_Int) -> new_esEs16(xuu50000, xuu4000) new_compare110(xuu200, xuu201, xuu202, xuu203, True, efg, efh) -> LT new_esEs37(xuu113, xuu116, ty_Char) -> new_esEs24(xuu113, xuu116) new_esEs27(xuu50001, xuu4001, app(app(ty_Either, dgh), dha)) -> new_esEs25(xuu50001, xuu4001, dgh, dha) new_esEs28(xuu50002, xuu4002, ty_Float) -> new_esEs23(xuu50002, xuu4002) new_ltEs20(xuu751, xuu761, ty_Ordering) -> new_ltEs4(xuu751, xuu761) new_lt23(xuu114, xuu117, ty_Int) -> new_lt12(xuu114, xuu117) new_esEs11(xuu5001, xuu401, app(ty_Maybe, efb)) -> new_esEs21(xuu5001, xuu401, efb) new_lt20(xuu750, xuu760, app(ty_Maybe, baa)) -> new_lt18(xuu750, xuu760, baa) new_compare19(EQ, LT) -> GT new_compare29(xuu126, xuu127, xuu128, xuu129, True, ccd, cdg) -> EQ new_esEs38(xuu114, xuu117, app(ty_Ratio, fef)) -> new_esEs13(xuu114, xuu117, fef) new_esEs38(xuu114, xuu117, app(app(ty_@2, fa), fb)) -> new_esEs18(xuu114, xuu117, fa, fb) new_ltEs18(xuu82, xuu83, app(app(ty_@2, cfh), cga)) -> new_ltEs17(xuu82, xuu83, cfh, cga) new_compare12(xuu500, xuu40) -> new_primCmpInt(xuu500, xuu40) new_esEs39(xuu50000, xuu4000, app(app(ty_@2, ffd), ffe)) -> new_esEs18(xuu50000, xuu4000, ffd, ffe) new_esEs4(xuu5000, xuu400, app(app(ty_@2, chh), daa)) -> new_esEs18(xuu5000, xuu400, chh, daa) new_ltEs21(xuu127, xuu129, ty_Int) -> new_ltEs9(xuu127, xuu129) new_ltEs22(xuu752, xuu762, ty_Bool) -> new_ltEs13(xuu752, xuu762) new_lt23(xuu114, xuu117, ty_Float) -> new_lt15(xuu114, xuu117) new_esEs26(xuu50000, xuu4000, app(app(ty_Either, dff), dfg)) -> new_esEs25(xuu50000, xuu4000, dff, dfg) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs29(LT) -> True new_lt21(xuu751, xuu761, app(ty_Ratio, fea)) -> new_lt11(xuu751, xuu761, fea) new_esEs8(xuu5000, xuu400, app(app(app(ty_@3, cgc), cgd), cge)) -> new_esEs14(xuu5000, xuu400, cgc, cgd, cge) new_ltEs24(xuu115, xuu118, ty_@0) -> new_ltEs6(xuu115, xuu118) new_esEs35(xuu750, xuu760, app(ty_Maybe, baa)) -> new_esEs21(xuu750, xuu760, baa) new_lt21(xuu751, xuu761, ty_Ordering) -> new_lt7(xuu751, xuu761) new_esEs36(xuu751, xuu761, ty_@0) -> new_esEs15(xuu751, xuu761) new_esEs5(xuu5001, xuu401, ty_Float) -> new_esEs23(xuu5001, xuu401) new_ltEs21(xuu127, xuu129, app(app(app(ty_@3, ccf), ccg), cch)) -> new_ltEs10(xuu127, xuu129, ccf, ccg, cch) new_ltEs19(xuu75, xuu76, ty_Ordering) -> new_ltEs4(xuu75, xuu76) new_lt20(xuu750, xuu760, ty_Char) -> new_lt5(xuu750, xuu760) new_lt20(xuu750, xuu760, ty_Integer) -> new_lt16(xuu750, xuu760) new_primEqNat0(Zero, Zero) -> True new_esEs36(xuu751, xuu761, ty_Char) -> new_esEs24(xuu751, xuu761) new_esEs37(xuu113, xuu116, app(ty_Ratio, fee)) -> new_esEs13(xuu113, xuu116, fee) new_ltEs20(xuu751, xuu761, ty_Int) -> new_ltEs9(xuu751, xuu761) new_ltEs14(xuu75, xuu76) -> new_fsEs(new_compare8(xuu75, xuu76)) new_esEs22(:(xuu50000, xuu50001), :(xuu4000, xuu4001), dac) -> new_asAs(new_esEs32(xuu50000, xuu4000, dac), new_esEs22(xuu50001, xuu4001, dac)) new_esEs9(xuu5000, xuu400, app(app(app(ty_@3, edc), edd), ede)) -> new_esEs14(xuu5000, xuu400, edc, edd, ede) new_lt20(xuu750, xuu760, app(ty_[], ha)) -> new_lt6(xuu750, xuu760, ha) new_esEs36(xuu751, xuu761, ty_Bool) -> new_esEs19(xuu751, xuu761) new_compare14(xuu5000, xuu400, app(ty_Maybe, bg)) -> new_compare13(xuu5000, xuu400, bg) new_ltEs4(GT, GT) -> True new_esEs6(xuu5002, xuu402, ty_Int) -> new_esEs16(xuu5002, xuu402) new_lt22(xuu113, xuu116, ty_Float) -> new_lt15(xuu113, xuu116) new_asAs(False, xuu151) -> False new_ltEs7(Just(xuu750), Just(xuu760), app(app(ty_Either, bfg), bfh)) -> new_ltEs15(xuu750, xuu760, bfg, bfh) new_compare112(xuu185, xuu186, xuu187, xuu188, xuu189, xuu190, False, xuu192, ege, egf, egg) -> new_compare113(xuu185, xuu186, xuu187, xuu188, xuu189, xuu190, xuu192, ege, egf, egg) new_esEs35(xuu750, xuu760, ty_@0) -> new_esEs15(xuu750, xuu760) new_ltEs23(xuu89, xuu90, ty_@0) -> new_ltEs6(xuu89, xuu90) new_esEs34(xuu126, xuu128, app(ty_Maybe, cee)) -> new_esEs21(xuu126, xuu128, cee) new_esEs26(xuu50000, xuu4000, app(ty_Ratio, def)) -> new_esEs13(xuu50000, xuu4000, def) new_ltEs15(Left(xuu750), Left(xuu760), app(ty_Ratio, fad), bch) -> new_ltEs11(xuu750, xuu760, fad) new_compare18(@2(xuu5000, xuu5001), @2(xuu400, xuu401), ccb, ccc) -> new_compare29(xuu5000, xuu5001, xuu400, xuu401, new_asAs(new_esEs10(xuu5000, xuu400, ccb), new_esEs11(xuu5001, xuu401, ccc)), ccb, ccc) new_esEs35(xuu750, xuu760, ty_Double) -> new_esEs20(xuu750, xuu760) new_lt19(xuu126, xuu128, ty_Char) -> new_lt5(xuu126, xuu128) new_esEs21(Just(xuu50000), Just(xuu4000), ty_Bool) -> new_esEs19(xuu50000, xuu4000) new_ltEs11(xuu75, xuu76, egd) -> new_fsEs(new_compare15(xuu75, xuu76, egd)) new_esEs6(xuu5002, xuu402, ty_Ordering) -> new_esEs12(xuu5002, xuu402) new_esEs21(Just(xuu50000), Just(xuu4000), ty_Char) -> new_esEs24(xuu50000, xuu4000) new_lt19(xuu126, xuu128, app(ty_[], cdf)) -> new_lt6(xuu126, xuu128, cdf) new_esEs36(xuu751, xuu761, ty_Integer) -> new_esEs17(xuu751, xuu761) new_esEs38(xuu114, xuu117, app(app(ty_Either, ef), eg)) -> new_esEs25(xuu114, xuu117, ef, eg) new_lt19(xuu126, xuu128, ty_Integer) -> new_lt16(xuu126, xuu128) new_ltEs24(xuu115, xuu118, ty_Char) -> new_ltEs14(xuu115, xuu118) new_ltEs7(Just(xuu750), Just(xuu760), ty_Float) -> new_ltEs5(xuu750, xuu760) new_esEs19(True, True) -> True new_esEs33(xuu750, xuu760, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs14(xuu750, xuu760, bgf, bgg, bgh) new_esEs27(xuu50001, xuu4001, app(app(ty_@2, dgd), dge)) -> new_esEs18(xuu50001, xuu4001, dgd, dge) new_ltEs24(xuu115, xuu118, ty_Double) -> new_ltEs12(xuu115, xuu118) The set Q consists of the following terms: new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, x2, x3) new_lt12(x0, x1) new_ltEs23(x0, x1, ty_@0) new_lt20(x0, x1, ty_Integer) new_esEs25(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs12(EQ, EQ) new_ltEs23(x0, x1, ty_Bool) new_esEs7(x0, x1, app(ty_[], x2)) new_compare19(LT, GT) new_compare19(GT, LT) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs27(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Integer) new_lt14(x0, x1) new_esEs27(x0, x1, ty_@0) new_lt19(x0, x1, ty_Integer) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(Right(x0), Right(x1), x2, ty_@0) new_esEs4(x0, x1, ty_Float) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(LT, LT) new_ltEs7(Just(x0), Nothing, x1) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Right(x0), Right(x1), x2, ty_Float) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Float) new_compare113(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs40(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Int) new_esEs25(Right(x0), Right(x1), x2, ty_Bool) new_primPlusNat0(Succ(x0), Zero) new_esEs19(False, False) new_esEs32(x0, x1, ty_Integer) new_compare10(x0, x1, True, x2, x3) new_lt17(x0, x1, app(app(ty_@2, x2), x3)) new_compare115(x0, x1, x2, x3, True, x4, x5, x6) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs23(Float(x0, x1), Float(x2, x3)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Double) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt16(x0, x1) new_compare11(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs20(x0, x1, ty_Char) new_compare14(x0, x1, ty_@0) new_compare11(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare11(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs27(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Double) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs40(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare(:(x0, x1), :(x2, x3), x4) new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, x2, x3, False, x4, x5) new_esEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Float) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs25(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt20(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_Integer) new_esEs25(Right(x0), Right(x1), x2, ty_Char) new_ltEs18(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Float) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs40(x0, x1, ty_@0) new_lt17(x0, x1, ty_Float) new_esEs40(x0, x1, ty_Ordering) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Float) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs29(GT) new_ltEs23(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Float) new_pePe(True, x0) new_lt11(x0, x1, x2) new_ltEs19(x0, x1, ty_Bool) new_esEs25(Right(x0), Right(x1), x2, ty_Integer) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(False, True) new_ltEs13(True, False) new_compare114(x0, x1, False, x2) new_esEs4(x0, x1, ty_Integer) new_ltEs15(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs25(Left(x0), Left(x1), ty_Ordering, x2) new_compare114(x0, x1, True, x2) new_lt18(x0, x1, x2) new_lt19(x0, x1, ty_@0) new_compare27(x0, x1, False, x2, x3) new_esEs36(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Float) new_esEs22([], :(x0, x1), x2) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Right(x0), Right(x1), x2, ty_Integer) new_compare14(x0, x1, ty_Ordering) new_ltEs16(x0, x1) new_esEs31(x0, x1, ty_Integer) new_compare18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs34(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_@0) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(ty_[], x2)) new_compare111(x0, x1, False, x2, x3) new_lt19(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Ordering) new_esEs21(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_sr(x0, x1) new_lt19(x0, x1, ty_Float) new_asAs(True, x0) new_esEs28(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare115(x0, x1, x2, x3, False, x4, x5, x6) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Nothing, Nothing, x0) new_esEs9(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Bool) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs9(x0, x1, ty_Double) new_lt20(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Char) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs21(Just(x0), Just(x1), ty_Ordering) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs26(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Bool) new_lt21(x0, x1, ty_Integer) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs4(GT, EQ) new_esEs25(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs4(EQ, GT) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs21(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_@0) new_compare(:(x0, x1), [], x2) new_ltEs19(x0, x1, ty_@0) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_compare110(x0, x1, x2, x3, False, x4, x5) new_ltEs18(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Float) new_compare([], [], x0) new_esEs11(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Integer) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(x0, x1, x2) new_compare28(x0, x1, True, x2) new_ltEs24(x0, x1, ty_Float) new_esEs4(x0, x1, ty_@0) new_esEs25(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs15(Right(x0), Right(x1), x2, ty_@0) new_ltEs23(x0, x1, ty_Float) new_esEs17(Integer(x0), Integer(x1)) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(@0, @0) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Left(x0), Left(x1), ty_Double, x2) new_esEs21(Just(x0), Just(x1), ty_Char) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Bool) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, False, x2, x3) new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(EQ, LT) new_ltEs4(LT, EQ) new_ltEs18(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Integer) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs25(Left(x0), Left(x1), ty_Char, x2) new_ltEs4(GT, GT) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs25(Right(x0), Right(x1), x2, ty_Float) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Float) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_ltEs7(Just(x0), Just(x1), ty_Integer) new_esEs5(x0, x1, ty_Bool) new_esEs25(Left(x0), Right(x1), x2, x3) new_esEs25(Right(x0), Left(x1), x2, x3) new_ltEs14(x0, x1) new_compare([], :(x0, x1), x2) new_esEs26(x0, x1, ty_Float) new_esEs35(x0, x1, ty_Integer) new_compare26(x0, x1, True, x2, x3) new_esEs25(Left(x0), Left(x1), ty_Int, x2) new_ltEs18(x0, x1, ty_Double) new_compare110(x0, x1, x2, x3, True, x4, x5) new_esEs40(x0, x1, ty_Integer) new_esEs19(False, True) new_esEs19(True, False) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Int) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Bool) new_ltEs15(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare13(Nothing, Just(x0), x1) new_esEs11(x0, x1, ty_Bool) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare14(x0, x1, app(ty_[], x2)) new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Int) new_sr0(Integer(x0), Integer(x1)) new_lt22(x0, x1, ty_Bool) new_ltEs6(x0, x1) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt17(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs25(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Int) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs25(Right(x0), Right(x1), x2, ty_Int) new_lt17(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Int) new_esEs21(Just(x0), Nothing, x1) new_esEs37(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs32(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Double) new_esEs40(x0, x1, ty_Bool) new_lt17(x0, x1, ty_Double) new_ltEs7(Just(x0), Just(x1), ty_@0) new_esEs37(x0, x1, ty_Ordering) new_pePe(False, x0) new_primCompAux00(x0, LT) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Char) new_compare14(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs21(Just(x0), Just(x1), ty_Float) new_lt22(x0, x1, ty_Char) new_ltEs15(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primEqNat0(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs9(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(Nothing, Nothing, x0) new_esEs9(x0, x1, ty_Integer) new_esEs21(Just(x0), Just(x1), ty_Bool) new_esEs37(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare27(x0, x1, True, x2, x3) new_esEs6(x0, x1, ty_Float) new_ltEs7(Nothing, Just(x0), x1) new_esEs8(x0, x1, ty_Char) new_lt21(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_compare14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(ty_[], x2)) new_compare16(False, True) new_compare16(True, False) new_compare25(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare11(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare14(x0, x1, ty_Double) new_primCmpNat0(Zero, Succ(x0)) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, True, x2, x3) new_ltEs15(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs25(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primMulInt(Pos(x0), Pos(x1)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_compare19(EQ, GT) new_compare19(GT, EQ) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Double) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Char) new_esEs13(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(ty_[], x2)) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt22(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Integer) new_esEs36(x0, x1, app(ty_[], x2)) new_ltEs13(True, True) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Int) new_esEs25(Left(x0), Left(x1), ty_Bool, x2) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_@0) new_esEs21(Just(x0), Just(x1), ty_Int) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs38(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Char) new_compare28(x0, x1, False, x2) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Left(x0), Left(x1), ty_Bool, x2) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_lt7(x0, x1) new_esEs33(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Right(x0), Right(x1), x2, ty_Double) new_compare8(Char(x0), Char(x1)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_lt17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Integer) new_esEs6(x0, x1, ty_Char) new_ltEs15(Left(x0), Left(x1), ty_@0, x2) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Ordering) new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs10(x0, x1, app(ty_[], x2)) new_ltEs7(Just(x0), Just(x1), ty_Char) new_ltEs24(x0, x1, ty_Bool) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_compare17(Integer(x0), Integer(x1)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt17(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Double) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Int) new_primMulNat0(Zero, Zero) new_esEs5(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_@0) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Bool) new_esEs21(Just(x0), Just(x1), ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt9(x0, x1) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Ordering) new_lt17(x0, x1, ty_Int) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Char) new_ltEs15(Right(x0), Left(x1), x2, x3) new_ltEs15(Left(x0), Right(x1), x2, x3) new_ltEs7(Nothing, Nothing, x0) new_lt23(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Int) new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs34(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs21(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare9(@0, @0) new_ltEs7(Just(x0), Just(x1), ty_Int) new_esEs33(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Double) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_compare19(LT, LT) new_esEs6(x0, x1, ty_Int) new_lt17(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_compare14(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(Just(x0), Nothing, x1) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_lt23(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Char) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Int) new_lt23(x0, x1, ty_Char) new_esEs29(LT) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Int) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1) new_ltEs15(Right(x0), Right(x1), x2, ty_Int) new_esEs8(x0, x1, ty_Ordering) new_compare6(Left(x0), Left(x1), x2, x3) new_ltEs15(Right(x0), Right(x1), x2, ty_Ordering) new_esEs39(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Int) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_fsEs(x0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_@0) new_esEs25(Left(x0), Left(x1), ty_Integer, x2) new_esEs4(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Zero) new_ltEs4(LT, GT) new_ltEs4(GT, LT) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Just(x0), Just(x1), ty_Bool) new_esEs25(Left(x0), Left(x1), ty_Float, x2) new_not(True) new_esEs40(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Double) new_ltEs15(Right(x0), Right(x1), x2, ty_Char) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs15(Left(x0), Left(x1), ty_Char, x2) new_asAs(False, x0) new_ltEs24(x0, x1, ty_Char) new_ltEs13(False, False) new_esEs32(x0, x1, ty_Ordering) new_esEs25(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Ordering) new_ltEs7(Just(x0), Just(x1), ty_Ordering) new_esEs6(x0, x1, ty_Double) new_compare14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Double) new_ltEs7(Just(x0), Just(x1), ty_Double) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Bool) new_ltEs15(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs37(x0, x1, ty_Bool) new_esEs21(Just(x0), Just(x1), app(ty_[], x2)) new_lt17(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Double) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs24(Char(x0), Char(x1)) new_compare12(x0, x1) new_esEs9(x0, x1, ty_Float) new_lt17(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Bool) new_ltEs15(Left(x0), Left(x1), ty_Int, x2) new_esEs38(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_@0) new_esEs25(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primCompAux00(x0, EQ) new_esEs39(x0, x1, ty_@0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs9(x0, x1, ty_@0) new_esEs11(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs15(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Float) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs40(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Double) new_esEs39(x0, x1, ty_Float) new_ltEs4(EQ, EQ) new_esEs37(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Float) new_lt22(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_@0) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_@0) new_primCmpNat0(Succ(x0), Zero) new_esEs10(x0, x1, ty_Ordering) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt22(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Int) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(LT, LT) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_@0) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Ordering) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_compare13(Just(x0), Just(x1), x2) new_esEs19(True, True) new_esEs36(x0, x1, ty_Double) new_compare29(x0, x1, x2, x3, True, x4, x5) new_lt15(x0, x1) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs19(x0, x1, ty_Int) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt17(x0, x1, app(ty_Maybe, x2)) new_esEs29(EQ) new_ltEs15(Left(x0), Left(x1), ty_Float, x2) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Ordering) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs22(:(x0, x1), [], x2) new_ltEs21(x0, x1, ty_Int) new_lt20(x0, x1, ty_Int) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs23(x0, x1, ty_Double) new_esEs22([], [], x0) new_esEs27(x0, x1, ty_Float) new_ltEs24(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_ltEs15(Left(x0), Left(x1), ty_Ordering, x2) new_esEs34(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Double) new_lt22(x0, x1, ty_@0) new_esEs25(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs36(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Int) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Char) new_esEs25(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs39(x0, x1, ty_Int) new_ltEs15(Right(x0), Right(x1), x2, ty_Bool) new_ltEs21(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Int) new_lt20(x0, x1, ty_Char) new_ltEs24(x0, x1, ty_Ordering) new_ltEs5(x0, x1) new_lt21(x0, x1, ty_Char) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_@0) new_esEs7(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Char) new_compare5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Int) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(x0, x1, x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs39(x0, x1, ty_Char) new_esEs25(Right(x0), Right(x1), x2, ty_Ordering) new_compare25(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_@0) new_esEs21(Nothing, Just(x0), x1) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_compare14(x0, x1, app(ty_Ratio, x2)) new_compare113(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Zero, Succ(x0)) new_ltEs9(x0, x1) new_esEs26(x0, x1, ty_Ordering) new_compare16(False, False) new_ltEs20(x0, x1, ty_Bool) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs28(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Char) new_lt23(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Ordering) new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs22(:(x0, x1), :(x2, x3), x4) new_ltEs22(x0, x1, ty_Integer) new_compare14(x0, x1, ty_Float) new_esEs25(Right(x0), Right(x1), x2, ty_Double) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Bool) new_primCompAux00(x0, GT) new_lt23(x0, x1, ty_Bool) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Bool) new_compare14(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Integer) new_lt17(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_@0) new_compare16(True, True) new_compare19(LT, EQ) new_compare19(EQ, LT) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Float) new_primEqNat0(Zero, Zero) new_esEs40(x0, x1, ty_Double) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs21(Just(x0), Just(x1), ty_@0) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(Left(x0), Left(x1), ty_Double, x2) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs21(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Bool) new_not(False) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Char) new_esEs6(x0, x1, ty_@0) new_esEs20(Double(x0, x1), Double(x2, x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Bool) new_esEs25(Left(x0), Left(x1), ty_@0, x2) new_esEs21(Just(x0), Just(x1), ty_Double) new_lt20(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Float) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_compare14(x0, x1, ty_Int) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Int) new_lt19(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux0(x0, x1, x2, x3) new_lt4(x0, x1, x2, x3, x4) new_lt6(x0, x1, x2) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs7(Just(x0), Just(x1), ty_Float) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare6(Left(x0), Right(x1), x2, x3) new_compare6(Right(x0), Left(x1), x2, x3) new_compare19(GT, GT) new_esEs8(x0, x1, ty_Double) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Zero, Succ(x0)) new_esEs16(x0, x1) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Ordering) new_compare26(x0, x1, False, x2, x3) new_compare14(x0, x1, ty_Char) new_compare19(EQ, EQ) new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs27(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Int) new_esEs25(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs39(x0, x1, ty_Integer) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Ordering) new_compare14(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Char) new_compare6(Right(x0), Right(x1), x2, x3) new_esEs33(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(ty_[], x2)) new_ltEs12(x0, x1) new_esEs39(x0, x1, ty_Ordering) new_esEs21(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Integer) new_lt17(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Ordering) new_primMulNat0(Succ(x0), Zero) new_lt13(x0, x1, x2, x3) new_lt23(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_ltEs18(x0, x1, ty_Float) new_primCmpNat0(Zero, Zero) new_ltEs21(x0, x1, ty_Integer) new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Int) new_ltEs15(Left(x0), Left(x1), ty_Integer, x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (30) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_compare0(:(xuu5000, xuu5001), :(xuu400, xuu401), h) -> new_primCompAux(xuu5000, xuu400, new_compare(xuu5001, xuu401, h), h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare0(:(xuu5000, xuu5001), :(xuu400, xuu401), h) -> new_compare0(xuu5001, xuu401, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_lt(:(xuu5000, xuu5001), :(xuu400, xuu401), h) -> new_primCompAux(xuu5000, xuu400, new_compare(xuu5001, xuu401, h), h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt3(@2(xuu5000, xuu5001), @2(xuu400, xuu401), ccb, ccc) -> new_compare24(xuu5000, xuu5001, xuu400, xuu401, new_asAs(new_esEs10(xuu5000, xuu400, ccb), new_esEs11(xuu5001, xuu401, ccc)), ccb, ccc) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_ltEs3(@2(xuu750, xuu751), @2(xuu760, xuu761), bhf, app(app(ty_@2, caf), cag)) -> new_ltEs3(xuu751, xuu761, caf, cag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_lt2(Just(xuu5000), Just(xuu400), cah) -> new_compare23(xuu5000, xuu400, new_esEs9(xuu5000, xuu400, cah), cah) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs3(@2(xuu750, xuu751), @2(xuu760, xuu761), bhf, app(app(app(ty_@3, bhh), caa), cab)) -> new_ltEs0(xuu751, xuu761, bhh, caa, cab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), bad, hb, app(app(ty_@2, bce), bcf)) -> new_ltEs3(xuu752, xuu762, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), bad, hb, app(app(app(ty_@3, bbg), bbh), bca)) -> new_ltEs0(xuu752, xuu762, bbg, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs(xuu75, xuu76, gg) -> new_compare0(xuu75, xuu76, gg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare4(@2(xuu5000, xuu5001), @2(xuu400, xuu401), ccb, ccc) -> new_compare24(xuu5000, xuu5001, xuu400, xuu401, new_asAs(new_esEs10(xuu5000, xuu400, ccb), new_esEs11(xuu5001, xuu401, ccc)), ccb, ccc) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_ltEs2(Just(xuu750), Just(xuu760), app(app(ty_@2, bgb), bgc)) -> new_ltEs3(xuu750, xuu760, bgb, bgc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Just(xuu750), Just(xuu760), app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs0(xuu750, xuu760, bfd, bfe, bff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_lt0(@3(xuu5000, xuu5001, xuu5002), @3(xuu400, xuu401, xuu402), cb, cc, cd) -> new_compare20(xuu5000, xuu5001, xuu5002, xuu400, xuu401, xuu402, new_asAs(new_esEs4(xuu5000, xuu400, cb), new_asAs(new_esEs5(xuu5001, xuu401, cc), new_esEs6(xuu5002, xuu402, cd))), cb, cc, cd) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_ltEs3(@2(xuu750, xuu751), @2(xuu760, xuu761), bhf, app(app(ty_Either, cac), cad)) -> new_ltEs1(xuu751, xuu761, cac, cad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), bad, hb, app(app(ty_Either, bcb), bcc)) -> new_ltEs1(xuu752, xuu762, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs2(Just(xuu750), Just(xuu760), app(app(ty_Either, bfg), bfh)) -> new_ltEs1(xuu750, xuu760, bfg, bfh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_lt(:(xuu5000, xuu5001), :(xuu400, xuu401), h) -> new_compare0(xuu5001, xuu401, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare1(@3(xuu5000, xuu5001, xuu5002), @3(xuu400, xuu401, xuu402), cb, cc, cd) -> new_compare20(xuu5000, xuu5001, xuu5002, xuu400, xuu401, xuu402, new_asAs(new_esEs4(xuu5000, xuu400, cb), new_asAs(new_esEs5(xuu5001, xuu401, cc), new_esEs6(xuu5002, xuu402, cd))), cb, cc, cd) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_ltEs3(@2(xuu750, xuu751), @2(xuu760, xuu761), app(app(ty_Either, bha), bhb), bge) -> new_lt1(xuu750, xuu760, bha, bhb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_primCompAux(xuu5000, xuu400, xuu50, app(app(ty_Either, be), bf)) -> new_compare2(xuu5000, xuu400, be, bf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs3(@2(xuu750, xuu751), @2(xuu760, xuu761), app(app(ty_@2, bhd), bhe), bge) -> new_lt3(xuu750, xuu760, bhd, bhe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare24(xuu126, xuu127, xuu128, xuu129, False, ccd, app(app(ty_@2, cdd), cde)) -> new_ltEs3(xuu127, xuu129, cdd, cde) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare24(xuu126, xuu127, xuu128, xuu129, False, ccd, app(app(app(ty_@3, ccf), ccg), cch)) -> new_ltEs0(xuu127, xuu129, ccf, ccg, cch) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_compare24(xuu126, xuu127, xuu128, xuu129, False, ccd, app(app(ty_Either, cda), cdb)) -> new_ltEs1(xuu127, xuu129, cda, cdb) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare24(xuu126, xuu127, xuu128, xuu129, False, app(app(ty_Either, cec), ced), cdg) -> new_lt1(xuu126, xuu128, cec, ced) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare24(xuu126, xuu127, xuu128, xuu129, False, app(app(ty_@2, cef), ceg), cdg) -> new_lt3(xuu126, xuu128, cef, ceg) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_lt1(Left(xuu5000), Left(xuu400), ge, gf) -> new_compare21(xuu5000, xuu400, new_esEs7(xuu5000, xuu400, ge), ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare2(Left(xuu5000), Left(xuu400), ge, gf) -> new_compare21(xuu5000, xuu400, new_esEs7(xuu5000, xuu400, ge), ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_lt1(Right(xuu5000), Right(xuu400), ge, gf) -> new_compare22(xuu5000, xuu400, new_esEs8(xuu5000, xuu400, gf), ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare2(Right(xuu5000), Right(xuu400), ge, gf) -> new_compare22(xuu5000, xuu400, new_esEs8(xuu5000, xuu400, gf), ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare21(xuu75, xuu76, False, app(ty_[], gg), gh) -> new_compare0(xuu75, xuu76, gg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(xuu5000, xuu400, xuu50, app(ty_[], ba)) -> new_compare0(xuu5000, xuu400, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, ea, cf, app(app(ty_@2, gc), gd)) -> new_ltEs3(xuu115, xuu118, gc, gd) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, ea, cf, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs0(xuu115, xuu118, fd, ff, fg) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, ea, cf, app(app(ty_Either, fh), ga)) -> new_ltEs1(xuu115, xuu118, fh, ga) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_primCompAux(xuu5000, xuu400, xuu50, app(app(app(ty_@3, bb), bc), bd)) -> new_compare1(xuu5000, xuu400, bb, bc, bd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(@2(xuu750, xuu751), @2(xuu760, xuu761), bhf, app(ty_Maybe, cae)) -> new_ltEs2(xuu751, xuu761, cae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), bad, hb, app(ty_Maybe, bcd)) -> new_ltEs2(xuu752, xuu762, bcd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs2(Just(xuu750), Just(xuu760), app(ty_Maybe, bga)) -> new_ltEs2(xuu750, xuu760, bga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Just(xuu750), Just(xuu760), app(ty_[], bfc)) -> new_ltEs(xuu750, xuu760, bfc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare24(xuu126, xuu127, xuu128, xuu129, False, ccd, app(ty_Maybe, cdc)) -> new_ltEs2(xuu127, xuu129, cdc) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, ea, cf, app(ty_Maybe, gb)) -> new_ltEs2(xuu115, xuu118, gb) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare3(Just(xuu5000), Just(xuu400), cah) -> new_compare23(xuu5000, xuu400, new_esEs9(xuu5000, xuu400, cah), cah) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare22(xuu82, xuu83, False, ceh, app(app(ty_@2, cfh), cga)) -> new_ltEs3(xuu82, xuu83, cfh, cga) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare23(xuu89, xuu90, False, app(app(ty_@2, cbh), cca)) -> new_ltEs3(xuu89, xuu90, cbh, cca) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare22(xuu82, xuu83, False, ceh, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_ltEs0(xuu82, xuu83, cfb, cfc, cfd) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_compare23(xuu89, xuu90, False, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_ltEs0(xuu89, xuu90, cbb, cbc, cbd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(xuu82, xuu83, False, ceh, app(app(ty_Either, cfe), cff)) -> new_ltEs1(xuu82, xuu83, cfe, cff) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare23(xuu89, xuu90, False, app(app(ty_Either, cbe), cbf)) -> new_ltEs1(xuu89, xuu90, cbe, cbf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare22(xuu82, xuu83, False, ceh, app(ty_Maybe, cfg)) -> new_ltEs2(xuu82, xuu83, cfg) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare23(xuu89, xuu90, False, app(ty_Maybe, cbg)) -> new_ltEs2(xuu89, xuu90, cbg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare22(xuu82, xuu83, False, ceh, app(ty_[], cfa)) -> new_ltEs(xuu82, xuu83, cfa) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_ltEs3(@2(xuu750, xuu751), @2(xuu760, xuu761), app(ty_[], bgd), bge) -> new_lt(xuu750, xuu760, bgd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare24(xuu126, xuu127, xuu128, xuu129, False, app(ty_[], cdf), cdg) -> new_lt(xuu126, xuu128, cdf) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare23(xuu89, xuu90, False, app(ty_[], cba)) -> new_ltEs(xuu89, xuu90, cba) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs3(@2(xuu750, xuu751), @2(xuu760, xuu761), app(ty_Maybe, bhc), bge) -> new_lt2(xuu750, xuu760, bhc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare24(xuu126, xuu127, xuu128, xuu129, False, app(ty_Maybe, cee), cdg) -> new_lt2(xuu126, xuu128, cee) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_ltEs3(@2(xuu750, xuu751), @2(xuu760, xuu761), bhf, app(ty_[], bhg)) -> new_ltEs(xuu751, xuu761, bhg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@2(xuu750, xuu751), @2(xuu760, xuu761), app(app(app(ty_@3, bgf), bgg), bgh), bge) -> new_lt0(xuu750, xuu760, bgf, bgg, bgh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), bad, hb, app(ty_[], bbf)) -> new_ltEs(xuu752, xuu762, bbf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare24(xuu126, xuu127, xuu128, xuu129, False, ccd, app(ty_[], cce)) -> new_ltEs(xuu127, xuu129, cce) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare24(xuu126, xuu127, xuu128, xuu129, False, app(app(app(ty_@3, cdh), cea), ceb), cdg) -> new_lt0(xuu126, xuu128, cdh, cea, ceb) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, ea, cf, app(ty_[], fc)) -> new_ltEs(xuu115, xuu118, fc) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_primCompAux(xuu5000, xuu400, xuu50, app(app(ty_@2, bh), ca)) -> new_compare4(xuu5000, xuu400, bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(xuu5000, xuu400, xuu50, app(ty_Maybe, bg)) -> new_compare3(xuu5000, xuu400, bg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs1(Left(xuu750), Left(xuu760), app(app(ty_@2, bdg), bdh), bch) -> new_ltEs3(xuu750, xuu760, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Right(xuu750), Right(xuu760), bea, app(app(ty_@2, bfa), bfb)) -> new_ltEs3(xuu750, xuu760, bfa, bfb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Left(xuu750), Left(xuu760), app(app(app(ty_@3, bda), bdb), bdc), bch) -> new_ltEs0(xuu750, xuu760, bda, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(Right(xuu750), Right(xuu760), bea, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs0(xuu750, xuu760, bec, bed, bee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(Right(xuu750), Right(xuu760), bea, app(app(ty_Either, bef), beg)) -> new_ltEs1(xuu750, xuu760, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Left(xuu750), Left(xuu760), app(app(ty_Either, bdd), bde), bch) -> new_ltEs1(xuu750, xuu760, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Left(xuu750), Left(xuu760), app(ty_Maybe, bdf), bch) -> new_ltEs2(xuu750, xuu760, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Right(xuu750), Right(xuu760), bea, app(ty_Maybe, beh)) -> new_ltEs2(xuu750, xuu760, beh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Right(xuu750), Right(xuu760), bea, app(ty_[], beb)) -> new_ltEs(xuu750, xuu760, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Left(xuu750), Left(xuu760), app(ty_[], bcg), bch) -> new_ltEs(xuu750, xuu760, bcg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare21(Just(xuu750), Just(xuu760), False, app(ty_Maybe, app(app(ty_@2, bgb), bgc)), gh) -> new_ltEs3(xuu750, xuu760, bgb, bgc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@2(xuu750, xuu751), @2(xuu760, xuu761), False, app(app(ty_@2, bhf), app(app(ty_@2, caf), cag)), gh) -> new_ltEs3(xuu751, xuu761, caf, cag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(xuu750), Left(xuu760), False, app(app(ty_Either, app(app(ty_@2, bdg), bdh)), bch), gh) -> new_ltEs3(xuu750, xuu760, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, bad), hb), app(app(ty_@2, bce), bcf)), gh) -> new_ltEs3(xuu752, xuu762, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Right(xuu750), Right(xuu760), False, app(app(ty_Either, bea), app(app(ty_@2, bfa), bfb)), gh) -> new_ltEs3(xuu750, xuu760, bfa, bfb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), bad, app(app(ty_Either, bba), bbb), hc) -> new_lt1(xuu751, xuu761, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), app(app(ty_Either, hg), hh), hb, hc) -> new_lt1(xuu750, xuu760, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), app(app(ty_@2, bab), bac), hb, hc) -> new_lt3(xuu750, xuu760, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), bad, app(app(ty_@2, bbd), bbe), hc) -> new_lt3(xuu751, xuu761, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), app(ty_[], ha), hb, hc) -> new_lt(xuu750, xuu760, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), bad, app(ty_[], bae), hc) -> new_lt(xuu751, xuu761, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), app(ty_Maybe, baa), hb, hc) -> new_lt2(xuu750, xuu760, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), bad, app(ty_Maybe, bbc), hc) -> new_lt2(xuu751, xuu761, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), app(app(app(ty_@3, hd), he), hf), hb, hc) -> new_lt0(xuu750, xuu760, hd, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs0(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), bad, app(app(app(ty_@3, baf), bag), bah), hc) -> new_lt0(xuu751, xuu761, baf, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, bad), hb), app(app(app(ty_@3, bbg), bbh), bca)), gh) -> new_ltEs0(xuu752, xuu762, bbg, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(xuu750), Left(xuu760), False, app(app(ty_Either, app(app(app(ty_@3, bda), bdb), bdc)), bch), gh) -> new_ltEs0(xuu750, xuu760, bda, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@2(xuu750, xuu751), @2(xuu760, xuu761), False, app(app(ty_@2, bhf), app(app(app(ty_@3, bhh), caa), cab)), gh) -> new_ltEs0(xuu751, xuu761, bhh, caa, cab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(xuu750), Just(xuu760), False, app(ty_Maybe, app(app(app(ty_@3, bfd), bfe), bff)), gh) -> new_ltEs0(xuu750, xuu760, bfd, bfe, bff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Right(xuu750), Right(xuu760), False, app(app(ty_Either, bea), app(app(app(ty_@3, bec), bed), bee)), gh) -> new_ltEs0(xuu750, xuu760, bec, bed, bee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(xuu750), Just(xuu760), False, app(ty_Maybe, app(app(ty_Either, bfg), bfh)), gh) -> new_ltEs1(xuu750, xuu760, bfg, bfh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@2(xuu750, xuu751), @2(xuu760, xuu761), False, app(app(ty_@2, bhf), app(app(ty_Either, cac), cad)), gh) -> new_ltEs1(xuu751, xuu761, cac, cad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(xuu750), Left(xuu760), False, app(app(ty_Either, app(app(ty_Either, bdd), bde)), bch), gh) -> new_ltEs1(xuu750, xuu760, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Right(xuu750), Right(xuu760), False, app(app(ty_Either, bea), app(app(ty_Either, bef), beg)), gh) -> new_ltEs1(xuu750, xuu760, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, bad), hb), app(app(ty_Either, bcb), bcc)), gh) -> new_ltEs1(xuu752, xuu762, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, bad), app(app(ty_Either, bba), bbb)), hc), gh) -> new_lt1(xuu751, xuu761, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@2(xuu750, xuu751), @2(xuu760, xuu761), False, app(app(ty_@2, app(app(ty_Either, bha), bhb)), bge), gh) -> new_lt1(xuu750, xuu760, bha, bhb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, app(app(ty_Either, hg), hh)), hb), hc), gh) -> new_lt1(xuu750, xuu760, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, bad), app(app(ty_@2, bbd), bbe)), hc), gh) -> new_lt3(xuu751, xuu761, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@2(xuu750, xuu751), @2(xuu760, xuu761), False, app(app(ty_@2, app(app(ty_@2, bhd), bhe)), bge), gh) -> new_lt3(xuu750, xuu760, bhd, bhe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, app(app(ty_@2, bab), bac)), hb), hc), gh) -> new_lt3(xuu750, xuu760, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Right(xuu750), Right(xuu760), False, app(app(ty_Either, bea), app(ty_Maybe, beh)), gh) -> new_ltEs2(xuu750, xuu760, beh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(xuu750), Just(xuu760), False, app(ty_Maybe, app(ty_Maybe, bga)), gh) -> new_ltEs2(xuu750, xuu760, bga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(xuu750), Left(xuu760), False, app(app(ty_Either, app(ty_Maybe, bdf)), bch), gh) -> new_ltEs2(xuu750, xuu760, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, bad), hb), app(ty_Maybe, bcd)), gh) -> new_ltEs2(xuu752, xuu762, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@2(xuu750, xuu751), @2(xuu760, xuu761), False, app(app(ty_@2, bhf), app(ty_Maybe, cae)), gh) -> new_ltEs2(xuu751, xuu761, cae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, bad), app(ty_[], bae)), hc), gh) -> new_lt(xuu751, xuu761, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@2(xuu750, xuu751), @2(xuu760, xuu761), False, app(app(ty_@2, app(ty_[], bgd)), bge), gh) -> new_lt(xuu750, xuu760, bgd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, app(ty_[], ha)), hb), hc), gh) -> new_lt(xuu750, xuu760, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, app(ty_Maybe, baa)), hb), hc), gh) -> new_lt2(xuu750, xuu760, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@2(xuu750, xuu751), @2(xuu760, xuu761), False, app(app(ty_@2, app(ty_Maybe, bhc)), bge), gh) -> new_lt2(xuu750, xuu760, bhc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, bad), app(ty_Maybe, bbc)), hc), gh) -> new_lt2(xuu751, xuu761, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, bad), hb), app(ty_[], bbf)), gh) -> new_ltEs(xuu752, xuu762, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Right(xuu750), Right(xuu760), False, app(app(ty_Either, bea), app(ty_[], beb)), gh) -> new_ltEs(xuu750, xuu760, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(xuu750), Left(xuu760), False, app(app(ty_Either, app(ty_[], bcg)), bch), gh) -> new_ltEs(xuu750, xuu760, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@2(xuu750, xuu751), @2(xuu760, xuu761), False, app(app(ty_@2, bhf), app(ty_[], bhg)), gh) -> new_ltEs(xuu751, xuu761, bhg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(xuu750), Just(xuu760), False, app(ty_Maybe, app(ty_[], bfc)), gh) -> new_ltEs(xuu750, xuu760, bfc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@2(xuu750, xuu751), @2(xuu760, xuu761), False, app(app(ty_@2, app(app(app(ty_@3, bgf), bgg), bgh)), bge), gh) -> new_lt0(xuu750, xuu760, bgf, bgg, bgh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, bad), app(app(app(ty_@3, baf), bag), bah)), hc), gh) -> new_lt0(xuu751, xuu761, baf, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@3(xuu750, xuu751, xuu752), @3(xuu760, xuu761, xuu762), False, app(app(app(ty_@3, app(app(app(ty_@3, hd), he), hf)), hb), hc), gh) -> new_lt0(xuu750, xuu760, hd, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, app(app(ty_Either, dd), de), cf, cg) -> new_lt1(xuu113, xuu116, dd, de) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, ea, app(app(ty_Either, ef), eg), cg) -> new_lt1(xuu114, xuu117, ef, eg) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, app(app(ty_@2, dg), dh), cf, cg) -> new_lt3(xuu113, xuu116, dg, dh) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, ea, app(app(ty_@2, fa), fb), cg) -> new_lt3(xuu114, xuu117, fa, fb) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, ea, app(ty_[], eb), cg) -> new_lt(xuu114, xuu117, eb) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, app(ty_[], ce), cf, cg) -> new_lt(xuu113, xuu116, ce) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, app(ty_Maybe, df), cf, cg) -> new_lt2(xuu113, xuu116, df) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, ea, app(ty_Maybe, eh), cg) -> new_lt2(xuu114, xuu117, eh) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, app(app(app(ty_@3, da), db), dc), cf, cg) -> new_lt0(xuu113, xuu116, da, db, dc) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare20(xuu113, xuu114, xuu115, xuu116, xuu117, xuu118, False, ea, app(app(app(ty_@3, ec), ed), ee), cg) -> new_lt0(xuu114, xuu117, ec, ed, ee) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 ---------------------------------------- (31) YES ---------------------------------------- (32) Obligation: Q DP problem: The TRS P consists of the following rules: new_foldl(xuu3, :(xuu50, xuu51), h, ba) -> new_foldl(xuu3, xuu51, h, ba) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (33) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_foldl(xuu3, :(xuu50, xuu51), h, ba) -> new_foldl(xuu3, xuu51, h, ba) The graph contains the following edges 1 >= 1, 2 > 2, 3 >= 3, 4 >= 4 ---------------------------------------- (34) YES ---------------------------------------- (35) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat(xuu500000, xuu40000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (36) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_primEqNat(Succ(xuu500000), Succ(xuu40000)) -> new_primEqNat(xuu500000, xuu40000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (37) YES ---------------------------------------- (38) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMinusNat(Succ(xuu44200), Succ(xuu13900)) -> new_primMinusNat(xuu44200, xuu13900) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (39) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_primMinusNat(Succ(xuu44200), Succ(xuu13900)) -> new_primMinusNat(xuu44200, xuu13900) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (40) YES ---------------------------------------- (41) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(xuu44200), Succ(xuu13900)) -> new_primPlusNat(xuu44200, xuu13900) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (42) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_primPlusNat(Succ(xuu44200), Succ(xuu13900)) -> new_primPlusNat(xuu44200, xuu13900) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (43) YES